diff --git a/.github/actions/setup-denis/action.yml b/.github/actions/setup-denis/action.yml new file mode 100644 index 0000000000..dfc9b514b4 --- /dev/null +++ b/.github/actions/setup-denis/action.yml @@ -0,0 +1,50 @@ +--- +name: Setup denis CLI +description: > + Download and verify the denis OTA publish binary from the (private) + bluesky-social/tango releases and put it on PATH. Uses a short-lived GitHub + App token scoped to contents:read on tango, since the default GITHUB_TOKEN + cannot read a private repo's releases. + +inputs: + release-tag: + description: denis release tag in bluesky-social/tango to download + required: true + app-id: + description: GitHub App ID for the token used to read tango releases + required: true + private-key: + description: GitHub App private key + required: true + +runs: + using: composite + steps: + - name: ๐Ÿ”‘ Mint tango read token + id: tango-token + uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 + with: + app-id: ${{ inputs.app-id }} + private-key: ${{ inputs.private-key }} + repositories: tango + permission-contents: read + + - name: โฌ‡๏ธ Download and verify denis binary + shell: bash + env: + GH_TOKEN: ${{ steps.tango-token.outputs.token }} + RELEASE_TAG: ${{ inputs.release-tag }} + run: | + BIN_DIR="$RUNNER_TEMP/denis-bin" + mkdir -p "$BIN_DIR" + cd "$BIN_DIR" + gh release download "$RELEASE_TAG" \ + --repo bluesky-social/tango \ + --pattern denis-linux-amd64 \ + --pattern denis-linux-amd64.sha256 \ + --clobber + # Verify before making it executable / putting it on PATH. + sha256sum -c denis-linux-amd64.sha256 + mv denis-linux-amd64 denis + chmod +x denis + echo "$BIN_DIR" >> "$GITHUB_PATH" diff --git a/.github/scripts/run-nightly-e2e.sh b/.github/scripts/run-nightly-e2e.sh index fe4fb7e355..e2c9942884 100755 --- a/.github/scripts/run-nightly-e2e.sh +++ b/.github/scripts/run-nightly-e2e.sh @@ -136,7 +136,7 @@ wait_for_port 1986 "the E2E mock-server manager" phase "Starting Metro" EXPO_PUBLIC_ENV=e2e \ - NODE_ENV=test \ + NODE_ENV=development \ RN_SRC_EXT=e2e.ts,e2e.tsx \ pnpm exec expo start --dev-client --clear --port 8081 \ >"$artifact_dir/metro.log" 2>&1 & diff --git a/.github/workflows/build-and-push-bskyweb-aws.yaml b/.github/workflows/build-and-push-bskyweb-aws.yaml index 324ce2fc91..4148640240 100644 --- a/.github/workflows/build-and-push-bskyweb-aws.yaml +++ b/.github/workflows/build-and-push-bskyweb-aws.yaml @@ -21,20 +21,20 @@ jobs: id-token: write steps: - - name: Checkout repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Checkout repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - - name: Setup Docker buildx + - name: ๐Ÿ”ง Setup Docker buildx uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0 - - name: Log into registry ${{ env.REGISTRY }} - uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0 + - name: ๐Ÿ”‘ Log into registry ${{ env.REGISTRY }} + uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c # v4.5.2 with: registry: ${{ env.REGISTRY }} username: ${{ env.USERNAME}} password: ${{ env.PASSWORD }} - - name: Extract Docker metadata + - name: ๐Ÿท๏ธ Extract Docker metadata id: meta uses: docker/metadata-action@dc802804100637a589fabce1cb79ff13a1411302 # v6.2.0 with: @@ -43,13 +43,13 @@ jobs: tags: | type=sha,enable=true,priority=100,prefix=,suffix=,format=long - - name: Env + - name: ๐Ÿ“ Env id: env run: | 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 + - name: ๐Ÿš€ Build and push Docker image id: build-and-push uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 with: diff --git a/.github/workflows/build-and-push-bskyweb-ghcr.yaml b/.github/workflows/build-and-push-bskyweb-ghcr.yaml index 7703297df9..c905a92602 100644 --- a/.github/workflows/build-and-push-bskyweb-ghcr.yaml +++ b/.github/workflows/build-and-push-bskyweb-ghcr.yaml @@ -22,20 +22,20 @@ jobs: id-token: write steps: - - name: Checkout repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Checkout repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - - name: Setup Docker buildx + - name: ๐Ÿ”ง Setup Docker buildx uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0 - - name: Log into registry ${{ env.REGISTRY }} - uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0 + - name: ๐Ÿ”‘ Log into registry ${{ env.REGISTRY }} + uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c # v4.5.2 with: registry: ${{ env.REGISTRY }} username: ${{ env.USERNAME }} password: ${{ env.PASSWORD }} - - name: Extract Docker metadata + - name: ๐Ÿท๏ธ Extract Docker metadata id: meta uses: docker/metadata-action@dc802804100637a589fabce1cb79ff13a1411302 # v6.2.0 with: @@ -44,7 +44,7 @@ jobs: tags: | type=sha,enable=true,priority=100,prefix=bskyweb:,suffix=,format=long - - name: Build and push Docker image + - name: ๐Ÿš€ Build and push Docker image id: build-and-push uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 with: diff --git a/.github/workflows/build-and-push-embedr-aws.yaml b/.github/workflows/build-and-push-embedr-aws.yaml index 7db93ecaad..d5df3eda26 100644 --- a/.github/workflows/build-and-push-embedr-aws.yaml +++ b/.github/workflows/build-and-push-embedr-aws.yaml @@ -21,20 +21,20 @@ jobs: id-token: write steps: - - name: Checkout repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Checkout repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - - name: Setup Docker buildx + - name: ๐Ÿ”ง Setup Docker buildx uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0 - - name: Log into registry ${{ env.REGISTRY }} - uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0 + - name: ๐Ÿ”‘ Log into registry ${{ env.REGISTRY }} + uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c # v4.5.2 with: registry: ${{ env.REGISTRY }} username: ${{ env.USERNAME}} password: ${{ env.PASSWORD }} - - name: Extract Docker metadata + - name: ๐Ÿท๏ธ Extract Docker metadata id: meta uses: docker/metadata-action@dc802804100637a589fabce1cb79ff13a1411302 # v6.2.0 with: @@ -43,7 +43,7 @@ jobs: tags: | type=sha,enable=true,priority=100,prefix=,suffix=,format=long - - name: Build and push Docker image + - name: ๐Ÿš€ Build and push Docker image id: build-and-push uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 with: diff --git a/.github/workflows/build-and-push-link-aws.yaml b/.github/workflows/build-and-push-link-aws.yaml index 766b25253d..04cb0c48be 100644 --- a/.github/workflows/build-and-push-link-aws.yaml +++ b/.github/workflows/build-and-push-link-aws.yaml @@ -21,20 +21,20 @@ jobs: id-token: write steps: - - name: Checkout repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Checkout repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - - name: Setup Docker buildx + - name: ๐Ÿ”ง Setup Docker buildx uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0 - - name: Log into registry ${{ env.REGISTRY }} - uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0 + - name: ๐Ÿ”‘ Log into registry ${{ env.REGISTRY }} + uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c # v4.5.2 with: registry: ${{ env.REGISTRY }} username: ${{ env.USERNAME}} password: ${{ env.PASSWORD }} - - name: Extract Docker metadata + - name: ๐Ÿท๏ธ Extract Docker metadata id: meta uses: docker/metadata-action@dc802804100637a589fabce1cb79ff13a1411302 # v6.2.0 with: @@ -43,7 +43,7 @@ jobs: tags: | type=sha,enable=true,priority=100,prefix=,suffix=,format=long - - name: Build and push Docker image + - name: ๐Ÿš€ Build and push Docker image id: build-and-push uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 with: diff --git a/.github/workflows/build-and-push-ogcard-aws.yaml b/.github/workflows/build-and-push-ogcard-aws.yaml index e1260d8f24..08c49f3227 100644 --- a/.github/workflows/build-and-push-ogcard-aws.yaml +++ b/.github/workflows/build-and-push-ogcard-aws.yaml @@ -21,20 +21,20 @@ jobs: id-token: write steps: - - name: Checkout repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Checkout repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - - name: Setup Docker buildx + - name: ๐Ÿ”ง Setup Docker buildx uses: docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c # v4.2.0 - - name: Log into registry ${{ env.REGISTRY }} - uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0 # v4.4.0 + - name: ๐Ÿ”‘ Log into registry ${{ env.REGISTRY }} + uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c # v4.5.2 with: registry: ${{ env.REGISTRY }} username: ${{ env.USERNAME}} password: ${{ env.PASSWORD }} - - name: Extract Docker metadata + - name: ๐Ÿท๏ธ Extract Docker metadata id: meta uses: docker/metadata-action@dc802804100637a589fabce1cb79ff13a1411302 # v6.2.0 with: @@ -43,7 +43,7 @@ jobs: tags: | type=sha,enable=true,priority=100,prefix=,suffix=,format=long - - name: Build and push Docker image + - name: ๐Ÿš€ Build and push Docker image id: build-and-push uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0 with: diff --git a/.github/workflows/build-submit-android.yml b/.github/workflows/build-submit-android.yml index a2261536e6..4d474a1f02 100644 --- a/.github/workflows/build-submit-android.yml +++ b/.github/workflows/build-submit-android.yml @@ -79,7 +79,7 @@ jobs: version-code: ${{ steps.get-build-info.outputs.BSKY_ANDROID_VERSION_CODE }} steps: - name: โฌ‡๏ธ Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 5 @@ -88,7 +88,7 @@ jobs: with: expo-token: ${{ secrets.EXPO_TOKEN }} - - uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0 + - uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5.6.0 with: distribution: "temurin" java-version: "17" @@ -141,7 +141,7 @@ jobs: steps: # eas submit reads app config from the repo, so we need a checkout. - name: โฌ‡๏ธ Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 5 @@ -162,7 +162,7 @@ jobs: - name: ๐Ÿ”” Notify Slack of Play Store Submission if: ${{ inputs.profile == 'production' }} - uses: slackapi/slack-github-action@0d95c9a7becc1e6e297d76df9bc735c44f4cbcbc # v3.0.5 + uses: slackapi/slack-github-action@dcb1066f776dd043e64d0e8ba94ca15cc7e1875d # v4.0.0 with: webhook: ${{ secrets.SLACK_CLIENT_ALERT_WEBHOOK }} webhook-type: incoming-webhook @@ -170,22 +170,6 @@ jobs: payload: | {"text": "Android ${{ inputs.profile || 'testflight-android' }} build submitted to Google Play!\n```Version Number: ${{ needs.build.outputs.package-version }}\nBuild Number: ${{ needs.build.outputs.version-code }}```"} - # Record the commit only after a successful submit, so a failed submit doesn't - # advance the "most recent testflight" marker. - - name: โฌ‡๏ธ Restore Cache - id: get-base-commit - uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 - if: ${{ inputs.profile == 'testflight-android' }} - with: - path: most-recent-testflight-commit.txt - key: most-recent-testflight-commit - - - name: โœ๏ธ Write commit hash to cache - if: ${{ inputs.profile == 'testflight-android' }} - env: - GITHUB_SHA: ${{ github.sha }} - run: echo $GITHUB_SHA > most-recent-testflight-commit.txt - # Runs in parallel with submit: the QA APK shouldn't be blocked by a Play submission failure. universalApk: name: Build universal APK @@ -201,7 +185,7 @@ jobs: # bundletool needs a JRE. ubuntu-latest ships a default JDK, but pin it explicitly # like the build job so the toolchain is deterministic. - - uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0 + - uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5.6.0 with: distribution: "temurin" java-version: "17" @@ -251,7 +235,7 @@ jobs: path: build.apk - name: ๐Ÿ”” Notify Slack of APK Artifact - uses: slackapi/slack-github-action@0d95c9a7becc1e6e297d76df9bc735c44f4cbcbc # v3.0.5 + uses: slackapi/slack-github-action@dcb1066f776dd043e64d0e8ba94ca15cc7e1875d # v4.0.0 with: webhook: ${{ secrets.SLACK_CLIENT_ALERT_WEBHOOK }} webhook-type: incoming-webhook @@ -314,7 +298,7 @@ jobs: - name: ๐Ÿ”” Notify Slack of Release Attachment if: ${{ steps.release-check.outputs.exists == 'true' }} - uses: slackapi/slack-github-action@0d95c9a7becc1e6e297d76df9bc735c44f4cbcbc # v3.0.5 + uses: slackapi/slack-github-action@dcb1066f776dd043e64d0e8ba94ca15cc7e1875d # v4.0.0 with: webhook: ${{ secrets.SLACK_CLIENT_ALERT_WEBHOOK }} webhook-type: incoming-webhook diff --git a/.github/workflows/build-submit-ios.yml b/.github/workflows/build-submit-ios.yml index 2085aabaa4..bf72ed52c2 100644 --- a/.github/workflows/build-submit-ios.yml +++ b/.github/workflows/build-submit-ios.yml @@ -18,6 +18,11 @@ on: - QA Team - Software Mansion default: none + changelog: + type: string + description: TestFlight "What to Test" notes (only applied when a group is selected) + required: false + default: '' workflow_call: inputs: profile: @@ -81,7 +86,7 @@ jobs: build-number: ${{ steps.ipa-build-number.outputs.build-number }} steps: - name: โฌ‡๏ธ Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 5 @@ -218,7 +223,7 @@ jobs: needs: [build] steps: - name: โฌ‡๏ธ Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: # eas submit reads the app config from the repo fetch-depth: 5 @@ -246,7 +251,7 @@ jobs: - name: ๐Ÿ”” Notify Slack of Production Build if: ${{ inputs.profile == 'production' }} - uses: slackapi/slack-github-action@0d95c9a7becc1e6e297d76df9bc735c44f4cbcbc # v3.0.5 + uses: slackapi/slack-github-action@dcb1066f776dd043e64d0e8ba94ca15cc7e1875d # v4.0.0 with: webhook: ${{ secrets.SLACK_CLIENT_ALERT_WEBHOOK }} webhook-type: incoming-webhook @@ -254,22 +259,6 @@ jobs: payload: | {"text": "iOS production build for App Store submission is ready!\n```Artifact: Check TestFlight to know when it is available\nVersion Number: ${{ needs.build.outputs.package-version }}\nBuild Number: ${{ needs.build.outputs.build-number }}```"} - # Record the commit only after a successful submit, so a failed submit doesn't advance - # the baseline used for the next testflight build's changelog. - - name: โฌ‡๏ธ Restore Cache - id: get-base-commit - uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 - if: ${{ inputs.profile == 'testflight' }} - with: - path: most-recent-testflight-commit.txt - key: most-recent-testflight-commit - - - name: โœ๏ธ Write commit hash to cache - env: - GITHUB_SHA: ${{ github.sha }} - if: ${{ inputs.profile == 'testflight' }} - run: echo $GITHUB_SHA > most-recent-testflight-commit.txt - distribute: name: Assign build to TestFlight group # fastlane and jq ship preinstalled on the macOS runner image, and this step mostly idles @@ -286,6 +275,7 @@ jobs: - name: ๐Ÿงช Assign build to TestFlight group env: TESTFLIGHT_GROUP: ${{ inputs.testFlightGroup }} + CHANGELOG: ${{ inputs.changelog }} ASC_KEY_ID: ${{ secrets.ASC_KEY_ID }} ASC_ISSUER_ID: ${{ secrets.ASC_ISSUER_ID }} ASC_KEY_P8_BASE64: ${{ secrets.ASC_KEY_P8_BASE64 }} @@ -304,6 +294,12 @@ jobs: --arg key "$key_content" \ '{key_id: $key_id, issuer_id: $issuer_id, key: $key, in_house: false}' \ > asc_api_key.json + # changelog is optional, and passing it empty would blank out whatever "What to + # Test" notes the build already has, so only include the flag when it is set. + changelog_arg=() + if [ -n "$CHANGELOG" ]; then + changelog_arg=(changelog:"$CHANGELOG") + fi # app_platform is required in non-interactive mode: distribute_only otherwise # calls fetch_app_platform, which prompts for input and crashes without a TTY. fastlane run upload_to_testflight \ @@ -314,4 +310,5 @@ jobs: app_version:"$APP_VERSION" \ build_number:"$BUILD_NUMBER" \ groups:"$TESTFLIGHT_GROUP" \ - notify_external_testers:true + notify_external_testers:true \ + "${changelog_arg[@]}" diff --git a/.github/workflows/bundle-deploy-eas-update.yml b/.github/workflows/bundle-deploy-eas-update.yml index eab0851c5b..4bb8e7c795 100644 --- a/.github/workflows/bundle-deploy-eas-update.yml +++ b/.github/workflows/bundle-deploy-eas-update.yml @@ -17,16 +17,36 @@ on: type: string description: Runtime version (in x.x.x format) that this update is for required: true + iosBuildNumber: + type: string + description: iOS build number of the native build this update targets + (required for production) + androidVersionCode: + type: string + description: Android version code of the native build this update + targets (required for production) # Deploys happen via EAS using EXPO_TOKEN; the GITHUB_TOKEN only checks out code permissions: contents: read +# denis release tag in bluesky-social/tango whose linux-amd64 binary this +# workflow downloads to publish OTA bundles. Bump this one line to roll denis. +env: + DENIS_RELEASE_TAG: denis-v0.1.1 + jobs: bundleDeploy: if: github.repository == 'bluesky-social/social-app' name: Bundle and Deploy EAS Update runs-on: ubuntu-latest + # id-token: write lets this job mint an OIDC token to assume the denis + # publish role; actions: read loads the fingerprint baseline artifact; + # contents: read is still needed for the checkout. + permissions: + id-token: write + actions: read + contents: read concurrency: group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}-deploy cancel-in-progress: true @@ -36,7 +56,7 @@ jobs: steps.version.outputs.version-changed }} steps: - - name: Check for EXPO_TOKEN + - 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" @@ -49,12 +69,25 @@ jobs: RUNTIME_VERSION: ${{ inputs.runtimeVersion }} if: ${{ inputs.runtimeVersion }} run: | - if [ -z "$RUNTIME_VERSION" ]; then - [[ "$RUNTIME_VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && echo "Version is valid" || exit 1 - fi + [[ "$RUNTIME_VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && echo "Version is valid" || exit 1 + + # Production OTAs are bound to the specific native build they target, so + # the build numbers must be entered manually rather than read from the + # global EAS counters, which advance with every testflight build and so + # point past older production releases + - name: ๐Ÿง Validate build numbers + if: ${{ inputs.channel == 'production' }} + env: + IOS_BUILD_NUMBER: ${{ inputs.iosBuildNumber }} + ANDROID_VERSION_CODE: ${{ inputs.androidVersionCode }} + run: | + [[ "$IOS_BUILD_NUMBER" =~ ^[0-9]+$ ]] || + (echo "A numeric iosBuildNumber is required for production updates" && exit 1) + [[ "$ANDROID_VERSION_CODE" =~ ^[0-9]+$ ]] || + (echo "A numeric androidVersionCode is required for production updates" && exit 1) - name: โฌ‡๏ธ Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 0 @@ -91,23 +124,69 @@ jobs: node-version-file: package.json cache: pnpm + - name: โฌ‡๏ธ Load fingerprint baseline + id: baseline + if: ${{ (inputs.channel || 'testflight') == 'testflight' }} + env: + GH_TOKEN: ${{ github.token }} + REPOSITORY_ID: ${{ github.repository_id }} + run: | + url=$(gh api \ + "repos/${GITHUB_REPOSITORY}/actions/artifacts?name=testflight-native-fingerprint&per_page=100" \ + --jq "[.artifacts[] | select( + .expired == false and + .workflow_run.head_branch == \"main\" and + .workflow_run.head_repository_id == (\$ENV.REPOSITORY_ID | tonumber) + )] | max_by(.created_at) | .archive_download_url" \ + 2>/dev/null || true) + + if [ -n "$url" ] && [ "$url" != "null" ]; then + mkdir baseline-artifact + if curl -sSL -H "Authorization: Bearer $GH_TOKEN" -o baseline.zip "$url" \ + && unzip -q baseline.zip -d baseline-artifact; then + if jq -e '.sources | type == "array"' \ + baseline-artifact/native-fingerprint.json >/dev/null; then + echo "path=baseline-artifact/native-fingerprint.json" >> "$GITHUB_OUTPUT" + else + echo "::warning::Ignoring invalid fingerprint baseline artifact." + fi + else + echo "::warning::Could not download fingerprint baseline artifact." + fi + fi + - name: ๐Ÿ“ท Check fingerprint and install dependencies id: fingerprint - uses: bluesky-social/github-actions/fingerprint-native@b5556913e4aef3964cfd5936d0add3fc0d809bdb # v0.2.0 + uses: bluesky-social/github-actions/fingerprint-native@abc6a46eb4badf243f55bfd7d6cec42722456300 # v0.3.0 with: profile: ${{ inputs.channel || 'testflight' }} previous-commit-tag: ${{ inputs.runtimeVersion }} + # The recordBaseline job uploads this marker after a successful deploy; + # on the native path, that requires both builds to succeed. A missing + # marker forces native builds so they can seed the baseline safely. + baseline-fingerprint-path: ${{ steps.baseline.outputs.path }} + + # Hand the full fingerprint to recordBaseline through a short-lived + # artifact. It is uploaded unconditionally but promoted to the persistent + # baseline only after both native builds succeed. + - name: ๐Ÿš€ Upload native fingerprint + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 + with: + name: native-fingerprint-${{ github.run_id }} + path: ${{ steps.fingerprint.outputs.current-fingerprint-path }} + retention-days: 1 + if-no-files-found: error - name: ๐Ÿ”ค Compile translations uses: ./.github/actions/compile-i18n - - name: Lint check + - name: ๐Ÿงน Lint check run: pnpm lint - - name: Prettier check + - name: ๐Ÿ’… Prettier check run: pnpm prettier --check . - - name: Type check + - name: ๐Ÿ”Ž Type check run: pnpm typecheck - name: ๐Ÿ”จ Setup EAS @@ -146,7 +225,61 @@ jobs: SENTRY_DIST=${{ steps.env.outputs.bundle-identifier }} pnpm export - - name: ๐Ÿ“ฆ Package Bundle and ๐Ÿš€ Deploy + # Pin ONE bundle version for both publishes below. Each script used to call + # `date +%s` itself, so the same bytes reached denis and ota1 under versions + # seconds apart (observed: 1785102575 vs 1785102614). The version is part of + # the asset URL path, so each origin then served a manifest referencing a + # path only it had -- meaning a manifest fetched from one origin and assets + # fetched from the other 404. Both scripts fall back to `date +%s` when this + # is unset, so single-publisher callers are unaffected. + - name: ๐Ÿ”ข Pin bundle version + if: ${{ !steps.fingerprint.outputs.includes-changes && + !steps.version.outputs.version-changed }} + run: echo "BUNDLE_VERSION=$(date +%s)" >> "$GITHUB_ENV" + + # denis on EKS has been the sole origin for updates.bsky.app since + # 2026-07-26, so it publishes FIRST: it is the path that actually serves + # clients. The legacy ota1 upload runs after it, and exists only so that + # rolling the Bunny origin back to ota1 would find current bundles there. + # + # The ordering is load-bearing, not cosmetic. While the legacy step ran + # first, its failure skipped these steps and nothing reached EITHER origin + # -- the dual-write took down the working path with it. Both steps are + # still required to pass, so a stale ota1 remains a loud failure, but the + # publish that serves users has already landed before the legacy one can + # fail. + # + # Both halves are removed together when ota1 is decommissioned (Phase 5). + - name: โ˜๏ธ Configure AWS credentials (denis) + if: ${{ !steps.fingerprint.outputs.includes-changes && + !steps.version.outputs.version-changed }} + uses: aws-actions/configure-aws-credentials@e6de054238d6b7531b4efff3b6587d9aade6a06c # v6.2.3 + with: + role-to-assume: arn:aws:iam::007404326489:role/denis-ci-publish + aws-region: us-east-2 + + - name: โฌ‡๏ธ Setup denis CLI + if: ${{ !steps.fingerprint.outputs.includes-changes && + !steps.version.outputs.version-changed }} + uses: ./.github/actions/setup-denis + with: + release-tag: ${{ env.DENIS_RELEASE_TAG }} + app-id: ${{ vars.SYNC_INTERNAL_APP_ID }} + private-key: ${{ secrets.SYNC_INTERNAL_PK }} + + - name: ๐Ÿš€ Publish OTA to denis (S3) + if: ${{ !steps.fingerprint.outputs.includes-changes && + !steps.version.outputs.version-changed }} + run: pnpm use-build-number bash scripts/denisPublish.sh + env: + RUNTIME_VERSION: ${{ inputs.runtimeVersion }} + CHANNEL_NAME: ${{ inputs.channel || 'testflight' }} + # When set (required for production), these take precedence over the + # global EAS counters inside the use-build-number wrapper + BSKY_IOS_BUILD_NUMBER: ${{ inputs.iosBuildNumber }} + BSKY_ANDROID_VERSION_CODE: ${{ inputs.androidVersionCode }} + + - name: ๐Ÿ“ฆ Package Bundle and ๐Ÿš€ Deploy (legacy ota1) if: ${{ !steps.fingerprint.outputs.includes-changes && !steps.version.outputs.version-changed }} run: pnpm use-build-number bash scripts/bundleUpdate.sh @@ -154,20 +287,10 @@ jobs: DENIS_API_KEY: ${{ secrets.DENIS_API_KEY }} RUNTIME_VERSION: ${{ inputs.runtimeVersion }} CHANNEL_NAME: ${{ inputs.channel || 'testflight' }} - - - name: โฌ‡๏ธ Restore Cache - id: get-base-commit - uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 - if: ${{ !steps.fingerprint.outputs.includes-changes && - !steps.version.outputs.version-changed }} - with: - path: most-recent-testflight-commit.txt - key: most-recent-testflight-commit - - - name: โœ๏ธ Write commit hash to cache - if: ${{ !steps.fingerprint.outputs.includes-changes && - !steps.version.outputs.version-changed }} - run: echo $GITHUB_SHA > most-recent-testflight-commit.txt + # When set (required for production), these take precedence over the + # global EAS counters inside the use-build-number wrapper + BSKY_IOS_BUILD_NUMBER: ${{ inputs.iosBuildNumber }} + BSKY_ANDROID_VERSION_CODE: ${{ inputs.androidVersionCode }} buildIfNecessaryIOS: name: Build and Submit iOS @@ -230,3 +353,48 @@ jobs: ANDROID_KEYSTORE_PASSWORD: ${{ secrets.ANDROID_KEYSTORE_PASSWORD }} ANDROID_KEY_ALIAS: ${{ secrets.ANDROID_KEY_ALIAS }} ANDROID_KEY_PASSWORD: ${{ secrets.ANDROID_KEY_PASSWORD }} + + # Advance the fingerprint baseline only after BOTH native builds have shipped + # the new native surface. This replaces the old actions/cache baseline, which + # only advanced on cache eviction and so silently froze - freezing meant every + # fingerprint looked changed and OTA updates stopped deploying entirely. + # + # On the native-build path, this runs only after both builds succeed. A + # successful OTA deploy also records its fingerprint, refreshing the + # persistent marker's retention without changing the native baseline. + # + # The persistent artifact replaces the old actions/cache marker without + # requiring a PAT or mutable repository variable. Each successful deploy adds + # an immutable marker; the next run reads the newest non-expired one using the + # built-in GITHUB_TOKEN. + recordBaseline: + name: Record fingerprint baseline + runs-on: ubuntu-latest + needs: [bundleDeploy, buildIfNecessaryIOS, buildIfNecessaryAndroid] + if: ${{ always() && + (inputs.channel || 'testflight') == 'testflight' && + needs.bundleDeploy.result == 'success' && + (needs.bundleDeploy.outputs.changes-detected != 'true' || + (needs.buildIfNecessaryIOS.result == 'success' && + needs.buildIfNecessaryAndroid.result == 'success')) && + github.repository == 'bluesky-social/social-app' }} + permissions: + actions: read + steps: + - name: โฌ‡๏ธ Download native fingerprint + uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 + with: + name: native-fingerprint-${{ github.run_id }} + + - name: ๐Ÿง Validate native fingerprint + run: > + jq -e '.sources | type == "array"' native-fingerprint.json >/dev/null || + (echo "::error::native fingerprint artifact was invalid; refusing to record it as the baseline." && exit 1) + + - name: ๐Ÿš€ Record fingerprint baseline + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 + with: + name: testflight-native-fingerprint + path: native-fingerprint.json + retention-days: 90 + if-no-files-found: error diff --git a/.github/workflows/claude-mention.yml b/.github/workflows/claude-mention.yml index 3e22d05f6c..5ddf02b157 100644 --- a/.github/workflows/claude-mention.yml +++ b/.github/workflows/claude-mention.yml @@ -53,19 +53,19 @@ jobs: cancel-in-progress: false steps: - - name: Checkout repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Checkout repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 1 - - name: Configure AWS credentials (OIDC) - uses: aws-actions/configure-aws-credentials@517a711dbcd0e402f90c77e7e2f81e849156e31d # v6.2.2 + - name: โ˜๏ธ Configure AWS credentials (OIDC) + uses: aws-actions/configure-aws-credentials@e6de054238d6b7531b4efff3b6587d9aade6a06c # v6.2.3 with: role-to-assume: ${{ secrets.AWS_BEDROCK_REVIEW_ROLE_ARN }} aws-region: us-east-2 - - name: Claude - uses: anthropics/claude-code-action@e90deca47693f9457b72f2b53c17d7c445a87342 # v1.0.171 + - name: ๐Ÿค– Claude + uses: anthropics/claude-code-action@be7b93b1907a4abad570368f3c74b6fe3807510b # v1.0.183 with: use_bedrock: 'true' additional_permissions: | diff --git a/.github/workflows/claude-review.yml b/.github/workflows/claude-review.yml index 35587011c6..bcb9a09e3c 100644 --- a/.github/workflows/claude-review.yml +++ b/.github/workflows/claude-review.yml @@ -39,19 +39,19 @@ jobs: cancel-in-progress: true steps: - - name: Checkout repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Checkout repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 1 - - name: Configure AWS credentials (OIDC) - uses: aws-actions/configure-aws-credentials@517a711dbcd0e402f90c77e7e2f81e849156e31d # v6.2.2 + - name: โ˜๏ธ Configure AWS credentials (OIDC) + uses: aws-actions/configure-aws-credentials@e6de054238d6b7531b4efff3b6587d9aade6a06c # v6.2.3 with: role-to-assume: ${{ secrets.AWS_BEDROCK_REVIEW_ROLE_ARN }} aws-region: us-east-2 - - name: Claude review - uses: anthropics/claude-code-action@e90deca47693f9457b72f2b53c17d7c445a87342 # v1.0.171 + - name: ๐Ÿค– Claude review + uses: anthropics/claude-code-action@be7b93b1907a4abad570368f3c74b6fe3807510b # v1.0.183 with: use_bedrock: 'true' additional_permissions: | diff --git a/.github/workflows/golang-test-lint.yml b/.github/workflows/golang-test-lint.yml index ff0daf251d..829deb3669 100644 --- a/.github/workflows/golang-test-lint.yml +++ b/.github/workflows/golang-test-lint.yml @@ -17,32 +17,32 @@ jobs: build-and-test: runs-on: ubuntu-latest steps: - - name: Git Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - - name: Set up Go tooling - uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0 + - name: โฌ‡๏ธ Git Checkout + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - name: ๐Ÿ”ง Set up Go tooling + uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 with: go-version-file: bskyweb/go.mod cache-dependency-path: bskyweb/go.sum - - name: Dummy Static Files + - name: ๐Ÿ“„ Dummy Static Files run: touch bskyweb/static/js/blah.js && touch bskyweb/static/css/blah.txt && touch bskyweb/static/media/blah.txt - - name: Check + - name: ๐Ÿ” Check run: cd bskyweb/ && make check - - name: Build (binary) + - name: ๐Ÿ—๏ธ Build (binary) run: cd bskyweb/ && make build - - name: Test + - name: ๐Ÿงช Test run: cd bskyweb/ && make test lint: runs-on: ubuntu-latest steps: - - name: Git Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - - name: Set up Go tooling - uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0 + - name: โฌ‡๏ธ Git Checkout + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - name: ๐Ÿ”ง Set up Go tooling + uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 with: go-version-file: bskyweb/go.mod cache-dependency-path: bskyweb/go.sum - - name: Dummy Static Files + - name: ๐Ÿ“„ Dummy Static Files run: touch bskyweb/static/js/blah.js && touch bskyweb/static/css/blah.txt && touch bskyweb/static/media/blah.txt - - name: Lint + - name: ๐Ÿงน Lint run: cd bskyweb/ && make lint diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a3f43dd99c..280bf660ad 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -24,9 +24,9 @@ jobs: job: [lint, prettier, 'typecheck:ios', 'typecheck:android', 'typecheck:web'] steps: - - name: Check out Git repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - - name: Verify Node version pins match package.json + - name: โฌ‡๏ธ Check out Git repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + - name: ๐Ÿ” Verify Node version pins match package.json run: | set -euo pipefail expected=$(node -p "require('./package.json').engines.node.replace(/[^0-9.]/g, '')") @@ -52,16 +52,16 @@ jobs: check "eas.json" "$v" exit $rc - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 - - name: Install node + - name: ๐Ÿ”ง Install node uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version-file: package.json cache: pnpm - - name: pnpm install + - name: ๐Ÿ“ฆ pnpm install run: pnpm install --frozen-lockfile - - name: Check & compile i18n + - name: ๐Ÿ”ค Check & compile i18n run: pnpm intl:build - - name: Lint checks + - name: ๐Ÿงน Lint checks run: pnpm ${{ matrix.job }} # Aggregates the matrix results into a single stable check name so branch # protection can require "Run linters" regardless of how many matrix jobs run. @@ -73,7 +73,7 @@ jobs: needs: [linting] runs-on: ubuntu-latest steps: - - name: Require linting to have succeeded + - name: โœ… Require linting to have succeeded env: RESULT: ${{ needs.linting.result }} run: | @@ -87,19 +87,19 @@ jobs: matrix: shard: [1, 2, 3, 4] steps: - - name: Check out Git repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Check out Git repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 - - name: Install node + - name: ๐Ÿ”ง Install node uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version-file: package.json cache: pnpm - - name: pnpm install + - name: ๐Ÿ“ฆ pnpm install run: pnpm install --frozen-lockfile - - name: Check & compile i18n + - name: ๐Ÿ”ค Check & compile i18n run: pnpm intl:build - - name: Run tests + - name: ๐Ÿงช Run tests run: | NODE_ENV=test pnpm test --forceExit --shard=${{ matrix.shard }}/${{ strategy.job-total }} # Aggregates the sharded test results into a single stable check name so branch @@ -112,7 +112,7 @@ jobs: needs: [testing] runs-on: ubuntu-latest steps: - - name: Require testing to have succeeded + - name: โœ… Require testing to have succeeded env: RESULT: ${{ needs.testing.result }} run: | diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index 53fc480e89..bd5b9ba351 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -25,7 +25,7 @@ jobs: notes: ${{ steps.notes.outputs.notes }} steps: - name: โฌ‡๏ธ Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 0 @@ -144,7 +144,7 @@ jobs: } >> "$GITHUB_OUTPUT" - name: ๐Ÿ”” Notify Slack - uses: slackapi/slack-github-action@0d95c9a7becc1e6e297d76df9bc735c44f4cbcbc # v3.0.5 + uses: slackapi/slack-github-action@dcb1066f776dd043e64d0e8ba94ca15cc7e1875d # v4.0.0 with: webhook: ${{ secrets.NIGHTLY_BUILDS_SLACK_WEBHOOK }} webhook-type: incoming-webhook @@ -174,7 +174,7 @@ jobs: } >> "$GITHUB_OUTPUT" - name: ๐Ÿ”” Notify Slack - uses: slackapi/slack-github-action@0d95c9a7becc1e6e297d76df9bc735c44f4cbcbc # v3.0.5 + uses: slackapi/slack-github-action@dcb1066f776dd043e64d0e8ba94ca15cc7e1875d # v4.0.0 with: webhook: ${{ secrets.NIGHTLY_BUILDS_SLACK_WEBHOOK }} webhook-type: incoming-webhook diff --git a/.github/workflows/nightly-e2e.yml b/.github/workflows/nightly-e2e.yml index 1b2a5282a5..9eb779ddac 100644 --- a/.github/workflows/nightly-e2e.yml +++ b/.github/workflows/nightly-e2e.yml @@ -28,41 +28,41 @@ jobs: runs-on: macos-26-xlarge timeout-minutes: 120 steps: - - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Checkout + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - - name: Select Xcode 26.4 + - name: ๐Ÿ› ๏ธ Select Xcode 26.4 uses: maxim-lobanov/setup-xcode@ed7a3b1fda3918c0306d1b724322adc0b8cc0a90 # v1.7.0 with: xcode-version: "26.4" - - name: Prepare E2E configuration + - name: ๐Ÿงฐ Prepare E2E configuration run: | mkdir -p artifacts/ios echo "Installing dependencies" > artifacts/ios/phase.txt - cp .env.example .env.test + cp .env.example .env.development cp google-services.json.example google-services.json - - name: Set up Expo project + - name: ๐Ÿ”ง Set up Expo project uses: ./.github/actions/setup-expo-project with: expo-token: ${{ secrets.EXPO_TOKEN }} - - name: Set up Java 17 - uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0 + - name: โ˜•๏ธ Set up Java 17 + uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5.6.0 with: distribution: temurin java-version: "17" - - name: Install dev-env dependencies + - name: ๐Ÿ“ฆ Install dev-env dependencies run: pnpm --dir dev-env install --frozen-lockfile 2>&1 | tee artifacts/ios/dependencies.log - - name: Compile translations + - name: ๐Ÿ”ค Compile translations uses: ./.github/actions/compile-i18n - - name: Install Maestro 2.6.1 + - name: ๐Ÿ“ฅ Install Maestro 2.6.1 run: | echo "Installing Maestro" > artifacts/ios/phase.txt curl -fsSL -o "$RUNNER_TEMP/maestro.zip" \ @@ -74,7 +74,7 @@ jobs: "$RUNNER_TEMP/maestro/bin/maestro" --version | tee artifacts/ios/maestro-version.log test "$("$RUNNER_TEMP/maestro/bin/maestro" --version)" = "$MAESTRO_VERSION" - - name: Boot one iOS simulator + - name: ๐Ÿ“ฑ Boot one iOS simulator run: | echo "Booting iOS simulator" > artifacts/ios/phase.txt device_name="iPhone 17" @@ -112,10 +112,10 @@ jobs: xcrun simctl bootstatus "$udid" -b echo "Using $device_name on $runtime_name ($udid)" - - name: Mark iOS development client build phase + - name: ๐Ÿท๏ธ Mark iOS development client build phase run: echo "Building the iOS development client" > artifacts/ios/phase.txt - - name: Build iOS development client + - name: ๐Ÿ—๏ธ Build iOS development client uses: ./.github/actions/eas-local-build with: platform: ios @@ -123,7 +123,7 @@ jobs: output: ${{ runner.temp }}/nightly-e2e-ios.tar.gz log-path: artifacts/ios/build.log - - name: Install iOS development client + - name: ๐Ÿ“ฒ Install iOS development client run: | build_contents="$RUNNER_TEMP/nightly-e2e-ios-build" mkdir -p "$build_contents" @@ -135,14 +135,14 @@ jobs: fi xcrun simctl install "$IOS_UDID" "$app_path" 2>&1 | tee -a artifacts/ios/build.log - - name: Run iOS Maestro suite + - name: ๐Ÿงช Run iOS Maestro suite run: .github/scripts/run-nightly-e2e.sh ios "$IOS_UDID" - - name: Clean up iOS services and simulator + - name: ๐Ÿงน Clean up iOS services and simulator if: always() run: .github/scripts/cleanup-nightly-e2e.sh ios "${IOS_UDID:-}" - - name: Upload iOS E2E artifacts + - name: ๐Ÿš€ Upload iOS E2E artifacts if: always() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: @@ -158,36 +158,36 @@ jobs: runs-on: Linux-x64-32core timeout-minutes: 120 steps: - - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Checkout + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - - name: Prepare E2E configuration + - name: ๐Ÿงฐ Prepare E2E configuration run: | mkdir -p artifacts/android echo "Installing dependencies" > artifacts/android/phase.txt - cp .env.example .env.test + cp .env.example .env.development cp google-services.json.example google-services.json - - name: Set up Expo project + - name: ๐Ÿ”ง Set up Expo project uses: ./.github/actions/setup-expo-project with: expo-token: ${{ secrets.EXPO_TOKEN }} - - name: Set up Java 17 - uses: actions/setup-java@0f481fcb613427c0f801b606911222b5b6f3083a # v5.5.0 + - name: โ˜•๏ธ Set up Java 17 + uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5.6.0 with: distribution: temurin java-version: "17" - - name: Install dev-env dependencies + - name: ๐Ÿ“ฆ Install dev-env dependencies run: pnpm --dir dev-env install --frozen-lockfile 2>&1 | tee artifacts/android/dependencies.log - - name: Compile translations + - name: ๐Ÿ”ค Compile translations uses: ./.github/actions/compile-i18n - - name: Install Maestro 2.6.1 + - name: ๐Ÿ“ฅ Install Maestro 2.6.1 run: | echo "Installing Maestro" > artifacts/android/phase.txt curl -fsSL -o "$RUNNER_TEMP/maestro.zip" \ @@ -199,7 +199,7 @@ jobs: "$RUNNER_TEMP/maestro/bin/maestro" --version | tee artifacts/android/maestro-version.log test "$("$RUNNER_TEMP/maestro/bin/maestro" --version)" = "$MAESTRO_VERSION" - - name: Install and boot one Android emulator + - name: ๐Ÿ“ฑ Install and boot one Android emulator run: | echo "Booting Android emulator" > artifacts/android/phase.txt android_sdk="${ANDROID_SDK_ROOT:-${ANDROID_HOME:-/usr/local/lib/android/sdk}}" @@ -299,10 +299,10 @@ jobs: adb -s emulator-5554 shell settings put global transition_animation_scale 0 adb -s emulator-5554 shell settings put global animator_duration_scale 0 - - name: Mark Android development client build phase + - name: ๐Ÿท๏ธ Mark Android development client build phase run: echo "Building the Android development client" > artifacts/android/phase.txt - - name: Build Android development client + - name: ๐Ÿ—๏ธ Build Android development client uses: ./.github/actions/eas-local-build with: platform: android @@ -310,15 +310,15 @@ jobs: output: ${{ runner.temp }}/nightly-e2e-android.apk log-path: artifacts/android/build.log - - name: Install Android development client + - name: ๐Ÿ“ฒ Install Android development client run: | adb -s emulator-5554 install -r "$RUNNER_TEMP/nightly-e2e-android.apk" \ 2>&1 | tee -a artifacts/android/build.log - - name: Run Android Maestro suite + - name: ๐Ÿงช Run Android Maestro suite run: .github/scripts/run-nightly-e2e.sh android emulator-5554 - - name: Capture emulator crash diagnostics + - name: ๐Ÿฉบ Capture emulator crash diagnostics if: always() run: | { @@ -338,11 +338,11 @@ jobs: ls -la /tmp/android-runner/emu-crash-*.db 2>/dev/null || echo "No crash database found" } > artifacts/android/emulator-diagnostics.log 2>&1 - - name: Clean up Android services and emulator + - name: ๐Ÿงน Clean up Android services and emulator if: always() run: .github/scripts/cleanup-nightly-e2e.sh android emulator-5554 - - name: Upload Android E2E artifacts + - name: ๐Ÿš€ Upload Android E2E artifacts if: always() uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: @@ -360,26 +360,26 @@ jobs: actions: read contents: read steps: - - name: Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Checkout + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - - name: Download iOS artifacts + - name: โฌ‡๏ธ Download iOS artifacts continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: name: nightly-e2e-ios-${{ github.run_id }} path: downloaded-artifacts/ios - - name: Download Android artifacts + - name: โฌ‡๏ธ Download Android artifacts continue-on-error: true uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1 with: name: nightly-e2e-android-${{ github.run_id }} path: downloaded-artifacts/android - - name: Resolve artifact links + - name: ๐Ÿ”— Resolve artifact links env: GH_TOKEN: ${{ github.token }} run: | @@ -395,7 +395,7 @@ jobs: }' artifact-response.json > artifact-links.json fi - - name: Summarize platform results + - name: ๐Ÿ“Š Summarize platform results id: summary env: IOS_STATUS: ${{ needs.ios.result }} @@ -415,9 +415,9 @@ jobs: echo "payload=$(jq -c .payload e2e-summary.json)" >> "$GITHUB_OUTPUT" jq -r .githubSummary e2e-summary.json >> "$GITHUB_STEP_SUMMARY" - - name: Notify Slack of E2E failures + - name: ๐Ÿ”” Notify Slack of E2E failures if: steps.summary.outputs.notify == 'true' - uses: slackapi/slack-github-action@0d95c9a7becc1e6e297d76df9bc735c44f4cbcbc # v3.0.5 + uses: slackapi/slack-github-action@dcb1066f776dd043e64d0e8ba94ca15cc7e1875d # v4.0.0 with: webhook: ${{ secrets.E2E_FAILURES_SLACK_WEBHOOK }} webhook-type: incoming-webhook diff --git a/.github/workflows/nightly-update-source-languages.yaml b/.github/workflows/nightly-update-source-languages.yaml index 32ba5e811f..2fb3fffd78 100644 --- a/.github/workflows/nightly-update-source-languages.yaml +++ b/.github/workflows/nightly-update-source-languages.yaml @@ -15,27 +15,27 @@ jobs: contents: write steps: - - name: Check out Git repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Check out Git repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: ssh-key: ${{secrets.GH_ACTION_DEPLOY_KEY}} - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 - - name: Install node + - name: ๐Ÿ”ง Install node uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version-file: package.json cache: pnpm - - name: pnpm install + - name: ๐Ÿ“ฆ pnpm install run: pnpm install --frozen-lockfile - - name: Extract language strings + - name: ๐Ÿ”ค Extract language strings run: pnpm intl:extract - - name: Create commit + - name: ๐Ÿ“ Create commit uses: stefanzweifel/git-auto-commit-action@4a55954c782fc1ea30b9056cd3e7a2b40ca8887d # v7.2.0 with: commit_message: Nightly source-language update file_pattern: ./src/locale/locales/en/messages.po - - name: Push source lang to Crowdin - uses: crowdin/github-action@52aa776766211d83d975df51f3b9c53c2f8ba35f # v2.16.3 + - name: ๐Ÿš€ Push source lang to Crowdin + uses: crowdin/github-action@c7af9bc98b01694653031fef2a0dc6c7888ce9bc # v2.17.0 with: upload_sources: true upload_sources_args: "-b main" diff --git a/.github/workflows/pull-request-comment.yml b/.github/workflows/pull-request-comment.yml deleted file mode 100644 index 944801326a..0000000000 --- a/.github/workflows/pull-request-comment.yml +++ /dev/null @@ -1,221 +0,0 @@ ---- -name: PR Comment Trigger - -on: - issue_comment: - types: [created] - -# Permissions are granted per-job below; anything unlisted defaults to none -permissions: {} - -jobs: - handle-comment: - if: github.event.issue.pull_request - runs-on: ubuntu-latest - permissions: - contents: read - 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 [[ "$COMMENT" == *"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 commenter has write access - if: steps.check-mention.outputs.mentioned == 'true' - id: check-org - uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 - 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' - permissions: - contents: read - pull-requests: write - - steps: - - name: Get PR HEAD SHA - env: - ISSUE_NUMBER: ${{ github.event.issue.number }} - id: pr-info - uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 - with: - script: | - const pr = await github.rest.pulls.get({ - owner: context.repo.owner, - repo: context.repo.repo, - pull_number: process.env.ISSUE_NUMBER, - }); - - // This workflow runs with repo secrets in scope, so never build - // code from a fork: the commenter authorizes the deploy, but a - // fork controls what code would run during it - const expected = `${context.repo.owner}/${context.repo.repo}`; - const head = pr.data.head.repo?.full_name; - if (head !== expected) { - core.setFailed(`OTA deploys are only allowed for branches in ${expected}, not forks (got ${head})`); - return; - } - - 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@5770ad5eb8f42dd2c4f34da00c94c5381e49af88 # v3.0.5 - 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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - with: - ref: ${{ steps.pr-info.outputs.head-sha }} - - - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 - - - name: ๐Ÿ”ง Setup Node - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 - with: - node-version-file: package.json - cache: pnpm - - - name: Install dependencies - run: pnpm install --frozen-lockfile - - - name: ๐Ÿ”ค Compile translations - run: pnpm 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: Lint check - run: pnpm lint - - - name: Type check - run: pnpm typecheck - - - name: ๐Ÿ”จ Setup EAS - uses: expo/expo-github-action@eab7a230208c952974db8c3245cfd78402c7b385 # 9.0.0 - with: - eas-version: '19.0.5' - packager: 'pnpm --allow-build=dtrace-provider' - token: ${{ secrets.EXPO_TOKEN }} - - - name: ๐Ÿช› Setup jq - uses: dcarbone/install-jq-action@4fcb5062d7ce9bc4382d1a352d19ba3ba2c317c1 # v4.0.1 - - - 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 }} - pnpm export - - - name: ๐Ÿ“ฆ Package Bundle and ๐Ÿš€ Deploy - run: pnpm 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@5770ad5eb8f42dd2c4f34da00c94c5381e49af88 # v3.0.5 - env: - ISSUE_NUMBER: ${{ github.event.issue.number }} - 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 either scanning the QR code or 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@5770ad5eb8f42dd2c4f34da00c94c5381e49af88 # v3.0.5 - 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 264ee5d311..16566672a6 100644 --- a/.github/workflows/pull-request-commit.yml +++ b/.github/workflows/pull-request-commit.yml @@ -15,9 +15,14 @@ concurrency: # Permissions are granted per-job below; anything unlisted defaults to none. # pull-requests: write is needed by sticky-pull-request-comment to post the -# bundle-size and fingerprint diffs +# bundle-size and fingerprint diffs and the PR OTA install link permissions: {} +# denis release tag in bluesky-social/tango whose linux-amd64 binary the PR OTA +# job downloads. Bump this one line to roll denis. +env: + DENIS_RELEASE_TAG: denis-v0.1.1 + jobs: # Populate this from main so every PR can restore the same trusted baseline. webpack-analyzer-base: @@ -27,7 +32,7 @@ jobs: contents: read steps: - name: โฌ‡๏ธ Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 @@ -66,7 +71,7 @@ jobs: pull-requests: write steps: - name: โฌ‡๏ธ Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 0 @@ -78,7 +83,7 @@ jobs: node-version-file: package.json cache: pnpm - - name: Ensure tracking relevant branches and checkout base + - name: ๐ŸŒฟ Ensure tracking relevant branches and checkout base env: HEAD_REF: ${{ github.head_ref }} BASE_REF: ${{ github.base_ref }} @@ -86,13 +91,13 @@ jobs: git checkout $HEAD_REF git checkout $BASE_REF - - name: Get the base commit + - name: ๐Ÿ” Get the base commit id: base-commit env: BASE_REF: ${{ github.base_ref }} run: echo base-commit=$(git log -n 1 $BASE_REF --pretty=format:'%H') >> "$GITHUB_OUTPUT" - - name: Merge PR commit + - name: ๐Ÿ”€ Merge PR commit env: HEAD_REF: ${{ github.head_ref }} run: | @@ -116,7 +121,7 @@ jobs: path: stats.json key: stats-base-main-${{ steps.base-commit.outputs.base-commit }} - - name: Restore to base commit + - name: โช Restore to base commit if: ${{ !steps.get-base-stats.outputs.cache-hit }} env: BASE_COMMIT: ${{ steps.base-commit.outputs.base-commit }} @@ -155,9 +160,13 @@ jobs: permissions: contents: read pull-requests: write + outputs: + # Empty when the native surface is unchanged, 'true' when it changed. + # publish-pr-ota gates on this. + includes-changes: ${{ steps.fingerprint.outputs.includes-changes }} steps: - name: โฌ‡๏ธ Checkout - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 100 @@ -176,7 +185,7 @@ jobs: - name: ๐Ÿ“ท Check fingerprint and install dependencies id: fingerprint timeout-minutes: 5 - uses: bluesky-social/github-actions/fingerprint-native@b5556913e4aef3964cfd5936d0add3fc0d809bdb # v0.2.0 + uses: bluesky-social/github-actions/fingerprint-native@abc6a46eb4badf243f55bfd7d6cec42722456300 # v0.3.0 with: profile: pull-request @@ -205,6 +214,16 @@ jobs: header: fingerprint-diff delete: true + # publish-pr-ota is skipped once the fingerprint changes, so any install + # link left over from an earlier fingerprint-clean commit on this PR now + # points at a bundle that no longer matches the PR. Drop it. + - name: ๐Ÿ’ฌ Delete stale OTA install comment + uses: marocchino/sticky-pull-request-comment@5770ad5eb8f42dd2c4f34da00c94c5381e49af88 # v3.0.5 + if: ${{ steps.fingerprint.outputs.includes-changes }} + with: + header: pull-request-ota + delete: true + - name: ๐Ÿท๏ธ Label as fingerprint changed if: ${{ steps.fingerprint.outputs.includes-changes }} env: @@ -220,3 +239,140 @@ jobs: PR_NUMBER: ${{ github.event.pull_request.number }} run: | gh pr edit "$PR_NUMBER" --remove-label "bot: fingerprint changed" || true + + # Automatic per-PR OTA preview, published to the pull-request- channel on + # denis. Replaces the old `@github-actions ota` comment trigger. Gated to + # same-repo PRs (fork guard): a branch can only exist in this repo if someone + # with write access pushed it, so an outside contributor (who can only open a + # PR from a fork) never runs this job with the denis publish role in scope. + # This matches the fork-guard gate the other jobs in this workflow use; + # author_association is deliberately NOT checked (it can't identify a private + # org member and would skip their PRs). + # + # Bot authors are excluded: Dependabot pushes in-repo branches, so it passes + # the fork guard, but GitHub withholds repo secrets from Dependabot-triggered + # runs. EXPO_TOKEN is then empty and the job fails at setup โ€” a red check on + # every dependabot PR. There is no OTA preview worth publishing for a + # dependency bump anyway. + # + # Gated on a clean fingerprint-native run: an OTA can only carry JS, so once + # the native surface changes the published bundle no longer represents the PR + # and installing it on a store/TestFlight client is misleading at best. Those + # PRs need a native build instead. A skipped or failed fingerprint job also + # skips this one - without a verdict we can't say the OTA is representative. + publish-pr-ota: + name: Publish PR OTA to denis + needs: fingerprint-native + runs-on: ubuntu-latest + if: >- + github.event_name == 'pull_request' && + github.event.pull_request.head.repo.full_name == github.repository && + github.event.pull_request.user.type != 'Bot' && + needs.fingerprint-native.outputs.includes-changes != 'true' + concurrency: + group: pr-ota-${{ github.event.pull_request.number }} + cancel-in-progress: true + permissions: + id-token: write + contents: read + outputs: + release-version: ${{ steps.env.outputs.release-version }} + ios-build-number: ${{ steps.build-info.outputs.BSKY_IOS_BUILD_NUMBER }} + android-build-number: ${{ steps.build-info.outputs.BSKY_ANDROID_VERSION_CODE }} + steps: + - name: โฌ‡๏ธ Checkout + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + with: + ref: ${{ github.event.pull_request.head.sha }} + + - name: ๐Ÿ› ๏ธ Setup Expo project + uses: ./.github/actions/setup-expo-project + with: + expo-token: ${{ secrets.EXPO_TOKEN }} + + - name: ๐Ÿ”ค Compile translations + uses: ./.github/actions/compile-i18n + + - name: โœ๏ธ Write environment variables + id: env + uses: ./.github/actions/write-env + with: + env-token: ${{ secrets.ENV_TOKEN }} + sentry-dsn: ${{ secrets.SENTRY_DSN }} + bitdrift-api-key: ${{ secrets.BITDRIFT_API_KEY }} + gcp-project-id: ${{ secrets.EXPO_PUBLIC_GCP_PROJECT_ID }} + google-services-token: ${{ secrets.GOOGLE_SERVICES_TOKEN }} + expo-public-env: testflight + + - name: ๐Ÿ—๏ธ Create Bundle + run: > + SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }} + SENTRY_RELEASE=${{ steps.env.outputs.release-version }} + SENTRY_DIST=${{ steps.env.outputs.bundle-identifier }} + pnpm export + + - name: โ˜๏ธ Configure AWS credentials (denis, PR-scoped) + uses: aws-actions/configure-aws-credentials@e6de054238d6b7531b4efff3b6587d9aade6a06c # v6.2.3 + with: + role-to-assume: arn:aws:iam::007404326489:role/denis-ci-publish-pr + aws-region: us-east-2 + # Defense-in-depth: the base role is already scoped to pr/*, but narrow + # this session further to just THIS PR's prefix so a bug can't write to + # another PR's objects or the prod tree. + inline-session-policy: |- + { + "Version": "2012-10-17", + "Statement": [ + { + "Effect": "Allow", + "Action": ["s3:PutObject", "s3:DeleteObject"], + "Resource": "arn:aws:s3:::bsky-denis-ota-prod/pr/${{ github.event.pull_request.number }}/*" + }, + { + "Effect": "Allow", + "Action": "s3:ListBucket", + "Resource": "arn:aws:s3:::bsky-denis-ota-prod", + "Condition": { + "StringLike": { "s3:prefix": "pr/${{ github.event.pull_request.number }}/*" } + } + } + ] + } + + - name: โฌ‡๏ธ Setup denis CLI + uses: ./.github/actions/setup-denis + with: + release-tag: ${{ env.DENIS_RELEASE_TAG }} + app-id: ${{ vars.SYNC_INTERNAL_APP_ID }} + private-key: ${{ secrets.SYNC_INTERNAL_PK }} + + - name: ๐Ÿ”ข Get native build numbers + id: build-info + run: bash scripts/setGitHubOutput.sh + + - name: ๐Ÿš€ Publish OTA to denis (S3) + run: pnpm use-build-number bash scripts/denisPublish.sh + env: + RUNTIME_VERSION: '' + CHANNEL_NAME: pull-request-${{ github.event.pull_request.number }} + # Pin the publish to the same values exposed in the install link. + BSKY_IOS_BUILD_NUMBER: ${{ steps.build-info.outputs.BSKY_IOS_BUILD_NUMBER }} + BSKY_ANDROID_VERSION_CODE: ${{ steps.build-info.outputs.BSKY_ANDROID_VERSION_CODE }} + + comment-pr-ota: + name: Comment PR OTA install link + needs: publish-pr-ota + runs-on: ubuntu-latest + permissions: + pull-requests: write + steps: + - name: ๐Ÿ’ฌ Drop OTA install comment + uses: marocchino/sticky-pull-request-comment@5770ad5eb8f42dd2c4f34da00c94c5381e49af88 # v3.0.5 + with: + header: pull-request-ota + message: | + The OTA deployment for this PR was successful! You may now apply it by either scanning the QR code or opening the deep link below in your browser: + + QR code for the PR OTA deployment + + `bluesky://intent/apply-ota?channel=pull-request-${{ github.event.pull_request.number }}&releaseVersion=${{ needs.publish-pr-ota.outputs.release-version }}&iosBuildNumber=${{ needs.publish-pr-ota.outputs.ios-build-number }}&androidBuildNumber=${{ needs.publish-pr-ota.outputs.android-build-number }}` diff --git a/.github/workflows/sync-internal.yaml b/.github/workflows/sync-internal.yaml index b816b07f5b..b48aecd719 100644 --- a/.github/workflows/sync-internal.yaml +++ b/.github/workflows/sync-internal.yaml @@ -13,14 +13,14 @@ jobs: runs-on: ubuntu-latest if: github.repository == 'bluesky-social/social-app' steps: - - name: Checkout public repo - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Checkout public repo + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 0 # Don't persist the checkout auth header; the push below authenticates # with the app token embedded in the remote URL instead persist-credentials: false - - name: Generate GitHub App Token + - name: ๐Ÿ”‘ Generate GitHub App Token id: app-token uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0 with: @@ -33,7 +33,7 @@ jobs: # .github/workflows/, which GitHub refuses to push without it. permission-contents: write permission-workflows: write - - name: Push to internal repo + - name: ๐Ÿš€ Push to internal repo env: TOKEN: ${{ steps.app-token.outputs.token }} run: | diff --git a/.github/workflows/verify-pnpm-lock.yml b/.github/workflows/verify-pnpm-lock.yml index 407ca6a345..74c1cfbb81 100644 --- a/.github/workflows/verify-pnpm-lock.yml +++ b/.github/workflows/verify-pnpm-lock.yml @@ -14,33 +14,33 @@ jobs: name: No manual pnpm-lock.yaml edits runs-on: ubuntu-latest steps: - - name: Check out PR HEAD - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Check out PR HEAD + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 0 - - name: Fetch base branch + - name: โฌ‡๏ธ Fetch base branch env: BASE_REF: ${{ github.base_ref }} run: git fetch origin $BASE_REF --depth=1 - uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 - - name: Install node + - name: ๐Ÿ”ง Install node uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version-file: package.json - - name: Reset pnpm-lock.yaml to base + - name: โช Reset pnpm-lock.yaml to base env: BASE_REF: ${{ github.base_ref }} run: git show "origin/$BASE_REF:pnpm-lock.yaml" > pnpm-lock.yaml - - name: pnpm install + - name: ๐Ÿ“ฆ pnpm install # Fine to skip scripts since we don't run any code run: pnpm clean && pnpm install --ignore-scripts --no-frozen-lockfile - - name: Verify pnpm-lock.yaml + - name: ๐Ÿ” Verify pnpm-lock.yaml run: | git diff --quiet --exit-code || { echo '::error::`pnpm-lock.yaml` does not match what pnpm would generate given the base `pnpm-lock.yaml` and the head `package.json`.' diff --git a/.github/workflows/zizmor.yml b/.github/workflows/zizmor.yml index b7b7b371a5..dac6025ee2 100644 --- a/.github/workflows/zizmor.yml +++ b/.github/workflows/zizmor.yml @@ -20,13 +20,13 @@ jobs: name: Audit workflows with zizmor runs-on: ubuntu-latest steps: - - name: Check out Git repository - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 + - name: โฌ‡๏ธ Check out Git repository + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - - name: Run zizmor - uses: zizmorcore/zizmor-action@192e21d79ab29983730a13d1382995c2307fbcaa # v0.5.7 + - name: ๐Ÿ›ก๏ธ Run zizmor + uses: zizmorcore/zizmor-action@6fc4b006235f201fdab3722e17240ab420d580e5 # v0.6.1 with: # Annotate the PR directly instead of uploading SARIF to the # security tab, and fail the check on any finding diff --git a/.gitignore b/.gitignore index 4ce9e397dc..8a38445859 100644 --- a/.gitignore +++ b/.gitignore @@ -134,3 +134,6 @@ bskyweb/static/media/*.svg # superpowers plugin plans/specs โ€” local-only workspace docs/superpowers/ .claude/worktrees + +# pnpm +.pnpm-store/ diff --git a/app.config.js b/app.config.js index afbf998019..79dd1dc619 100644 --- a/app.config.js +++ b/app.config.js @@ -55,7 +55,6 @@ module.exports = function (_config) { icon: './assets/app-icons/ios_icon_default_next.png', userInterfaceStyle: 'automatic', primaryColor: '#006AFF', - newArchEnabled: false, ios: { supportsTablet: false, bundleIdentifier: 'xyz.blueskyweb.app', diff --git a/babel.config.js b/babel.config.js index 24bdde26f2..c29a1d2e44 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,6 +1,8 @@ +/** + * @param {import("@babel/core").ConfigAPI} api + * @returns {import("@babel/core").InputOptions} + */ module.exports = function (api) { - api.cache(true) - const isTestEnv = process.env.NODE_ENV === 'test' return { presets: [ [ @@ -10,7 +12,7 @@ module.exports = function (api) { native: { // Disable ESM -> CJS compilation because Metro takes care of it. // However, we need it in Jest tests since those run without Metro. - disableImportExportTransform: !isTestEnv, + disableImportExportTransform: !api.env('test'), }, }, ], @@ -29,15 +31,15 @@ module.exports = function (api) { }, }, ], - 'react-native-reanimated/plugin', // NOTE: this plugin MUST be last + + // cannot use `env` field because it will put them after + // the `react-native-worklets/plugin` plugin + ...(api.env('test') + ? ['@babel/plugin-transform-class-static-block'] + : []), + ...(api.env('production') ? ['transform-remove-console'] : []), + + 'react-native-worklets/plugin', // NOTE: this plugin MUST be last ], - env: { - production: { - plugins: ['transform-remove-console'], - }, - test: { - plugins: ['@babel/plugin-transform-class-static-block'], - }, - }, } } diff --git a/bskyweb/go.mod b/bskyweb/go.mod index 5c475202ca..618ee2108a 100644 --- a/bskyweb/go.mod +++ b/bskyweb/go.mod @@ -29,7 +29,7 @@ require ( github.com/gogo/protobuf v1.3.2 // indirect github.com/google/uuid v1.4.0 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect - github.com/hashicorp/go-retryablehttp v0.7.5 // indirect + github.com/hashicorp/go-retryablehttp v0.7.7 // indirect github.com/hashicorp/golang-lru v1.0.2 // indirect github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect github.com/ipfs/bbloom v0.0.4 // indirect diff --git a/bskyweb/go.sum b/bskyweb/go.sum index 711cea77bb..9fd27eafef 100644 --- a/bskyweb/go.sum +++ b/bskyweb/go.sum @@ -17,6 +17,8 @@ github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 h1:8UrgZ3GkP4i/CLijOJx79Yu+etly github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0/go.mod h1:v57UDF4pDQJcEfFUCRop3lJL149eHGSe9Jvczhzjo/0= github.com/earthboundkid/versioninfo/v2 v2.24.1 h1:SJTMHaoUx3GzjjnUO1QzP3ZXK6Ee/nbWyCm58eY3oUg= github.com/earthboundkid/versioninfo/v2 v2.24.1/go.mod h1:VcWEooDEuyUJnMfbdTh0uFN4cfEIg+kHMuWB2CDCLjw= +github.com/fatih/color v1.16.0 h1:zmkK9Ngbjj+K0yRhTVONQh1p/HknKYSlNT+vZCzyokM= +github.com/fatih/color v1.16.0/go.mod h1:fL2Sau1YI5c0pdGEVCbKQbLXB6edEj1ZgiY4NijnWvE= github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg= github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/flosch/pongo2/v6 v6.0.0 h1:lsGru8IAzHgIAw6H2m4PCyleO58I40ow6apih0WprMU= @@ -40,10 +42,10 @@ github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGa github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= -github.com/hashicorp/go-hclog v0.9.2 h1:CG6TE5H9/JXsFWJCfoIVpKFIkFe6ysEuHirp4DxCsHI= -github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= -github.com/hashicorp/go-retryablehttp v0.7.5 h1:bJj+Pj19UZMIweq/iie+1u5YCdGrnxCT9yvm0e+Nd5M= -github.com/hashicorp/go-retryablehttp v0.7.5/go.mod h1:Jy/gPYAdjqffZ/yFGCFV2doI5wjtH1ewM9u8iYVjtX8= +github.com/hashicorp/go-hclog v1.6.3 h1:Qr2kF+eVWjTiYmU7Y31tYlP1h0q/X3Nl3tPGdaB11/k= +github.com/hashicorp/go-hclog v1.6.3/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVHBcfoyhpF5M= +github.com/hashicorp/go-retryablehttp v0.7.7 h1:C8hUCYzor8PIfXHa4UrZkU4VvK8o9ISHxT2Q8+VepXU= +github.com/hashicorp/go-retryablehttp v0.7.7/go.mod h1:pkQpWZeYWskR+D1tR2O5OcBFOxfA7DoAO6xtkuQnHTk= github.com/hashicorp/golang-lru v1.0.2 h1:dV3g9Z/unq5DpblPpw+Oqcv4dU/1omnb4Ok8iPY6p1c= github.com/hashicorp/golang-lru v1.0.2/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4= github.com/hashicorp/golang-lru/v2 v2.0.7 h1:a+bsQ5rvGLjzHuww6tVxozPZFVghXaHOwFs4luLUK2k= @@ -186,7 +188,6 @@ github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2 github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw= github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo= -github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4= github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= diff --git a/bskyweb/static/.well-known/assetlinks.json b/bskyweb/static/.well-known/assetlinks.json index 5ca12d5b31..c0ac8bd789 100644 --- a/bskyweb/static/.well-known/assetlinks.json +++ b/bskyweb/static/.well-known/assetlinks.json @@ -1,11 +1,16 @@ [ { - "relation": ["delegate_permission/common.handle_all_urls"], + "relation": [ + "delegate_permission/common.handle_all_urls", + "delegate_permission/common.get_login_creds" + ], "target": { "namespace": "android_app", "package_name": "xyz.blueskyweb.app", - "sha256_cert_fingerprints": - ["C1:4D:3C:6B:B5:D6:D9:AE:CF:C5:0B:BC:C1:9B:29:6D:D4:E6:87:46:36:D5:4C:1A:64:1C:14:08:BF:7E:F9:62", "FA:C6:17:45:DC:09:03:78:6F:B9:ED:E6:2A:96:2B:39:9F:73:48:F0:BB:6F:89:9B:83:32:66:75:91:03:3B:9C"] + "sha256_cert_fingerprints": [ + "C1:4D:3C:6B:B5:D6:D9:AE:CF:C5:0B:BC:C1:9B:29:6D:D4:E6:87:46:36:D5:4C:1A:64:1C:14:08:BF:7E:F9:62", + "FA:C6:17:45:DC:09:03:78:6F:B9:ED:E6:2A:96:2B:39:9F:73:48:F0:BB:6F:89:9B:83:32:66:75:91:03:3B:9C" + ] } } ] diff --git a/crowdin.yml b/crowdin.yml index e1f07515d1..4cd016cab3 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -1,3 +1,7 @@ +# Important: when a two letter code is ambiguous, we need +# to manually map it to the full locale code. This is done +# in the Crowdin language mapping config here: +# https://bluesky.crowdin.com/u/projects/1/languages { "project_id": "1", "base_url": "https://bluesky.api.crowdin.com", @@ -6,17 +10,7 @@ "files": [ { "source": "/src/locale/locales/en/messages.po", - "translation": "/src/locale/locales/%two_letters_code%/messages.po", - "languages_mapping": { - "two_letters_code": { - "pt": "pt-PT", - "pt-BR": "pt-BR", - "en-GB": "en-GB", - "zh-CN": "zh-CN", - "zh-TW": "zh-TW", - "zh-HK": "zh-HK" - } - } + "translation": "/src/locale/locales/%two_letters_code%/messages.po" } ] -} \ No newline at end of file +} diff --git a/docs/deploy-ota.md b/docs/deploy-ota.md index fce864c761..d582402672 100644 --- a/docs/deploy-ota.md +++ b/docs/deploy-ota.md @@ -52,29 +52,17 @@ have already been deployed for this release, incremement the branch name e.g. Cherry pick in the commits that need to be deployed on top of the most recent release or OTA. -### 5. Manually set build numbers +### 5. Pull translations -Log in to the EAS CLI with `eas login` and manually set the build numbers to the -values you found in **Step 1**. +Since translators may have added new strings, and positions within the code may +have shifted, it's typically best to pull the latest translations. -> [!NOTE] -> If you donโ€™t already have the EAS CLI, you can install it with `pnpm add -g eas-cli`. +Run this and commit the result as the last commit on the OTA branch. ```sh -> npx eas build:version:set -p ios -> -> Project @blueskysocial/bluesky with bundle identifier "xyz.blueskyweb.app" is configured with buildNumber 1011. -> โœ” What version would you like to set? โ€ฆ 1009 -> -> npx eas build:version:set -p android -> -> Project @blueskysocial/bluesky with application ID "xyz.blueskyweb.app" is configured with versionCode 641. -> โœ” What version would you like to set? โ€ฆ 639 +pnpm intl:release ``` -๐Ÿ‘‰ **Save the previous values,** in this case `1011` and `641`, so you can reset -them after the OTA completes. - ### 6. Run the GitHub actions You'll need to run two separate actions: one to deploy the iOS/Android OTA itself, and one to build the web Docker container. @@ -85,14 +73,20 @@ and run the action. | Steps | | | ----- | --- | -| Select your OTA branch `1.x.0-ota-x`, select `production` in the dropdown, enter the git tag of the latest release `1.x.0`, and click "Run workflow" | ![workflow](./img/ota_action.png) | +| Select your OTA branch `1.x.0-ota-x`, select `production` in the dropdown, enter the git tag of the latest release `1.x.0`, enter the iOS build number and Android version code you found in **Step 1**, and click "Run workflow" | ![workflow](./img/ota_action.png) | + +> [!NOTE] +> Production OTAs are bound to the specific native build they target, so the +> workflow requires the build numbers to be entered manually. There is no need +> to change the global EAS build counters (and doing so is no longer necessary +> for OTAs - they are only used when producing new native builds). > [!NOTE] > If you do enter an incorrect version here, the deployment will either: > - Fail, because the action cannot find a commit with your misentered version -> - Succeed, but with no users receiving the update. This is because the version -> you entered will not properly correlate to a _build number_ as well, so no -> clients in the wild will be able to receive the update. +> - Succeed, but with no users receiving the update. This is because the +> version and build numbers you entered will not match any clients in the +> wild, so none will be able to receive the update. **For web,** head to [Actions > build-and-push-bskyweb-aws](https://github.com/bluesky-social/social-app/actions/workflows/build-and-push-bskyweb-aws.yaml) @@ -119,23 +113,6 @@ build from your device and re-install from the App Store. Then, you'll need to: - Quit and reopen the app - Check the `Settings > About` page and confirm the hash matches the most recent hash on your OTA branch -### 9. Reset build numbers - -Grab the build numbers you saved in **Step 5** and reverse the EAS CLI commands -to reset the build numbers. - -```sh -> npx eas build:version:set -p ios -> -> Project @blueskysocial/bluesky with bundle identifier "xyz.blueskyweb.app" is configured with buildNumber 1009. -> โœ” What version would you like to set? โ€ฆ 1011 -> -> npx eas build:version:set -p android -> -> Project @blueskysocial/bluesky with application ID "xyz.blueskyweb.app" is configured with versionCode 639. -> โœ” What version would you like to set? โ€ฆ 641 -``` - ## Overview diagram ![OTA Deployment](./img/ota-flow.png) diff --git a/docs/img/language-mapping.png b/docs/img/language-mapping.png new file mode 100644 index 0000000000..79a3f1c7f4 Binary files /dev/null and b/docs/img/language-mapping.png differ diff --git a/docs/localization.md b/docs/localization.md index 43a5abeb30..a5d83de5fe 100644 --- a/docs/localization.md +++ b/docs/localization.md @@ -49,14 +49,26 @@ Every night, a GitHub action will run `pnpm intl:extract` to update the english 1. Pull main and create a branch. 1. Run `pnpm intl:release` to fetch all translation updates from Crowdin and extract all `.po` files so that they're synced with the latest code. Commit that. 1. Create a PR, ensure the translations all look correct, and merge. -1. If needed: - 1. Merge all approved translation PRs (contributions from outside crowdin). - 1. Run `pnpm intl:push` to sync Crowdin with the state of the repo. +1. If needed, merge all approved translation PRs (contributions from outside crowdin). ### Testing the translations in Crowdin You can run `pnpm intl:pull` to pull the currently-approved translations from Crowdin. +### Pushing translations to Crowdin + +Run `pnpm intl:push-sources` to push the current state of the english source file to Crowdin. Extract the latest strings first! + +If necessary, you can also push translations to Crowdin manually using `pnpm intl:dangerously-push-translations`. **DO NOT DO THIS WITHOUT A GOOD REASON** - it overrides the translator's work and is very confusing. You're probably better off tweaking strings in Crowdin itself. + +### Adding new languages + +When a new language is added to Crowdin, it gets synced down the next time `pnpm intl:pull` is run. You then need to add the language in a few places - the AppLanguages array, `date-fns`, Intl polyfills etc. + +Importantly, we use a two-letter language code (e.g. `en`, `fr`). Crowdin uses a full locale (e.g. `pt-BR`) and maps them to the two-letter code. This can become ambiguous if we have multiple languages that share a two-letter code (e.g. `fr-FR` and `fr-CA`), so we need to manually override the two-letter code into an unambiguous locale. This is done in the Crowdin language settings (*not* the `crowdin.yml` file!). When a new ambiguous language is added, go to https://bluesky.crowdin.com/u/projects/1/languages and map the language's two-letter code to it's locale. If not, the two languages may silently overwrite each other. + +![crowdin language mapping config](./img/language-mapping.png) + ## Developers ### Adding new strings diff --git a/eas.json b/eas.json index 5bf4e25513..996b0512d6 100644 --- a/eas.json +++ b/eas.json @@ -28,7 +28,7 @@ }, "env": { "EXPO_PUBLIC_ENV": "e2e", - "NODE_ENV": "test", + "NODE_ENV": "development", "RN_SRC_EXT": "e2e.ts,e2e.tsx" } }, diff --git a/lingui.config.ts b/lingui.config.ts index 3a4d57a07c..c852085cfa 100644 --- a/lingui.config.ts +++ b/lingui.config.ts @@ -13,11 +13,13 @@ export default defineConfig({ 'de', 'el', 'en-GB', + 'en-CA', 'eo', 'es', 'eu', 'fi', 'fr', + 'fr-CA', 'fy', 'ga', 'gd', diff --git a/modules/bottom-sheet/ios/SheetView.swift b/modules/bottom-sheet/ios/SheetView.swift index 1c6e963aa8..856768f56b 100644 --- a/modules/bottom-sheet/ios/SheetView.swift +++ b/modules/bottom-sheet/ios/SheetView.swift @@ -6,7 +6,7 @@ class SheetView: ExpoView, UISheetPresentationControllerDelegate { // Views private var sheetVc: SheetViewController? private var innerView: UIView? - private var touchHandler: RCTTouchHandler? + private var touchHandler: RCTSurfaceTouchHandler? // Native content height observation (eliminates JS bridge round-trip) private var contentHeightObservation: NSKeyValueObservation? @@ -81,33 +81,37 @@ class SheetView: ExpoView, UISheetPresentationControllerDelegate { required init (appContext: AppContext? = nil) { super.init(appContext: appContext) self.maxHeight = Util.getScreenHeight() ?? UIScreen.main.bounds.height - self.touchHandler = RCTTouchHandler(bridge: appContext?.reactBridge) + self.touchHandler = RCTSurfaceTouchHandler() SheetManager.shared.add(self) } deinit { self.destroy() } + + override func mountChildComponentView( + _ childComponentView: UIView, + index: Int + ) { + self.innerView = childComponentView + touchHandler?.attach(to: childComponentView) + } + + override func unmountChildComponentView( + _ childComponentView: UIView, + index: Int + ) { + touchHandler?.detach(from: childComponentView) - // We don't want this view to actually get added to the tree, so we'll simply store it for adding - // to the SheetViewController - override func insertReactSubview(_ subview: UIView!, at atIndex: Int) { - self.touchHandler?.attach(to: subview) - self.innerView = subview + childComponentView.removeFromSuperview() + if self.innerView === childComponentView { + self.innerView = nil + } } // We'll grab the content height from here so we know the initial detent to set override func layoutSubviews() { super.layoutSubviews() - - guard let innerView = self.innerView else { - return - } - - if innerView.subviews.count != 1 { - return - } - self.present() } @@ -117,7 +121,10 @@ class SheetView: ExpoView, UISheetPresentationControllerDelegate { self.isClosing = false self.isOpen = false self.sheetVc = nil - self.touchHandler?.detach(from: self.innerView) + + if let innerView = self.innerView { + self.touchHandler?.detach(from: innerView) + } self.touchHandler = nil self.innerView = nil SheetManager.shared.remove(self) @@ -146,8 +153,7 @@ class SheetView: ExpoView, UISheetPresentationControllerDelegate { if #available(iOS 26.0, *), let tag = self.sourceViewTag, - let bridge = self.appContext?.reactBridge, - let sourceView = bridge.uiManager.view(forReactTag: NSNumber(value: tag)) { + let sourceView = self.appContext?.findView(withTag: tag, ofType: UIView.self) { sheetVc.preferredTransition = .zoom { _ in return sourceView } diff --git a/modules/bottom-sheet/ios/SurfaceTouchHandler.h b/modules/bottom-sheet/ios/SurfaceTouchHandler.h new file mode 100644 index 0000000000..784a5cbfba --- /dev/null +++ b/modules/bottom-sheet/ios/SurfaceTouchHandler.h @@ -0,0 +1,3 @@ +#if __has_include() +#import +#endif diff --git a/modules/expo-scroll-forwarder/README.md b/modules/expo-scroll-forwarder/README.md deleted file mode 100644 index 6b6b6e83e5..0000000000 --- a/modules/expo-scroll-forwarder/README.md +++ /dev/null @@ -1,116 +0,0 @@ -# expo-scroll-forwarder - -An Expo native module that forwards scroll gestures from a UIView to a UIScrollView on iOS. This enables custom scroll behaviors by allowing a non-scrollable view to control a scrollable view's scroll position. - -## What It Does - -This module solves a specific interaction problem: allowing a fixed header or overlay view to respond to scroll gestures and forward them to an underlying scroll view. The primary use case in the Bluesky app is the profile screen, where the profile header sits above a scrollable content area and can be dragged to scroll the content below it. - -Key behaviors: -- Captures pan gestures on a wrapper view and translates them to scroll offsets on a target scroll view -- Implements physics-based deceleration animations that match native scroll behavior -- Supports pull-to-refresh interactions with haptic feedback -- Prevents gesture conflicts with iOS swipe-back navigation by only activating on vertical pans -- Provides rubber-band damping when scrolling past content bounds - -## Architecture - -The module consists of three main parts: - -### 1. Native iOS Implementation (Swift) - -**ExpoScrollForwarderView.swift** - The core native view component that: -- Attaches a UIPanGestureRecognizer to intercept scroll gestures -- Finds and references the target RCTScrollView using its React Native tag -- Implements custom scroll physics including velocity-based decay animation -- Manages gesture recognizer delegation to prevent conflicts with system gestures -- Handles pull-to-refresh activation at -130pt scroll offset with haptic feedback - -**ExpoScrollForwarderModule.swift** - The Expo module definition that: -- Registers the view component with Expo -- Exposes the `scrollViewTag` prop to specify which scroll view to control - -### 2. TypeScript Interface - -**ExpoScrollForwarderView.tsx** - Platform-specific implementations: -- **iOS (.ios.tsx)**: Wraps the native view manager from expo-modules-core -- **Default (.tsx)**: No-op wrapper that just renders children (for Android/Web compatibility) - -**ExpoScrollForwarder.types.ts** - TypeScript type definitions: -- `scrollViewTag`: The React Native tag of the scroll view to control -- `children`: The content to render (typically a header component) - -### 3. Module Configuration - -**expo-module.config.json** - Declares iOS-only platform support - -**ExpoScrollForwarder.podspec** - CocoaPods specification for iOS dependency management - -## Usage - -```tsx -import {ExpoScrollForwarderView} from 'expo-scroll-forwarder' - -function ProfileScreen() { - const scrollViewTag = useRef(null) - - return ( - - - - - - - {/* Scrollable content */} - - - ) -} -``` - -The `scrollViewTag` prop must be the React Native tag (numeric identifier) of the target scroll view. The module uses this to locate the native UIScrollView instance. - -## Platform Support - -- **iOS**: Full native implementation with custom scroll physics -- **Android**: No-op wrapper (renders children without scroll forwarding) -- **Web**: No-op wrapper (renders children without scroll forwarding) - -The module is designed to enhance iOS UX while gracefully degrading on other platforms. - -## Key Implementation Details - -### Gesture Recognition -- Only activates when pan velocity is more vertical than horizontal (`abs(velocity.y) > abs(velocity.x)`) -- Delegates to UIGestureRecognizerDelegate to prevent simultaneous recognition with navigation swipe-back -- Adds tap/long-press recognizers to the scroll view to cancel ongoing animations - -### Scroll Physics -- Implements custom decay animation at 120fps using a Timer -- Velocity decay factor: 0.9875 per frame -- Velocity clamped to +/- 5000 points/second -- Rubber-band damping: offsets below 0 are reduced by 55% -- Animation stops when velocity drops below 5 points/second - -### Pull-to-Refresh -- Triggers at -130pt scroll offset -- Provides haptic feedback (UIImpactFeedbackGenerator, light style) -- Calls refresh control via `RCTRefreshControl.forwarderBeginRefreshing()` - -### Scroll View Management -- Dynamically finds scroll view using `AppContext.findView(withTag:ofType:)` -- Properly cleans up gesture recognizers when switching between scroll views -- Maintains references to both the scroll view and its refresh control - -## Files Overview - -| File | Purpose | -|------|---------| -| `ios/ExpoScrollForwarderView.swift` | Native iOS view implementation with gesture handling and scroll physics | -| `ios/ExpoScrollForwarderModule.swift` | Expo module registration and prop definitions | -| `ios/ExpoScrollForwarder.podspec` | CocoaPods dependency specification | -| `src/ExpoScrollForwarderView.ios.tsx` | TypeScript wrapper for iOS native view | -| `src/ExpoScrollForwarderView.tsx` | Default no-op implementation for other platforms | -| `src/ExpoScrollForwarder.types.ts` | TypeScript type definitions | -| `index.ts` | Module entry point | -| `expo-module.config.json` | Expo module configuration | diff --git a/modules/expo-scroll-forwarder/expo-module.config.json b/modules/expo-scroll-forwarder/expo-module.config.json deleted file mode 100644 index 1fd49f79b7..0000000000 --- a/modules/expo-scroll-forwarder/expo-module.config.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "platforms": ["ios"], - "ios": { - "modules": ["ExpoScrollForwarderModule"] - } -} diff --git a/modules/expo-scroll-forwarder/index.ts b/modules/expo-scroll-forwarder/index.ts deleted file mode 100644 index a4ad4b8506..0000000000 --- a/modules/expo-scroll-forwarder/index.ts +++ /dev/null @@ -1 +0,0 @@ -export {ExpoScrollForwarderView} from './src/ExpoScrollForwarderView' diff --git a/modules/expo-scroll-forwarder/ios/ExpoScrollForwarder.podspec b/modules/expo-scroll-forwarder/ios/ExpoScrollForwarder.podspec deleted file mode 100644 index 78ca9812e4..0000000000 --- a/modules/expo-scroll-forwarder/ios/ExpoScrollForwarder.podspec +++ /dev/null @@ -1,21 +0,0 @@ -Pod::Spec.new do |s| - s.name = 'ExpoScrollForwarder' - s.version = '1.0.0' - s.summary = 'Forward scroll gesture from UIView to UIScrollView' - s.description = 'Forward scroll gesture from UIView to UIScrollView' - s.author = 'bluesky-social' - s.homepage = 'https://github.com/bluesky-social/social-app' - s.platforms = { :ios => '13.4', :tvos => '13.4' } - s.source = { git: '' } - s.static_framework = true - - s.dependency 'ExpoModulesCore' - - # Swift/Objective-C compatibility - s.pod_target_xcconfig = { - 'DEFINES_MODULE' => 'YES', - 'SWIFT_COMPILATION_MODE' => 'wholemodule' - } - - s.source_files = "**/*.{h,m,mm,swift,hpp,cpp}" -end diff --git a/modules/expo-scroll-forwarder/ios/ExpoScrollForwarderModule.swift b/modules/expo-scroll-forwarder/ios/ExpoScrollForwarderModule.swift deleted file mode 100644 index 53e2588258..0000000000 --- a/modules/expo-scroll-forwarder/ios/ExpoScrollForwarderModule.swift +++ /dev/null @@ -1,13 +0,0 @@ -import ExpoModulesCore - -public class ExpoScrollForwarderModule: Module { - public func definition() -> ModuleDefinition { - Name("ExpoScrollForwarder") - - View(ExpoScrollForwarderView.self) { - Prop("scrollViewTag") { (view: ExpoScrollForwarderView, prop: Int) in - view.scrollViewTag = prop - } - } - } -} diff --git a/modules/expo-scroll-forwarder/ios/ExpoScrollForwarderView.swift b/modules/expo-scroll-forwarder/ios/ExpoScrollForwarderView.swift deleted file mode 100644 index 738c8b5cda..0000000000 --- a/modules/expo-scroll-forwarder/ios/ExpoScrollForwarderView.swift +++ /dev/null @@ -1,214 +0,0 @@ -import ExpoModulesCore -import React - -// This view will be used as a native component. Make sure to inherit from `ExpoView` -// to apply the proper styling (e.g. border radius and shadows). -class ExpoScrollForwarderView: ExpoView, UIGestureRecognizerDelegate { - var scrollViewTag: Int? { - didSet { - self.tryFindScrollView() - } - } - - private var rctScrollView: RCTScrollView? - private var rctRefreshCtrl: RCTRefreshControl? - private var cancelGestureRecognizers: [UIGestureRecognizer]? - private var animTimer: Timer? - private var initialOffset: CGFloat = 0.0 - private var didImpact: Bool = false - - required init(appContext: AppContext? = nil) { - super.init(appContext: appContext) - - let pg = UIPanGestureRecognizer(target: self, action: #selector(callOnPan(_:))) - pg.delegate = self - self.addGestureRecognizer(pg) - - let tg = UITapGestureRecognizer(target: self, action: #selector(callOnPress(_:))) - tg.isEnabled = false - tg.delegate = self - - let lpg = UILongPressGestureRecognizer(target: self, action: #selector(callOnPress(_:))) - lpg.minimumPressDuration = 0.01 - lpg.isEnabled = false - lpg.delegate = self - - self.cancelGestureRecognizers = [lpg, tg] - } - - // We don't want to recognize the scroll pan gesture and the swipe back gesture together - func gestureRecognizer(_ gestureRecognizer: UIGestureRecognizer, shouldRecognizeSimultaneouslyWith otherGestureRecognizer: UIGestureRecognizer) -> Bool { - if gestureRecognizer is UIPanGestureRecognizer, otherGestureRecognizer is UIPanGestureRecognizer { - return false - } - - return true - } - - // We only want the "scroll" gesture to happen whenever the pan is vertical, otherwise it will - // interfere with the native swipe back gesture. - override func gestureRecognizerShouldBegin(_ gestureRecognizer: UIGestureRecognizer) -> Bool { - guard let gestureRecognizer = gestureRecognizer as? UIPanGestureRecognizer else { - return true - } - - let velocity = gestureRecognizer.velocity(in: self) - return abs(velocity.y) > abs(velocity.x) - } - - // This will be used to cancel the scroll animation whenever we tap inside of the header. We don't need another - // recognizer for this one. - override func touchesBegan(_ touches: Set, with event: UIEvent?) { - self.stopTimer() - } - - // This will be used to cancel the animation whenever we press inside of the scroll view. We don't want to change - // the scroll view gesture's delegate, so we add an additional recognizer to detect this. - @IBAction func callOnPress(_ sender: UITapGestureRecognizer) { - self.stopTimer() - } - - @IBAction func callOnPan(_ sender: UIPanGestureRecognizer) { - guard let rctsv = self.rctScrollView, let sv = rctsv.scrollView else { - return - } - - let translation = sender.translation(in: self).y - - if sender.state == .began { - if sv.contentOffset.y < 0 { - sv.contentOffset.y = 0 - } - - self.initialOffset = sv.contentOffset.y - } - - if sender.state == .changed { - sv.contentOffset.y = self.dampenOffset(-translation + self.initialOffset) - - if sv.contentOffset.y <= -130, !didImpact { - let generator = UIImpactFeedbackGenerator(style: .light) - generator.impactOccurred() - - self.didImpact = true - } - } - - if sender.state == .ended { - let velocity = sender.velocity(in: self).y - self.didImpact = false - - if sv.contentOffset.y <= -130 { - self.rctRefreshCtrl?.forwarderBeginRefreshing() - return - } - - // A check for a velocity under 250 prevents animations from occurring when they wouldn't in a normal - // scroll view - if abs(velocity) < 250, sv.contentOffset.y >= 0 { - return - } - - self.startDecayAnimation(translation, velocity) - } - } - - func startDecayAnimation(_ translation: CGFloat, _ velocity: CGFloat) { - guard let sv = self.rctScrollView?.scrollView else { - return - } - - var velocity = velocity - - self.enableCancelGestureRecognizers() - - if velocity > 0 { - velocity = min(velocity, 5000) - } else { - velocity = max(velocity, -5000) - } - - var animTranslation = -translation - self.animTimer = Timer.scheduledTimer(withTimeInterval: 1.0 / 120, repeats: true) { _ in - velocity *= 0.9875 - animTranslation = (-velocity / 120) + animTranslation - - let nextOffset = self.dampenOffset(animTranslation + self.initialOffset) - - if nextOffset <= 0 { - if self.initialOffset <= 1 { - self.scrollToOffset(0) - } else { - sv.contentOffset.y = 0 - } - - self.stopTimer() - return - } else { - sv.contentOffset.y = nextOffset - } - - if abs(velocity) < 5 { - self.stopTimer() - } - } - } - - func dampenOffset(_ offset: CGFloat) -> CGFloat { - if offset < 0 { - return offset - (offset * 0.55) - } - - return offset - } - - func tryFindScrollView() { - guard let scrollViewTag = scrollViewTag else { - return - } - - // Before we switch to a different scrollview, we always want to remove the cancel gesture recognizer. - // Otherwise we might end up with duplicates when we switch back to that scrollview. - self.removeCancelGestureRecognizers() - - self.rctScrollView = self.appContext? - .findView(withTag: scrollViewTag, ofType: RCTScrollView.self) - self.rctRefreshCtrl = self.rctScrollView?.scrollView.refreshControl as? RCTRefreshControl - - self.addCancelGestureRecognizers() - } - - func addCancelGestureRecognizers() { - self.cancelGestureRecognizers?.forEach { r in - self.rctScrollView?.scrollView?.addGestureRecognizer(r) - } - } - - func removeCancelGestureRecognizers() { - self.cancelGestureRecognizers?.forEach { r in - self.rctScrollView?.scrollView?.removeGestureRecognizer(r) - } - } - - func enableCancelGestureRecognizers() { - self.cancelGestureRecognizers?.forEach { r in - r.isEnabled = true - } - } - - func disableCancelGestureRecognizers() { - self.cancelGestureRecognizers?.forEach { r in - r.isEnabled = false - } - } - - func scrollToOffset(_ offset: Int, animated: Bool = true) { - self.rctScrollView?.scroll(toOffset: CGPoint(x: 0, y: offset), animated: animated) - } - - func stopTimer() { - self.disableCancelGestureRecognizers() - self.animTimer?.invalidate() - self.animTimer = nil - } -} diff --git a/modules/expo-scroll-forwarder/src/ExpoScrollForwarder.types.ts b/modules/expo-scroll-forwarder/src/ExpoScrollForwarder.types.ts deleted file mode 100644 index 3f1e4a63da..0000000000 --- a/modules/expo-scroll-forwarder/src/ExpoScrollForwarder.types.ts +++ /dev/null @@ -1,4 +0,0 @@ -export interface ExpoScrollForwarderViewProps { - scrollViewTag: number | null - children: React.ReactNode -} diff --git a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.ios.tsx b/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.ios.tsx deleted file mode 100644 index 18bdb25c8a..0000000000 --- a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.ios.tsx +++ /dev/null @@ -1,13 +0,0 @@ -import {requireNativeViewManager} from 'expo-modules-core' - -import {type ExpoScrollForwarderViewProps} from './ExpoScrollForwarder.types' - -const NativeView: React.ComponentType = - requireNativeViewManager('ExpoScrollForwarder') - -export function ExpoScrollForwarderView({ - children, - ...rest -}: ExpoScrollForwarderViewProps) { - return {children} -} diff --git a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx b/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx deleted file mode 100644 index d66eef7cbd..0000000000 --- a/modules/expo-scroll-forwarder/src/ExpoScrollForwarderView.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import {type ExpoScrollForwarderViewProps} from './ExpoScrollForwarder.types' - -export function ExpoScrollForwarderView({ - children, -}: React.PropsWithChildren) { - return children -} diff --git a/modules/react-native-scroll-forwarder/ScrollForwarder.podspec b/modules/react-native-scroll-forwarder/ScrollForwarder.podspec new file mode 100644 index 0000000000..137aea92b8 --- /dev/null +++ b/modules/react-native-scroll-forwarder/ScrollForwarder.podspec @@ -0,0 +1,20 @@ +require "json" + +package = JSON.parse(File.read(File.join(__dir__, "package.json"))) + +Pod::Spec.new do |s| + s.name = "ScrollForwarder" + s.version = package["version"] + s.summary = package["description"] + s.homepage = package["homepage"] + s.license = package["license"] + s.authors = package["author"] + + s.platforms = { :ios => min_ios_version_supported } + s.source = { :git => ".git", :tag => "#{s.version}" } + + s.source_files = "ios/**/*.{h,m,mm,cpp}" + s.private_header_files = "ios/**/*.h" + + install_modules_dependencies(s) +end diff --git a/modules/react-native-scroll-forwarder/ios/ScrollForwarderView.h b/modules/react-native-scroll-forwarder/ios/ScrollForwarderView.h new file mode 100644 index 0000000000..3b3b4898ab --- /dev/null +++ b/modules/react-native-scroll-forwarder/ios/ScrollForwarderView.h @@ -0,0 +1,14 @@ +#import +#import + +#ifndef ScrollForwarderViewNativeComponent_h +#define ScrollForwarderViewNativeComponent_h + +NS_ASSUME_NONNULL_BEGIN + +@interface ScrollForwarderView : RCTViewComponentView +@end + +NS_ASSUME_NONNULL_END + +#endif /* ScrollForwarderViewNativeComponent_h */ diff --git a/modules/react-native-scroll-forwarder/ios/ScrollForwarderView.mm b/modules/react-native-scroll-forwarder/ios/ScrollForwarderView.mm new file mode 100644 index 0000000000..840cd04ff3 --- /dev/null +++ b/modules/react-native-scroll-forwarder/ios/ScrollForwarderView.mm @@ -0,0 +1,411 @@ +#import "ScrollForwarderView.h" + +#import +#import +#import +#import +#import +#import + +#import "RCTFabricComponentsPlugins.h" + +using namespace facebook::react; + +// How far down a pull needs to be to trigger a refresh +static const CGFloat kPullThreshold = 130.0; +static const CGFloat kDampingFactor = 0.55; +// The top speed that free scrolling can have +static const CGFloat kMaxVelocity = 5000.0; +// Free scrolling decay. This seems to be close to the default iOS value +static const CGFloat kVelocityDecay = 0.9875; +// What scroll release velocity will actually trigger free scrolling +static const CGFloat kMinimumVelocity = 5.0; + +@interface ScrollForwarderView () + +@end + +@implementation ScrollForwarderView { + NSArray * _cancelGestureRecognizers; + RCTScrollViewComponentView * _svcv; + CGPoint _initialOffset; + + CADisplayLink * _displayLink; + CGFloat _currentVelocity; + CGFloat _accumulatedTranslation; + + bool _didImpact; +} + ++ (ComponentDescriptorProvider)componentDescriptorProvider +{ + return concreteComponentDescriptorProvider(); +} + +- (instancetype)initWithFrame:(CGRect)frame +{ + if (self = [super initWithFrame:frame]) { + static const auto defaultProps = std::make_shared(); + _props = defaultProps; + + UIPanGestureRecognizer *pg = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(handlePan:)]; + pg.delegate = self; + pg.cancelsTouchesInView = false; + [self addGestureRecognizer:pg]; + + UITapGestureRecognizer *tg = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTap:)]; + [tg setEnabled:false]; + tg.delegate = self; + + UILongPressGestureRecognizer *lpg = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)]; + [lpg setMinimumPressDuration:0.01]; + [lpg setEnabled:false]; + lpg.delegate = self; + + NSArray *cancelGestureRecognizers = [NSArray arrayWithObjects:lpg, tg, nil]; + _cancelGestureRecognizers = cancelGestureRecognizers; + } + + return self; +} + +// MARK: - Lifecycle + +- (void)dealloc +{ + [self stopAnimation]; + [self removeCancelGestureRecognizers]; + _svcv = nil; + + for (UIGestureRecognizer *gr in _cancelGestureRecognizers) { + gr.delegate = nil; + } +} + +- (void)prepareForRecycle +{ + [super prepareForRecycle]; + [self stopAnimation]; + [self removeCancelGestureRecognizers]; + _svcv = nil; +} + +// MARK: - Props + +- (void)updateProps:(Props::Shared const &)props oldProps:(Props::Shared const &)oldProps +{ + const auto &oldViewProps = *std::static_pointer_cast(_props); + const auto &newViewProps = *std::static_pointer_cast(props); + + if (oldViewProps.scrollViewTag != newViewProps.scrollViewTag) { + [self tryFindScrollView]; + } + + if (oldViewProps.refreshing != newViewProps.refreshing) { + if (!newViewProps.refreshing) { + [self endRefreshing]; + } + } + + [super updateProps:props oldProps:oldProps]; +} + +// MARK: - UIGestureRecognizerDelegate + +- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer +{ + if ([gestureRecognizer isKindOfClass:[UIPanGestureRecognizer class]] && [otherGestureRecognizer isKindOfClass:[UIPanGestureRecognizer class]]) { + return NO; + } + + return YES; +} + +- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer +{ + if (![gestureRecognizer isKindOfClass:[UIPanGestureRecognizer class]]) { + return YES; + } + + UIPanGestureRecognizer *pg = (UIPanGestureRecognizer *)gestureRecognizer; + CGPoint velocity = [pg velocityInView:self]; + + return fabs(velocity.y) > fabs(velocity.x); +} + +- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event +{ + [self stopAnimation]; + [super touchesBegan:touches withEvent:event]; +} + +// MARK: - Scroll Forwarding + +- (void)removeCancelGestureRecognizers +{ + if (!_svcv) return; + for (UIGestureRecognizer *gr in _cancelGestureRecognizers) { + [_svcv.scrollView removeGestureRecognizer:gr]; + } +} + +- (void)addCancelGestureRecognizers +{ + if (!_svcv) return; + for (UIGestureRecognizer *gr in _cancelGestureRecognizers) { + [_svcv.scrollView addGestureRecognizer:gr]; + } +} + +- (void)enableCancelGestureRecognizers +{ + for (UIGestureRecognizer *gr in _cancelGestureRecognizers) { + [gr setEnabled:true]; + } +} + +- (void)disableCancelGestureRecognizers +{ + for (UIGestureRecognizer *gr in _cancelGestureRecognizers) { + [gr setEnabled:false]; + } +} + +- (void)scrollToOffset:(CGPoint)offset animated:(bool)animated +{ + if (!_svcv) return; + [_svcv scrollToOffset:offset animated:animated]; +} + +- (void)stopAnimation +{ + [self disableCancelGestureRecognizers]; + [_displayLink invalidate]; + _displayLink = nil; +} + +- (void)handlePan:(UIPanGestureRecognizer *)gesture { + if (!_svcv) return; + + UIScrollView *sv = _svcv.scrollView; + + CGPoint translation = [gesture translationInView:self]; + + if (gesture.state == UIGestureRecognizerStateBegan) { + _didImpact = false; + + if (sv.contentOffset.y < 0) { + CGPoint newOffset = CGPointMake(sv.contentOffset.x, 0); + sv.contentOffset = newOffset; + } + + _initialOffset = sv.contentOffset; + } + + if (gesture.state == UIGestureRecognizerStateChanged) { + CGPoint newOffset = CGPointMake(sv.contentOffset.x, [self dampenOffset:(-translation.y + _initialOffset.y)]); + sv.contentOffset = newOffset; + + if (sv.contentOffset.y <= -kPullThreshold && !_didImpact) { + UIImpactFeedbackGenerator *generator = [[UIImpactFeedbackGenerator alloc] initWithStyle:UIImpactFeedbackStyleLight]; + [generator impactOccurred]; + _didImpact = true; + } + } + + if (gesture.state == UIGestureRecognizerStateEnded) { + CGPoint velocity = [gesture velocityInView:self]; + + if (sv.contentOffset.y <= -kPullThreshold) { + [self refresh]; + return; + } + + if (sv.contentOffset.y < 0) { + CGPoint newOffset = CGPointMake(sv.contentOffset.x, 0); + [self scrollToOffset:newOffset animated:true]; + return; + } + + if (abs(velocity.y) < 250 && sv.contentOffset.y >= 0) { + return; + } + + [self startDecayWithInitialTranslation:translation.y velocity:velocity.y]; + } +} + +- (CGFloat)dampenOffset:(CGFloat)offset +{ + if (offset < 0) { + return offset - (offset * kDampingFactor); + } + return offset; +} + +- (void)handleTap:(UITapGestureRecognizer *)gesture { + [self stopAnimation]; +} + +- (void)handleLongPress:(UILongPressGestureRecognizer *)gesture { + [self stopAnimation]; +} + +- (void)startDecayWithInitialTranslation:(CGFloat)translation velocity:(CGFloat)startVelocity +{ + if (!_svcv) return; + + startVelocity = MAX(-kMaxVelocity, MIN(kMaxVelocity, startVelocity)); + _currentVelocity = startVelocity; + _accumulatedTranslation = -translation; + + [self enableCancelGestureRecognizers]; + + [_displayLink invalidate]; + + CADisplayLink *link = [CADisplayLink displayLinkWithTarget:self selector:@selector(handleDecayStep:)]; + + link.preferredFramesPerSecond = 60; + [link addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSRunLoopCommonModes]; + _displayLink = link; +} + +- (void)handleDecayStep:(CADisplayLink *)link +{ + _currentVelocity *= kVelocityDecay; + + CGFloat delta = -_currentVelocity / link.preferredFramesPerSecond; + _accumulatedTranslation += delta; + + CGFloat rawY = _accumulatedTranslation + _initialOffset.y; + CGFloat nextY = rawY > 0 ? rawY : 0; + + CGPoint newOffset = CGPointMake( + _svcv.scrollView.contentOffset.x, + nextY + ); + _svcv.scrollView.contentOffset = newOffset; + + if (fabs(_currentVelocity) < kMinimumVelocity || nextY <= 0) { + [link invalidate]; + _displayLink = nil; + [self disableCancelGestureRecognizers]; + } +} + +/* + * We use this component on profile pages. The screne consists of a header component, a scrollview with buttons to + * switch between profile tabs, and a pager view (RNCPagerViewComponentView). Both the header and the tab bar are + * inside the same RCTViewComponentView. The view heirarchy looks something like this: + * - RCTViewComponentView + * -- RNCPagerViewComponentView + * ----- (Many views deep) RCTScrollViewComponentView + * ------ RCTEnhancedScrollView + * -- RCTViewComponentView + * --- RCTViewComponentView + * ---- ScrollForwarderView + * --- RCTScrollViewComponentView + * ---- RCTEnhancedScrollView + * + * We want to find that RCTScrollViewComponentView inside of the RNCPagerViewComponentView. To achieve this, we can + * use self.superview.superview.superview to get to the root RCTViewComponentView, find the RNCPagerViewComponentView, + * then iterate through that view's subviews until we find a RCTScrollViewComponentView. + * + * This isn't great, because if we reorder the React components, we'll need to update this logic. There's probably + * an easier way to achieve this, similar to how we used to do it in Paper (ie, get the scroll view's tag and find that), + * but this also comes with some benefits, eg being able to reduce a lot of the logic in the JS code and just find the + * scrollview when subviews change. + */ +- (void)tryFindScrollView +{ + [self removeCancelGestureRecognizers]; + + // The root RCTViewComponentView + UIView *rootView = self.superview.superview.superview; + UIView *pagerView; + + NSString *targetClsName = @"RNCPagerViewComponentView"; + Class targetCls = NSClassFromString(targetClsName); + + for (UIView *subview in rootView.subviews) { + if ([subview isKindOfClass:targetCls]) { + pagerView = subview; + break; + } + } + + if (!pagerView) return; + + RCTScrollViewComponentView *svcv = [self findRTCScrollViewComponentViewInView:pagerView]; + + if (!svcv) return; + + _svcv = svcv; + [self addCancelGestureRecognizers]; +} + +- (RCTScrollViewComponentView *)findRTCScrollViewComponentViewInView:(UIView *)view +{ + for (UIView *subview in view.subviews) { + if ([subview isKindOfClass:[RCTScrollViewComponentView class]]) { + RCTScrollViewComponentView *svcv = (RCTScrollViewComponentView *) subview; + return svcv; + } + + RCTScrollViewComponentView *svcv = [self findRTCScrollViewComponentViewInView:subview]; + if (svcv) return svcv; + } + return nil; +} + +- (UIRefreshControl *)refreshContorl +{ + if (!_svcv) return nil; + return _svcv.scrollView.refreshControl; +} + +- (void)refresh +{ + __weak ScrollForwarderView *weakSelf = self; + + [_svcv.scrollView.refreshControl beginRefreshing]; + + [UIView animateWithDuration:0.3 + delay:0 + options:UIViewAnimationOptionBeginFromCurrentState + animations:^(void) { + if (!weakSelf) return; + + __strong ScrollForwarderView *self = weakSelf; + + // Whenever we call this method, the scrollview will always be at a position of + // -130 or less. Scrolling back to -80 simulates the default behavior of RCTRefreshControl + [self->_svcv.scrollView setContentOffset:CGPointMake(0, -65)]; + } + completion:^(__unused BOOL finished) { + __strong ScrollForwarderView *self = weakSelf; + + if (self->_eventEmitter != nullptr) { + std::dynamic_pointer_cast(self->_eventEmitter) + ->onRefresh(facebook::react::ScrollForwarderViewEventEmitter::OnRefresh{}); + } + } + ]; +} + +- (void)endRefreshing +{ + UIRefreshControl *rc = [self refreshContorl]; + + CGPoint newOffset = CGPointMake(_svcv.scrollView.contentOffset.x, 0.0); + [self scrollToOffset:newOffset animated:true]; + + [rc endRefreshing]; +} + +Class ScrollForwarderViewCls(void) +{ + return ScrollForwarderView.class; +} + +@end diff --git a/modules/react-native-scroll-forwarder/package.json b/modules/react-native-scroll-forwarder/package.json new file mode 100644 index 0000000000..735eefd26f --- /dev/null +++ b/modules/react-native-scroll-forwarder/package.json @@ -0,0 +1,27 @@ +{ + "name": "react-native-scroll-forwarder", + "version": "0.0.0", + "description": "Scroll forwarder module for Bluesky profile headers", + "main": "src/index", + "codegenConfig": { + "name": "ScrollForwarderViewSpec", + "type": "all", + "jsSrcsDir": "src", + "ios": { + "componentProvider": { + "ScrollForwarderView": "ScrollForwarderView" + } + } + }, + "peerDependencies": { + "react-native": "*" + }, + "author": "Hailey ", + "license": "MIT", + "homepage": "#readme", + "create-react-native-library": { + "languages": "kotlin-objc", + "type": "fabric-view", + "version": "0.50.2" + } +} diff --git a/modules/react-native-scroll-forwarder/src/ScrollForwarderView.ios.tsx b/modules/react-native-scroll-forwarder/src/ScrollForwarderView.ios.tsx new file mode 100644 index 0000000000..497112ad11 --- /dev/null +++ b/modules/react-native-scroll-forwarder/src/ScrollForwarderView.ios.tsx @@ -0,0 +1,12 @@ +import { + default as NativeScrollForwarderView, + type NativeProps, +} from './ScrollForwarderViewNativeComponent' + +export function ScrollForwarderView({children, ...rest}: NativeProps) { + return ( + + {children} + + ) +} diff --git a/modules/react-native-scroll-forwarder/src/ScrollForwarderView.tsx b/modules/react-native-scroll-forwarder/src/ScrollForwarderView.tsx new file mode 100644 index 0000000000..315605aae5 --- /dev/null +++ b/modules/react-native-scroll-forwarder/src/ScrollForwarderView.tsx @@ -0,0 +1,5 @@ +import {type NativeProps} from './ScrollForwarderViewNativeComponent' + +export function ScrollForwarderView({children}: NativeProps) { + return children +} diff --git a/modules/react-native-scroll-forwarder/src/ScrollForwarderViewNativeComponent.ts b/modules/react-native-scroll-forwarder/src/ScrollForwarderViewNativeComponent.ts new file mode 100644 index 0000000000..48ac4f5be7 --- /dev/null +++ b/modules/react-native-scroll-forwarder/src/ScrollForwarderViewNativeComponent.ts @@ -0,0 +1,15 @@ +import { + codegenNativeComponent, + type CodegenTypes, + type ViewProps, +} from 'react-native' + +type OnRefreshEvent = {} + +export interface NativeProps extends ViewProps { + scrollViewTag: CodegenTypes.Int32 | null + refreshing?: boolean + onRefresh?: CodegenTypes.BubblingEventHandler +} + +export default codegenNativeComponent('ScrollForwarderView') diff --git a/modules/react-native-scroll-forwarder/src/index.tsx b/modules/react-native-scroll-forwarder/src/index.tsx new file mode 100644 index 0000000000..2210e5d9f2 --- /dev/null +++ b/modules/react-native-scroll-forwarder/src/index.tsx @@ -0,0 +1,2 @@ +export {ScrollForwarderView} from './ScrollForwarderView' +export * from './ScrollForwarderViewNativeComponent' diff --git a/modules/react-native-scroll-forwarder/src/index.web.tsx b/modules/react-native-scroll-forwarder/src/index.web.tsx new file mode 100644 index 0000000000..4b68b8fd04 --- /dev/null +++ b/modules/react-native-scroll-forwarder/src/index.web.tsx @@ -0,0 +1 @@ +export {ScrollForwarderView} from './ScrollForwarderView' diff --git a/oxlint-suppressions.json b/oxlint-suppressions.json index ddcd835fb7..9f8f3cc426 100644 --- a/oxlint-suppressions.json +++ b/oxlint-suppressions.json @@ -596,11 +596,6 @@ "count": 1 } }, - "src/components/interstitials/TrendingVideos.tsx": { - "typescript/no-floating-promises": { - "count": 1 - } - }, "src/components/verification/VerificationCreatePrompt.tsx": { "typescript/no-misused-promises": { "count": 1 @@ -712,7 +707,7 @@ "count": 1 }, "typescript/no-misused-promises": { - "count": 4 + "count": 3 } }, "src/lib/hooks/usePermissions.ts": { @@ -1221,11 +1216,6 @@ "count": 1 } }, - "src/screens/StarterPack/Wizard/StepProfiles.tsx": { - "typescript/no-misused-promises": { - "count": 1 - } - }, "src/screens/StarterPack/Wizard/index.tsx": { "typescript/no-floating-promises": { "count": 2 @@ -1648,31 +1638,6 @@ "count": 2 } }, - "src/view/com/notifications/NotificationFeed.tsx": { - "typescript/no-explicit-any": { - "count": 2 - }, - "typescript/no-floating-promises": { - "count": 1 - }, - "typescript/no-misused-promises": { - "count": 2 - }, - "typescript/no-unsafe-member-access": { - "count": 6 - } - }, - "src/view/com/notifications/NotificationFeedItem.tsx": { - "typescript/no-explicit-any": { - "count": 3 - }, - "typescript/no-misused-promises": { - "count": 3 - }, - "typescript/no-unsafe-member-access": { - "count": 2 - } - }, "src/view/com/pager/Pager.tsx": { "typescript/no-explicit-any": { "count": 4 @@ -1736,16 +1701,6 @@ "count": 9 } }, - "src/view/com/profile/ProfileFollowers.tsx": { - "typescript/no-misused-promises": { - "count": 2 - } - }, - "src/view/com/profile/ProfileFollows.tsx": { - "typescript/no-misused-promises": { - "count": 2 - } - }, "src/view/com/util/EmptyState.tsx": { "typescript/no-explicit-any": { "count": 1 diff --git a/package.json b/package.json index f05a9aa320..38f30ecbc6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bsky.app", - "version": "1.129.0", + "version": "1.130.0", "private": true, "engines": { "node": ">=24.18.0" @@ -40,7 +40,7 @@ "prepare": "is-ci || husky", "postinstall": "pnpm intl:compile-if-needed", "prebuild": "EXPO_NO_GIT_STATUS=1 expo prebuild --clean", - "android": "expo run:android", + "android": "expo run:android --variant debugOptimized", "android:prod": "expo run:android --variant release", "android:profile": "BSKY_PROFILE=1 expo run:android --variant release", "ios": "expo run:ios", @@ -67,9 +67,9 @@ "typecheck:android": "tsc --project ./tsconfig.check.android.json", "typecheck:web": "tsc --project ./tsconfig.check.web.json", "e2e:mock-server": "cd dev-env && pnpm start", - "e2e:build": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo run:ios", - "e2e:build-android": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo run:android", - "e2e:start": "EXPO_PUBLIC_ENV=e2e NODE_ENV=test RN_SRC_EXT=e2e.ts,e2e.tsx expo start -c", + "e2e:build": "EXPO_PUBLIC_ENV=e2e NODE_ENV=development RN_SRC_EXT=e2e.ts,e2e.tsx expo run:ios", + "e2e:build-android": "EXPO_PUBLIC_ENV=e2e NODE_ENV=development RN_SRC_EXT=e2e.ts,e2e.tsx expo run:android", + "e2e:start": "EXPO_PUBLIC_ENV=e2e NODE_ENV=development RN_SRC_EXT=e2e.ts,e2e.tsx expo start -c", "e2e:run": "maestro test", "perf:test": "NODE_ENV=test maestro test", "perf:test:run": "NODE_ENV=test maestro test __e2e__/perf-test.yml", @@ -82,8 +82,8 @@ "intl:compile": "lingui compile", "intl:compile-if-needed": "is-ci || [ -f src/locale/locales/en/messages.ts ] || pnpm intl:compile", "intl:pull": "crowdin download translations --verbose -b main", - "intl:push": "crowdin push translations --verbose -b main", "intl:push-sources": "crowdin push sources --verbose -b main", + "intl:dangerously-push-translations": "crowdin push translations --verbose -b main", "intl:release": "pnpm intl:pull && pnpm intl:extract:all", "nuke": "rm -rf ./node_modules && rm -rf ./ios && rm -rf ./android", "update-extensions": "bash scripts/updateExtensions.sh", @@ -96,7 +96,7 @@ "prettier": "prettier --check ." }, "dependencies": { - "@atproto/api": "0.20.31", + "@atproto/api": "0.20.34", "@atproto/common-web": "0.5.6", "@atproto/syntax": "0.7.2", "@bitdrift/react-native": "^0.6.8", @@ -105,10 +105,10 @@ "@bsky.app/expo-dynamic-app-icon": "^1.8.5", "@bsky.app/expo-guess-language": "^0.2.8", "@bsky.app/expo-image-crop-tool": "^0.5.1", - "@bsky.app/expo-scroll-edge-effect": "^0.1.4", + "@bsky.app/expo-scroll-edge-effect": "^0.1.9", "@bsky.app/expo-translate-text": "^0.2.9", - "@bsky.app/peek-menu": "^0.3.1", - "@bsky.app/react-native-mmkv": "2.12.5", + "@bsky.app/peek-menu": "^0.3.2", + "@bsky.app/react-native-uitextview": "^2.5.0", "@bsky.app/sift": "^0.3.9", "@bsky.app/tapper": "^0.6.1", "@bsky.app/video": "0.3.6", @@ -159,7 +159,7 @@ "emoji-mart": "^5.6.0", "emoji-regex": "^10.4.0", "eventemitter3": "^5.0.1", - "expo": "54.0.34", + "expo": "54.0.35", "expo-age-range": "0.2.18", "expo-application": "~7.0.8", "expo-asset": "~12.0.13", @@ -172,7 +172,7 @@ "expo-device": "~8.0.10", "expo-file-system": "~19.0.21", "expo-font": "~14.0.11", - "expo-glass-effect": "55.0.8", + "expo-glass-effect": "0.1.10", "expo-haptics": "~15.0.8", "expo-image": "~3.0.11", "expo-image-manipulator": "~14.0.8", @@ -186,7 +186,7 @@ "expo-media-library": "~18.2.1", "expo-notifications": "~0.32.17", "expo-paste-input": "^0.2.1", - "expo-privacy-sensitive": "^0.1.0", + "expo-privacy-sensitive": "^0.2.0", "expo-screen-orientation": "~9.0.8", "expo-sharing": "~14.0.8", "expo-sms": "^14.0.7", @@ -228,28 +228,30 @@ "react-native-device-attest": "^0.1.6", "react-native-drawer-layout": "^4.2.3", "react-native-edge-to-edge": "^1.8.1", - "react-native-gesture-handler": "~2.28.0", + "react-native-gesture-handler": "~2.30.0", "react-native-keyboard-controller": "^1.21.8", + "react-native-mmkv": "^3.3.3", "react-native-pager-view": "6.8.0", - "react-native-progress": "bluesky-social/react-native-progress", + "react-native-progress": "^5.0.1", "react-native-qrcode-styled": "^0.3.3", - "react-native-reanimated": "3.19.1", + "react-native-reanimated": "~4.3.2", "react-native-safe-area-context": "~5.6.0", "react-native-screens": "4.24.0", + "react-native-scroll-forwarder": "link:./modules/react-native-scroll-forwarder", "react-native-svg": "15.12.1", - "react-native-uitextview": "^1.4.0", "react-native-uuid": "^2.0.3", "react-native-view-shot": "^4.0.3", "react-native-web": "^0.21.0", "react-native-web-webview": "^1.0.2", "react-native-webview": "^13.15.0", + "react-native-worklets": "0.8.3", "react-remove-scroll-bar": "^2.3.8", "react-responsive": "^10.0.1", "react-textarea-autosize": "^8.5.3", "setimmediate": "^1.0.5", "slugify": "^1.6.9", "sonner": "^2.0.7", - "sonner-native": "0.21.0", + "sonner-native": "0.26.4", "tippy.js": "^6.3.7", "tlds": "^1.234.0", "tldts": "^6.1.46", diff --git a/patches/expo-glass-effect@55.0.8.patch b/patches/expo-glass-effect@55.0.8.patch deleted file mode 100644 index b793fe04d4..0000000000 --- a/patches/expo-glass-effect@55.0.8.patch +++ /dev/null @@ -1,60 +0,0 @@ -diff --git a/ios/GlassContainer.swift b/ios/GlassContainer.swift -index 61fb67cdfa2022f57524ddde05096067055e9ee6..b2d111ef8a724b8e7d4404f3d40efce3bd6fbb6d 100644 ---- a/ios/GlassContainer.swift -+++ b/ios/GlassContainer.swift -@@ -1,6 +1,7 @@ - // Copyright 2022-present 650 Industries. All rights reserved. - - import ExpoModulesCore -+import React - - public final class GlassContainer: ExpoView { - private var containerEffect: Any? -@@ -46,11 +47,19 @@ public final class GlassContainer: ExpoView { - } - } - -- public override func mountChildComponentView(_ childComponentView: UIView, index: Int) { -+ // Paper: redirect children into the container effect's contentView -+ public override func didUpdateReactSubviews() { -+ for subview in self.reactSubviews() { -+ containerEffectView.contentView.addSubview(subview) -+ } -+ } -+ -+ // Fabric: redirect children into the container effect's contentView -+ @objc public func mountChildComponentView(_ childComponentView: UIView, index: Int) { - containerEffectView.contentView.insertSubview(childComponentView, at: index) - } - -- public override func unmountChildComponentView(_ childComponentView: UIView, index: Int) { -+ @objc public func unmountChildComponentView(_ childComponentView: UIView, index: Int) { - childComponentView.removeFromSuperview() - } - } -diff --git a/ios/GlassView.swift b/ios/GlassView.swift -index 35cd8f320009a9e28fdbb2f55cc409734ba98f40..9587306b6fac3455ab27a5289eb62a711aa50c03 100644 ---- a/ios/GlassView.swift -+++ b/ios/GlassView.swift -@@ -271,11 +271,19 @@ public final class GlassView: ExpoView { - #endif - } - } -- public override func mountChildComponentView(_ childComponentView: UIView, index: Int) { -+ // Paper: redirect children into the glass effect's contentView -+ public override func didUpdateReactSubviews() { -+ for subview in self.reactSubviews() { -+ glassEffectView.contentView.addSubview(subview) -+ } -+ } -+ -+ // Fabric: redirect children into the glass effect's contentView -+ @objc public func mountChildComponentView(_ childComponentView: UIView, index: Int) { - glassEffectView.contentView.insertSubview(childComponentView, at: index) - } - -- public override func unmountChildComponentView(_ childComponentView: UIView, index: Int) { -+ @objc public func unmountChildComponentView(_ childComponentView: UIView, index: Int) { - childComponentView.removeFromSuperview() - } - } diff --git a/patches/expo-glass-effect@55.0.8.patch.md b/patches/expo-glass-effect@55.0.8.patch.md deleted file mode 100644 index ab668c78ff..0000000000 --- a/patches/expo-glass-effect@55.0.8.patch.md +++ /dev/null @@ -1,3 +0,0 @@ -# expo-glass-effect patch - -Patches in support for Expo SDK 54. Please delete when we update Expo diff --git a/patches/react-native-date-picker@5.0.13.patch b/patches/react-native-date-picker@5.0.13.patch index c6c0ccba72..494cdb9320 100644 --- a/patches/react-native-date-picker@5.0.13.patch +++ b/patches/react-native-date-picker@5.0.13.patch @@ -15,3 +15,17 @@ index 480746eb7acfbe86f67547d9e1de7a5be4d5faf2..13d30cb547195993dfcb4005cc0d248d #endif - +diff --git a/package.json b/package.json +index 469386dc2e81ded8994818dd4340409da1396488..36460e4e303ae56534c4d389471fc827433c7028 100644 +--- a/package.json ++++ b/package.json +@@ -70,9 +70,6 @@ + "ios": { + "componentProvider": { + "RNDatePicker": "RNDatePicker" +- }, +- "modulesProvider": { +- "RNDatePicker": "RNDatePickerManager" + } + } + } diff --git a/patches/react-native-gesture-handler.patch b/patches/react-native-gesture-handler.patch new file mode 100644 index 0000000000..b8a22cf6a5 --- /dev/null +++ b/patches/react-native-gesture-handler.patch @@ -0,0 +1,31 @@ +diff --git a/apple/RNGestureHandler.mm b/apple/RNGestureHandler.mm +index c4f760c41a9965245edcfa5e7cb781f8d2c7b66a..bf7d1fb092e22cbcedf787e606876e533879f810 100644 +--- a/apple/RNGestureHandler.mm ++++ b/apple/RNGestureHandler.mm +@@ -470,15 +470,19 @@ + (RNGestureHandler *)findGestureHandlerByRecognizer:(UIGestureRecognizer *)reco + + // We may try to extract "DummyGestureHandler" in case when "otherGestureRecognizer" belongs to + // a native view being wrapped with "NativeViewGestureHandler" +- RNGHUIView *reactView = recognizer.view; +- while (reactView != nil && reactView.reactTag == nil) { +- reactView = reactView.superview; +- } ++ RNGHUIView *view = recognizer.view; ++ while (view != nil) { ++ for (UIGestureRecognizer *candidateRecognizer in view.gestureRecognizers) { ++ if ([candidateRecognizer isKindOfClass:[RNDummyGestureRecognizer class]]) { ++ return candidateRecognizer.gestureHandler; ++ } ++ } + +- for (UIGestureRecognizer *recognizer in reactView.gestureRecognizers) { +- if ([recognizer isKindOfClass:[RNDummyGestureRecognizer class]]) { +- return recognizer.gestureHandler; ++ if ([view isKindOfClass:[RCTViewComponentView class]]) { ++ return nil; + } ++ ++ view = view.superview; + } + + return nil; diff --git a/patches/react-native-gesture-handler.patch.md b/patches/react-native-gesture-handler.patch.md new file mode 100644 index 0000000000..557823a23b --- /dev/null +++ b/patches/react-native-gesture-handler.patch.md @@ -0,0 +1,5 @@ +# react-native-gesture-handler.patch + +Updated `findGestureHandlerByRecognizer:` in `apple/RNGestureHandler.mm` to the version from RN GH 2.32.0 + +This fixes `UIContextMenuInteraction` from `ExpoBlueskyPeekMenuView.swift`. https://github.com/software-mansion/react-native-gesture-handler/commit/fba4dcc06d71dce08b10b2afc738a2af5b01e86a diff --git a/patches/react-native-pager-view@6.8.0.patch b/patches/react-native-pager-view@6.8.0.patch index 4444e60985..cc3968ac89 100644 --- a/patches/react-native-pager-view@6.8.0.patch +++ b/patches/react-native-pager-view@6.8.0.patch @@ -1,3 +1,129 @@ +diff --git a/ios/Fabric/RNCPagerViewComponentView.mm b/ios/Fabric/RNCPagerViewComponentView.mm +index 652a5c123100e7010011f07649517aa9e0cbc554..efbc3af622c4fee8267a78144b906c7b5de7859c 100644 +--- a/ios/Fabric/RNCPagerViewComponentView.mm ++++ b/ios/Fabric/RNCPagerViewComponentView.mm +@@ -90,6 +90,62 @@ - (void)willMoveToSuperview:(UIView *)newSuperview { + } + } + ++/* ++ * UIKit resolves several behaviors (status-bar-tap scroll-to-top, safe area ++ * propagation, appearance callbacks) by walking parentViewController from a ++ * view's nearest view controller up to the window's root view controller. ++ * The Paper implementation embeds the UIPageViewController into that chain ++ * via reactAddControllerToClosestParent:, but this Fabric implementation ++ * leaves it orphaned (parentViewController == nil), which among other things ++ * makes UIKit ignore every scroll view rendered inside the pager when ++ * handling the status bar scroll-to-top tap. Attach the page view controller ++ * to the nearest ancestor view controller to restore parity with Paper. ++ */ ++- (void)attachNativePageViewControllerToNearestParent { ++ if (_nativePageViewController == nil || ++ _nativePageViewController.parentViewController != nil) { ++ return; ++ } ++ UIResponder *responder = self.nextResponder; ++ while (responder != nil && ![responder isKindOfClass:[UIViewController class]]) { ++ responder = responder.nextResponder; ++ } ++ UIViewController *parent = (UIViewController *)responder; ++ if (parent == nil) { ++ return; ++ } ++ [parent addChildViewController:_nativePageViewController]; ++ [_nativePageViewController didMoveToParentViewController:parent]; ++} ++ ++- (void)detachNativePageViewControllerFromParent { ++ if (_nativePageViewController.parentViewController == nil) { ++ return; ++ } ++ [_nativePageViewController willMoveToParentViewController:nil]; ++ [_nativePageViewController removeFromParentViewController]; ++} ++ ++- (void)didMoveToWindow { ++ [super didMoveToWindow]; ++ if (self.window != nil) { ++ [self attachNativePageViewControllerToNearestParent]; ++ } ++} ++ ++- (void)layoutSubviews { ++ [super layoutSubviews]; ++ /* ++ * On the first didMoveToWindow the ancestor view controller may not be ++ * wired up yet (see callstack/react-native-pager-view#1089 for the same ++ * timing issue in v8), so retry here; the attach is a cheap no-op once ++ * the controller has a parent. ++ */ ++ if (self.window != nil) { ++ [self attachNativePageViewControllerToNearestParent]; ++ } ++} ++ + + #pragma mark - React API + +@@ -126,6 +182,13 @@ -(void)updateLayoutMetrics:(const facebook::react::LayoutMetrics &)layoutMetrics + + -(void)prepareForRecycle { + [super prepareForRecycle]; ++ /* ++ * Undo the child view controller relationship added in ++ * attachNativePageViewControllerToNearestParent, otherwise the parent ++ * view controller keeps the page view controller (and its subtree) alive ++ * after unmount. ++ */ ++ [self detachNativePageViewControllerFromParent]; + _nativePageViewController = nil; + _currentIndex = -1; + } +@@ -421,8 +484,44 @@ + (ComponentDescriptorProvider)componentDescriptorProvider + } + + ++/* ++ * Finds the navigation controller managing this pager via the responder ++ * chain, so the pager can cooperate with the controller's back gesture. ++ */ ++- (UINavigationController *)nearestNavigationController { ++ UIResponder *responder = self.nextResponder; ++ while (responder != nil) { ++ if ([responder isKindOfClass:[UINavigationController class]]) { ++ return (UINavigationController *)responder; ++ } ++ responder = responder.nextResponder; ++ } ++ return nil; ++} ++ + - (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer { + ++ // iOS 26+ full-screen back gesture (interactiveContentPopGestureRecognizer) ++ if (@available(iOS 26.0, *)) { ++ if (gestureRecognizer == self.panGestureRecognizer && ++ otherGestureRecognizer != nil && ++ otherGestureRecognizer == [self nearestNavigationController].interactiveContentPopGestureRecognizer) { ++ UIPanGestureRecognizer* panGestureRecognizer = (UIPanGestureRecognizer*) gestureRecognizer; ++ CGPoint velocity = [panGestureRecognizer velocityInView:self]; ++ BOOL isLTR = [self isLtrLayout]; ++ BOOL isBackGesture = (isLTR && velocity.x > 0) || (!isLTR && velocity.x < 0); ++ ++ if (self.currentIndex == 0 && isBackGesture) { ++ scrollView.panGestureRecognizer.enabled = false; ++ } else { ++ const auto &viewProps = *std::static_pointer_cast(_props); ++ scrollView.panGestureRecognizer.enabled = viewProps.scrollEnabled; ++ } ++ ++ return YES; ++ } ++ } ++ + // Recognize simultaneously only if the other gesture is RN Screen's pan gesture (one that is used to perform fullScreenGestureEnabled) + if (gestureRecognizer == self.panGestureRecognizer && [NSStringFromClass([otherGestureRecognizer class]) isEqual: @"RNSPanGestureRecognizer"]) { + UIPanGestureRecognizer* panGestureRecognizer = (UIPanGestureRecognizer*) gestureRecognizer; diff --git a/ios/RNCPagerView.m b/ios/RNCPagerView.m index adfc7c6f2224b898a02319d352bb4fe11a18fd7e..939bb801c5b0ca6f93b77cb0507c19d137e08e77 100644 --- a/ios/RNCPagerView.m diff --git a/patches/react-native-pager-view@6.8.0.patch.md b/patches/react-native-pager-view@6.8.0.patch.md index fd22b8376e..9e99dc4a1c 100644 --- a/patches/react-native-pager-view@6.8.0.patch.md +++ b/patches/react-native-pager-view@6.8.0.patch.md @@ -6,6 +6,20 @@ The pager already handles `RNSPanGestureRecognizer` (react-native-screens' custo This patch adds the same logic for iOS 26's native `interactiveContentPopGestureRecognizer`, so the back gesture works on the leftmost page while the pager still handles swipes on other pages. +The fix is applied to both implementations: `ios/RNCPagerView.m` (Paper) and `ios/Fabric/RNCPagerViewComponentView.mm` (New Architecture). The Fabric variant finds the navigation controller via the responder chain (there is no `reactViewController` helper imported there) and reads `scrollEnabled` from the Fabric props. + Related issues: - https://github.com/software-mansion/react-native-screens/issues/3512 - https://github.com/software-mansion/react-native-screens/pull/3420 + +--- + +Also embeds the Fabric `UIPageViewController` into the view controller hierarchy (`ios/Fabric/RNCPagerViewComponentView.mm`). + +The Paper implementation calls `reactAddControllerToClosestParent:` when embedding its `UIPageViewController`, so the controller becomes a child of the nearest ancestor view controller (e.g. `RNSScreen`). The Fabric implementation never does this - the page view controller is orphaned (`parentViewController == nil`). + +UIKit resolves the status-bar-tap scroll-to-top gesture by walking `parentViewController`/`presentingViewController` from each candidate scroll view's nearest view controller up to the window's root (see `-[UIWindow _scrollToTopViewsUnderScreenPointIfNecessary:resultHandler:]`). With the orphaned controller that walk dead-ends, so every scroll view rendered inside a pager (all Home feeds, Profile tabs, etc.) is dropped from candidate selection and tapping the status bar no longer scrolls feeds to top. It only kept "working" when the window happened to contain exactly one other eligible scroll view, via UIKit's single-candidate fallback. + +The patch attaches the page view controller to the nearest view controller found via the responder chain on `didMoveToWindow` (with a `layoutSubviews` retry because the ancestor controller may not be wired up on the first pass - same timing issue as callstack/react-native-pager-view#1089), and detaches it in `prepareForRecycle` to avoid leaking the controller after unmount. + +Fixed upstream in v8 by the SwiftUI rewrite, which embeds via `reactViewController()` + `addChild` (see `PagerViewProvider.swift`). diff --git a/patches/react-native-reanimated@3.19.1.patch b/patches/react-native-reanimated@3.19.1.patch deleted file mode 100644 index 8cc124d14b..0000000000 --- a/patches/react-native-reanimated@3.19.1.patch +++ /dev/null @@ -1,390 +0,0 @@ -diff --git a/lib/module/component/PerformanceMonitor.js b/lib/module/component/PerformanceMonitor.js -index 9c98d6cc395419f50969753a4e4c7962b7be588f..3686a97280ac540efa0814ac4dea40358860a76f 100644 ---- a/lib/module/component/PerformanceMonitor.js -+++ b/lib/module/component/PerformanceMonitor.js -@@ -1,125 +1,5 @@ - 'use strict'; - --import React, { useEffect, useRef } from 'react'; --import { StyleSheet, TextInput, View } from 'react-native'; --import { addWhitelistedNativeProps } from "../ConfigHelper.js"; --import { createAnimatedComponent } from "../createAnimatedComponent/index.js"; --import { useAnimatedProps, useFrameCallback, useSharedValue } from "../hook/index.js"; --function createCircularDoublesBuffer(size) { -- 'worklet'; -- -- return { -- next: 0, -- buffer: new Float32Array(size), -- size, -- count: 0, -- push(value) { -- const oldValue = this.buffer[this.next]; -- const oldCount = this.count; -- this.buffer[this.next] = value; -- this.next = (this.next + 1) % this.size; -- this.count = Math.min(this.size, this.count + 1); -- return oldCount === this.size ? oldValue : null; -- }, -- front() { -- const notEmpty = this.count > 0; -- if (notEmpty) { -- const current = this.next - 1; -- const index = current < 0 ? this.size - 1 : current; -- return this.buffer[index]; -- } -- return null; -- }, -- back() { -- const notEmpty = this.count > 0; -- return notEmpty ? this.buffer[this.next] : null; -- } -- }; --} --const DEFAULT_BUFFER_SIZE = 20; --addWhitelistedNativeProps({ -- text: true --}); --const AnimatedTextInput = createAnimatedComponent(TextInput); --function loopAnimationFrame(fn) { -- let lastTime = 0; -- function loop() { -- requestAnimationFrame(time => { -- if (lastTime > 0) { -- fn(lastTime, time); -- } -- lastTime = time; -- requestAnimationFrame(loop); -- }); -- } -- loop(); --} --function getFps(renderTimeInMs) { -- 'worklet'; -- -- return 1000 / renderTimeInMs; --} --function completeBufferRoutine(buffer, timestamp) { -- 'worklet'; -- -- timestamp = Math.round(timestamp); -- const droppedTimestamp = buffer.push(timestamp) ?? timestamp; -- const measuredRangeDuration = timestamp - droppedTimestamp; -- return getFps(measuredRangeDuration / buffer.count); --} --function JsPerformance({ -- smoothingFrames --}) { -- const jsFps = useSharedValue(null); -- const totalRenderTime = useSharedValue(0); -- const circularBuffer = useRef(createCircularDoublesBuffer(smoothingFrames)); -- useEffect(() => { -- loopAnimationFrame((_, timestamp) => { -- timestamp = Math.round(timestamp); -- const currentFps = completeBufferRoutine(circularBuffer.current, timestamp); -- -- // JS fps have to be measured every 2nd frame, -- // thus 2x multiplication has to occur here -- jsFps.value = (currentFps * 2).toFixed(0); -- }); -- }, [jsFps, totalRenderTime]); -- const animatedProps = useAnimatedProps(() => { -- const text = 'JS: ' + (jsFps.value ?? 'N/A') + ' '; -- return { -- text, -- defaultValue: text -- }; -- }); -- return -- -- ; --} --function UiPerformance({ -- smoothingFrames --}) { -- const uiFps = useSharedValue(null); -- const circularBuffer = useSharedValue(null); -- useFrameCallback(({ -- timestamp -- }) => { -- if (circularBuffer.value === null) { -- circularBuffer.value = createCircularDoublesBuffer(smoothingFrames); -- } -- timestamp = Math.round(timestamp); -- const currentFps = completeBufferRoutine(circularBuffer.value, timestamp); -- uiFps.value = currentFps.toFixed(0); -- }); -- const animatedProps = useAnimatedProps(() => { -- const text = 'UI: ' + (uiFps.value ?? 'N/A') + ' '; -- return { -- text, -- defaultValue: text -- }; -- }); -- return -- -- ; --} - /** - * A component that lets you measure fps values on JS and UI threads on both the - * Paper and Fabric architectures. -@@ -127,38 +7,7 @@ function UiPerformance({ - * @param smoothingFrames - Determines amount of saved frames which will be used - * for fps value smoothing. - */ --export function PerformanceMonitor({ -- smoothingFrames = DEFAULT_BUFFER_SIZE --}) { -- return -- -- -- ; -+export function PerformanceMonitor() { -+ return null; - } --const styles = StyleSheet.create({ -- monitor: { -- flexDirection: 'row', -- position: 'absolute', -- backgroundColor: '#0006', -- zIndex: 1000 -- }, -- header: { -- fontSize: 14, -- color: '#ffff', -- paddingHorizontal: 5 -- }, -- text: { -- fontSize: 13, -- fontVariant: ['tabular-nums'], -- color: '#ffff', -- fontFamily: 'monospace', -- paddingHorizontal: 3 -- }, -- container: { -- alignItems: 'center', -- justifyContent: 'center', -- flexDirection: 'row', -- flexWrap: 'wrap' -- } --}); - //# sourceMappingURL=PerformanceMonitor.js.map -\ No newline at end of file -diff --git a/src/component/PerformanceMonitor.tsx b/src/component/PerformanceMonitor.tsx -index ff8fc8a947a0aeb959e21ec061882c3d190a2ce0..34dde79727765623df80dbcdab5016de6fd5d82c 100644 ---- a/src/component/PerformanceMonitor.tsx -+++ b/src/component/PerformanceMonitor.tsx -@@ -1,170 +1,5 @@ - 'use strict'; - --import React, { useEffect, useRef } from 'react'; --import { StyleSheet, TextInput, View } from 'react-native'; -- --import { addWhitelistedNativeProps } from '../ConfigHelper'; --import { createAnimatedComponent } from '../createAnimatedComponent'; --import type { FrameInfo } from '../frameCallback'; --import { useAnimatedProps, useFrameCallback, useSharedValue } from '../hook'; -- --type CircularBuffer = ReturnType; --function createCircularDoublesBuffer(size: number) { -- 'worklet'; -- -- return { -- next: 0 as number, -- buffer: new Float32Array(size), -- size, -- count: 0 as number, -- -- push(value: number): number | null { -- const oldValue = this.buffer[this.next]; -- const oldCount = this.count; -- this.buffer[this.next] = value; -- -- this.next = (this.next + 1) % this.size; -- this.count = Math.min(this.size, this.count + 1); -- return oldCount === this.size ? oldValue : null; -- }, -- -- front(): number | null { -- const notEmpty = this.count > 0; -- if (notEmpty) { -- const current = this.next - 1; -- const index = current < 0 ? this.size - 1 : current; -- return this.buffer[index]; -- } -- return null; -- }, -- -- back(): number | null { -- const notEmpty = this.count > 0; -- return notEmpty ? this.buffer[this.next] : null; -- }, -- }; --} -- --const DEFAULT_BUFFER_SIZE = 20; --addWhitelistedNativeProps({ text: true }); --const AnimatedTextInput = createAnimatedComponent(TextInput); -- --function loopAnimationFrame(fn: (lastTime: number, time: number) => void) { -- let lastTime = 0; -- -- function loop() { -- requestAnimationFrame((time) => { -- if (lastTime > 0) { -- fn(lastTime, time); -- } -- lastTime = time; -- requestAnimationFrame(loop); -- }); -- } -- -- loop(); --} -- --function getFps(renderTimeInMs: number): number { -- 'worklet'; -- return 1000 / renderTimeInMs; --} -- --function completeBufferRoutine( -- buffer: CircularBuffer, -- timestamp: number --): number { -- 'worklet'; -- timestamp = Math.round(timestamp); -- -- const droppedTimestamp = buffer.push(timestamp) ?? timestamp; -- -- const measuredRangeDuration = timestamp - droppedTimestamp; -- -- return getFps(measuredRangeDuration / buffer.count); --} -- --function JsPerformance({ smoothingFrames }: { smoothingFrames: number }) { -- const jsFps = useSharedValue(null); -- const totalRenderTime = useSharedValue(0); -- const circularBuffer = useRef( -- createCircularDoublesBuffer(smoothingFrames) -- ); -- -- useEffect(() => { -- loopAnimationFrame((_, timestamp) => { -- timestamp = Math.round(timestamp); -- -- const currentFps = completeBufferRoutine( -- circularBuffer.current, -- timestamp -- ); -- -- // JS fps have to be measured every 2nd frame, -- // thus 2x multiplication has to occur here -- jsFps.value = (currentFps * 2).toFixed(0); -- }); -- }, [jsFps, totalRenderTime]); -- -- const animatedProps = useAnimatedProps(() => { -- const text = 'JS: ' + (jsFps.value ?? 'N/A') + ' '; -- return { text, defaultValue: text }; -- }); -- -- return ( -- -- -- -- ); --} -- --function UiPerformance({ smoothingFrames }: { smoothingFrames: number }) { -- const uiFps = useSharedValue(null); -- const circularBuffer = useSharedValue(null); -- -- useFrameCallback(({ timestamp }: FrameInfo) => { -- if (circularBuffer.value === null) { -- circularBuffer.value = createCircularDoublesBuffer(smoothingFrames); -- } -- -- timestamp = Math.round(timestamp); -- -- const currentFps = completeBufferRoutine(circularBuffer.value, timestamp); -- -- uiFps.value = currentFps.toFixed(0); -- }); -- -- const animatedProps = useAnimatedProps(() => { -- const text = 'UI: ' + (uiFps.value ?? 'N/A') + ' '; -- return { text, defaultValue: text }; -- }); -- -- return ( -- -- -- -- ); --} -- --export type PerformanceMonitorProps = { -- /** -- * Sets amount of previous frames used for smoothing at highest expectedFps. -- * -- * Automatically scales down at lower frame rates. -- * -- * Affects jumpiness of the FPS measurements value. -- */ -- smoothingFrames?: number; --}; -- - /** - * A component that lets you measure fps values on JS and UI threads on both the - * Paper and Fabric architectures. -@@ -172,40 +7,6 @@ export type PerformanceMonitorProps = { - * @param smoothingFrames - Determines amount of saved frames which will be used - * for fps value smoothing. - */ --export function PerformanceMonitor({ -- smoothingFrames = DEFAULT_BUFFER_SIZE, --}: PerformanceMonitorProps) { -- return ( -- -- -- -- -- ); -+export function PerformanceMonitor() { -+ return null; - } -- --const styles = StyleSheet.create({ -- monitor: { -- flexDirection: 'row', -- position: 'absolute', -- backgroundColor: '#0006', -- zIndex: 1000, -- }, -- header: { -- fontSize: 14, -- color: '#ffff', -- paddingHorizontal: 5, -- }, -- text: { -- fontSize: 13, -- fontVariant: ['tabular-nums'], -- color: '#ffff', -- fontFamily: 'monospace', -- paddingHorizontal: 3, -- }, -- container: { -- alignItems: 'center', -- justifyContent: 'center', -- flexDirection: 'row', -- flexWrap: 'wrap', -- }, --}); diff --git a/patches/react-native-reanimated@4.3.2.patch b/patches/react-native-reanimated@4.3.2.patch new file mode 100644 index 0000000000..bc517898b5 --- /dev/null +++ b/patches/react-native-reanimated@4.3.2.patch @@ -0,0 +1,500 @@ +diff --git a/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp b/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp +index 531f0dc7b4eeb9b29cb2255d8444da02a74c35b7..534f419fce55c39a09a7eebfb7ab3c53f8a16637 100644 +--- a/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp ++++ b/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.cpp +@@ -1,8 +1,10 @@ + #include + #include + ++#include + #include + #include ++#include + + namespace reanimated { + +@@ -25,25 +27,59 @@ void AnimatedPropsRegistry::update(jsi::Runtime &rt, const jsi::Value &operation + addUpdatesToBatch(shadowNode, jsi::dynamicFromValue(rt, updates)); + + if constexpr (StaticFeatureFlags::getFlag("FORCE_REACT_RENDER_FOR_SETTLED_ANIMATIONS")) { +- timestampMap_[shadowNode->getTag()] = timestamp; ++ const auto tag = shadowNode->getTag(); ++ timestampMap_[tag] = timestamp; ++ // If JS already has a `settledProps` snapshot for this tag, it is now ++ // stale โ€” schedule a refresh on the next `collectSettledUpdates`. ++ if (syncedTags_.erase(tag) > 0) { ++ invalidatedTags_.insert(tag); ++ } + } + } + } + +-jsi::Value AnimatedPropsRegistry::getUpdatesOlderThanTimestamp( +- jsi::Runtime &rt, +- const double timestamp, +- const double cleanupTimestamp) { ++jsi::Value AnimatedPropsRegistry::collectSettledUpdates(jsi::Runtime &rt, const double settledTimestamp) { + std::lock_guard lock{mutex_}; +- removeUpdatesOlderThanTimestamp(cleanupTimestamp); + + std::vector>> updates; + +- for (const auto &[viewTag, pair] : updatesRegistry_) { +- auto it = timestampMap_.find(viewTag); +- if (it != timestampMap_.end() && it->second < timestamp) { +- updates.emplace_back(viewTag, std::cref(pair.second)); ++ for (auto it = updatesRegistry_.begin(); it != updatesRegistry_.end();) { ++ const auto viewTag = it->first; ++ ++ if (syncedTags_.contains(viewTag)) { ++ // React already has the latest value for this tag (synced on a previous ++ // call, so the `settledProps` state is committed by now) โ€” the registry ++ // entry is redundant. `syncedTags_` is intentionally retained to detect ++ // re-animation staleness. Note that `syncedTags_` and `invalidatedTags_` ++ // are disjoint โ€” `update()` moves tags from the former to the latter. ++ timestampMap_.erase(viewTag); ++ it = updatesRegistry_.erase(it); ++ continue; ++ } ++ ++ const auto timestampIt = timestampMap_.find(viewTag); ++ if (timestampIt == timestampMap_.end()) { ++ ++it; ++ continue; ++ } ++ const bool isSettled = timestampIt->second < settledTimestamp; ++ const auto invalidatedIt = invalidatedTags_.find(viewTag); ++ const bool isInvalidated = invalidatedIt != invalidatedTags_.end(); ++ if (isSettled || isInvalidated) { ++ updates.emplace_back(viewTag, std::cref(it->second.second)); ++ if (isSettled) { ++ // Only settled-path tags are tracked as "synced" so that an ongoing ++ // animation doesn't re-trigger an invalidation/sync on every GC tick. ++ syncedTags_.insert(viewTag); ++ } ++ if (isInvalidated) { ++ // Only erase serviced invalidations; if a tag was invalidated but the ++ // matching update batch hasn't been flushed into updatesRegistry_ yet, ++ // we leave the entry so the next sync picks it up. ++ invalidatedTags_.erase(invalidatedIt); ++ } + } ++ ++it; + } + + const jsi::Array array(rt, updates.size()); +@@ -58,22 +94,11 @@ jsi::Value AnimatedPropsRegistry::getUpdatesOlderThanTimestamp( + return jsi::Value(rt, array); + } + +-void AnimatedPropsRegistry::removeUpdatesOlderThanTimestamp(const double timestamp) { +- for (auto it = timestampMap_.begin(); it != timestampMap_.end();) { +- const auto viewTag = it->first; +- const auto viewTimestamp = it->second; +- if (viewTimestamp < timestamp) { +- it = timestampMap_.erase(it); +- updatesRegistry_.erase(viewTag); +- } else { +- it++; +- } +- } +-} +- + void AnimatedPropsRegistry::removeTag(const Tag tag) { + updatesRegistry_.erase(tag); + timestampMap_.erase(tag); ++ syncedTags_.erase(tag); ++ invalidatedTags_.erase(tag); + } + + } // namespace reanimated +diff --git a/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.h b/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.h +index 2c6c0e13604c9421e147d7eea7f4a4752288011c..8cd67f118501c2786b94d76541aea29a14ba8c16 100644 +--- a/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.h ++++ b/Common/cpp/reanimated/Fabric/updates/AnimatedPropsRegistry.h +@@ -4,10 +4,8 @@ + + #include + +-#include +-#include + #include +-#include ++#include + + namespace reanimated { + +@@ -15,13 +13,22 @@ class AnimatedPropsRegistry : public UpdatesRegistry { + public: + void update(jsi::Runtime &rt, const jsi::Value &operations, double timestamp); + +- /// Also removes updates older than `cleanupTimestamp` from the registry. +- jsi::Value getUpdatesOlderThanTimestamp(jsi::Runtime &rt, double timestamp, double cleanupTimestamp); ++ /// Returns updates that settled (received no update since `settledTimestamp`) ++ /// or whose synced `settledProps` snapshot was invalidated by a fresh update. ++ /// Also evicts entries that have already been synced to React โ€” by the time ++ /// of the next call, the corresponding `settledProps` state is guaranteed to ++ /// be committed, so the registry entries are redundant. ++ jsi::Value collectSettledUpdates(jsi::Runtime &rt, double settledTimestamp); + + private: + std::unordered_map timestampMap_; // viewTag -> timestamp, protected by `mutex_` ++ // Tags whose latest values have already been pushed to React `settledProps`. ++ // Intentionally retained after eviction to detect re-animation staleness. ++ std::unordered_set syncedTags_; ++ // Tags that were synced to React but received a fresh worklet update since; ++ // their `settledProps` are stale and need to be refreshed on the next sync. ++ std::unordered_set invalidatedTags_; + +- void removeUpdatesOlderThanTimestamp(double timestamp); + void removeTag(Tag tag) override; + }; + +diff --git a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxyCommon.h b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxyCommon.h +index 096218ab9659955cd6272c97181bce3c893ed591..1a8e25fc8295b3ac943130709bf063ea41a50585 100644 +--- a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxyCommon.h ++++ b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxyCommon.h +@@ -57,11 +57,11 @@ class LayoutAnimationsProxyCommon : public facebook::react::MountingOverrideDele + const SharedComponentDescriptorRegistry &componentDescriptorRegistry, + const std::shared_ptr &contextContainer, + jsi::Runtime &uiRuntime, +- const std::shared_ptr &uiScheduler ++ const std::shared_ptr &uiScheduler, ++ const std::shared_ptr &uiManager + #ifdef ANDROID + , + const PreserveMountedTagsFunction &filterUnmountedTagsFunction, +- const std::shared_ptr &uiManager, + const std::shared_ptr &jsInvoker + #endif + ) +@@ -69,11 +69,11 @@ class LayoutAnimationsProxyCommon : public facebook::react::MountingOverrideDele + contextContainer_(contextContainer), + componentDescriptorRegistry_(componentDescriptorRegistry), + uiRuntime_(uiRuntime), +- uiScheduler_(uiScheduler) ++ uiScheduler_(uiScheduler), ++ uiManager_(uiManager) + #ifdef ANDROID + , + preserveMountedTags_(filterUnmountedTagsFunction), +- uiManager_(uiManager), + jsInvoker_(jsInvoker) + #endif + { +@@ -93,10 +93,10 @@ class LayoutAnimationsProxyCommon : public facebook::react::MountingOverrideDele + SharedComponentDescriptorRegistry componentDescriptorRegistry_; + jsi::Runtime &uiRuntime_; + const std::shared_ptr uiScheduler_; ++ std::shared_ptr uiManager_; + PreserveMountedTagsFunction preserveMountedTags_; + + #ifdef ANDROID +- std::shared_ptr uiManager_; + std::shared_ptr jsInvoker_; + + void restoreOpacityInCaseOfFlakyEnteringAnimation(SurfaceId surfaceId) const; +diff --git a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Experimental.h b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Experimental.h +index eca44e4cf651d16e9741806004ce9119c85d07d6..e39c79a5d7b52659106ed6fe6fbcbbc048bf4787 100644 +--- a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Experimental.h ++++ b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Experimental.h +@@ -66,11 +66,11 @@ struct LayoutAnimationsProxy_Experimental : public LayoutAnimationsProxyCommon, + const SharedComponentDescriptorRegistry &componentDescriptorRegistry, + const std::shared_ptr &contextContainer, + jsi::Runtime &uiRuntime, +- const std::shared_ptr &uiScheduler ++ const std::shared_ptr &uiScheduler, ++ const std::shared_ptr &uiManager + #ifdef ANDROID + , + const PreserveMountedTagsFunction &filterUnmountedTagsFunction, +- const std::shared_ptr &uiManager, + const std::shared_ptr &jsInvoker + #endif + ) +@@ -79,11 +79,11 @@ struct LayoutAnimationsProxy_Experimental : public LayoutAnimationsProxyCommon, + componentDescriptorRegistry, + contextContainer, + uiRuntime, +- uiScheduler ++ uiScheduler, ++ uiManager + #ifdef ANDROID + , + filterUnmountedTagsFunction, +- uiManager, + jsInvoker + #endif + ), +diff --git a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.cpp b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.cpp +index 83ef7430b923b6b3b99368ee8072168769110cd0..2affd12822ab19bdc90963d3ce8ca1e6bb0d43b7 100644 +--- a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.cpp ++++ b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.cpp +@@ -2,6 +2,7 @@ + #include + + #include ++#include + #include + + #include +@@ -53,14 +54,37 @@ std::optional LayoutAnimationsProxy_Legacy::pullTransaction + + parseRemoveMutations(movedViews, mutations, roots); + +- auto shouldAnimate = !surfacesToRemove_.contains(surfaceId); +- surfacesToRemove_.erase(surfaceId); ++ // Consume the teardown mark only on the transaction that actually clears ++ // the root โ€” pulls emitted for animation frames must not eat it early. ++ auto shouldAnimate = true; ++ const auto removesRootChildren = std::ranges::any_of(mutations, [surfaceId](const auto &mutation) { ++ return mutation.type == ShadowViewMutation::Remove && mutation.parentTag == surfaceId; ++ }); ++ if (removesRootChildren) { ++ shouldAnimate = surfacesToRemove_.erase(surfaceId) == 0; ++ } + handleRemovals(filteredMutations, roots, deadNodes, shouldAnimate); + + handleUpdatesAndEnterings(filteredMutations, movedViews, mutations, propsParserContext, surfaceId); + + addOngoingAnimations(surfaceId, filteredMutations); + ++ // The LayoutAnimationDriver can emit a final keyframe update in the same ++ // transaction as the deferred Remove/Delete it withheld for a delete ++ // animation. We emit removals before updates, so such an update would ++ // otherwise reach the mounting layer after its view was deleted. ++ std::unordered_set deletedTags; ++ for (const auto &mutation : filteredMutations) { ++ if (mutation.type == ShadowViewMutation::Delete) { ++ deletedTags.insert(mutation.oldChildShadowView.tag); ++ } ++ } ++ if (!deletedTags.empty()) { ++ std::erase_if(filteredMutations, [&deletedTags](const auto &mutation) { ++ return mutation.type == ShadowViewMutation::Update && deletedTags.contains(mutation.newChildShadowView.tag); ++ }); ++ } ++ + return MountingTransaction{surfaceId, transactionNumber, std::move(filteredMutations), telemetry}; + } + +@@ -947,23 +971,22 @@ inline bool MutationNode::isMutationNode() { + return true; + } + +-// UIManagerAnimationDelegate +- +-void LayoutAnimationsProxy_Legacy::uiManagerDidConfigureNextLayoutAnimation( +- jsi::Runtime &runtime, +- const RawValue &config, +- const jsi::Value &successCallbackValue, +- const jsi::Value &failureCallbackValue) const {} ++// UIManagerCommitHook + +-void LayoutAnimationsProxy_Legacy::setComponentDescriptorRegistry( +- const SharedComponentDescriptorRegistry &componentDescriptorRegistry) {} +- +-bool LayoutAnimationsProxy_Legacy::shouldAnimateFrame() const { +- return false; +-} +- +-void LayoutAnimationsProxy_Legacy::stopSurface(SurfaceId surfaceId) { +- surfacesToRemove_.insert(surfaceId); ++// Surface teardown commits an empty root (SurfaceHandler::stop) before the ++// teardown transaction is pulled โ€” mark it so pullTransaction skips exit ++// animations. Reading the ShadowTreeRegistry here instead would deadlock (#8579). ++RootShadowNode::Unshared LayoutAnimationsProxy_Legacy::shadowTreeWillCommit( ++ const ShadowTree &shadowTree, ++ const RootShadowNode::Shared & /*oldRootShadowNode*/, ++ const RootShadowNode::Unshared &newRootShadowNode) noexcept { ++ auto lock = std::unique_lock(mutex); ++ if (newRootShadowNode->getChildren().empty()) { ++ surfacesToRemove_.insert(shadowTree.getSurfaceId()); ++ } else { ++ surfacesToRemove_.erase(shadowTree.getSurfaceId()); ++ } ++ return newRootShadowNode; + } + + } // namespace reanimated +diff --git a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.h b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.h +index e9a5e9959e89ec33cee179ddb907c17f6dfbd3de..a2c89041518cd71e8ba5ac62ef89c0022d197c9b 100644 +--- a/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.h ++++ b/Common/cpp/reanimated/LayoutAnimations/LayoutAnimationsProxy_Legacy.h +@@ -3,8 +3,8 @@ + #include + #include + #include +-#include + #include ++#include + #include + #include + #include +@@ -102,7 +102,7 @@ struct SurfaceContext { + }; + + struct LayoutAnimationsProxy_Legacy : public LayoutAnimationsProxyCommon, +- public UIManagerAnimationDelegate, ++ public UIManagerCommitHook, + public std::enable_shared_from_this { + mutable std::unordered_map> nodeForTag_; + mutable std::recursive_mutex mutex; +@@ -116,11 +116,11 @@ struct LayoutAnimationsProxy_Legacy : public LayoutAnimationsProxyCommon, + const SharedComponentDescriptorRegistry &componentDescriptorRegistry, + const std::shared_ptr &contextContainer, + jsi::Runtime &uiRuntime, +- const std::shared_ptr &uiScheduler ++ const std::shared_ptr &uiScheduler, ++ const std::shared_ptr &uiManager + #ifdef ANDROID + , + const PreserveMountedTagsFunction &filterUnmountedTagsFunction, +- const std::shared_ptr &uiManager, + const std::shared_ptr &jsInvoker + #endif + ) +@@ -129,14 +129,19 @@ struct LayoutAnimationsProxy_Legacy : public LayoutAnimationsProxyCommon, + componentDescriptorRegistry, + contextContainer, + uiRuntime, +- uiScheduler ++ uiScheduler, ++ uiManager + #ifdef ANDROID + , + filterUnmountedTagsFunction, +- uiManager, + jsInvoker + #endif + ) { ++ uiManager->registerCommitHook(*this); ++ } ++ ++ ~LayoutAnimationsProxy_Legacy() override { ++ uiManager_->unregisterCommitHook(*this); + } + + void startEnteringAnimation(const int tag, ShadowViewMutation &mutation) const; +@@ -202,19 +207,15 @@ struct LayoutAnimationsProxy_Legacy : public LayoutAnimationsProxyCommon, + const TransactionTelemetry &telemetry, + ShadowViewMutationList mutations) const override; + +- // UIManagerAnimationDelegate +- +- void uiManagerDidConfigureNextLayoutAnimation( +- jsi::Runtime &runtime, +- const RawValue &config, +- const jsi::Value &successCallbackValue, +- const jsi::Value &failureCallbackValue) const override; +- +- void setComponentDescriptorRegistry(const SharedComponentDescriptorRegistry &componentDescriptorRegistry) override; ++ // UIManagerCommitHook + +- bool shouldAnimateFrame() const override; ++ void commitHookWasRegistered(const UIManager &uiManager) noexcept override {} ++ void commitHookWasUnregistered(const UIManager &uiManager) noexcept override {} + +- void stopSurface(SurfaceId surfaceId) override; ++ RootShadowNode::Unshared shadowTreeWillCommit( ++ const ShadowTree &shadowTree, ++ const RootShadowNode::Shared &oldRootShadowNode, ++ const RootShadowNode::Unshared &newRootShadowNode) noexcept override; + }; + + } // namespace reanimated +diff --git a/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp b/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp +index 9ade22bf773005613048a00c47b35767628e86c6..f3415e824da1a8da5c83762415ca54646bd6429f 100644 +--- a/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp ++++ b/Common/cpp/reanimated/NativeModules/ReanimatedModuleProxy.cpp +@@ -524,15 +524,13 @@ jsi::Value ReanimatedModuleProxy::getSettledUpdates(jsi::Runtime &rt) { + StaticFeatureFlags::getFlag("FORCE_REACT_RENDER_FOR_SETTLED_ANIMATIONS") && + "getSettledUpdates requires FORCE_REACT_RENDER_FOR_SETTLED_ANIMATIONS static feature flag to be enabled"); + ++ constexpr double SETTLED_ANIMATION_THRESHOLD_MS = 1000; ++ + // TODO(future): use unified timestamp + const auto currentTimestamp = getAnimationTimestamp_(); + +- // TODO: fix bug when threshold difference is smaller than 1 second + // TODO(future): flush updates from CSS animations and CSS transitions registries +- // TODO(future): find a better way to obtain timestamp for removing updates +- // TODO(future): move removing old updates to separate method +- return animatedPropsRegistry_->getUpdatesOlderThanTimestamp( +- rt, currentTimestamp - 1000 /* 1 second */, currentTimestamp - 2000 /* 2 seconds */); ++ return animatedPropsRegistry_->collectSettledUpdates(rt, currentTimestamp - SETTLED_ANIMATION_THRESHOLD_MS); + } + + bool ReanimatedModuleProxy::handleEvent( +@@ -1306,11 +1304,11 @@ void ReanimatedModuleProxy::initializeLayoutAnimationsProxy() { + componentDescriptorRegistry, + scheduler->getContextContainer(), + getJSIRuntimeFromWorkletRuntime(uiRuntime_), +- uiScheduler_ ++ uiScheduler_, ++ uiManager_ + #ifdef ANDROID + , + filterUnmountedTagsFunction_, +- uiManager_, + jsInvoker_ + #endif + ); +@@ -1319,22 +1317,19 @@ void ReanimatedModuleProxy::initializeLayoutAnimationsProxy() { + #endif + layoutAnimationsProxy_ = std::move(layoutAnimationsProxyExperimental); + } else { +- auto layoutAnimationsProxyLegacy = std::make_shared( ++ layoutAnimationsProxy_ = std::make_shared( + layoutAnimationsManager_, + componentDescriptorRegistry, + scheduler->getContextContainer(), + getJSIRuntimeFromWorkletRuntime(uiRuntime_), +- uiScheduler_ ++ uiScheduler_, ++ uiManager_ + #ifdef ANDROID + , + filterUnmountedTagsFunction_, +- uiManager_, + jsInvoker_ + #endif + ); +- // TODO (future): support in experimental +- uiManager_->setAnimationDelegate(layoutAnimationsProxyLegacy.get()); +- layoutAnimationsProxy_ = std::move(layoutAnimationsProxyLegacy); + } + } + } +diff --git a/src/PropsRegistryGarbageCollector.ts b/src/PropsRegistryGarbageCollector.ts +index f917ce5a8586c02855f1d8d9ae73154592d22510..32148fbac8a9224ffec6edc784b48938da9585fb 100644 +--- a/src/PropsRegistryGarbageCollector.ts ++++ b/src/PropsRegistryGarbageCollector.ts +@@ -11,7 +11,6 @@ import { ReanimatedModule } from './ReanimatedModule'; + const FLUSH_INTERVAL_MS = 500; + + export const PropsRegistryGarbageCollector = { +- viewsCount: 0, + viewsMap: new Map(), + intervalId: null as NodeJS.Timeout | null, + +@@ -25,16 +24,14 @@ export const PropsRegistryGarbageCollector = { + return; + } + this.viewsMap.set(viewTag, component); +- this.viewsCount++; +- if (this.viewsCount === 1) { ++ if (this.viewsMap.size === 1) { + this.registerInterval(); + } + }, + + unregisterView(viewTag: number) { +- this.viewsMap.delete(viewTag); +- this.viewsCount--; +- if (this.viewsCount === 0) { ++ const deleted = this.viewsMap.delete(viewTag); ++ if (deleted && this.viewsMap.size === 0) { + this.unregisterInterval(); + } + }, diff --git a/patches/react-native-reanimated@4.3.2.patch.md b/patches/react-native-reanimated@4.3.2.patch.md new file mode 100644 index 0000000000..3a5281702e --- /dev/null +++ b/patches/react-native-reanimated@4.3.2.patch.md @@ -0,0 +1,65 @@ +# react-native-reanimated@4.3.2.patch + +Backports of two merged upstream PRs: + +1. PR 9901 (`LayoutAnimation.configureNext` compatibility) +2. PR 9971 (stale `settledProps` on worklet re-animation / after app resume) + +## 1. Backport of PR 9901 + +Backport of https://github.com/software-mansion/react-native-reanimated/pull/9901 +("refactor(LayoutAnimations): stop taking over UIManagerAnimationDelegate"). + +Reanimated's legacy `LayoutAnimationsProxy_Legacy` registered itself as the +`UIManagerAnimationDelegate` only to receive `stopSurface`. Occupying that slot +overwrites the `LayoutAnimationDriver` that React Native installs there, which +silently breaks `LayoutAnimation.configureNext` for the whole app. + +The patch makes the proxy detect surface teardown itself via a +`UIManagerCommitHook` (a commit with an empty root marks the surface in +`surfacesToRemove_`), frees the animation-delegate slot, and drops final +keyframe `Update` mutations for views deleted in the same transaction (a +deterministic `configureNext` delete-animation crash found in this app). +`uiManager` moves from Android-only to shared constructor args since the hook +registration needs it on both platforms. + +Only the `packages/react-native-reanimated` part of the PR is included (the +`apps/fabric-example` hunk is not part of the published package), and the +include hunk in `LayoutAnimationsProxy_Legacy.cpp` was adjusted to the 4.3.2 +release sources. + +## 2. Backport of PR 9971 (stale `settledProps`) + +Verbatim application of +https://github.com/software-mansion/react-native-reanimated/pull/9971, the +4.3-stable cherry-pick of +https://github.com/software-mansion/react-native-reanimated/pull/9527 +("Fix stale settledProps on worklet re-animation"). Fixes the Android DM +composer "phantom jump" +(https://github.com/software-mansion/react-native-reanimated/issues/9574). + +Background: with `FORCE_REACT_RENDER_FOR_SETTLED_ANIMATIONS`, once an +animation settles its final props are handed to JS (polled every 500 ms by +`PropsRegistryGarbageCollector`) and stored in React component state +(`settledProps`), after which the React-side snapshot becomes the sole owner +of the value. + +The PR replaces `getUpdatesOlderThanTimestamp` (which evicted registry +entries on a wall-clock 1 s/2 s window) with `collectSettledUpdates`: + +- `syncedTags_` / `invalidatedTags_` track which tags React already has a + snapshot for; when a previously-synced view re-animates, its stale snapshot + is refreshed on the next GC tick instead of waiting for the new value to + settle. +- Eviction is no longer time-based. An entry is only evicted on the tick + *after* it was returned to JS (once its `settledProps` commit is + guaranteed), so a missed timer window (app backgrounded, JS thread blocked) + can no longer destroy a settled value before it reaches React. This + replaces the ad-hoc eviction guard an earlier version of this patch added + on top of the pre-merge PR 9527. +- `PropsRegistryGarbageCollector` drops the separate `viewsCount` counter + (which could desync when nested animated components unregister a tag that + was never registered, stopping the GC interval while views remain) in favor + of `viewsMap.size`. Only `src/` is touched, matching the PR; Metro bundles + the app from `src/` via the package's `react-native` field, and the stale + `lib/` copy is unreachable (the feature is native-only). diff --git a/patches/react-native-screens@4.24.0.patch b/patches/react-native-screens@4.24.0.patch new file mode 100644 index 0000000000..7fa3607d4c --- /dev/null +++ b/patches/react-native-screens@4.24.0.patch @@ -0,0 +1,33 @@ +diff --git a/android/src/main/java/com/swmansion/rnscreens/Screen.kt b/android/src/main/java/com/swmansion/rnscreens/Screen.kt +index c99ca362df5baee81fa48d1c9ef09b40a2c23f07..725c07aa0ed516f9dd09f81e522f2d3191d9b5d0 100644 +--- a/android/src/main/java/com/swmansion/rnscreens/Screen.kt ++++ b/android/src/main/java/com/swmansion/rnscreens/Screen.kt +@@ -17,6 +17,7 @@ import androidx.annotation.RequiresApi + import androidx.coordinatorlayout.widget.CoordinatorLayout + import androidx.core.view.children + import androidx.fragment.app.Fragment ++import androidx.recyclerview.widget.RecyclerView + import androidx.swiperefreshlayout.widget.SwipeRefreshLayout + import com.facebook.react.bridge.GuardedRunnable + import com.facebook.react.bridge.ReactContext +@@ -637,7 +638,7 @@ class Screen( + endTransitionRecursive(childView.toolbar) + } + +- if (childView is ViewGroup) { ++ if (childView is ViewGroup && childView !is RecyclerView) { + endTransitionRecursive(childView) + } + } +@@ -666,7 +667,10 @@ class Screen( + startTransitionRecursive(child.toolbar) + } + +- if (child is ViewGroup) { ++ // Transition a RecyclerView as one unit. Marking its recyclable children as ++ // transitioning keeps their parent set after removal, so RecyclerView crashes ++ // when it tries to recycle them during the screen transition. ++ if (child is ViewGroup && child !is RecyclerView) { + startTransitionRecursive(child) + } + } diff --git a/patches/react-native-screens@4.24.0.patch.md b/patches/react-native-screens@4.24.0.patch.md new file mode 100644 index 0000000000..99e522eeeb --- /dev/null +++ b/patches/react-native-screens@4.24.0.patch.md @@ -0,0 +1,15 @@ +# react-native-screens+4.24.0.patch + +## Android: do not transition RecyclerView children individually + +Fixes `Scrapped or attached views may not be recycled` when leaving a screen while a nested ViewPager2 is still settling. + +When a screen removal starts, react-native-screens recursively calls `startViewTransition()` on every descendant. Android intentionally keeps a transitioning view's `parent` set after it is removed so that the parent can continue drawing it until `endViewTransition()`. + +This violates RecyclerView's requirement that a ViewHolder be fully detached before recycling: if ViewPager2 recycles a page during the screen transition, the holder has been removed from RecyclerView's child array but still reports RecyclerView as its parent. + +The patch transitions a RecyclerView as a single unit without recursively transitioning its recyclable children. The matching end traversal skips the same children. + +Related issues: +- https://github.com/callstack/react-native-pager-view/issues/1005 +- https://github.com/software-mansion/react-native-screens/issues/2461 diff --git a/patches/react-native-uitextview@1.4.0.patch b/patches/react-native-uitextview@1.4.0.patch deleted file mode 100644 index ea2a967cde..0000000000 --- a/patches/react-native-uitextview@1.4.0.patch +++ /dev/null @@ -1,35 +0,0 @@ -diff --git a/ios/RNUITextViewShadow.swift b/ios/RNUITextViewShadow.swift -index c34ba712ca628ed8cf2db0f9fc332810ec86d34d..3602856dc8cd926b5321b4ecb109be9c00a23fe6 100644 ---- a/ios/RNUITextViewShadow.swift -+++ b/ios/RNUITextViewShadow.swift -@@ -159,13 +159,25 @@ class RNUITextViewShadow: RCTShadowView { - let maxSize = CGSize(width: CGFloat(maxWidth), height: CGFloat(MAXFLOAT)) - let textSize = self.attributedText.boundingRect(with: maxSize, options: .usesLineFragmentOrigin, context: nil) - -- var totalLines = self.lineHeight == 0.0 ? 0 : Int(ceil(textSize.height / self.lineHeight)) -- -- if self.numberOfLines != 0, totalLines > self.numberOfLines { -- totalLines = self.numberOfLines -+ var finalHeight: CGFloat -+ -+ if self.numberOfLines != 0 && self.lineHeight != 0.0 { -+ // numberOfLines is set with custom line height - need to calculate lines and snap to lineHeight multiples -+ // NOTE: this calculation can be inaccurate with fractional font sizes -+ var totalLines = Int(ceil(textSize.height / self.lineHeight)) -+ if totalLines > self.numberOfLines { -+ totalLines = self.numberOfLines -+ } -+ finalHeight = CGFloat(totalLines) * self.lineHeight -+ } else { -+ // Either no numberOfLines limit, or no custom lineHeight - use actual text height -+ // (numberOfLines without custom lineHeight is handled by the UITextView's textContainer.maximumNumberOfLines) -+ finalHeight = textSize.height - } - -- self.frameSize = CGSize(width: CGFloat(maxWidth), height: CGFloat(CGFloat(totalLines) * self.lineHeight)) -+ finalHeight = ceil(finalHeight) -+ -+ self.frameSize = CGSize(width: CGFloat(maxWidth), height: finalHeight) - return YGSize(width: Float(self.frameSize.width), height: Float(self.frameSize.height)) - } - diff --git a/patches/react-native@0.81.5.patch b/patches/react-native@0.81.5.patch index a71008d2d1..b4c01a1ef3 100644 --- a/patches/react-native@0.81.5.patch +++ b/patches/react-native@0.81.5.patch @@ -1,21 +1,82 @@ -diff --git a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.h b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.h -index 914a2494a57923fbf185644b7e2bb8aca8848e56..0deac55f22350f5e8377d8963fb1c2434bf6abfd 100644 ---- a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.h -+++ b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.h -@@ -19,6 +19,8 @@ NS_ASSUME_NONNULL_BEGIN - */ - @interface RCTPullToRefreshViewComponentView : RCTViewComponentView +diff --git a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm +index c593d9ee2155a826352ebca34845aa5792b2eec3..3c26cd737f21116ff0aa48190e97e6c0649b5fac 100644 +--- a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm ++++ b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTEnhancedScrollView.mm +@@ -101,6 +101,20 @@ - (void)setContentOffset:(CGPoint)contentOffset + RCTSanitizeNaNValue(contentOffset.y, @"scrollView.contentOffset.y")); + } -+- (void)beginRefreshingProgrammatically; ++- (void)setCenterContent:(BOOL)centerContent ++{ ++ if (_centerContent != centerContent) { ++ _centerContent = centerContent; ++ [self centerContentIfNeeded]; ++ } ++} + - @end ++- (void)setContentSize:(CGSize)contentSize ++{ ++ [super setContentSize:contentSize]; ++ [self centerContentIfNeeded]; ++} ++ + - (void)setFrame:(CGRect)frame + { + [super setFrame:frame]; +diff --git a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm +index 0d231bc8aa938da296eb3b981e8ac9595a43b87f..be0a10d9c4de1892fa00bcbf8d63d739b66d8ffe 100644 +--- a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm ++++ b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTPullToRefreshViewComponentView.mm +@@ -76,7 +76,17 @@ - (void)updateProps:(const Props::Shared &)props oldProps:(const Props::Shared & + return; + } - NS_ASSUME_NONNULL_END +- const auto &oldConcreteProps = static_cast(*_props); ++ /* ++ * TODO: Remove after upgrading React Native to 0.82+ (fixed upstream by ++ * facebook/react-native#52615, #52584 and #53231). ++ * Diff against oldProps instead of _props. During the initial-layout replay ++ * from layoutSubviews, _props already holds the new props, so diffing ++ * against it is a no-op and tintColor/progressViewOffset are never applied ++ * on mount (facebook/react-native#56343). oldProps is null-guarded because ++ * the create-mutation path passes nullptr. ++ */ ++ const auto &oldConcreteProps = static_cast( ++ oldProps ? *oldProps : *PullToRefreshViewShadowNode::defaultSharedProps()); + const auto &newConcreteProps = static_cast(*props); + + if (newConcreteProps.tintColor != oldConcreteProps.tintColor) { diff --git a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm -index 1494fd225aff1fa0429e917404d6b4ca5fc961c5..df643f5c844ad2e684de5161528eba17f4a188d0 100644 +index 1494fd225aff1fa0429e917404d6b4ca5fc961c5..d0cce700090245444f8ce51e517d5ceca09526f6 100644 --- a/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm +++ b/React/Fabric/Mounting/ComponentViews/ScrollView/RCTScrollViewComponentView.mm -@@ -1038,6 +1038,11 @@ - (void)_adjustForMaintainVisibleContentPosition +@@ -380,7 +380,15 @@ - (void)updateProps:(const Props::Shared &)props oldProps:(const Props::Shared & + + MAP_SCROLL_VIEW_PROP(zoomScale); + +- if (oldScrollViewProps.contentInset != newScrollViewProps.contentInset) { ++ // When disabling centerContent, reset inset to prop value ++ // (enabling is handled automatically by the setCenterContent: setter) ++ if (oldScrollViewProps.centerContent && !newScrollViewProps.centerContent) { ++ _scrollView.contentInset = RCTUIEdgeInsetsFromEdgeInsets(newScrollViewProps.contentInset); ++ } ++ ++ // Only apply contentInset from props if centerContent is disabled ++ // When centerContent is enabled, the inset is calculated by centerContentIfNeeded ++ if (oldScrollViewProps.contentInset != newScrollViewProps.contentInset && !newScrollViewProps.centerContent) { + _scrollView.contentInset = RCTUIEdgeInsetsFromEdgeInsets(newScrollViewProps.contentInset); + } + +@@ -507,7 +515,7 @@ - (UIView *)betterHitTest:(CGPoint)point withEvent:(UIEvent *)event + } + } + +- return isPointInside ? self : nil; ++ return isPointInside ? _scrollView : nil; + } + + /* +@@ -1038,6 +1046,11 @@ - (void)_adjustForMaintainVisibleContentPosition } } @@ -28,20 +89,18 @@ index 1494fd225aff1fa0429e917404d6b4ca5fc961c5..df643f5c844ad2e684de5161528eba17 Class RCTScrollViewCls(void) diff --git a/React/Views/RefreshControl/RCTRefreshControl.h b/React/Views/RefreshControl/RCTRefreshControl.h -index e9b330fa7c29c42653a3b0191d0f8a1b13b2d3de..ec5f58c887bfd949f1279ef1c31352e0b465e9ec 100644 +index e9b330fa7c29c42653a3b0191d0f8a1b13b2d3de..5fbb2e05cadfc06fd7a18bf52b81bc399e92f3ca 100644 --- a/React/Views/RefreshControl/RCTRefreshControl.h +++ b/React/Views/RefreshControl/RCTRefreshControl.h -@@ -15,5 +15,8 @@ +@@ -15,5 +15,6 @@ @property (nonatomic, copy) NSString *title; @property (nonatomic, copy) RCTDirectEventBlock onRefresh; @property (nonatomic, weak) UIScrollView *scrollView; +@property (nonatomic, copy) UIColor *customTintColor; -+ -+- (void)forwarderBeginRefreshing; @end diff --git a/React/Views/RefreshControl/RCTRefreshControl.m b/React/Views/RefreshControl/RCTRefreshControl.m -index 53bfd04703502d5b8e932c47a528bb03cd79d330..ff1b1ed5e060bcf0d91528c6d3c2c5c8acf24967 100644 +index 53bfd04703502d5b8e932c47a528bb03cd79d330..e2e0c9f4e5d1a3a3b178a7ec69aa63e3039b6dec 100644 --- a/React/Views/RefreshControl/RCTRefreshControl.m +++ b/React/Views/RefreshControl/RCTRefreshControl.m @@ -23,6 +23,7 @@ @implementation RCTRefreshControl { @@ -65,7 +124,7 @@ index 53bfd04703502d5b8e932c47a528bb03cd79d330..ff1b1ed5e060bcf0d91528c6d3c2c5c8 - (void)didMoveToWindow { [super didMoveToWindow]; -@@ -221,4 +228,50 @@ - (void)refreshControlValueChanged +@@ -221,4 +228,16 @@ - (void)refreshControlValueChanged } } @@ -80,40 +139,6 @@ index 53bfd04703502d5b8e932c47a528bb03cd79d330..ff1b1ed5e060bcf0d91528c6d3c2c5c8 + [super setTintColor:tintColor]; + } +} -+ -+// This method is used by Bluesky's ExpoScrollForwarder. This allows other React Native -+// libraries to perform a refresh of a scrollview and access the refresh control's onRefresh -+// function. -+- (void)forwarderBeginRefreshing -+{ -+ _refreshingProgrammatically = NO; -+ -+ [self sizeToFit]; -+ -+ if (!self.scrollView) { -+ return; -+ } -+ -+ UIScrollView *scrollView = (UIScrollView *)self.scrollView; -+ -+ [UIView animateWithDuration:0.3 -+ delay:0 -+ options:UIViewAnimationOptionBeginFromCurrentState -+ animations:^(void) { -+ // Whenever we call this method, the scrollview will always be at a position of -+ // -130 or less. Scrolling back to -65 simulates the default behavior of RCTRefreshControl -+ [scrollView setContentOffset:CGPointMake(0, -65)]; -+ } -+ completion:^(__unused BOOL finished) { -+ [super beginRefreshing]; -+ [self setCurrentRefreshingState:super.refreshing]; -+ -+ if (self->_onRefresh) { -+ self->_onRefresh(nil); -+ } -+ } -+ ]; -+} + @end diff --git a/React/Views/RefreshControl/RCTRefreshControlManager.m b/React/Views/RefreshControl/RCTRefreshControlManager.m @@ -150,6 +175,52 @@ index 8b6571698fc5dd091a0d8980a33bb40295faf305..27c97bfeb6f13907c89f1d85f2bb8b8a reactChoreographer.postFrameCallback(ReactChoreographer.CallbackType.IDLE_EVENT, this) } } +diff --git a/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.kt b/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.kt +index 89b666dcf0258df0702c812600b685463128294c..2b1c3971f0c31a0d7a592b90170e4cc53a8a69dd 100644 +--- a/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.kt ++++ b/ReactAndroid/src/main/java/com/facebook/react/views/view/ReactViewGroup.kt +@@ -431,6 +431,13 @@ public open class ReactViewGroup public constructor(context: Context?) : + inSubviewClippingLoop = true + var clippedSoFar = 0 + for (i in 0.. updateClippingRect` during an animated smooth scroll +(New Architecture, `removeClippedSubviews`). + +The clipping loop in `updateClippingToRect` captures its bound once, but clipping a view +(`removeViewsInLayout`) can synchronously trigger reentrant child removal (layout-change +listeners, animation-end callbacks, Fabric mounting on the UI thread), which compacts +`allChildren` and nulls the tail mid-loop. Upstream already catches the +`IndexOutOfBoundsException` variant of this corruption with diagnostics, but the null-child +variant throws `IllegalStateException` and escapes as a fatal crash. A null entry means the +view is already detached, so we skip it and count it as clipped to keep index math aligned. + +Not fixed upstream as of July 2026 (identical `checkNotNull` on `main`); the sibling fix +attempt facebook/react-native#57365 for the same bookkeeping corruption (different stack) +was abandoned. Re-check when bumping React Native. + +Note on build modes: production Android builds compile react-android from source +(`buildReactNativeFromSource: IS_PRODUCTION` via expo-build-properties in app.config.js +injects the includeBuild/dependency-substitution block at prebuild), so this hunk IS +active in production releases. Local dev builds prebuilt in a non-production env consume +the prebuilt AAR from Maven Central instead, where this hunk (like any ReactAndroid +source change) has no effect - do not expect to see the fix in a local debug build unless +you prebuild with EXPO_PUBLIC_ENV=production or add the substitution block manually. + +## RCTTextLayoutManager.mm Patch - Text overflows instead of wrapping on the last line + +Issue: https://github.com/react/react-native/issues/53450#issuecomment-3298157830 +Bandaid fix taken from: https://github.com/react/react-native/commit/581d643a9e59fd88f93757f80194e1efd11bd0e5 diff --git a/patches/sonner-native@0.21.0.patch b/patches/sonner-native@0.21.0.patch deleted file mode 100644 index f045900525..0000000000 --- a/patches/sonner-native@0.21.0.patch +++ /dev/null @@ -1,39 +0,0 @@ -diff --git a/lib/module/toast.js b/lib/module/toast.js -index be089f3ff23017a6844e2010cedc547729e198aa..c2dd0fa2df93f929c33bf2bcc3e6f921941fa006 100644 ---- a/lib/module/toast.js -+++ b/lib/module/toast.js -@@ -1,8 +1,8 @@ - "use strict"; - - import * as React from 'react'; --import { ActivityIndicator, Pressable, Text, View } from 'react-native'; --import Animated, { useAnimatedStyle, useSharedValue, withRepeat, withTiming } from 'react-native-reanimated'; -+import { ActivityIndicator, Pressable, Text, View, Platform } from 'react-native'; -+import Animated, { useAnimatedStyle, useSharedValue, withRepeat, withTiming, FadeOut } from 'react-native-reanimated'; - import { ANIMATION_DURATION, useToastLayoutAnimations } from "./animations.js"; - import { toastDefaultValues } from "./constants.js"; - import { useToastContext } from "./context.js"; -@@ -258,7 +258,10 @@ export const Toast = /*#__PURE__*/React.forwardRef(({ - ...toastSwipeHandlerProps, - children: /*#__PURE__*/_jsx(Animated.View, { - entering: entering, -- exiting: exiting, -+ exiting: Platform.select({ -+ android: undefined, -+ default: exiting -+ }), - children: jsx - }) - }); -@@ -268,7 +271,10 @@ export const Toast = /*#__PURE__*/React.forwardRef(({ - children: /*#__PURE__*/_jsx(Animated.View, { - style: [unstyled ? undefined : elevationStyle, defaultStyles.toast, toastStyleCtx, styles?.toast, style, wiggleAnimationStyle], - entering: entering, -- exiting: exiting, -+ exiting: Platform.select({ -+ android: undefined, -+ default: exiting -+ }), - children: /*#__PURE__*/_jsxs(View, { - style: [defaultStyles.toastContent, toastContentStyleCtx, styles?.toastContent], - children: [promiseOptions || variant === 'loading' ? 'loading' in icons ? icons.loading : /*#__PURE__*/_jsx(ActivityIndicator, {}) : icon ? /*#__PURE__*/_jsx(View, { diff --git a/patches/sonner-native@0.21.0.patch.md b/patches/sonner-native@0.21.0.patch.md deleted file mode 100644 index 0a7fbafcc4..0000000000 --- a/patches/sonner-native@0.21.0.patch.md +++ /dev/null @@ -1,3 +0,0 @@ -# sonner-native+0.21.0.patch - -Removes Reanimated exit layout animations from the toasts. This was causing crashes if the toast was hidden while you were scrolling a flatlist. diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e1d4cf5fa9..d5323ee970 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -209,7 +209,8 @@ overrides: '@expo/image-utils': 0.8.12 '@types/estree': 1.0.6 react-native-compressor: 1.13.0 - react-native-reanimated: 3.19.1 + react-native-reanimated: 4.3.2 + react-native-worklets: 0.8.3 psl: 1.9.0 '@types/psl': 1.1.1 react-native-screens: 4.24.0 @@ -217,7 +218,6 @@ overrides: patchedDependencies: '@sentry/expo-upload-sourcemaps@8.18.0': 2368e1e1986165e7ead3c60017b78b2f9ade1b6a6b2f5ad27cd428608c6f12ae expo-age-range@0.2.18: c325225749993424461eeece1d97a99b19c00da2ebc958a73c12e4eca0c39306 - expo-glass-effect@55.0.8: 6c9fa5b104e53b87df4e17b320acb3b94d12ac90c0101190045dd620681efff0 expo-haptics@15.0.8: b33910ba2753c4eccdc885b449e6e33aa90b9cefa75ca8639762a26013141410 expo-image-picker@17.0.11: 47b28f6ddb8bcaa6483f8714c82daaa0001122f2b0dac6c05d19e98a61a6ceab expo-image@3.0.11: 6d46ffac33426c5285777da5bf5f88c68c8ce27290595dfa65f38c478930c2c4 @@ -226,24 +226,24 @@ patchedDependencies: expo-notifications@0.32.17: a45a8dcf3d8c4b5df4ee0e62bc79b755fcf9d28ca51a6f685b85830bf4afc2e5 expo-updates@29.0.17: 04f28cb005b770e9ae8f0065eab96e43cbb1e58107f5f6ad1bdd18f6deb66487 react-native-compressor@1.13.0: 58379dfaace6ced8590cb341c77f2ca8099dfa8f7df6297032ec51de767a9925 - react-native-date-picker@5.0.13: f2a6697da7a7ca79b4f39efda142eee1b82db6de3aa5010ad4bd59df41fe2ce1 + react-native-date-picker@5.0.13: 92943fb79d17d7342a29bbb12b0d8ee3cf6f7bca12ed322dc8d124a3e9fb75bd react-native-drawer-layout@4.2.3: 74f2c043cc22ab87054f219e7c7373a509b779b18bfa79d27e7d051d73355130 + react-native-gesture-handler: 39b9e51b3977fae8ff61764b8c32934fe3fbddaf21587b4661fd73b7c6dd325b react-native-keyboard-controller@1.21.8: ac52bf7502ff3ad34a8594b5e1a916b96bf87a2523b6abc87c31f03607d52271 - react-native-pager-view@6.8.0: 0979d6fe1e2fa43b2784cc0b5e0ff0117d53b53423e85ee5855eefdc41a00108 - react-native-reanimated@3.19.1: 97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6 + react-native-pager-view@6.8.0: c8316acd33c9aef6531e8c272c2bfab7bd02af1255969eeaab2bad5ab48531cc + react-native-reanimated@4.3.2: ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05 + react-native-screens@4.24.0: 74a74b489f8074a1974c2792c9c97aec30d8e251669aa37fc5c99993bb4a19e6 react-native-svg@15.12.1: ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310 - react-native-uitextview@1.4.0: 62de26caadfc39d1bdff204cdc03a705c0cd343999825e06d8c0c120de06cc99 react-native-view-shot@4.0.3: a2457dc30a82cc8c21f371a6f860d9396d450a2a1b4265b1a4ee13bdb24d3268 - react-native@0.81.5: 2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194 - sonner-native@0.21.0: 4bcd0da0fec32e943460e6e788a9e4adf601b507d2dfd0c8246a6c8c74d8f638 + react-native@0.81.5: 91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403 importers: .: dependencies: '@atproto/api': - specifier: 0.20.31 - version: 0.20.31 + specifier: 0.20.34 + version: 0.20.34 '@atproto/common-web': specifier: 0.5.6 version: 0.5.6 @@ -252,46 +252,46 @@ importers: version: 0.7.2 '@bitdrift/react-native': specifier: ^0.6.8 - version: 0.6.14(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.6.14(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@braintree/sanitize-url': specifier: ^6.0.2 version: 6.0.4 '@bsky.app/alf': specifier: ^0.1.15 - version: 0.1.15(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.1.15(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/expo-dynamic-app-icon': specifier: ^1.8.5 - version: 1.8.5(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 1.8.5(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/expo-guess-language': specifier: ^0.2.8 - version: 0.2.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.2.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/expo-image-crop-tool': specifier: ^0.5.1 - version: 0.5.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.5.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/expo-scroll-edge-effect': - specifier: ^0.1.4 - version: 0.1.4(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: ^0.1.9 + version: 0.1.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/expo-translate-text': specifier: ^0.2.9 - version: 0.2.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.2.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/peek-menu': - specifier: ^0.3.1 - version: 0.3.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - '@bsky.app/react-native-mmkv': - specifier: 2.12.5 - version: 2.12.5(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: ^0.3.2 + version: 0.3.2(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@bsky.app/react-native-uitextview': + specifier: ^2.5.0 + version: 2.5.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/sift': specifier: ^0.3.9 - version: 0.3.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.3.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/tapper': specifier: ^0.6.1 - version: 0.6.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tlds@1.261.0) + version: 0.6.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tlds@1.261.0) '@bsky.app/video': specifier: 0.3.6 - version: 0.3.6(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.3.6(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@bsky.app/video-compressor': specifier: 0.2.0 - version: 0.2.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.2.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@emoji-mart/data': specifier: ^1.2.1 version: 1.2.1 @@ -303,7 +303,7 @@ importers: version: 0.12.5 '@expo/webpack-config': specifier: ^19.0.1 - version: 19.0.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(postcss@8.5.14) + version: 19.0.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(postcss@8.5.14) '@floating-ui/dom': specifier: ^1.6.3 version: 1.7.6 @@ -339,19 +339,19 @@ importers: version: 5.9.5(@lingui/babel-plugin-lingui-macro@5.9.5(@typescript/typescript6@6.0.2))(react@19.1.0) '@react-native-async-storage/async-storage': specifier: 2.2.0 - version: 2.2.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 2.2.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) '@react-navigation/bottom-tabs': specifier: ^7.15.5 - version: 7.16.0(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 7.16.0(91eab7bd987834c4c877d5cbf9d3796c) '@react-navigation/native': specifier: ^7.1.33 - version: 7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 7.2.4(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@react-navigation/native-stack': specifier: ^7.14.4 - version: 7.15.0(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 7.15.0(91eab7bd987834c4c877d5cbf9d3796c) '@sentry/react-native': specifier: ~8.18.0 - version: 8.18.0(@expo/env@2.0.11)(dotenv@16.6.1)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 8.18.0(@expo/env@2.0.11)(dotenv@16.6.1)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@tanstack/query-async-storage-persister': specifier: ^5.96.2 version: 5.100.10 @@ -431,116 +431,116 @@ importers: specifier: ^5.0.1 version: 5.0.4 expo: - specifier: 54.0.34 - version: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: 54.0.35 + version: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-age-range: specifier: 0.2.18 - version: 0.2.18(patch_hash=c325225749993424461eeece1d97a99b19c00da2ebc958a73c12e4eca0c39306)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 0.2.18(patch_hash=c325225749993424461eeece1d97a99b19c00da2ebc958a73c12e4eca0c39306)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) expo-application: specifier: ~7.0.8 - version: 7.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 7.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-asset: specifier: ~12.0.13 - version: 12.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 12.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-blur: specifier: ~15.0.8 - version: 15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-build-properties: specifier: ~1.0.10 - version: 1.0.10(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 1.0.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-camera: specifier: ~17.0.10 - version: 17.0.10(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 17.0.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-clipboard: specifier: ~8.0.8 - version: 8.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 8.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-contacts: specifier: ^15.0.10 - version: 15.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 15.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-dev-client: specifier: ~6.0.20 - version: 6.0.21(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 6.0.21(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-device: specifier: ~8.0.10 - version: 8.0.10(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 8.0.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-file-system: specifier: ~19.0.21 - version: 19.0.22(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 19.0.22(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) expo-font: specifier: ~14.0.11 - version: 14.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 14.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-glass-effect: - specifier: 55.0.8 - version: 55.0.8(patch_hash=6c9fa5b104e53b87df4e17b320acb3b94d12ac90c0101190045dd620681efff0)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: 0.1.10 + version: 0.1.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-haptics: specifier: ~15.0.8 - version: 15.0.8(patch_hash=b33910ba2753c4eccdc885b449e6e33aa90b9cefa75ca8639762a26013141410)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 15.0.8(patch_hash=b33910ba2753c4eccdc885b449e6e33aa90b9cefa75ca8639762a26013141410)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-image: specifier: ~3.0.11 - version: 3.0.11(patch_hash=6d46ffac33426c5285777da5bf5f88c68c8ce27290595dfa65f38c478930c2c4)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 3.0.11(patch_hash=6d46ffac33426c5285777da5bf5f88c68c8ce27290595dfa65f38c478930c2c4)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-image-manipulator: specifier: ~14.0.8 - version: 14.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 14.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-image-picker: specifier: ~17.0.10 - version: 17.0.11(patch_hash=47b28f6ddb8bcaa6483f8714c82daaa0001122f2b0dac6c05d19e98a61a6ceab)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 17.0.11(patch_hash=47b28f6ddb8bcaa6483f8714c82daaa0001122f2b0dac6c05d19e98a61a6ceab)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-intent-launcher: specifier: ~13.0.8 - version: 13.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 13.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-keep-awake: specifier: ~15.0.8 - version: 15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0) + version: 15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0) expo-linear-gradient: specifier: ~15.0.8 - version: 15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-linking: specifier: ~8.0.11 - version: 8.0.12(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 8.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-localization: specifier: ~17.0.8 - version: 17.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0) + version: 17.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0) expo-location: specifier: ~19.0.8 - version: 19.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 19.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-media-library: specifier: ~18.2.1 - version: 18.2.1(patch_hash=2b84c17999bb0c977eaef7fa8ac297f7074d91c94fb63726b42d2a277b26b39a)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 18.2.1(patch_hash=2b84c17999bb0c977eaef7fa8ac297f7074d91c94fb63726b42d2a277b26b39a)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) expo-notifications: specifier: ~0.32.17 - version: 0.32.17(patch_hash=a45a8dcf3d8c4b5df4ee0e62bc79b755fcf9d28ca51a6f685b85830bf4afc2e5)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.32.17(patch_hash=a45a8dcf3d8c4b5df4ee0e62bc79b755fcf9d28ca51a6f685b85830bf4afc2e5)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-paste-input: specifier: ^0.2.1 - version: 0.2.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.2.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-privacy-sensitive: - specifier: ^0.1.0 - version: 0.1.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: ^0.2.0 + version: 0.2.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-screen-orientation: specifier: ~9.0.8 - version: 9.0.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 9.0.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) expo-sharing: specifier: ~14.0.8 - version: 14.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 14.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-sms: specifier: ^14.0.7 - version: 14.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 14.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-splash-screen: specifier: ~31.0.13 - version: 31.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 31.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-system-ui: specifier: ~6.0.9 - version: 6.0.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 6.0.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) expo-updates: specifier: ~29.0.17 - version: 29.0.17(patch_hash=04f28cb005b770e9ae8f0065eab96e43cbb1e58107f5f6ad1bdd18f6deb66487)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 29.0.17(patch_hash=04f28cb005b770e9ae8f0065eab96e43cbb1e58107f5f6ad1bdd18f6deb66487)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-video: specifier: ~3.0.16 - version: 3.0.16(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 3.0.16(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-video-thumbnails: specifier: ^10.0.8 - version: 10.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + version: 10.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-web-browser: specifier: ~15.0.10 - version: 15.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + version: 15.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) fast-deep-equal: specifier: ^3.1.3 version: 3.1.3 @@ -621,58 +621,61 @@ importers: version: 5.1.2(react-is@19.2.6)(react@19.1.0) react-native: specifier: 0.81.5 - version: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + version: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-native-compressor: specifier: 1.13.0 - version: 1.13.0(patch_hash=58379dfaace6ced8590cb341c77f2ca8099dfa8f7df6297032ec51de767a9925)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 1.13.0(patch_hash=58379dfaace6ced8590cb341c77f2ca8099dfa8f7df6297032ec51de767a9925)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-date-picker: specifier: ^5.0.13 - version: 5.0.13(patch_hash=f2a6697da7a7ca79b4f39efda142eee1b82db6de3aa5010ad4bd59df41fe2ce1)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 5.0.13(patch_hash=92943fb79d17d7342a29bbb12b0d8ee3cf6f7bca12ed322dc8d124a3e9fb75bd)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-device-attest: specifier: ^0.1.6 - version: 0.1.6(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.1.6(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-drawer-layout: specifier: ^4.2.3 - version: 4.2.3(patch_hash=74f2c043cc22ab87054f219e7c7373a509b779b18bfa79d27e7d051d73355130)(react-native-gesture-handler@2.28.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 4.2.3(patch_hash=74f2c043cc22ab87054f219e7c7373a509b779b18bfa79d27e7d051d73355130)(3df4209064af748dbf5a440f3a0506e1) react-native-edge-to-edge: specifier: ^1.8.1 - version: 1.8.1(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 1.8.1(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-gesture-handler: - specifier: ~2.28.0 - version: 2.28.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: ~2.30.0 + version: 2.30.1(patch_hash=39b9e51b3977fae8ff61764b8c32934fe3fbddaf21587b4661fd73b7c6dd325b)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-keyboard-controller: specifier: ^1.21.8 - version: 1.21.8(patch_hash=ac52bf7502ff3ad34a8594b5e1a916b96bf87a2523b6abc87c31f03607d52271)(react-native-reanimated@3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 1.21.8(patch_hash=ac52bf7502ff3ad34a8594b5e1a916b96bf87a2523b6abc87c31f03607d52271)(react-native-reanimated@4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-mmkv: + specifier: ^3.3.3 + version: 3.3.3(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-pager-view: specifier: 6.8.0 - version: 6.8.0(patch_hash=0979d6fe1e2fa43b2784cc0b5e0ff0117d53b53423e85ee5855eefdc41a00108)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 6.8.0(patch_hash=c8316acd33c9aef6531e8c272c2bfab7bd02af1255969eeaab2bad5ab48531cc)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-progress: - specifier: bluesky-social/react-native-progress - version: https://codeload.github.com/bluesky-social/react-native-progress/tar.gz/5a372f4f2ce5feb26f4f47b6a4d187ab9b923ab4(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + specifier: ^5.0.1 + version: 5.0.1(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) react-native-qrcode-styled: specifier: ^0.3.3 - version: 0.3.3(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 0.3.3(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-reanimated: - specifier: 3.19.1 - version: 3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + specifier: 4.3.2 + version: 4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-safe-area-context: specifier: ~5.6.0 - version: 5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 5.6.2(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-screens: specifier: 4.24.0 - version: 4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 4.24.0(patch_hash=74a74b489f8074a1974c2792c9c97aec30d8e251669aa37fc5c99993bb4a19e6)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-scroll-forwarder: + specifier: link:./modules/react-native-scroll-forwarder + version: link:modules/react-native-scroll-forwarder react-native-svg: specifier: 15.12.1 - version: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-uitextview: - specifier: ^1.4.0 - version: 1.4.0(patch_hash=62de26caadfc39d1bdff204cdc03a705c0cd343999825e06d8c0c120de06cc99)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-uuid: specifier: ^2.0.3 version: 2.0.4 react-native-view-shot: specifier: ^4.0.3 - version: 4.0.3(patch_hash=a2457dc30a82cc8c21f371a6f860d9396d450a2a1b4265b1a4ee13bdb24d3268)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 4.0.3(patch_hash=a2457dc30a82cc8c21f371a6f860d9396d450a2a1b4265b1a4ee13bdb24d3268)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-native-web: specifier: ^0.21.0 version: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) @@ -681,7 +684,10 @@ importers: version: 1.0.2(file-loader@6.2.0(webpack@5.106.2(postcss@8.5.14)))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)) react-native-webview: specifier: ^13.15.0 - version: 13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-worklets: + specifier: 0.8.3 + version: 0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react-remove-scroll-bar: specifier: ^2.3.8 version: 2.3.8(@types/react@19.1.17)(react@19.1.0) @@ -701,8 +707,8 @@ importers: specifier: ^2.0.7 version: 2.0.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0) sonner-native: - specifier: 0.21.0 - version: 0.21.0(patch_hash=4bcd0da0fec32e943460e6e788a9e4adf601b507d2dfd0c8246a6c8c74d8f638)(0ed429160839218d22ac63d892397351) + specifier: 0.26.4 + version: 0.26.4(48ff340dede165208988dce94163b1ce) tippy.js: specifier: ^6.3.7 version: 6.3.7 @@ -751,7 +757,7 @@ importers: version: 3.6.1(webpack@5.106.2(postcss@8.5.14)) '@testing-library/react-native': specifier: ^13.2.0 - version: 13.3.3(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0) + version: 13.3.3(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0) '@types/jest': specifier: 29.5.14 version: 29.5.14 @@ -787,7 +793,7 @@ importers: version: 19.1.0-rc.3 babel-preset-expo: specifier: ~54.0.10 - version: 54.0.10(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2) + version: 54.0.10(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2) eslint-plugin-bsky-internal: specifier: link:eslint version: link:eslint @@ -820,7 +826,7 @@ importers: version: 29.7.0(@types/node@24.12.4) jest-expo: specifier: ~54.0.17 - version: 54.0.17(@babel/core@7.29.0)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + version: 54.0.17(@babel/core@7.29.0)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) jest-junit: specifier: ^16.0.0 version: 16.0.0 @@ -868,8 +874,8 @@ packages: graphql: optional: true - '@atproto/api@0.20.31': - resolution: {integrity: sha512-TovCQLQv5ti1jqh8UH6jJ0EFuWRjGdUtFyFR5xYC/IkIulwHDuyrVaXdCv7VLWiHftp92DevtZnFRm+BZsZZdw==} + '@atproto/api@0.20.34': + resolution: {integrity: sha512-nKfCLkH2Al58YupLGtoVIucZ5XjtN9sU5oOTI70lp8J4nxl52C/Tk7AktcWe+Nx7st3I0fUgf+C5cHePgvwT0w==} engines: {node: '>=22'} '@atproto/common-web@0.5.6': @@ -1636,8 +1642,8 @@ packages: react: '*' react-native: '*' - '@bsky.app/expo-scroll-edge-effect@0.1.4': - resolution: {integrity: sha512-P94YcYBqZfuUy7ewTrWulPTxTbs6Yvjg2xS5WX4I/F3R3cSQU9fc8vEzb2Pnn4Ieg2wukJdAywqzt+AnyWgJbw==} + '@bsky.app/expo-scroll-edge-effect@0.1.9': + resolution: {integrity: sha512-Gz+1nRFqvLo1TsmSquFEYJ7C6OVUWHYGVKsqaKBOP+GcrPv0mWNFhf6zRmNvBbmBznGN2w8so2o0URQRHwukVw==} peerDependencies: expo: '*' react: '*' @@ -1650,18 +1656,18 @@ packages: react: '*' react-native: '*' - '@bsky.app/peek-menu@0.3.1': - resolution: {integrity: sha512-ttFE7dIv1EJEmQn52WLvievzLNmPNNvPtoiz8ovl38jXLDMszL2wVPUYMnEjnZZqoq+K6HiBau9iHeCOKWwbTA==} + '@bsky.app/peek-menu@0.3.2': + resolution: {integrity: sha512-Uvr+tkE5qpbNNGiDJxbEaA3uidJnrZV1IHSJk16ltwgxrpj603d22I1u9B60o+eU4TR67fgLZMlRA0Rmhtqm/w==} peerDependencies: expo: '*' react: '*' react-native: '*' - '@bsky.app/react-native-mmkv@2.12.5': - resolution: {integrity: sha512-3vUz1nQY1DiKIPAWRkpp5ZGxH5f2G6Ui0UuQuEYjYv81xx1qFcSzS9KQ2sHcOKYdkOM9amWV2Q8TQCxt1lrAHg==} + '@bsky.app/react-native-uitextview@2.5.0': + resolution: {integrity: sha512-8DyQAJEkr0ZPEb9QMmT3088V70B6xRsY8e/jvi2oq13hCsLEXCw5M1S48xKRnr8263bJxSH0BjK0nfhPS8Myqw==} peerDependencies: react: '*' - react-native: '>=0.71.0' + react-native: '>=0.81.5' '@bsky.app/sift@0.3.9': resolution: {integrity: sha512-EmwK6EGtxl6Mz4Z96J2EFi5aeiKeGiqueVCQHVms9C6ms6wMS0/HcqC/48RgFN+nSsM7Wr8sFCg1EcNnWyOQMQ==} @@ -1870,8 +1876,8 @@ packages: cpu: [x64] os: [win32] - '@expo/cli@54.0.24': - resolution: {integrity: sha512-5xse1bEgnVUBhOrtttc6xTNJVvjyTRavpzuF0/0nuj+312vfSbk7EiRbG+xJ2pW/iZxnhLPJkFCrPYG0nmheAQ==} + '@expo/cli@54.0.25': + resolution: {integrity: sha512-WnUqIb8oMBhtwSfIqdCHCzcaDIpLNXItRVd5miuvWi4GO0SGo89PSsAkbVJ+LJgcaY+v5rbgMELJS9I/CqOulA==} hasBin: true peerDependencies: expo: '*' @@ -1931,11 +1937,17 @@ packages: '@expo/json-file@10.0.14': resolution: {integrity: sha512-yWwBFywFv+SxkJp/pIzzA416JVYflNUh7pqQzgaA6nXDqRyK7KfrqVzk8PdUfDnqbBcaZZxpzNssfQZzp5KHrA==} + '@expo/json-file@10.0.16': + resolution: {integrity: sha512-fcVkWEj+hLuP2yt5W0aw6LmDRqSPWDLUSxOMcmFeV+algmIF59sQVKCwB9btjQLd4V6x9N0pISkQEkBubUHrCw==} + + '@expo/json-file@10.2.0': + resolution: {integrity: sha512-S6XzKe3R9GQeHiUPXc3xJjOv2VJhOEwFYf7xdC2z2cUqt3kZJ9mSO877sNQloVdnW/SUCtPY3bexlM7nwq+CAQ==} + '@expo/json-file@9.1.5': resolution: {integrity: sha512-prWBhLUlmcQtvN6Y7BpW2k9zXGd3ySa3R6rAguMJkp1z22nunLN64KYTUWfijFlprFoxm9r2VNnGkcbndAlgKA==} - '@expo/metro-config@54.0.15': - resolution: {integrity: sha512-SqIya4VZ9KHM1S9g+xR0A+QKw1Tfs7Gacx6bQNJ98vs4+O7I5+QP5mHZIB0QSZLUV8opiXebHYTiTu+0OAsIUw==} + '@expo/metro-config@54.0.16': + resolution: {integrity: sha512-3LLb9ZQl0VlqSlsalJ7+CYjfz60PBoSDHvpE1UF71aTM1Nx0Vb4LhXo7bCCC+PYP9q/GPB58LLbIROQ8PjKX2w==} peerDependencies: expo: '*' peerDependenciesMeta: @@ -1958,6 +1970,9 @@ packages: '@expo/plist@0.4.8': resolution: {integrity: sha512-pfNtErGGzzRwHP+5+RqswzPDKkZrx+Cli0mzjQaus1ZWFsog5ibL+nVT3NcporW51o8ggnt7x813vtRbPiyOrQ==} + '@expo/plist@0.4.9': + resolution: {integrity: sha512-MPVpmKGfnQEnrCzgxuXcmPP/y/t6AVm+DcSb2Myp21LKWv1N3l8uFxMggesfF4ixAxkRlGmMMx9GyDC9M+XklQ==} + '@expo/prebuild-config@54.0.8': resolution: {integrity: sha512-EA7N4dloty2t5Rde+HP0IEE+nkAQiu4A/+QGZGT9mFnZ5KKjPPkqSyYcRvP5bhQE10D+tvz6X0ngZpulbMdbsg==} peerDependencies: @@ -2110,6 +2125,10 @@ packages: resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/expect-utils@30.4.1': + resolution: {integrity: sha512-ZBn5CglH8fBsQsvs4VWNzD4aWfUYks+IdOOQU3MEK71ol/BcVm+P+rtb1KpiFBpSWSCE27uOahyyf1vfqOVbcQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + '@jest/expect@29.7.0': resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -2126,6 +2145,10 @@ packages: resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/pattern@30.4.0': + resolution: {integrity: sha512-RAWn3+f9u8BsHijKJ71uHcFp6vmyEt6VvoWXkl6hKF3qVIuWNmudVjg12DlBPGup/frIl5UcUlH5HfEuvHpEXg==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + '@jest/reporters@29.7.0': resolution: {integrity: sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -2163,6 +2186,10 @@ packages: resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + '@jest/types@30.4.1': + resolution: {integrity: sha512-f1x/vJXIfjOlEmejYpbkbgw1gOqpPECwMvMEtBqe47j7H2Hg8h8w3o3ikhSXq3MI15kg+oQ0exWO0uCtTNJLoQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + '@jridgewell/gen-mapping@0.3.13': resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} @@ -3186,6 +3213,20 @@ packages: resolution: {integrity: sha512-fB7M1CMOCIUudTRuj7kzxIBTVw2KXnsgbQ6+4cbqSxo8NmRRhA0Ul4ZUzZj3rFd3VznTL4Brmocv1oiN0bWZ8w==} engines: {node: '>= 20.19.4'} + '@react-native/js-polyfills@0.86.0': + resolution: {integrity: sha512-zYy/Cjd1VTnZ2iCNaG9bDF9C3l2ntESiPRscjIlI5FKugu6aeTwsDSv1aI8Bc4Kp3vEdoVg+UQhLAhE4svREaQ==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + + '@react-native/metro-babel-transformer@0.86.0': + resolution: {integrity: sha512-SjKej3E5qIahqo/G+rSOrmJUQM44RyKtWtO+VfmKAAMoJWkBFomM22hTLKCIS5cdbIAJ9COAmU+KAi2wVSO0wQ==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + peerDependencies: + '@babel/core': '*' + + '@react-native/metro-config@0.86.0': + resolution: {integrity: sha512-7v+xbTeEci9ZcQ/Z1OqI4RXcqN69wSMDYL5BAMvOReZ7U04+aDQ0/SQhClYPn6x2/RxM4WzMKSAuNyLKqvYVtw==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + '@react-native/normalize-colors@0.81.5': resolution: {integrity: sha512-0HuJ8YtqlTVRXGZuGeBejLE04wSQsibpTI+RGOyVqxZvgtlLLC/Ssw0UmbHhT4lYMp2fhdtvKZSs5emWB1zR/g==} @@ -3632,6 +3673,9 @@ packages: '@types/jest@29.5.14': resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==} + '@types/jest@30.0.0': + resolution: {integrity: sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==} + '@types/jsdom@20.0.1': resolution: {integrity: sha512-d0r18sZPmMQr1eG35u12FZfhIXNrnsPU/g5wvRKCUf/tOGilKKwYMYGqh33BNR6ba+2gkHw1EUiHoN3mn7E5IQ==} @@ -3934,6 +3978,10 @@ packages: resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} engines: {node: '>= 0.6'} + accepts@2.0.0: + resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==} + engines: {node: '>= 0.6'} + acorn-globals@7.0.1: resolution: {integrity: sha512-umOSDSDrfHbTNPuNpC2NSnnA3LUrqpevPb4T9jRx4MagXNS0rs+gwiTcAvqCRmsD6utzsrzNt+ebm00SNWiC3Q==} @@ -4208,6 +4256,18 @@ packages: expo: optional: true + babel-preset-expo@54.0.12: + resolution: {integrity: sha512-6xeSkdaixmQhWSYL7tfLu0pOS0BY+8ftwmdNSHtpEFSizrXYZkCjk/B6Dxr+6nwNRihixMcS0aBlWS1wlDl3pw==} + peerDependencies: + '@babel/runtime': ^7.20.0 + expo: '*' + react-refresh: '>=0.14.0 <1.0.0' + peerDependenciesMeta: + '@babel/runtime': + optional: true + expo: + optional: true + babel-preset-jest@29.6.3: resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -4407,6 +4467,10 @@ packages: resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} engines: {node: '>=8'} + ci-info@4.4.0: + resolution: {integrity: sha512-77PSwercCZU2Fc4sX94eF8k8Pxte6JAwL4/ICZLFjJLqegs7kCuAsqqj/70NQF6TvDpgFjkubQB2FW2ZZddvQg==} + engines: {node: '>=8'} + cjs-module-lexer@1.4.3: resolution: {integrity: sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==} @@ -5141,6 +5205,10 @@ packages: resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + expect@30.4.1: + resolution: {integrity: sha512-PMARsyh/JtqC20HoGqlFcIlQAyqUtW4PlI1rup1uhYJtKuwAjbvWi3GQMAn+STdHum/dk8xrKfUM1+5SAwpolA==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + expo-age-range@0.2.18: resolution: {integrity: sha512-WThjp0/islDlysxRkamXmS9D2zU/T7P5fIizIBPaajfG4C+tjL7psFZp6R6l0eDkYJkYO+VPJRMr5NrQQAu6nQ==} peerDependencies: @@ -5236,6 +5304,12 @@ packages: expo: '*' react-native: '*' + expo-file-system@19.0.23: + resolution: {integrity: sha512-MeGkid9OeNILfT/qonaXHp4f2c15xaB28U/bcN7pqZej0Kx0+6+V7e9ZIXpPHm07zVatxA+QkMTPQEGfmvVOxA==} + peerDependencies: + expo: '*' + react-native: '*' + expo-font@14.0.11: resolution: {integrity: sha512-ga0q61ny4s/kr4k8JX9hVH69exVSIfcIc19+qZ7gt71Mqtm7xy2c6kwsPTCyhBW2Ro5yXTT8EaZOpuRi35rHbg==} peerDependencies: @@ -5243,8 +5317,15 @@ packages: react: '*' react-native: '*' - expo-glass-effect@55.0.8: - resolution: {integrity: sha512-IvUjHb/4t6r2H/LXDjcQ4uDoHrmO2cLOvEb9leLavQ4HX5+P4LRtQrMDMlkWAn5Wo5DkLcG8+1CrQU2nqgogTA==} + expo-font@14.0.12: + resolution: {integrity: sha512-QQzunE2Mxk45AsCWm3tK7OpVljbtVnKD58q4/qliev+cbye1IOduUnRIdD+P7DyButw17G9MTX795kgaQiz5hQ==} + peerDependencies: + expo: '*' + react: '*' + react-native: '*' + + expo-glass-effect@0.1.10: + resolution: {integrity: sha512-R0OrsMbs2TxFQZp26rRDl1Wxu5PaBXM7qAxiT0Bfyb1bojr3eI90bMKry9lBM3aKbq7DOBXYT7ePrE3vUaf41g==} peerDependencies: expo: '*' react: '*' @@ -5330,8 +5411,8 @@ packages: expo: '*' react-native: '*' - expo-modules-autolinking@3.0.25: - resolution: {integrity: sha512-YmHWctJlwvOuLZccg3cOXvSiXVJrPMKl7g2YR0YHWoGL9v2RvcmgaPJWPSLVW+voNEgEPsbo5UmUrAqbnYcBeg==} + expo-modules-autolinking@3.0.26: + resolution: {integrity: sha512-WOaud6UKg16ciCOj8raKcMOoKFMHLXKI29U29yhgu1lf+Y7VxJyCktUcYo6AM+ccZ7zLD1uWZdMtgnpf+95OXA==} hasBin: true expo-modules-core@3.0.30: @@ -5354,8 +5435,8 @@ packages: react: '*' react-native: '*' - expo-privacy-sensitive@0.1.0: - resolution: {integrity: sha512-N0xa8yz+u7HvGY5CqZeo5cwtTOyFQxOxxt15jeW1eAjLKZAcNrtrDGGJP18TX2eh5TfJ3I6OtmECJg9Q8+Yorw==} + expo-privacy-sensitive@0.2.0: + resolution: {integrity: sha512-vHCpDJ7/VGMAGBobxslWemZxTpD3MfpAU6xvyIze+1LoTxdeYbGzUs0JeH1d8D+lrV9gV4cuFfvTmV1tHy9o9w==} peerDependencies: expo: '*' react: '*' @@ -5373,8 +5454,8 @@ packages: expo: '*' react-native: '*' - expo-server@1.0.6: - resolution: {integrity: sha512-vb5TBtskvEdzYuW79lATXutOEBfW5m6U4EFpNjCVZTnI7S//SAsLQkYEpn+EDfn84m6VQfzSGkIVR6YPaScKFA==} + expo-server@1.0.7: + resolution: {integrity: sha512-mcmyML3oXcqFUXUxtdtCL1O00ztNI2v76d+MdniXRUgHNxIcHZ05zo+DqBaOOT6LQnPk4vA4YHqQl7iGUfRb3g==} engines: {node: '>=20.16.0'} expo-sharing@14.0.8: @@ -5436,8 +5517,8 @@ packages: expo: '*' react-native: '*' - expo@54.0.34: - resolution: {integrity: sha512-XkVHguZZDC8BcTQxHAd14/TQFbDp1Wt0Z/KApO9t68Ll5A127hLCPzU+a9gytfCIiyL/V1IpF1vIcOLKEVAoNQ==} + expo@54.0.35: + resolution: {integrity: sha512-E+tXpQwjGm5fK/uwa55p0Xx/kuo5dXDKfVJ95IargTNa5KiFt26lSTXXa9KnHbI4EDLwFD38/xTKZvzPTlGTdg==} hasBin: true peerDependencies: '@expo/dom-webview': '*' @@ -5773,6 +5854,12 @@ packages: hermes-estree@0.32.0: resolution: {integrity: sha512-KWn3BqnlDOl97Xe1Yviur6NbgIZ+IP+UVSpshlZWkq+EtoHg6/cwiDj/osP9PCEgFE15KBm1O55JRwbMEm5ejQ==} + hermes-estree@0.35.0: + resolution: {integrity: sha512-xVx5Opwy8Oo1I5yGpVRhCvWL/iV3M+ylksSKVNlxxD90cpDpR/AR1jLYqK8HWihm065a6UI3HeyAmYzwS8NOOg==} + + hermes-estree@0.36.0: + resolution: {integrity: sha512-A1+8zn5oss2CFP7pKsOaxorQG6FNIz1WU1VDqruLPPZl3LVgeE2C5xfFg8Ow6/Ow4mSslLLtYP1J3n38eKyW9w==} + hermes-parser@0.25.1: resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==} @@ -5782,6 +5869,12 @@ packages: hermes-parser@0.32.0: resolution: {integrity: sha512-g4nBOWFpuiTqjR3LZdRxKUkij9iyveWeuks7INEsMX741f3r9xxrOe8TeQfUxtda0eXmiIFiMQzoeSQEno33Hw==} + hermes-parser@0.35.0: + resolution: {integrity: sha512-9JLjeHxBx8T4CAsydZR49PNZUaix+WpQJwu9p2010lu+7Kwl6D/7wYFFJxoz+aXkaaClp9Zfg6W6/zVlSJORaA==} + + hermes-parser@0.36.0: + resolution: {integrity: sha512-GdpwMmH5x6IpC1cijvcvYnlPB60Mh6kTSF/NFdYV/j56gYdi+0RIakYs+eqOV+bbO0SW7mgVVGSsTJxyPQfo3w==} + hls.js@1.6.16: resolution: {integrity: sha512-VSIRpLfRwlAAdGL4wiTucx2ScRipo0ed1FBatWkyt832jC4CReKstga6yIhYVwGu9LOBjuX9wzmRMeQdBJtzEA==} @@ -6286,10 +6379,18 @@ packages: resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-message-util@30.4.1: + resolution: {integrity: sha512-kwCKIvq0MCW1HzLoGola9Te6JUdzgV0loyKJ3Qghrkz9i5/RRIHsL95BMQc2HBBhlBKC4j22K9p11TGHH8RBpQ==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + jest-mock@29.7.0: resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-mock@30.4.1: + resolution: {integrity: sha512-/i8SVb8/NSB7RfNi8gfqu8gxLV23KaL5EpAttyb9iz8qWRIqXRLflycz/32wXsYkOnaUlx8NAKnJYtpsmXUmfw==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + jest-pnp-resolver@1.2.3: resolution: {integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==} engines: {node: '>=6'} @@ -6303,6 +6404,10 @@ packages: resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-regex-util@30.4.0: + resolution: {integrity: sha512-mWlvLviKIgIQ8VCuM1xRdD0TWp3zlzionlmDBjuXVBs+VkmXq6FgW9T4Emr7oGz/Rk6feDCGyiugolcQEyp3mg==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + jest-resolve-dependencies@29.7.0: resolution: {integrity: sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -6327,6 +6432,10 @@ packages: resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} + jest-util@30.4.1: + resolution: {integrity: sha512-vjQb1sACEiv13DKJMDToJpzVW0joCsIQrmbg0fi7CyOOt+g9jTuQl2A216pWRBYhOVt53XbL/2LbMKg1BECWOw==} + engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0} + jest-validate@29.7.0: resolution: {integrity: sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} @@ -6702,60 +6811,118 @@ packages: resolution: {integrity: sha512-1vxlvj2yY24ES1O5RsSIvg4a4WeL7PFXgKOHvXTXiW0deLvQr28ExXj6LjwCCDZ4YZLhq6HddLpZnX4dEdSq5g==} engines: {node: '>=20.19.4'} + metro-babel-transformer@0.84.4: + resolution: {integrity: sha512-rvCfz8snl9h20VcvpOHxZuHP1SlAkv4HXbzw7nyyVwu6Eqo5PRerbakQ9XmUCOsRy70spJ37O+G1TK8oMzo48g==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-cache-key@0.83.3: resolution: {integrity: sha512-59ZO049jKzSmvBmG/B5bZ6/dztP0ilp0o988nc6dpaDsU05Cl1c/lRf+yx8m9WW/JVgbmfO5MziBU559XjI5Zw==} engines: {node: '>=20.19.4'} + metro-cache-key@0.84.4: + resolution: {integrity: sha512-wVO79aGrkYImpnaVS4+d5RrRBRPX31QtvKB3wKGBuiNSznduZTQHzsrJZRroFJSwnygrzdsGUtDQPuqqFjFdvw==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-cache@0.83.3: resolution: {integrity: sha512-3jo65X515mQJvKqK3vWRblxDEcgY55Sk3w4xa6LlfEXgQ9g1WgMh9m4qVZVwgcHoLy0a2HENTPCCX4Pk6s8c8Q==} engines: {node: '>=20.19.4'} + metro-cache@0.84.4: + resolution: {integrity: sha512-gpcFQdSLUwUCk71saKoE64jLFbx2nwTfVCcPSULMNT8QYq0p1eZZE29Jvd0HtT/UlhC3ZOutLxJME5xqD2JUZg==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-config@0.83.3: resolution: {integrity: sha512-mTel7ipT0yNjKILIan04bkJkuCzUUkm2SeEaTads8VfEecCh+ltXchdq6DovXJqzQAXuR2P9cxZB47Lg4klriA==} engines: {node: '>=20.19.4'} + metro-config@0.84.4: + resolution: {integrity: sha512-PMotGDjXcXLWo2TMRH+VR99phFNgYTwqh4OoieIKK3yTJa1Jmkl+fZJxDO0jfBvNF+WESHciHvpNuBtXaF3B0Q==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-core@0.83.3: resolution: {integrity: sha512-M+X59lm7oBmJZamc96usuF1kusd5YimqG/q97g4Ac7slnJ3YiGglW5CsOlicTR5EWf8MQFxxjDoB6ytTqRe8Hw==} engines: {node: '>=20.19.4'} + metro-core@0.84.4: + resolution: {integrity: sha512-HONpWC5LGXZn3ffkd4Hu6AIrfE7j4Z0g0wMo/goV24WOB3lhuFZ40KgvaDiSw8iyQHloMYay5N/wPX+z8oN/PQ==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-file-map@0.83.3: resolution: {integrity: sha512-jg5AcyE0Q9Xbbu/4NAwwZkmQn7doJCKGW0SLeSJmzNB9Z24jBe0AL2PHNMy4eu0JiKtNWHz9IiONGZWq7hjVTA==} engines: {node: '>=20.19.4'} + metro-file-map@0.84.4: + resolution: {integrity: sha512-KSVDi/u60hKPx++NLu3MTIvyjzNoJnFAF8PQFxaj1jiSka/wjw+Ua6sNuJ0TDHQv+7AAoFQxeMgaRAe8Yic5wQ==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-minify-terser@0.83.3: resolution: {integrity: sha512-O2BmfWj6FSfzBLrNCXt/rr2VYZdX5i6444QJU0fFoc7Ljg+Q+iqebwE3K0eTvkI6TRjELsXk1cjU+fXwAR4OjQ==} engines: {node: '>=20.19.4'} + metro-minify-terser@0.84.4: + resolution: {integrity: sha512-5qpbaVOMC7CPitIpuewzVeGw7E+C3ykbv2mqTjQLl85Z3annSVGlSCTcsZjqXZzjupfK4Ztj3dDc4kc44NZwtQ==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-resolver@0.83.3: resolution: {integrity: sha512-0js+zwI5flFxb1ktmR///bxHYg7OLpRpWZlBBruYG8OKYxeMP7SV0xQ/o/hUelrEMdK4LJzqVtHAhBm25LVfAQ==} engines: {node: '>=20.19.4'} + metro-resolver@0.84.4: + resolution: {integrity: sha512-1qLgbxQ5ZGhhutuPot1Yp348ofDsATL2WkrHF65TobqTT9K3P9qJXw38bomk7ncp5B7OYMfWwtyBZo1lCV792A==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-runtime@0.83.3: resolution: {integrity: sha512-JHCJb9ebr9rfJ+LcssFYA2x1qPYuSD/bbePupIGhpMrsla7RCwC/VL3yJ9cSU+nUhU4c9Ixxy8tBta+JbDeZWw==} engines: {node: '>=20.19.4'} + metro-runtime@0.84.4: + resolution: {integrity: sha512-Jibypds4g7AhzdRKY+kDoj51s5EXMwgyp5ddtlreDAsWefMdOx+agWqgm0H2XSZ/ueanHHVM89fnf5OJnlxa8Q==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-source-map@0.83.3: resolution: {integrity: sha512-xkC3qwUBh2psVZgVavo8+r2C9Igkk3DibiOXSAht1aYRRcztEZNFtAMtfSB7sdO2iFMx2Mlyu++cBxz/fhdzQg==} engines: {node: '>=20.19.4'} + metro-source-map@0.84.4: + resolution: {integrity: sha512-jbWkPxIesVuo1IWkvezmMJld6iu8nD62GsrZiV6jP37AOdbo4OBq1FJ+qkOg8sV05wAHB//jAbziuW0SlJfW4g==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-symbolicate@0.83.3: resolution: {integrity: sha512-F/YChgKd6KbFK3eUR5HdUsfBqVsanf5lNTwFd4Ca7uuxnHgBC3kR/Hba/RGkenR3pZaGNp5Bu9ZqqP52Wyhomw==} engines: {node: '>=20.19.4'} hasBin: true + metro-symbolicate@0.84.4: + resolution: {integrity: sha512-OnfpacxUqGPZQ27t8qK9mFa7uqHIlVWeqRqkCbvMvreEBiamEeOn8krKtcwgP5M4cYDPwuSmCTopHMVthqG4zA==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + hasBin: true + metro-transform-plugins@0.83.3: resolution: {integrity: sha512-eRGoKJU6jmqOakBMH5kUB7VitEWiNrDzBHpYbkBXW7C5fUGeOd2CyqrosEzbMK5VMiZYyOcNFEphvxk3OXey2A==} engines: {node: '>=20.19.4'} + metro-transform-plugins@0.84.4: + resolution: {integrity: sha512-kehr6HbAecqD0/a3xLXobELdPaAmRAl8bel0qagPF4vhZtux93nS8S4eq2kgKt6J2GnQpVjSoW1PXdst04mwow==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro-transform-worker@0.83.3: resolution: {integrity: sha512-Ztekew9t/gOIMZX1tvJOgX7KlSLL5kWykl0Iwu2cL2vKMKVALRl1hysyhUw0vjpAvLFx+Kfq9VLjnHIkW32fPA==} engines: {node: '>=20.19.4'} + metro-transform-worker@0.84.4: + resolution: {integrity: sha512-W1IYMvvXTu4MxYr7d9h7CeG2vpIr3bmLLIavkPY4O1ilzDrvS8z/NEe6y+pC44Ff7raMXQgYSfdqDUwN/i39gg==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + metro@0.83.3: resolution: {integrity: sha512-+rP+/GieOzkt97hSJ0MrPOuAH/jpaS21ZDvL9DJ35QYRDlQcwzcvUlGUf79AnQxq/2NPiS/AULhhM4TKutIt8Q==} engines: {node: '>=20.19.4'} hasBin: true + metro@0.84.4: + resolution: {integrity: sha512-8ETTubqfD6ornDy2zYDvRcKnVDOXdFJsjetYDBsY4oAsb6NJkiwFR+FaMESyGppFmQUyBQA4H4sFGxzcQSGtFA==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + hasBin: true + micromatch@4.0.8: resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} @@ -6772,6 +6939,10 @@ packages: resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} engines: {node: '>= 0.6'} + mime-types@3.0.2: + resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==} + engines: {node: '>=18'} + mime@1.6.0: resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} engines: {node: '>=4'} @@ -6881,6 +7052,10 @@ packages: resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==} engines: {node: '>= 0.6'} + negotiator@1.0.0: + resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==} + engines: {node: '>= 0.6'} + neo-async@2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} @@ -7066,6 +7241,10 @@ packages: resolution: {integrity: sha512-egUxXCDwoWG06NGCS5s5AdcpnumHKJlfd3HH06P3m9TEMwwScfcY35wpQxbm9oHof+dM/lVH9Rfyu1elTVelSA==} engines: {node: '>=20.19.4'} + ob1@0.84.4: + resolution: {integrity: sha512-eJXMpz4aQHXF/YBB9ddqZDIS+ooO91hObo9FoW/xBkr54/zCwYYCDqT/O54vNo8kOkWs5Ou/y28NgdrV0edQNA==} + engines: {node: ^20.19.4 || ^22.13.0 || ^24.3.0 || >= 25.0.0} + object-assign@4.1.1: resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} engines: {node: '>=0.10.0'} @@ -7790,7 +7969,7 @@ packages: react: '>= 18.2.0' react-native: '*' react-native-gesture-handler: '>= 2.0.0' - react-native-reanimated: 3.19.1 + react-native-reanimated: 4.3.2 react-native-edge-to-edge@1.8.1: resolution: {integrity: sha512-bhvsKqeX9PGkY9wBUk9vni/tJNJdKtLPbs/j3e/3CdV4JmUWfTXYYoL+4Hc8Wmej+5eJxkc8KOFa454ruFWBCA==} @@ -7798,14 +7977,8 @@ packages: react: '*' react-native: '*' - react-native-gesture-handler@2.28.0: - resolution: {integrity: sha512-0msfJ1vRxXKVgTgvL+1ZOoYw3/0z1R+Ked0+udoJhyplC2jbVKIJ8Z1bzWdpQRCV3QcQ87Op0zJVE5DhKK2A0A==} - peerDependencies: - react: '*' - react-native: '*' - - react-native-is-edge-to-edge@1.1.7: - resolution: {integrity: sha512-EH6i7E8epJGIcu7KpfXYXiV2JFIYITtq+rVS8uEb+92naMRBdxhTuS8Wn2Q7j9sqyO0B+Xbaaf9VdipIAmGW4w==} + react-native-gesture-handler@2.30.1: + resolution: {integrity: sha512-xIUBDo5ktmJs++0fZlavQNvDEE4PsihWhSeJsJtoz4Q6p0MiTM9TgrTgfEgzRR36qGPytFoeq+ShLrVwGdpUdA==} peerDependencies: react: '*' react-native: '*' @@ -7821,7 +7994,13 @@ packages: peerDependencies: react: '*' react-native: '*' - react-native-reanimated: 3.19.1 + react-native-reanimated: 4.3.2 + + react-native-mmkv@3.3.3: + resolution: {integrity: sha512-GMsfOmNzx0p5+CtrCFRVtpOOMYNJXuksBVARSQrCFaZwjUyHJdQzcN900GGaFFNTxw2fs8s5Xje//RDKj9+PZA==} + peerDependencies: + react: '*' + react-native: '*' react-native-pager-view@6.8.0: resolution: {integrity: sha512-/wgFV8nB4TLnQ6j9e3TvNrHbPF5TINMZHaXt86GOV0NSJNMVGkWguniJVKrYLm85LL8KVhRkgdh43Rdu7PvW1A==} @@ -7829,9 +8008,8 @@ packages: react: '*' react-native: '*' - react-native-progress@https://codeload.github.com/bluesky-social/react-native-progress/tar.gz/5a372f4f2ce5feb26f4f47b6a4d187ab9b923ab4: - resolution: {gitHosted: true, integrity: sha512-gDJJirvdhK5uUuI2OkiuleTbmeCyjkf1G6kPd4HAMc1pW8pUUeA0wKyPxZaI+s9htw8IDH6mFlmBB1ob8QMB4g==, tarball: https://codeload.github.com/bluesky-social/react-native-progress/tar.gz/5a372f4f2ce5feb26f4f47b6a4d187ab9b923ab4} - version: 5.0.0 + react-native-progress@5.0.1: + resolution: {integrity: sha512-TYfJ4auAe5vubDma2yfFvt7ktSI+UCfysqJnkdHEcLXqAitRFOozgF/cLgN5VNi/iLdaf3ga1ETi2RF4jVZ/+g==} peerDependencies: react-native-svg: '*' @@ -7843,12 +8021,12 @@ packages: react-native: '*' react-native-svg: '*' - react-native-reanimated@3.19.1: - resolution: {integrity: sha512-ILL0FSNzSVIg6WuawrsMBvNxk2yJFiTUcahimXDAeNiE/09eagVUlHhYWXAAmH0umvAOafBaGjO7YfBhUrf5ZQ==} + react-native-reanimated@4.3.2: + resolution: {integrity: sha512-lDie7N6FQbALmdAFqP1RbM/Rrj6eHLHu+qAPCgVCam5WLSwUwIGGtZZEn2lVftWRWNCx4oemVGlcL7X9nsLHqA==} peerDependencies: - '@babel/core': ^7.0.0-0 react: '*' - react-native: '*' + react-native: 0.81 - 0.85 + react-native-worklets: 0.8.3 react-native-safe-area-context@5.6.2: resolution: {integrity: sha512-4XGqMNj5qjUTYywJqpdWZ9IG8jgkS3h06sfVjfw5yZQZfWnRFXczi0GnYyFyCc2EBps/qFmoCH8fez//WumdVg==} @@ -7868,12 +8046,6 @@ packages: react: '*' react-native: '*' - react-native-uitextview@1.4.0: - resolution: {integrity: sha512-itm/frzkn/ma3+lwmKn2CkBOXPNo4bL8iVwQwjlzix5gVO59T2+axdfoj/Wi+Ra6F76KzNKxSah+7Y8dYmCHbQ==} - peerDependencies: - react: '*' - react-native: '*' - react-native-uuid@2.0.4: resolution: {integrity: sha512-LSJNeh559qC17fgVPBsWuTSW/OygFp2dwTcf94IQBLYft5FzIQS9pCsuT36OPvyvDOMb6yiGr6TafaJDnz9PPQ==} engines: {node: '>=18.0.0', npm: '>=9.0.0'} @@ -7902,6 +8074,14 @@ packages: react: '*' react-native: '*' + react-native-worklets@0.8.3: + resolution: {integrity: sha512-oCBJROyLU7yG/1R8s0INMflygTH71bx+5XcYkH0CM938TlhSoVbiunE1WVW5FZa51vwYqfLie/IXMX2s1Kh3eg==} + peerDependencies: + '@babel/core': '*' + '@react-native/metro-config': '*' + react: '*' + react-native: 0.81 - 0.85 + react-native@0.81.5: resolution: {integrity: sha512-1w+/oSjEXZjMqsIvmkCRsOc8UBYv163bTWKTI8+1mxztvQPhCRYGTvZ/PL1w16xXHneIj/SLGfxWg2GWN2uexw==} engines: {node: '>= 20.19.4'} @@ -8314,16 +8494,17 @@ packages: sockjs@0.3.24: resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} - sonner-native@0.21.0: - resolution: {integrity: sha512-pIdyMd722xuDukIvCZCmWh9Jy5FV+m9uKYl3oAzonYE+91eX5556vYrIik5MisDlBniSXaWqC9CnPoS6DKo2Lg==} + sonner-native@0.26.4: + resolution: {integrity: sha512-wBE/pctNfz+ieXjpYX7uu5hH38ws8xRmH0AFmEdEgkOS363k6N8QfFoyjGqDmdUDy15m4AAvOjd2Wz/jATukIA==} peerDependencies: react: '*' react-native: '*' - react-native-gesture-handler: '>=2.16.1' - react-native-reanimated: 3.19.1 - react-native-safe-area-context: '>=4.10.5' + react-native-gesture-handler: '>=2.28.0' + react-native-reanimated: 4.3.2 + react-native-safe-area-context: ^5.6.0 react-native-screens: 4.24.0 - react-native-svg: '>=15.6.0' + react-native-svg: ^15.12.1 + react-native-worklets: 0.8.3 sonner@2.0.7: resolution: {integrity: sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==} @@ -9218,7 +9399,7 @@ snapshots: '@0no-co/graphql.web@1.2.0': {} - '@atproto/api@0.20.31': + '@atproto/api@0.20.34': dependencies: '@atproto/common-web': 0.5.6 '@atproto/lexicon': 0.7.7 @@ -10153,93 +10334,94 @@ snapshots: '@bcoe/v8-coverage@0.2.3': {} - '@bitdrift/react-native@0.6.14(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bitdrift/react-native@0.6.14(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: '@expo/config-plugins': 9.1.7 fast-json-stringify: 6.4.0 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) transitivePeerDependencies: - supports-color '@braintree/sanitize-url@6.0.4': {} - '@bsky.app/alf@0.1.15(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/alf@0.1.15(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-responsive: 10.0.1(react@19.1.0) - '@bsky.app/expo-dynamic-app-icon@1.8.5(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/expo-dynamic-app-icon@1.8.5(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: '@expo/image-utils': 0.8.12 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) xcode: 3.0.1 - '@bsky.app/expo-guess-language@0.2.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/expo-guess-language@0.2.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) lande: 1.0.10 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/expo-image-crop-tool@0.5.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/expo-image-crop-tool@0.5.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/expo-scroll-edge-effect@0.1.4(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/expo-scroll-edge-effect@0.1.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@types/jest': 30.0.0 + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/expo-translate-text@0.2.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/expo-translate-text@0.2.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/peek-menu@0.3.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/peek-menu@0.3.2(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/react-native-mmkv@2.12.5(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/react-native-uitextview@2.5.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/sift@0.3.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/sift@0.3.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - '@bsky.app/tapper@0.6.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tlds@1.261.0)': + '@bsky.app/tapper@0.6.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tlds@1.261.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) tlds: 1.261.0 - '@bsky.app/video-compressor@0.2.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/video-compressor@0.2.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) mediabunny: 1.49.0 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/video@0.3.6(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/video@0.3.6(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) '@crowdin/cli@4.14.2': dependencies: @@ -10342,7 +10524,7 @@ snapshots: '@esbuild/win32-x64@0.25.12': optional: true - '@expo/cli@54.0.24(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))': + '@expo/cli@54.0.25(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))': dependencies: '@0no-co/graphql.web': 1.2.0 '@expo/code-signing-certificates': 0.0.6 @@ -10351,13 +10533,13 @@ snapshots: '@expo/devcert': 1.2.1 '@expo/env': 2.0.11 '@expo/image-utils': 0.8.12 - '@expo/json-file': 10.0.14 + '@expo/json-file': 10.2.0 '@expo/metro': 54.2.0 - '@expo/metro-config': 54.0.15(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + '@expo/metro-config': 54.0.16(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) '@expo/osascript': 2.4.3 '@expo/package-manager': 1.10.5 - '@expo/plist': 0.4.8 - '@expo/prebuild-config': 54.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + '@expo/plist': 0.4.9 + '@expo/prebuild-config': 54.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) '@expo/schema-utils': 0.1.8 '@expo/spawn-async': 1.7.2 '@expo/ws-tunnel': 1.0.6 @@ -10376,8 +10558,8 @@ snapshots: connect: 3.7.0 debug: 4.4.3 env-editor: 0.4.2 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-server: 1.0.6 + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-server: 1.0.7 freeport-async: 2.0.0 getenv: 2.0.0 glob: 13.0.6 @@ -10409,7 +10591,7 @@ snapshots: wrap-ansi: 7.0.0 ws: 8.20.1 optionalDependencies: - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) transitivePeerDependencies: - bufferutil - graphql @@ -10487,12 +10669,12 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/devtools@0.1.8(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@expo/devtools@0.1.8(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: chalk: 4.1.2 optionalDependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) '@expo/env@2.0.11': dependencies: @@ -10537,19 +10719,29 @@ snapshots: '@babel/code-frame': 7.29.0 json5: 2.2.3 + '@expo/json-file@10.0.16': + dependencies: + '@babel/code-frame': 7.10.4 + json5: 2.2.3 + + '@expo/json-file@10.2.0': + dependencies: + '@babel/code-frame': 7.29.0 + json5: 2.2.3 + '@expo/json-file@9.1.5': dependencies: '@babel/code-frame': 7.10.4 json5: 2.2.3 - '@expo/metro-config@54.0.15(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))': + '@expo/metro-config@54.0.16(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))': dependencies: '@babel/code-frame': 7.29.0 '@babel/core': 7.29.0 '@babel/generator': 7.29.1 '@expo/config': 12.0.13 '@expo/env': 2.0.11 - '@expo/json-file': 10.0.14 + '@expo/json-file': 10.0.16 '@expo/metro': 54.2.0 '@expo/spawn-async': 1.7.2 browserslist: 4.28.2 @@ -10566,7 +10758,7 @@ snapshots: postcss: 8.4.49 resolve-from: 5.0.0 optionalDependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) transitivePeerDependencies: - bufferutil - supports-color @@ -10618,7 +10810,13 @@ snapshots: base64-js: 1.5.1 xmlbuilder: 15.1.1 - '@expo/prebuild-config@54.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))': + '@expo/plist@0.4.9': + dependencies: + '@xmldom/xmldom': 0.8.13 + base64-js: 1.5.1 + xmlbuilder: 15.1.1 + + '@expo/prebuild-config@54.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))': dependencies: '@expo/config': 12.0.13 '@expo/config-plugins': 54.0.4 @@ -10627,7 +10825,7 @@ snapshots: '@expo/json-file': 10.0.14 '@react-native/normalize-colors': 0.81.5 debug: 4.4.3 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) resolve-from: 5.0.0 semver: 7.8.0 xml2js: 0.6.0 @@ -10644,13 +10842,13 @@ snapshots: '@expo/sudo-prompt@9.3.2': {} - '@expo/vector-icons@15.1.1(expo-font@14.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@expo/vector-icons@15.1.1(expo-font@14.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - expo-font: 14.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-font: 14.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - '@expo/webpack-config@19.0.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(postcss@8.5.14)': + '@expo/webpack-config@19.0.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(postcss@8.5.14)': dependencies: '@babel/core': 7.29.0 babel-loader: 8.4.1(@babel/core@7.29.0)(webpack@5.106.2(postcss@8.5.14)) @@ -10659,8 +10857,8 @@ snapshots: copy-webpack-plugin: 10.2.4(webpack@5.106.2(postcss@8.5.14)) css-loader: 6.11.0(webpack@5.106.2(postcss@8.5.14)) css-minimizer-webpack-plugin: 3.4.1(webpack@5.106.2(postcss@8.5.14)) - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-pwa: 0.0.127(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-pwa: 0.0.127(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) find-up: 5.0.0 find-yarn-workspace-root: 2.0.0 fs-extra: 11.3.5 @@ -10863,6 +11061,10 @@ snapshots: dependencies: jest-get-type: 29.6.3 + '@jest/expect-utils@30.4.1': + dependencies: + '@jest/get-type': 30.1.0 + '@jest/expect@29.7.0': dependencies: expect: 29.7.0 @@ -10890,6 +11092,11 @@ snapshots: transitivePeerDependencies: - supports-color + '@jest/pattern@30.4.0': + dependencies: + '@types/node': 24.12.4 + jest-regex-util: 30.4.0 + '@jest/reporters@29.7.0': dependencies: '@bcoe/v8-coverage': 0.2.3 @@ -10976,6 +11183,16 @@ snapshots: '@types/yargs': 17.0.35 chalk: 4.1.2 + '@jest/types@30.4.1': + dependencies: + '@jest/pattern': 30.4.0 + '@jest/schemas': 30.4.1 + '@types/istanbul-lib-coverage': 2.0.6 + '@types/istanbul-reports': 3.0.4 + '@types/node': 24.12.4 + '@types/yargs': 17.0.35 + chalk: 4.1.2 + '@jridgewell/gen-mapping@0.3.13': dependencies: '@jridgewell/sourcemap-codec': 1.5.5 @@ -11949,10 +12166,10 @@ snapshots: '@radix-ui/rect@1.1.1': {} - '@react-native-async-storage/async-storage@2.2.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))': + '@react-native-async-storage/async-storage@2.2.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))': dependencies: merge-options: 3.0.4 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) '@react-native/assets-registry@0.81.5': {} @@ -12024,7 +12241,7 @@ snapshots: nullthrows: 1.1.1 yargs: 17.7.2 - '@react-native/community-cli-plugin@0.81.5': + '@react-native/community-cli-plugin@0.81.5(@react-native/metro-config@0.86.0(@babel/core@7.29.0))': dependencies: '@react-native/dev-middleware': 0.81.5 debug: 4.4.3 @@ -12033,6 +12250,8 @@ snapshots: metro-config: 0.83.3 metro-core: 0.83.3 semver: 7.8.0 + optionalDependencies: + '@react-native/metro-config': 0.86.0(@babel/core@7.29.0) transitivePeerDependencies: - bufferutil - supports-color @@ -12062,28 +12281,51 @@ snapshots: '@react-native/js-polyfills@0.81.5': {} + '@react-native/js-polyfills@0.86.0': {} + + '@react-native/metro-babel-transformer@0.86.0(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 + '@react-native/babel-preset': 0.81.5(@babel/core@7.29.0) + hermes-parser: 0.36.0 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + + '@react-native/metro-config@0.86.0(@babel/core@7.29.0)': + dependencies: + '@react-native/js-polyfills': 0.86.0 + '@react-native/metro-babel-transformer': 0.86.0(@babel/core@7.29.0) + metro-config: 0.84.4 + metro-runtime: 0.84.4 + transitivePeerDependencies: + - '@babel/core' + - bufferutil + - supports-color + - utf-8-validate + '@react-native/normalize-colors@0.81.5': {} '@react-native/typescript-config@0.81.6': {} - '@react-native/virtualized-lists@0.81.5(@types/react@19.1.17)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@react-native/virtualized-lists@0.81.5(@types/react@19.1.17)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) optionalDependencies: '@types/react': 19.1.17 - '@react-navigation/bottom-tabs@7.16.0(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@react-navigation/bottom-tabs@7.16.0(91eab7bd987834c4c877d5cbf9d3796c)': dependencies: - '@react-navigation/elements': 2.9.17(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - '@react-navigation/native': 7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@react-navigation/elements': 2.9.17(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@react-navigation/native': 7.2.4(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) color: 4.2.3 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-screens: 4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-screens: 4.24.0(patch_hash=74a74b489f8074a1974c2792c9c97aec30d8e251669aa37fc5c99993bb4a19e6)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) sf-symbols-typescript: 2.2.0 transitivePeerDependencies: - '@react-native-masked-view/masked-view' @@ -12100,38 +12342,38 @@ snapshots: use-latest-callback: 0.2.6(react@19.1.0) use-sync-external-store: 1.6.0(react@19.1.0) - '@react-navigation/elements@2.9.17(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@react-navigation/elements@2.9.17(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: - '@react-navigation/native': 7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@react-navigation/native': 7.2.4(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) color: 4.2.3 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) use-latest-callback: 0.2.6(react@19.1.0) use-sync-external-store: 1.6.0(react@19.1.0) - '@react-navigation/native-stack@7.15.0(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-screens@4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@react-navigation/native-stack@7.15.0(91eab7bd987834c4c877d5cbf9d3796c)': dependencies: - '@react-navigation/elements': 2.9.17(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - '@react-navigation/native': 7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@react-navigation/elements': 2.9.17(@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@react-navigation/native': 7.2.4(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) color: 4.2.3 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-screens: 4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-screens: 4.24.0(patch_hash=74a74b489f8074a1974c2792c9c97aec30d8e251669aa37fc5c99993bb4a19e6)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) sf-symbols-typescript: 2.2.0 warn-once: 0.1.1 transitivePeerDependencies: - '@react-native-masked-view/masked-view' - '@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@react-navigation/native@7.2.4(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: '@react-navigation/core': 7.17.4(react@19.1.0) escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 nanoid: 3.3.12 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) use-latest-callback: 0.2.6(react@19.1.0) '@react-navigation/routers@7.5.5': @@ -12271,7 +12513,7 @@ snapshots: dependencies: '@sentry/core': 10.64.0 - '@sentry/react-native@8.18.0(@expo/env@2.0.11)(dotenv@16.6.1)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@sentry/react-native@8.18.0(@expo/env@2.0.11)(dotenv@16.6.1)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: '@sentry/babel-plugin-component-annotate': 5.3.0 '@sentry/browser': 10.64.0 @@ -12280,9 +12522,9 @@ snapshots: '@sentry/expo-upload-sourcemaps': 8.18.0(patch_hash=2368e1e1986165e7ead3c60017b78b2f9ade1b6a6b2f5ad27cd428608c6f12ae)(@expo/env@2.0.11)(dotenv@16.6.1) '@sentry/react': 10.64.0(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) optionalDependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) transitivePeerDependencies: - '@expo/env' - dotenv @@ -12347,13 +12589,13 @@ snapshots: '@tanstack/query-core': 5.100.10 react: 19.1.0 - '@testing-library/react-native@13.3.3(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)': + '@testing-library/react-native@13.3.3(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react-test-renderer@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: jest-matcher-utils: 30.4.1 picocolors: 1.1.1 pretty-format: 30.4.1 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-test-renderer: 19.1.0(react@19.1.0) redent: 3.0.0 optionalDependencies: @@ -12561,6 +12803,11 @@ snapshots: expect: 29.7.0 pretty-format: 29.7.0 + '@types/jest@30.0.0': + dependencies: + expect: 30.4.1 + pretty-format: 30.4.1 + '@types/jsdom@20.0.1': dependencies: '@types/node': 24.12.4 @@ -12838,6 +13085,11 @@ snapshots: mime-types: 2.1.35 negotiator: 0.6.3 + accepts@2.0.0: + dependencies: + mime-types: 3.0.2 + negotiator: 1.0.0 + acorn-globals@7.0.1: dependencies: acorn: 8.16.0 @@ -13143,7 +13395,7 @@ snapshots: '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.29.0) '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.29.0) - babel-preset-expo@54.0.10(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2): + babel-preset-expo@54.0.10(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2): dependencies: '@babel/helper-module-imports': 7.28.6 '@babel/plugin-proposal-decorators': 7.29.0(@babel/core@7.29.0) @@ -13170,7 +13422,39 @@ snapshots: resolve-from: 5.0.0 optionalDependencies: '@babel/runtime': 7.29.2 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + transitivePeerDependencies: + - '@babel/core' + - supports-color + + babel-preset-expo@54.0.12(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2): + dependencies: + '@babel/helper-module-imports': 7.28.6 + '@babel/plugin-proposal-decorators': 7.29.0(@babel/core@7.29.0) + '@babel/plugin-proposal-export-default-from': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-syntax-export-default-from': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-class-static-block': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-modules-commonjs': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-object-rest-spread': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.29.0) + '@babel/plugin-transform-private-methods': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-private-property-in-object': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-runtime': 7.29.0(@babel/core@7.29.0) + '@babel/preset-react': 7.28.5(@babel/core@7.29.0) + '@babel/preset-typescript': 7.28.5(@babel/core@7.29.0) + '@react-native/babel-preset': 0.81.5(@babel/core@7.29.0) + babel-plugin-react-compiler: 1.0.0 + babel-plugin-react-native-web: 0.21.2 + babel-plugin-syntax-hermes-parser: 0.29.1 + babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.29.0) + debug: 4.4.3 + react-refresh: 0.14.2 + resolve-from: 5.0.0 + optionalDependencies: + '@babel/runtime': 7.29.2 + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) transitivePeerDependencies: - '@babel/core' - supports-color @@ -13406,6 +13690,8 @@ snapshots: ci-info@3.9.0: {} + ci-info@4.4.0: {} + cjs-module-lexer@1.4.3: {} clean-css@5.3.3: @@ -14182,198 +14468,219 @@ snapshots: jest-message-util: 29.7.0 jest-util: 29.7.0 - expo-age-range@0.2.18(patch_hash=c325225749993424461eeece1d97a99b19c00da2ebc958a73c12e4eca0c39306)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expect@30.4.1: dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + '@jest/expect-utils': 30.4.1 + '@jest/get-type': 30.1.0 + jest-matcher-utils: 30.4.1 + jest-message-util: 30.4.1 + jest-mock: 30.4.1 + jest-util: 30.4.1 - expo-application@7.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-age-range@0.2.18(patch_hash=c325225749993424461eeece1d97a99b19c00da2ebc958a73c12e4eca0c39306)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-asset@12.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-application@7.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + + expo-asset@12.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: '@expo/image-utils': 0.8.12 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-constants: 18.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-constants: 18.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) transitivePeerDependencies: - supports-color - expo-blur@15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-blur@15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-build-properties@1.0.10(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-build-properties@1.0.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: ajv: 8.20.0 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) semver: 7.8.0 - expo-camera@17.0.10(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-camera@17.0.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) invariant: 2.2.4 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) optionalDependencies: react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - expo-clipboard@8.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-clipboard@8.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-constants@18.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expo-constants@18.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: '@expo/config': 12.0.13 '@expo/env': 2.0.11 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) transitivePeerDependencies: - supports-color - expo-contacts@15.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-contacts@15.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-dev-client@6.0.21(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-dev-client@6.0.21(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-dev-launcher: 6.0.21(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-dev-menu: 7.0.19(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-dev-menu-interface: 2.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-manifests: 1.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-updates-interface: 2.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-dev-launcher: 6.0.21(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-dev-menu: 7.0.19(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-dev-menu-interface: 2.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-manifests: 1.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-updates-interface: 2.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) transitivePeerDependencies: - supports-color - expo-dev-launcher@6.0.21(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-dev-launcher@6.0.21(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: ajv: 8.20.0 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-dev-menu: 7.0.19(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-manifests: 1.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-dev-menu: 7.0.19(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-manifests: 1.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) transitivePeerDependencies: - supports-color - expo-dev-menu-interface@2.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-dev-menu-interface@2.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-dev-menu@7.0.19(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-dev-menu@7.0.19(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-dev-menu-interface: 2.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-dev-menu-interface: 2.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-device@8.0.10(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-device@8.0.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) ua-parser-js: 0.7.41 expo-eas-client@1.0.8: {} - expo-file-system@19.0.22(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expo-file-system@19.0.22(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-font@14.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-file-system@19.0.23(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + + expo-font@14.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) fontfaceobserver: 2.3.0 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-glass-effect@55.0.8(patch_hash=6c9fa5b104e53b87df4e17b320acb3b94d12ac90c0101190045dd620681efff0)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-font@14.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + fontfaceobserver: 2.3.0 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-haptics@15.0.8(patch_hash=b33910ba2753c4eccdc885b449e6e33aa90b9cefa75ca8639762a26013141410)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-glass-effect@0.1.10(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - - expo-image-loader@6.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): - dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - - expo-image-manipulator@14.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): - dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-image-loader: 6.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - - expo-image-picker@17.0.11(patch_hash=47b28f6ddb8bcaa6483f8714c82daaa0001122f2b0dac6c05d19e98a61a6ceab)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): - dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-image-loader: 6.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - - expo-image@3.0.11(patch_hash=6d46ffac33426c5285777da5bf5f88c68c8ce27290595dfa65f38c478930c2c4)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): - dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + + expo-haptics@15.0.8(patch_hash=b33910ba2753c4eccdc885b449e6e33aa90b9cefa75ca8639762a26013141410)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + + expo-image-loader@6.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + + expo-image-manipulator@14.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-image-loader: 6.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + + expo-image-picker@17.0.11(patch_hash=47b28f6ddb8bcaa6483f8714c82daaa0001122f2b0dac6c05d19e98a61a6ceab)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-image-loader: 6.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + + expo-image@3.0.11(patch_hash=6d46ffac33426c5285777da5bf5f88c68c8ce27290595dfa65f38c478930c2c4)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + dependencies: + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react: 19.1.0 + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) optionalDependencies: react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - expo-intent-launcher@13.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-intent-launcher@13.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-json-utils@0.15.0: {} - expo-keep-awake@15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0): + expo-keep-awake@15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - expo-linear-gradient@15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-linear-gradient@15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-linking@8.0.12(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-linking@8.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo-constants: 18.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + expo-constants: 18.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) invariant: 2.2.4 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) transitivePeerDependencies: - expo - supports-color - expo-localization@17.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0): + expo-localization@17.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 rtl-detect: 1.1.2 - expo-location@19.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-location@19.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-manifests@1.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-manifests@1.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: '@expo/config': 12.0.13 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-json-utils: 0.15.0 transitivePeerDependencies: - supports-color - expo-media-library@18.2.1(patch_hash=2b84c17999bb0c977eaef7fa8ac297f7074d91c94fb63726b42d2a277b26b39a)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expo-media-library@18.2.1(patch_hash=2b84c17999bb0c977eaef7fa8ac297f7074d91c94fb63726b42d2a277b26b39a)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-modules-autolinking@3.0.25: + expo-modules-autolinking@3.0.26: dependencies: '@expo/spawn-async': 1.7.2 chalk: 4.1.2 @@ -14381,87 +14688,87 @@ snapshots: require-from-string: 2.0.2 resolve-from: 5.0.0 - expo-modules-core@3.0.30(patch_hash=952fb1c8cb6dc8a0d8ef4e1114942a341d89b025e011f1acfff788929997346e)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-modules-core@3.0.30(patch_hash=952fb1c8cb6dc8a0d8ef4e1114942a341d89b025e011f1acfff788929997346e)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: invariant: 2.2.4 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-notifications@0.32.17(patch_hash=a45a8dcf3d8c4b5df4ee0e62bc79b755fcf9d28ca51a6f685b85830bf4afc2e5)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-notifications@0.32.17(patch_hash=a45a8dcf3d8c4b5df4ee0e62bc79b755fcf9d28ca51a6f685b85830bf4afc2e5)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: '@expo/image-utils': 0.8.12 '@ide/backoff': 1.0.0 abort-controller: 3.0.0 assert: 2.1.0 badgin: 1.2.3 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-application: 7.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo-constants: 18.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-application: 7.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-constants: 18.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) transitivePeerDependencies: - supports-color - expo-paste-input@0.2.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-paste-input@0.2.1(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-privacy-sensitive@0.1.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-privacy-sensitive@0.2.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-pwa@0.0.127(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-pwa@0.0.127(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: '@expo/image-utils': 0.8.12 chalk: 4.1.2 commander: 2.20.0 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) update-check: 1.5.3 - expo-screen-orientation@9.0.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expo-screen-orientation@9.0.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-server@1.0.6: {} + expo-server@1.0.7: {} - expo-sharing@14.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-sharing@14.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-sms@14.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-sms@14.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-splash-screen@31.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-splash-screen@31.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - '@expo/prebuild-config': 54.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@expo/prebuild-config': 54.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) transitivePeerDependencies: - supports-color expo-structured-headers@5.0.0: {} - expo-system-ui@6.0.9(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expo-system-ui@6.0.9(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: '@react-native/normalize-colors': 0.81.5 debug: 4.4.3 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) optionalDependencies: react-native-web: 0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) transitivePeerDependencies: - supports-color - expo-updates-interface@2.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-updates-interface@2.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-updates@29.0.17(patch_hash=04f28cb005b770e9ae8f0065eab96e43cbb1e58107f5f6ad1bdd18f6deb66487)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-updates@29.0.17(patch_hash=04f28cb005b770e9ae8f0065eab96e43cbb1e58107f5f6ad1bdd18f6deb66487)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: '@expo/code-signing-certificates': 0.0.6 '@expo/plist': 0.4.8 @@ -14469,62 +14776,62 @@ snapshots: arg: 4.1.0 chalk: 4.1.2 debug: 4.4.3 - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) expo-eas-client: 1.0.8 - expo-manifests: 1.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-manifests: 1.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) expo-structured-headers: 5.0.0 - expo-updates-interface: 2.0.0(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + expo-updates-interface: 2.0.0(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) getenv: 2.0.0 glob: 13.0.6 ignore: 5.3.2 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) resolve-from: 5.0.0 transitivePeerDependencies: - supports-color - expo-video-thumbnails@10.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + expo-video-thumbnails@10.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-video@3.0.16(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo-video@3.0.16(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo-web-browser@15.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)): + expo-web-browser@15.0.11(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: '@babel/runtime': 7.29.2 - '@expo/cli': 54.0.24(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) + '@expo/cli': 54.0.25(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) '@expo/config': 12.0.13 '@expo/config-plugins': 54.0.4 - '@expo/devtools': 0.1.8(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@expo/devtools': 0.1.8(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@expo/fingerprint': 0.15.5 '@expo/metro': 54.2.0 - '@expo/metro-config': 54.0.15(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) - '@expo/vector-icons': 15.1.1(expo-font@14.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@expo/metro-config': 54.0.16(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)) + '@expo/vector-icons': 15.1.1(expo-font@14.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) '@ungap/structured-clone': 1.3.1 - babel-preset-expo: 54.0.10(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2) - expo-asset: 12.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-constants: 18.0.13(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) - expo-file-system: 19.0.22(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0)) - expo-font: 14.0.11(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - expo-keep-awake: 15.0.8(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0) - expo-modules-autolinking: 3.0.25 - expo-modules-core: 3.0.30(patch_hash=952fb1c8cb6dc8a0d8ef4e1114942a341d89b025e011f1acfff788929997346e)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + babel-preset-expo: 54.0.12(@babel/core@7.29.0)(@babel/runtime@7.29.2)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2) + expo-asset: 12.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-constants: 18.0.13(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) + expo-file-system: 19.0.23(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0)) + expo-font: 14.0.12(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo-keep-awake: 15.0.8(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react@19.1.0) + expo-modules-autolinking: 3.0.26 + expo-modules-core: 3.0.30(patch_hash=952fb1c8cb6dc8a0d8ef4e1114942a341d89b025e011f1acfff788929997346e)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) pretty-format: 29.7.0 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-refresh: 0.14.2 whatwg-url-without-unicode: 8.0.0-3 optionalDependencies: - react-native-webview: 13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-webview: 13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) transitivePeerDependencies: - '@babel/core' - bufferutil @@ -14905,6 +15212,10 @@ snapshots: hermes-estree@0.32.0: {} + hermes-estree@0.35.0: {} + + hermes-estree@0.36.0: {} + hermes-parser@0.25.1: dependencies: hermes-estree: 0.25.1 @@ -14917,6 +15228,14 @@ snapshots: dependencies: hermes-estree: 0.32.0 + hermes-parser@0.35.0: + dependencies: + hermes-estree: 0.35.0 + + hermes-parser@0.36.0: + dependencies: + hermes-estree: 0.36.0 + hls.js@1.6.16: {} hoist-non-react-statics@3.3.2: @@ -15472,21 +15791,21 @@ snapshots: jest-mock: 29.7.0 jest-util: 29.7.0 - jest-expo@54.0.17(@babel/core@7.29.0)(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + jest-expo@54.0.17(@babel/core@7.29.0)(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(jest@29.7.0(@types/node@24.12.4))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: '@expo/config': 12.0.13 '@expo/json-file': 10.0.14 '@jest/create-cache-key-function': 29.7.0 '@jest/globals': 29.7.0 babel-jest: 29.7.0(@babel/core@7.29.0) - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) jest-environment-jsdom: 29.7.0 jest-snapshot: 29.7.0 jest-watch-select-projects: 2.0.0 jest-watch-typeahead: 2.2.1(jest@29.7.0(@types/node@24.12.4)) json5: 2.2.3 lodash: 4.18.1 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-test-renderer: 19.1.0(react@19.1.0) server-only: 0.0.1 stacktrace-js: 2.0.2 @@ -15555,18 +15874,39 @@ snapshots: slash: 3.0.0 stack-utils: 2.0.6 + jest-message-util@30.4.1: + dependencies: + '@babel/code-frame': 7.29.0 + '@jest/types': 30.4.1 + '@types/stack-utils': 2.0.3 + chalk: 4.1.2 + graceful-fs: 4.2.11 + jest-util: 30.4.1 + picomatch: 4.0.4 + pretty-format: 30.4.1 + slash: 3.0.0 + stack-utils: 2.0.6 + jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 '@types/node': 24.12.4 jest-util: 29.7.0 + jest-mock@30.4.1: + dependencies: + '@jest/types': 30.4.1 + '@types/node': 24.12.4 + jest-util: 30.4.1 + jest-pnp-resolver@1.2.3(jest-resolve@29.7.0): optionalDependencies: jest-resolve: 29.7.0 jest-regex-util@29.6.3: {} + jest-regex-util@30.4.0: {} + jest-resolve-dependencies@29.7.0: dependencies: jest-regex-util: 29.6.3 @@ -15673,6 +16013,15 @@ snapshots: graceful-fs: 4.2.11 picomatch: 2.3.2 + jest-util@30.4.1: + dependencies: + '@jest/types': 30.4.1 + '@types/node': 24.12.4 + chalk: 4.1.2 + ci-info: 4.4.0 + graceful-fs: 4.2.11 + picomatch: 4.0.4 + jest-validate@29.7.0: dependencies: '@jest/types': 29.6.3 @@ -16065,10 +16414,24 @@ snapshots: transitivePeerDependencies: - supports-color + metro-babel-transformer@0.84.4: + dependencies: + '@babel/core': 7.29.0 + flow-enums-runtime: 0.0.6 + hermes-parser: 0.35.0 + metro-cache-key: 0.84.4 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + metro-cache-key@0.83.3: dependencies: flow-enums-runtime: 0.0.6 + metro-cache-key@0.84.4: + dependencies: + flow-enums-runtime: 0.0.6 + metro-cache@0.83.3: dependencies: exponential-backoff: 3.1.3 @@ -16078,6 +16441,15 @@ snapshots: transitivePeerDependencies: - supports-color + metro-cache@0.84.4: + dependencies: + exponential-backoff: 3.1.3 + flow-enums-runtime: 0.0.6 + https-proxy-agent: 7.0.6 + metro-core: 0.84.4 + transitivePeerDependencies: + - supports-color + metro-config@0.83.3: dependencies: connect: 3.7.0 @@ -16093,12 +16465,33 @@ snapshots: - supports-color - utf-8-validate + metro-config@0.84.4: + dependencies: + connect: 3.7.0 + flow-enums-runtime: 0.0.6 + jest-validate: 29.7.0 + metro: 0.84.4 + metro-cache: 0.84.4 + metro-core: 0.84.4 + metro-runtime: 0.84.4 + yaml: 2.9.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + metro-core@0.83.3: dependencies: flow-enums-runtime: 0.0.6 lodash.throttle: 4.1.1 metro-resolver: 0.83.3 + metro-core@0.84.4: + dependencies: + flow-enums-runtime: 0.0.6 + lodash.throttle: 4.1.1 + metro-resolver: 0.84.4 + metro-file-map@0.83.3: dependencies: debug: 4.4.3 @@ -16113,20 +16506,48 @@ snapshots: transitivePeerDependencies: - supports-color + metro-file-map@0.84.4: + dependencies: + debug: 4.4.3 + fb-watchman: 2.0.2 + flow-enums-runtime: 0.0.6 + graceful-fs: 4.2.11 + invariant: 2.2.4 + jest-worker: 29.7.0 + micromatch: 4.0.8 + nullthrows: 1.1.1 + walker: 1.0.8 + transitivePeerDependencies: + - supports-color + metro-minify-terser@0.83.3: dependencies: flow-enums-runtime: 0.0.6 terser: 5.47.1 + metro-minify-terser@0.84.4: + dependencies: + flow-enums-runtime: 0.0.6 + terser: 5.47.1 + metro-resolver@0.83.3: dependencies: flow-enums-runtime: 0.0.6 + metro-resolver@0.84.4: + dependencies: + flow-enums-runtime: 0.0.6 + metro-runtime@0.83.3: dependencies: '@babel/runtime': 7.29.2 flow-enums-runtime: 0.0.6 + metro-runtime@0.84.4: + dependencies: + '@babel/runtime': 7.29.2 + flow-enums-runtime: 0.0.6 + metro-source-map@0.83.3: dependencies: '@babel/traverse': 7.29.0 @@ -16142,6 +16563,20 @@ snapshots: transitivePeerDependencies: - supports-color + metro-source-map@0.84.4: + dependencies: + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 + flow-enums-runtime: 0.0.6 + invariant: 2.2.4 + metro-symbolicate: 0.84.4 + nullthrows: 1.1.1 + ob1: 0.84.4 + source-map: 0.5.7 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + metro-symbolicate@0.83.3: dependencies: flow-enums-runtime: 0.0.6 @@ -16153,6 +16588,17 @@ snapshots: transitivePeerDependencies: - supports-color + metro-symbolicate@0.84.4: + dependencies: + flow-enums-runtime: 0.0.6 + invariant: 2.2.4 + metro-source-map: 0.84.4 + nullthrows: 1.1.1 + source-map: 0.5.7 + vlq: 1.0.1 + transitivePeerDependencies: + - supports-color + metro-transform-plugins@0.83.3: dependencies: '@babel/core': 7.29.0 @@ -16164,6 +16610,17 @@ snapshots: transitivePeerDependencies: - supports-color + metro-transform-plugins@0.84.4: + dependencies: + '@babel/core': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 + flow-enums-runtime: 0.0.6 + nullthrows: 1.1.1 + transitivePeerDependencies: + - supports-color + metro-transform-worker@0.83.3: dependencies: '@babel/core': 7.29.0 @@ -16184,6 +16641,26 @@ snapshots: - supports-color - utf-8-validate + metro-transform-worker@0.84.4: + dependencies: + '@babel/core': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/parser': 7.29.3 + '@babel/types': 7.29.0 + flow-enums-runtime: 0.0.6 + metro: 0.84.4 + metro-babel-transformer: 0.84.4 + metro-cache: 0.84.4 + metro-cache-key: 0.84.4 + metro-minify-terser: 0.84.4 + metro-source-map: 0.84.4 + metro-transform-plugins: 0.84.4 + nullthrows: 1.1.1 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + metro@0.83.3: dependencies: '@babel/code-frame': 7.29.0 @@ -16231,6 +16708,52 @@ snapshots: - supports-color - utf-8-validate + metro@0.84.4: + dependencies: + '@babel/code-frame': 7.29.0 + '@babel/core': 7.29.0 + '@babel/generator': 7.29.1 + '@babel/parser': 7.29.3 + '@babel/template': 7.28.6 + '@babel/traverse': 7.29.0 + '@babel/types': 7.29.0 + accepts: 2.0.0 + ci-info: 2.0.0 + connect: 3.7.0 + debug: 4.4.3 + error-stack-parser: 2.1.4 + flow-enums-runtime: 0.0.6 + graceful-fs: 4.2.11 + hermes-parser: 0.35.0 + image-size: 1.2.1 + invariant: 2.2.4 + jest-worker: 29.7.0 + jsc-safe-url: 0.2.4 + lodash.throttle: 4.1.1 + metro-babel-transformer: 0.84.4 + metro-cache: 0.84.4 + metro-cache-key: 0.84.4 + metro-config: 0.84.4 + metro-core: 0.84.4 + metro-file-map: 0.84.4 + metro-resolver: 0.84.4 + metro-runtime: 0.84.4 + metro-source-map: 0.84.4 + metro-symbolicate: 0.84.4 + metro-transform-plugins: 0.84.4 + metro-transform-worker: 0.84.4 + mime-types: 3.0.2 + nullthrows: 1.1.1 + serialize-error: 2.1.0 + source-map: 0.5.7 + throat: 5.0.0 + ws: 7.5.10 + yargs: 17.7.2 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + micromatch@4.0.8: dependencies: braces: 3.0.3 @@ -16244,6 +16767,10 @@ snapshots: dependencies: mime-db: 1.52.0 + mime-types@3.0.2: + dependencies: + mime-db: 1.54.0 + mime@1.6.0: {} mimic-fn@1.2.0: {} @@ -16321,6 +16848,8 @@ snapshots: negotiator@0.6.4: {} + negotiator@1.0.0: {} + neo-async@2.6.2: {} nested-error-stacks@2.0.1: {} @@ -16376,6 +16905,10 @@ snapshots: dependencies: flow-enums-runtime: 0.0.6 + ob1@0.84.4: + dependencies: + flow-enums-runtime: 0.0.6 + object-assign@4.1.1: {} object-inspect@1.13.4: {} @@ -17152,136 +17685,119 @@ snapshots: react: 19.1.0 react-is: 19.2.6 - react-native-compressor@1.13.0(patch_hash=58379dfaace6ced8590cb341c77f2ca8099dfa8f7df6297032ec51de767a9925)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-compressor@1.13.0(patch_hash=58379dfaace6ced8590cb341c77f2ca8099dfa8f7df6297032ec51de767a9925)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-date-picker@5.0.13(patch_hash=f2a6697da7a7ca79b4f39efda142eee1b82db6de3aa5010ad4bd59df41fe2ce1)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-date-picker@5.0.13(patch_hash=92943fb79d17d7342a29bbb12b0d8ee3cf6f7bca12ed322dc8d124a3e9fb75bd)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-device-attest@0.1.6(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-device-attest@0.1.6(expo@54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: - expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + expo: 54.0.35(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-native-dotenv@3.4.11(@babel/runtime@7.29.2): dependencies: '@babel/runtime': 7.29.2 dotenv: 16.6.1 - react-native-drawer-layout@4.2.3(patch_hash=74f2c043cc22ab87054f219e7c7373a509b779b18bfa79d27e7d051d73355130)(react-native-gesture-handler@2.28.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native-reanimated@3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-drawer-layout@4.2.3(patch_hash=74f2c043cc22ab87054f219e7c7373a509b779b18bfa79d27e7d051d73355130)(3df4209064af748dbf5a440f3a0506e1): dependencies: color: 4.2.3 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-gesture-handler: 2.28.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-reanimated: 3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-gesture-handler: 2.30.1(patch_hash=39b9e51b3977fae8ff61764b8c32934fe3fbddaf21587b4661fd73b7c6dd325b)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-reanimated: 4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) use-latest-callback: 0.2.6(react@19.1.0) - react-native-edge-to-edge@1.8.1(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-edge-to-edge@1.8.1(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-gesture-handler@2.28.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-gesture-handler@2.30.1(patch_hash=39b9e51b3977fae8ff61764b8c32934fe3fbddaf21587b4661fd73b7c6dd325b)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: '@egjs/hammerjs': 2.0.17 hoist-non-react-statics: 3.3.2 invariant: 2.2.4 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-is-edge-to-edge@1.1.7(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-is-edge-to-edge@1.3.1(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-is-edge-to-edge@1.3.1(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-keyboard-controller@1.21.8(patch_hash=ac52bf7502ff3ad34a8594b5e1a916b96bf87a2523b6abc87c31f03607d52271)(react-native-reanimated@4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-is-edge-to-edge: 1.3.1(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-reanimated: 4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-keyboard-controller@1.21.8(patch_hash=ac52bf7502ff3ad34a8594b5e1a916b96bf87a2523b6abc87c31f03607d52271)(react-native-reanimated@3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-mmkv@3.3.3(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-is-edge-to-edge: 1.3.1(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-reanimated: 3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-pager-view@6.8.0(patch_hash=0979d6fe1e2fa43b2784cc0b5e0ff0117d53b53423e85ee5855eefdc41a00108)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-pager-view@6.8.0(patch_hash=c8316acd33c9aef6531e8c272c2bfab7bd02af1255969eeaab2bad5ab48531cc)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native-progress@https://codeload.github.com/bluesky-social/react-native-progress/tar.gz/5a372f4f2ce5feb26f4f47b6a4d187ab9b923ab4(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): + react-native-progress@5.0.1(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)): dependencies: prop-types: 15.8.1 - react-native-svg: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-svg: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-qrcode-styled@0.3.3(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-qrcode-styled@0.3.3(react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: qrcode: 1.5.4 react: 19.1.0 react-fast-compare: 3.2.2 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-svg: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-svg: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-reanimated@3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): - dependencies: - '@babel/core': 7.29.0 - '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.29.0) - '@babel/plugin-transform-class-properties': 7.28.6(@babel/core@7.29.0) - '@babel/plugin-transform-classes': 7.28.6(@babel/core@7.29.0) - '@babel/plugin-transform-nullish-coalescing-operator': 7.28.6(@babel/core@7.29.0) - '@babel/plugin-transform-optional-chaining': 7.28.6(@babel/core@7.29.0) - '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.29.0) - '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.29.0) - '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.0) - '@babel/preset-typescript': 7.28.5(@babel/core@7.29.0) - convert-source-map: 2.0.0 - invariant: 2.2.4 - react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-is-edge-to-edge: 1.1.7(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - transitivePeerDependencies: - - supports-color - - react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-reanimated@4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-is-edge-to-edge: 1.3.1(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-worklets: 0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + semver: 7.8.0 - react-native-screens@4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-safe-area-context@5.6.2(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + dependencies: + react: 19.1.0 + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + + react-native-screens@4.24.0(patch_hash=74a74b489f8074a1974c2792c9c97aec30d8e251669aa37fc5c99993bb4a19e6)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: react: 19.1.0 react-freeze: 1.0.4(react@19.1.0) - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) warn-once: 0.1.1 - react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-svg@15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: css-select: 5.2.2 css-tree: 1.1.3 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) warn-once: 0.1.1 - react-native-uitextview@1.4.0(patch_hash=62de26caadfc39d1bdff204cdc03a705c0cd343999825e06d8c0c120de06cc99)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): - dependencies: - react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-uuid@2.0.4: {} - react-native-view-shot@4.0.3(patch_hash=a2457dc30a82cc8c21f371a6f860d9396d450a2a1b4265b1a4ee13bdb24d3268)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-view-shot@4.0.3(patch_hash=a2457dc30a82cc8c21f371a6f860d9396d450a2a1b4265b1a4ee13bdb24d3268)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: html2canvas: 1.4.1 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) react-native-web-webview@1.0.2(file-loader@6.2.0(webpack@5.106.2(postcss@8.5.14)))(react-native-web@0.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)): dependencies: @@ -17304,23 +17820,43 @@ snapshots: transitivePeerDependencies: - encoding - react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + react-native-webview@13.15.0(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): dependencies: escape-string-regexp: 4.0.0 invariant: 2.2.4 react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) - react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0): + react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0): + dependencies: + '@babel/core': 7.29.0 + '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-class-properties': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-classes': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-nullish-coalescing-operator': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-optional-chaining': 7.28.6(@babel/core@7.29.0) + '@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.29.0) + '@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.29.0) + '@babel/preset-typescript': 7.28.5(@babel/core@7.29.0) + '@react-native/metro-config': 0.86.0(@babel/core@7.29.0) + convert-source-map: 2.0.0 + react: 19.1.0 + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + semver: 7.8.0 + transitivePeerDependencies: + - supports-color + + react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0): dependencies: '@jest/create-cache-key-function': 29.7.0 '@react-native/assets-registry': 0.81.5 '@react-native/codegen': 0.81.5(@babel/core@7.29.0) - '@react-native/community-cli-plugin': 0.81.5 + '@react-native/community-cli-plugin': 0.81.5(@react-native/metro-config@0.86.0(@babel/core@7.29.0)) '@react-native/gradle-plugin': 0.81.5 '@react-native/js-polyfills': 0.81.5 '@react-native/normalize-colors': 0.81.5 - '@react-native/virtualized-lists': 0.81.5(@types/react@19.1.17)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + '@react-native/virtualized-lists': 0.81.5(@types/react@19.1.17)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -17812,15 +18348,16 @@ snapshots: uuid: 8.3.2 websocket-driver: 0.7.4 - sonner-native@0.21.0(patch_hash=4bcd0da0fec32e943460e6e788a9e4adf601b507d2dfd0c8246a6c8c74d8f638)(0ed429160839218d22ac63d892397351): + sonner-native@0.26.4(48ff340dede165208988dce94163b1ce): dependencies: react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - react-native-gesture-handler: 2.28.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-reanimated: 3.19.1(patch_hash=97a1967f37a4213fbab59e1fd59a1bf859b5efc79af5e1b528a47fe488e6c5d6)(@babel/core@7.29.0)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-screens: 4.24.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - react-native-svg: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native: 0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0) + react-native-gesture-handler: 2.30.1(patch_hash=39b9e51b3977fae8ff61764b8c32934fe3fbddaf21587b4661fd73b7c6dd325b)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-reanimated: 4.3.2(patch_hash=ab1c095bc473ec5bfd9ead76e870c566660e355e11c5078cfdeb35922d7b2f05)(react-native-worklets@0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-screens: 4.24.0(patch_hash=74a74b489f8074a1974c2792c9c97aec30d8e251669aa37fc5c99993bb4a19e6)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-svg: 15.12.1(patch_hash=ae309e9542214f5ae54935e253dedd236765feedac7be343f81d532d7fe09310)(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) + react-native-worklets: 0.8.3(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(react-native@0.81.5(patch_hash=91fd85363059530dea649a5ca6012b933f79c8491737fbfdc685abc727e48403)(@babel/core@7.29.0)(@react-native/metro-config@0.86.0(@babel/core@7.29.0))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) sonner@2.0.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index a90336d4b1..516406cd36 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -9,7 +9,8 @@ overrides: '@expo/image-utils': '0.8.12' '@types/estree': '1.0.6' 'react-native-compressor': '1.13.0' - 'react-native-reanimated': '3.19.1' + 'react-native-reanimated': '4.3.2' + 'react-native-worklets': '0.8.3' 'psl': '1.9.0' '@types/psl': '1.1.1' 'react-native-screens': '4.24.0' @@ -20,8 +21,7 @@ allowBuilds: 'unrs-resolver': true patchedDependencies: '@sentry/expo-upload-sourcemaps@8.18.0': patches/@sentry__expo-upload-sourcemaps@8.18.0.patch - expo-age-range@0.2.18: patches/expo-age-range@0.2.18.patch - 'expo-glass-effect@55.0.8': patches/expo-glass-effect@55.0.8.patch + 'expo-age-range@0.2.18': patches/expo-age-range@0.2.18.patch 'expo-haptics@15.0.8': patches/expo-haptics@15.0.8.patch 'expo-image-picker@17.0.11': patches/expo-image-picker@17.0.11.patch 'expo-image@3.0.11': patches/expo-image@3.0.11.patch @@ -32,14 +32,14 @@ patchedDependencies: 'react-native-compressor@1.13.0': patches/react-native-compressor@1.13.0.patch 'react-native-date-picker@5.0.13': patches/react-native-date-picker@5.0.13.patch 'react-native-drawer-layout@4.2.3': patches/react-native-drawer-layout@4.2.3.patch + 'react-native-gesture-handler': patches/react-native-gesture-handler.patch 'react-native-keyboard-controller@1.21.8': patches/react-native-keyboard-controller@1.21.8.patch 'react-native-pager-view@6.8.0': patches/react-native-pager-view@6.8.0.patch - 'react-native-reanimated@3.19.1': patches/react-native-reanimated@3.19.1.patch + 'react-native-reanimated@4.3.2': patches/react-native-reanimated@4.3.2.patch + react-native-screens@4.24.0: patches/react-native-screens@4.24.0.patch 'react-native-svg@15.12.1': patches/react-native-svg@15.12.1.patch - 'react-native-uitextview@1.4.0': patches/react-native-uitextview@1.4.0.patch 'react-native-view-shot@4.0.3': patches/react-native-view-shot@4.0.3.patch 'react-native@0.81.5': patches/react-native@0.81.5.patch - 'sonner-native@0.21.0': patches/sonner-native@0.21.0.patch minimumReleaseAgeExclude: - '@atproto/*' - '@bsky.app/*' diff --git a/scripts/buildAndroidRelease.sh b/scripts/buildAndroidRelease.sh new file mode 100755 index 0000000000..0d5d0698a8 --- /dev/null +++ b/scripts/buildAndroidRelease.sh @@ -0,0 +1,67 @@ +#!/bin/bash +set -o errexit +set -o pipefail +set -o nounset +set -o xtrace + +# Resolve paths relative to the repo root, regardless of where this is run from. +SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" +REPO_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)" +ANDROID_DIR="$REPO_ROOT/android" +APK_OUTPUT_DIR="$ANDROID_DIR/app/build/outputs/apk/release" +SETTINGS_GRADLE="$ANDROID_DIR/settings.gradle" + +# Guard against building with the wrong app identity. The New Arch build must +# use a distinct rootProject.name so it installs alongside the store app rather +# than overwriting it. +EXPECTED_APP_NAME="rootProject.name = 'Bluesky (New Arch)'" +if ! grep -qF "$EXPECTED_APP_NAME" "$SETTINGS_GRADLE"; then + echo "Error: expected \"$EXPECTED_APP_NAME\" in $SETTINGS_GRADLE" >&2 + echo "(Set the app name in settings.gradle before building the New Arch release.)" >&2 + exit 1 +fi + +BRANCH_NAME="$(git -C "$REPO_ROOT" rev-parse --abbrev-ref HEAD)" +COMMIT_HASH="$(git -C "$REPO_ROOT" rev-parse --short=6 HEAD)" + +# Sanitize the branch name so it is safe to use in a filename (e.g. ob/new-arch -> ob-new-arch). +SAFE_BRANCH="$(echo "$BRANCH_NAME" | tr '/ ' '-')" + +echo "Building Android release APK..." +echo " branch: $BRANCH_NAME" +echo " commit: $COMMIT_HASH" + +# Marker used to detect which APK was produced by THIS build. Anything with an +# older mtime (e.g. a stale app-release.apk from a prior or interrupted run) is +# ignored, so we never mislabel it with the current commit. +BUILD_MARKER="$(mktemp)" +trap 'rm -f "$BUILD_MARKER"' EXIT + +# Make sure the bundled JS ships with up-to-date compiled translations. +pnpm intl:compile + +cd "$ANDROID_DIR" +# Build only arm64: Apple Silicon Macs run arm64 emulator images and all modern +# devices are arm64, so the other three ABIs just quadruple the NDK compile. +./gradlew assembleRelease --max-workers=2 --no-daemon -PreactNativeArchitectures=arm64-v8a + +# Grab the freshly built APK: not an already-renamed bsky-* file, and newer than +# the marker so it is guaranteed to be this run's output. There are no ABI splits +# or flavors, so expect a single file. +APK_PATH="$(find "$APK_OUTPUT_DIR" -maxdepth 1 -name '*.apk' -not -name 'bsky-*' -newer "$BUILD_MARKER" | head -n 1)" + +if [ -z "$APK_PATH" ]; then + echo "Error: no freshly built APK found in $APK_OUTPUT_DIR" >&2 + echo "(Gradle may have been up-to-date and produced no new APK - run a clean build.)" >&2 + exit 1 +fi + +PREV_NAME="$(basename "$APK_PATH" .apk)" +NEW_NAME="bsky-${PREV_NAME}-${SAFE_BRANCH}-${COMMIT_HASH}.apk" +NEW_PATH="$APK_OUTPUT_DIR/$NEW_NAME" + +mv "$APK_PATH" "$NEW_PATH" + +echo "Renamed APK:" +echo " $APK_PATH" +echo " -> $NEW_PATH" diff --git a/scripts/bundleUpdate.sh b/scripts/bundleUpdate.sh index 08b9f12d50..35bed14ed0 100644 --- a/scripts/bundleUpdate.sh +++ b/scripts/bundleUpdate.sh @@ -14,8 +14,26 @@ if [ -z "$RUNTIME_VERSION" ]; then fi cd bundleTempDir || exit -BUNDLE_VERSION=$(date +%s) -DEPLOYMENT_URL="https://updates.bsky.app/v1/upload?runtime-version=$RUNTIME_VERSION&bundle-version=$BUNDLE_VERSION&channel=$CHANNEL_NAME&ios-build-number=$BSKY_IOS_BUILD_NUMBER&android-build-number=$BSKY_ANDROID_VERSION_CODE" + +# Shared with denisPublish.sh when both run in one job -- see the note there. +# Both origins must receive the same bundle version for the same bytes, because +# the version is part of the asset URL path. +BUNDLE_VERSION="${BUNDLE_VERSION:-$(date +%s)}" + +# This MUST address ota1's own origin hostname, never updates.bsky.app. +# +# Since the 2026-07-26 cutover updates.bsky.app resolves to denis on EKS, which +# deliberately has no /v1/upload route -- publishing there is out-of-band via +# `denis publish` (see denisPublish.sh). Posting to the CDN hostname therefore +# returns 404, which is what broke this step the first time it ran after the +# flip. The dual-write was never independent of the cutover precisely because it +# addressed the hostname being cut over. +# +# This upload exists only to keep ota1 carrying current bundles so a rollback of +# the Bunny origin remains useful. It goes away with this whole script when ota1 +# is decommissioned (Phase 5). +OTA1_ORIGIN="${OTA1_ORIGIN:-https://ota1.us-east.updates.bsky.network}" +DEPLOYMENT_URL="$OTA1_ORIGIN/v1/upload?runtime-version=$RUNTIME_VERSION&bundle-version=$BUNDLE_VERSION&channel=$CHANNEL_NAME&ios-build-number=$BSKY_IOS_BUILD_NUMBER&android-build-number=$BSKY_ANDROID_VERSION_CODE" tar czvf bundle.tar.gz ./* diff --git a/scripts/denisPublish.sh b/scripts/denisPublish.sh new file mode 100755 index 0000000000..c6a30b77b9 --- /dev/null +++ b/scripts/denisPublish.sh @@ -0,0 +1,54 @@ +#!/bin/bash +set -o errexit +set -o pipefail +set -o nounset + +# Publishes the just-exported Expo bundle to the denis OTA service (S3) via the +# `denis publish` CLI. Mirrors bundleUpdate.sh's inputs (runtime version, bundle +# version, build numbers) but targets denis instead of the legacy ota1 upload. +# Expects: the `denis` binary on PATH (setup-denis action), ambient AWS creds +# (configure-aws-credentials OIDC), and BSKY_IOS_BUILD_NUMBER / +# BSKY_ANDROID_VERSION_CODE from the use-build-number wrapper. + +rm -rf bundleTempDir + +echo "Assembling bundle directory..." +node scripts/bundleUpdate.js + +if [ -z "$RUNTIME_VERSION" ]; then + RUNTIME_VERSION=$(cat package.json | jq '.version' -r) +fi + +# Accept a caller-supplied bundle version so that a dual-write publishes the SAME +# version to every origin. When this script and bundleUpdate.sh each called +# `date +%s` independently they produced versions seconds apart for identical +# bytes -- observed 1785102575 (denis) vs 1785102614 (ota1) for one commit. Since +# the version is part of the asset URL path, the two origins then served +# manifests pointing at paths only one of them had, so the manifest and its +# assets had to come from the same origin or the fetch 404s. Falling back to +# `date +%s` keeps standalone callers (PR previews, `pnpm make-deploy-bundle`) +# working unchanged. +BUNDLE_VERSION="${BUNDLE_VERSION:-$(date +%s)}" +DENIS_CDN_DOMAIN="${DENIS_CDN_DOMAIN:-updates.bsky.app}" +DENIS_S3_BUCKET="${DENIS_S3_BUCKET:-bsky-denis-ota-prod}" + +echo "Publishing to denis..." +echo " runtime-version: $RUNTIME_VERSION" +echo " bundle-version: $BUNDLE_VERSION" +echo " channel: $CHANNEL_NAME" +echo " ios-build-number: $BSKY_IOS_BUILD_NUMBER" +echo " android-build-number: $BSKY_ANDROID_VERSION_CODE" +echo " cdn-domain: $DENIS_CDN_DOMAIN" +echo " s3-bucket: $DENIS_S3_BUCKET" + +denis publish \ + --bundle-dir bundleTempDir \ + --runtime-version "$RUNTIME_VERSION" \ + --bundle-version "$BUNDLE_VERSION" \ + --channel "$CHANNEL_NAME" \ + --ios-build-number "$BSKY_IOS_BUILD_NUMBER" \ + --android-build-number "$BSKY_ANDROID_VERSION_CODE" \ + --cdn-domain "$DENIS_CDN_DOMAIN" \ + --s3-bucket "$DENIS_S3_BUCKET" + +rm -rf bundleTempDir diff --git a/scripts/useBuildNumberEnv.sh b/scripts/useBuildNumberEnv.sh index b2cbabcd55..ee8872cad9 100755 --- a/scripts/useBuildNumberEnv.sh +++ b/scripts/useBuildNumberEnv.sh @@ -3,9 +3,19 @@ set -o errexit set -o pipefail set -o nounset -outputIos=$(eas build:version:get -p ios) -outputAndroid=$(eas build:version:get -p android) -BSKY_IOS_BUILD_NUMBER=${outputIos#*buildNumber - } -BSKY_ANDROID_VERSION_CODE=${outputAndroid#*versionCode - } +# Build numbers already present in the environment take precedence over the +# global EAS counters. Production OTA deploys rely on this to target the +# specific native build they are for, since the counters advance with every +# testflight build. +if [ -z "${BSKY_IOS_BUILD_NUMBER:-}" ]; then + outputIos=$(eas build:version:get -p ios) + BSKY_IOS_BUILD_NUMBER=${outputIos#*buildNumber - } +fi -bash -c "BSKY_IOS_BUILD_NUMBER=$BSKY_IOS_BUILD_NUMBER BSKY_ANDROID_VERSION_CODE=$BSKY_ANDROID_VERSION_CODE $*" +if [ -z "${BSKY_ANDROID_VERSION_CODE:-}" ]; then + outputAndroid=$(eas build:version:get -p android) + BSKY_ANDROID_VERSION_CODE=${outputAndroid#*versionCode - } +fi + +export BSKY_IOS_BUILD_NUMBER BSKY_ANDROID_VERSION_CODE +exec "$@" diff --git a/src/Splash.tsx b/src/Splash.tsx index b453cb4292..b450a2ddcd 100644 --- a/src/Splash.tsx +++ b/src/Splash.tsx @@ -9,13 +9,13 @@ import { import Animated, { Easing, interpolate, - runOnJS, useAnimatedStyle, useSharedValue, withTiming, } from 'react-native-reanimated' import {useSafeAreaInsets} from 'react-native-safe-area-context' import Svg, {Path, type SvgProps} from 'react-native-svg' +import {scheduleOnRN} from 'react-native-worklets' import {Image} from 'expo-image' import * as SplashScreen from 'expo-splash-screen' @@ -72,21 +72,26 @@ export function Splash(props: React.PropsWithChildren) { const isDarkMode = colorScheme === 'dark' const logoAnimation = useAnimatedStyle(() => { + const introScale = interpolate(intro.get(), [0, 1], [0.8, 1], 'clamp') + const outroScale = + reduceMotion === true + ? 1 + : interpolate(outroLogo.get(), [0, 0.08, 1], [1, 0.8, 500], 'clamp') + + const introOpacity = interpolate(intro.get(), [0, 1], [0, 1], 'clamp') + const outroOpacity = interpolate( + outroAppOpacity.get(), + [0, 0.1, 0.2, 1], + [1, 1, 0, 0], + 'clamp', + ) + return { + opacity: introOpacity * outroOpacity, transform: [ - { - scale: interpolate(intro.get(), [0, 1], [0.8, 1], 'clamp'), - }, - { - scale: interpolate( - outroLogo.get(), - [0, 0.08, 1], - [1, 0.8, 500], - 'clamp', - ), - }, + {translateY: -(insets.top / 2)}, + {scale: 0.1 * outroScale * introScale}, ], - opacity: interpolate(intro.get(), [0, 1], [0, 1], 'clamp'), } }) const bottomLogoAnimation = useAnimatedStyle(() => { @@ -94,27 +99,6 @@ export function Splash(props: React.PropsWithChildren) { opacity: interpolate(intro.get(), [0, 1], [0, 1], 'clamp'), } }) - const reducedLogoAnimation = useAnimatedStyle(() => { - return { - transform: [ - { - scale: interpolate(intro.get(), [0, 1], [0.8, 1], 'clamp'), - }, - ], - opacity: interpolate(intro.get(), [0, 1], [0, 1], 'clamp'), - } - }) - - const logoWrapperAnimation = useAnimatedStyle(() => { - return { - opacity: interpolate( - outroAppOpacity.get(), - [0, 0.1, 0.2, 1], - [1, 1, 0, 0], - 'clamp', - ), - } - }) const appAnimation = useAnimatedStyle(() => { return { @@ -126,7 +110,7 @@ export function Splash(props: React.PropsWithChildren) { opacity: interpolate( outroAppOpacity.get(), [0, 0.1, 0.2, 1], - [0, 0, 1, 1], + [0.02, 0.02, 1, 1], // first two values cant be 0 for the iOS blur/glass effects to work, the values obtained by trial and error 'clamp', ), } @@ -152,7 +136,7 @@ export function Splash(props: React.PropsWithChildren) { 1, {duration: 1200, easing: Easing.in(Easing.cubic)}, () => { - runOnJS(onFinish)() + scheduleOnRN(onFinish) }, ), ) @@ -180,8 +164,6 @@ export function Splash(props: React.PropsWithChildren) { AccessibilityInfo.isReduceMotionEnabled().then(setReduceMotion) }, []) - const logoAnimations = - reduceMotion === true ? reducedLogoAnimation : logoAnimation // special off-spec color for dark mode const logoBg = isDarkMode ? '#0F1824' : '#fff' @@ -224,17 +206,14 @@ export function Splash(props: React.PropsWithChildren) { - - - + )} diff --git a/src/ageAssurance/const.ts b/src/ageAssurance/const.ts index f410d63489..326552681c 100644 --- a/src/ageAssurance/const.ts +++ b/src/ageAssurance/const.ts @@ -4,13 +4,30 @@ import { } from '@atproto/api' import {AgeAssuranceAccess} from '#/ageAssurance/types' -import {ANDROID_API_LEVEL, IOS_MAJOR_VERSION, IS_ANDROID, IS_IOS} from '#/env' +import { + ANDROID_API_LEVEL, + IOS_MAJOR_VERSION, + IS_ANDROID, + IS_IOS, + IS_WEB, +} from '#/env' /** * Minimum age required to access the app at all. */ export const MIN_ACCESS_AGE = 13 +/** + * The identifier for the current platform, matching the `knownValues` of the + * `platforms` property on `app.bsky.ageassurance.defs#configRegion`. Used to + * filter out region configs that don't apply to this platform. + */ +export const AGE_ASSURANCE_PLATFORM: 'web' | 'ios' | 'android' = IS_WEB + ? 'web' + : IS_IOS + ? 'ios' + : 'android' + /** * Whether the current device can provide the native on-device age signals we * use for age assurance (via `expo-age-range`). We gate on OS version because diff --git a/src/ageAssurance/debug.ts b/src/ageAssurance/debug.ts index 8a828a00e0..74121976ca 100644 --- a/src/ageAssurance/debug.ts +++ b/src/ageAssurance/debug.ts @@ -59,9 +59,10 @@ export const config: AppBskyAgeassuranceDefs.Config = { ], }, { - // On-device verification region. KWS is included as a fallback for - // platforms without the native age API (e.g. web) or when the device + // On-device verification region, native-only (web users in TX are not + // age assured). KWS is included as a fallback for when the device // result is insufficient. + platforms: ['ios', 'android'], countryCode: 'US', regionCode: 'TX', minAccessAge: 18, diff --git a/src/ageAssurance/util.test.ts b/src/ageAssurance/util.test.ts new file mode 100644 index 0000000000..1da131b920 --- /dev/null +++ b/src/ageAssurance/util.test.ts @@ -0,0 +1,31 @@ +import {getAgeAssuranceRegionConfig} from '@atproto/api' + +import {getAgeAssuranceRegionConfigForGeolocation} from '#/ageAssurance/util' + +jest.mock('#/ageAssurance/data') +jest.mock('@atproto/api', () => ({ + ...jest.requireActual('@atproto/api'), + getAgeAssuranceRegionConfig: jest.fn(), +})) + +/* + * Platform-based region filtering itself is implemented and tested in + * `@atproto/api` (see `getAgeAssuranceRegionConfig`). What we own - and test + * here - is that region resolution passes the current platform through. The + * jest preset is `jest-expo/ios`, so `AGE_ASSURANCE_PLATFORM` resolves to + * `ios` in these tests. + */ +describe('getAgeAssuranceRegionConfigForGeolocation', () => { + it('passes the current platform to the SDK region matcher', () => { + const config = {regions: []} + getAgeAssuranceRegionConfigForGeolocation(config, { + countryCode: 'US', + regionCode: 'TX', + }) + expect(getAgeAssuranceRegionConfig).toHaveBeenCalledWith(config, { + countryCode: 'US', + regionCode: 'TX', + platform: 'ios', + }) + }) +}) diff --git a/src/ageAssurance/util.ts b/src/ageAssurance/util.ts index ecd6468339..2bceab4d16 100644 --- a/src/ageAssurance/util.ts +++ b/src/ageAssurance/util.ts @@ -11,6 +11,7 @@ import {getAge} from '#/lib/strings/time' import {regionName} from '#/locale/helpers' import {DEFAULT_LOGGED_OUT_LABEL_PREFERENCES} from '#/state/queries/preferences/const' import { + AGE_ASSURANCE_PLATFORM, DEVICE_SIGNALS_SUPPORTED, FALLBACK_REGION_CONFIG, MIN_ACCESS_AGE, @@ -29,6 +30,10 @@ import {USRegionNameToRegionCode} from '#/geolocation/util' * Resolves a geolocation to its matched age assurance region config, or * undefined when the geolocation matches no AA region. * + * Regions scoped to other platforms via `platforms` are passed over entirely, + * as if they weren't in the config - a later region matching the same + * geolocation can still apply. + * * This is the single source of truth for geolocation -> region resolution. * Device signals are written and read back under a key derived from the * matched region (see `createRegionKey`), so every site that resolves a region @@ -42,6 +47,7 @@ export function getAgeAssuranceRegionConfigForGeolocation( return getAgeAssuranceRegionConfig(config, { countryCode: geolocation.countryCode ?? '', regionCode: geolocation.regionCode, + platform: AGE_ASSURANCE_PLATFORM, }) } diff --git a/src/alf/typography.tsx b/src/alf/typography.tsx index 9b750f1537..d1e9f96e99 100644 --- a/src/alf/typography.tsx +++ b/src/alf/typography.tsx @@ -4,7 +4,7 @@ import { type TextProps as RNTextProps, type TextStyle, } from 'react-native' -import {UITextView} from 'react-native-uitextview' +import {UITextView} from '@bsky.app/react-native-uitextview' import createEmojiRegex from 'emoji-regex' import {type Alf, applyFonts, atoms, flatten} from '#/alf' diff --git a/src/analytics/features/index.ts b/src/analytics/features/index.ts index 6afd2f91b4..b83ac9e33b 100644 --- a/src/analytics/features/index.ts +++ b/src/analytics/features/index.ts @@ -1,4 +1,4 @@ -import {MMKV} from '@bsky.app/react-native-mmkv' +import {MMKV} from 'react-native-mmkv' import {setPolyfills} from '@growthbook/growthbook' import {GrowthBook} from '@growthbook/growthbook-react' import {type I18n} from '@lingui/core' @@ -40,6 +40,7 @@ const TIMEOUT_PREFER_FRESH_GATES = 1500 export const features = new GrowthBook({ apiHost: env.GROWTHBOOK_API_HOST, clientKey: env.GROWTHBOOK_CLIENT_KEY, + enableDevMode: env.IS_INTERNAL, }) /** @@ -59,8 +60,7 @@ export const init = features.init({timeout: TIMEOUT_INIT}).then(res => { }) /** - * Refresh feature gates from GrowthBook. Updates attributes based on the - * provided account, if any. + * Refresh feature gates from GrowthBook. */ export async function refresh({strategy}: {strategy: FeatureFetchStrategy}) { await features.refreshFeatures({ diff --git a/src/analytics/features/types.ts b/src/analytics/features/types.ts index 4fee04450b..b7c70fa9a7 100644 --- a/src/analytics/features/types.ts +++ b/src/analytics/features/types.ts @@ -21,6 +21,11 @@ export enum Features { CustomLogoJapanEnable = 'custom_logo:japan:enable', VideoMultipartUploadEnable = 'video:multipart_upload:enable', SearchStarterPacksV2Enable = 'search_starter_packs_v2:enable', + FollowSortEnable = 'follow_sort:enable', + + // values + TrendingDiscoverValues = 'trending_discover:values', + TrendingExploreTopicsCountValue = 'trending_explore_topics_count:value', AATest = 'aa-test', } diff --git a/src/analytics/index.tsx b/src/analytics/index.tsx index 20f919f501..51438c2d7b 100644 --- a/src/analytics/index.tsx +++ b/src/analytics/index.tsx @@ -6,7 +6,7 @@ import { useSyncExternalStore, } from 'react' import {Platform} from 'react-native' -import {type Result} from '@growthbook/growthbook-react' +import {type Result, type WidenPrimitives} from '@growthbook/growthbook-react' import {Logger} from '#/logger' import { @@ -67,6 +67,7 @@ export type AnalyticsContextType = { ) => void features: typeof Features & { enabled(feature: Features): boolean + getValue(feature: Features, defaultValue: T): WidenPrimitives } } export type AnalyticsBaseContextType = Omit @@ -83,6 +84,7 @@ function createLogger( warn: logger.warn.bind(logger), error: logger.error.bind(logger), useChild: (context: Exclude) => { + // oxlint-disable-next-line react-hooks/exhaustive-deps return useMemo(() => createLogger(context, metadata), [context, metadata]) }, Context: Logger.Context, @@ -314,6 +316,7 @@ export function AnalyticsFeaturesContext({ ...parentContext, features: { enabled: feats.isOn.bind(feats), + getValue: feats.getFeatureValue.bind(feats), ...Features, }, } diff --git a/src/analytics/metrics/types.ts b/src/analytics/metrics/types.ts index 22b45c65f3..a9a933f49c 100644 --- a/src/analytics/metrics/types.ts +++ b/src/analytics/metrics/types.ts @@ -106,6 +106,10 @@ export type Events = { } 'signup:captchaSuccess': {} 'signup:captchaFailure': {} + 'signup:captchaBackPress': {} + 'signup:createAccountFailure': { + reason: string + } 'signup:fieldError': { field: string errorCount: number @@ -478,25 +482,30 @@ export type Events = { 'profile:followers:view': { contextProfileDid: string isOwnProfile: boolean + sort?: 'latest' | 'top' } 'profile:followers:paginate': { contextProfileDid: string itemCount: number page: number + sort?: 'latest' | 'top' } 'profile:following:view': { contextProfileDid: string isOwnProfile: boolean + sort?: 'latest' | 'top' } 'profile:following:paginate': { contextProfileDid: string itemCount: number page: number + sort?: 'latest' | 'top' } 'profileCard:seen': { contextProfileDid?: string profileDid: string position?: number + sort?: 'latest' | 'top' } 'profile:mute': {} 'profile:unmute': {} @@ -744,9 +753,17 @@ export type Events = { 'trendingTopics:hide': { context: 'settings' | 'sidebar' | 'interstitial' | 'explore:trending' } + 'trendingTopic:seen': { + context: 'sidebar' | 'interstitial' | 'explore' + recId?: string + rank: number + feedSliceIndex?: number + } 'trendingTopic:click': { context: 'sidebar' | 'interstitial' | 'explore' recId?: string + rank: number + feedSliceIndex?: number } 'trendingVideos:show': { context: 'settings' diff --git a/src/components/ContextMenu/index.tsx b/src/components/ContextMenu/index.tsx index b1eb873216..d09e0e60ec 100644 --- a/src/components/ContextMenu/index.tsx +++ b/src/components/ContextMenu/index.tsx @@ -30,7 +30,6 @@ import {KeyboardEvents} from 'react-native-keyboard-controller' import Animated, { clamp, interpolate, - runOnJS, type SharedValue, useAnimatedReaction, useAnimatedStyle, @@ -44,6 +43,7 @@ import { useSafeAreaInsets, } from 'react-native-safe-area-context' import {captureRef} from 'react-native-view-shot' +import {scheduleOnRN} from 'react-native-worklets' import {Image, type ImageErrorEventData} from 'expo-image' import {msg} from '@lingui/core/macro' import {useLingui} from '@lingui/react' @@ -89,14 +89,12 @@ const SPRING_IN: WithSpringConfig = { mass: 0.75, damping: 300, stiffness: 1200, - restDisplacementThreshold: 0.01, } const SPRING_OUT: WithSpringConfig = { mass: IS_IOS ? 1.25 : 0.75, damping: 150, stiffness: 1000, - restDisplacementThreshold: 0.01, } /** @@ -168,7 +166,7 @@ export function Root({children}: {children: React.ReactNode}) { // note: return location has to be reset on open, // rather than on close, otherwise there's a flicker // where the reanimated update is faster than the react render - runOnJS(onCompletedClose)() + scheduleOnRN(onCompletedClose) } }), ) @@ -333,7 +331,7 @@ export function Trigger({ () => hoveredItemSV.get(), (hovered, prev) => { if (hovered !== prev) { - runOnJS(setHoveredMenuItem)(hovered) + scheduleOnRN(setHoveredMenuItem, hovered) } }, ) @@ -345,7 +343,7 @@ export function Trigger({ .averageTouches(true) .onStart(() => { 'worklet' - runOnJS(open)('full') + scheduleOnRN(open, 'full') }) .onUpdate(evt => { 'worklet' @@ -359,7 +357,7 @@ export function Trigger({ // as the menu may have slid into place beneath their finger const item = hoveredItemSV.get() if (item) { - runOnJS(onTouchUpMenuItem)(item) + scheduleOnRN(onTouchUpMenuItem, item) } }) }, [open, hoverablesSV, onTouchUpMenuItem, hoveredItemSV, translationSV]) diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index c9f23175de..4f48dfce8d 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -21,11 +21,11 @@ import { } from 'react-native' import {useReanimatedKeyboardAnimation} from 'react-native-keyboard-controller' import Animated, { - runOnJS, type ScrollEvent, useAnimatedStyle, } from 'react-native-reanimated' import {useSafeAreaInsets} from 'react-native-safe-area-context' +import {scheduleOnRN} from 'react-native-worklets' import {msg} from '@lingui/core/macro' import {useLingui} from '@lingui/react' @@ -197,24 +197,8 @@ export function Outer({ /** * @deprecated use `Dialog.ScrollableInner` instead */ -export function Inner({children, style, header}: DialogInnerProps) { - const insets = useSafeAreaInsets() - return ( - <> - {header} - - {children} - - - ) +export function Inner(props: DialogInnerProps) { + return } export const ScrollableInner = forwardRef( @@ -315,9 +299,9 @@ export const InnerFlatList = forwardRef< } const {contentOffset} = e if (contentOffset.y > 0 && !disableDrag) { - runOnJS(setDisableDrag)(true) + scheduleOnRN(setDisableDrag, true) } else if (contentOffset.y <= 1 && disableDrag) { - runOnJS(setDisableDrag)(false) + scheduleOnRN(setDisableDrag, false) } } diff --git a/src/components/Dialog/index.web.tsx b/src/components/Dialog/index.web.tsx index 3bb9e478a7..5363fbf1bd 100644 --- a/src/components/Dialog/index.web.tsx +++ b/src/components/Dialog/index.web.tsx @@ -165,6 +165,9 @@ export function Outer({ ) } +/** + * @deprecated use `Dialog.ScrollableInner` instead + */ export function Inner({ children, style, diff --git a/src/components/DraggableList/index.tsx b/src/components/DraggableList/index.tsx index 08676bd172..ebdf621b95 100644 --- a/src/components/DraggableList/index.tsx +++ b/src/components/DraggableList/index.tsx @@ -3,7 +3,7 @@ import {Gesture, GestureDetector} from 'react-native-gesture-handler' import Animated, { type AnimatedRef, measure, - runOnJS, + Reanimated3DefaultSpringConfig, scrollTo, type SharedValue, useAnimatedRef, @@ -13,6 +13,7 @@ import Animated, { withSpring, withTiming, } from 'react-native-reanimated' +import {scheduleOnRN} from 'react-native-worklets' import {useHaptics} from '#/lib/haptics' import {atoms as a, useTheme, web} from '#/alf' @@ -25,7 +26,7 @@ import {IS_IOS} from '#/env' * * All positioning is driven by a `slots` map (key โ†’ index) and translateY * (no discrete `top` changes). On drag end the new slot assignment is - * computed on the UI thread first, then React state is updated via runOnJS. + * computed on the UI thread first, then React state is updated via scheduleOnRN. * * See SortableList.web.tsx for the web implementation using pointer events. */ @@ -41,7 +42,7 @@ interface SortableListProps { itemHeight: number /** Ref to the parent Animated.ScrollView for auto-scroll. */ scrollRef?: AnimatedRef - /** Scroll offset shared value from useScrollViewOffset. */ + /** Scroll offset shared value from useScrollOffset. */ scrollOffset?: SharedValue } @@ -237,8 +238,8 @@ function SortableItem({ itemKey: string itemCount: number itemHeight: number - state: Animated.SharedValue - dragY: Animated.SharedValue + state: SharedValue + dragY: SharedValue scrollCompensation: SharedValue isGestureActive: SharedValue measureDone: SharedValue @@ -264,9 +265,9 @@ function SortableItem({ measureDone.set(false) lastHapticSlot.set(mySlot) if (onDragStart) { - runOnJS(onDragStart)() + scheduleOnRN(onDragStart) } - runOnJS(playHaptic)() + scheduleOnRN(playHaptic) }) .onChange(e => { 'worklet' @@ -284,7 +285,7 @@ function SortableItem({ const clampedSlot = Math.max(0, Math.min(currentSlot, itemCount - 1)) if (IS_IOS && clampedSlot !== lastHapticSlot.get()) { lastHapticSlot.set(clampedSlot) - runOnJS(playHaptic)('Light') + scheduleOnRN(playHaptic, 'Light') } }) .onEnd(() => { @@ -325,13 +326,13 @@ function SortableItem({ dragStartSlot: -1, }) dragY.set(0) - runOnJS(onCommitReorder)(sorted) + scheduleOnRN(onCommitReorder, sorted) } else { const s = state.get() state.set({...s, activeKey: '', dragStartSlot: -1}) dragY.set(0) if (onDragEnd) { - runOnJS(onDragEnd)() + scheduleOnRN(onDragEnd) } } } @@ -346,7 +347,7 @@ function SortableItem({ const s = state.get() state.set({...s, activeKey: '', dragStartSlot: -1}) if (onDragEnd) { - runOnJS(onDragEnd)() + scheduleOnRN(onDragEnd) } } }) @@ -370,18 +371,18 @@ function SortableItem({ return { transform: [ {translateY: s.dragStartSlot * itemHeight + dragY.get()}, - {scale: withSpring(1.03)}, + {scale: withSpring(1.03, Reanimated3DefaultSpringConfig)}, ], zIndex: 999, ...(IS_IOS ? { shadowColor: '#000', shadowOffset: {width: 0, height: 1}, - shadowOpacity: withSpring(0.08), - shadowRadius: withSpring(4), + shadowOpacity: withSpring(0.08, Reanimated3DefaultSpringConfig), + shadowRadius: withSpring(4, Reanimated3DefaultSpringConfig), } : { - elevation: withSpring(3), + elevation: withSpring(3, Reanimated3DefaultSpringConfig), }), } } @@ -391,11 +392,11 @@ function SortableItem({ const inactive = { ...(IS_IOS ? { - shadowOpacity: withSpring(0), - shadowRadius: withSpring(0), + shadowOpacity: withSpring(0, Reanimated3DefaultSpringConfig), + shadowRadius: withSpring(0, Reanimated3DefaultSpringConfig), } : { - elevation: withSpring(0), + elevation: withSpring(0, Reanimated3DefaultSpringConfig), }), } @@ -425,7 +426,7 @@ function SortableItem({ return { transform: [ {translateY: withTiming(baseY + offset, {duration: 200})}, - {scale: withSpring(1)}, + {scale: withSpring(1, Reanimated3DefaultSpringConfig)}, ], zIndex: 0, ...inactive, diff --git a/src/components/DraggableList/index.web.tsx b/src/components/DraggableList/index.web.tsx index 7dd02cb76c..e5a158b57a 100644 --- a/src/components/DraggableList/index.web.tsx +++ b/src/components/DraggableList/index.web.tsx @@ -22,7 +22,7 @@ interface SortableListProps { itemHeight: number /** Ref to the parent Animated.ScrollView for auto-scroll. Ignored on web. */ scrollRef?: AnimatedRef - /** Scroll offset shared value from useScrollViewOffset. Ignored on web. */ + /** Scroll offset shared value from useScrollOffset. Ignored on web. */ scrollOffset?: SharedValue } diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 7f8820f36f..fec0447b61 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -23,6 +23,7 @@ import { atoms as a, native, useBreakpoints, + useGutters, useTheme, type ViewStyleProp, web, @@ -60,10 +61,10 @@ function CardOuter({ a.flex_1, a.w_full, a.p_md, - a.rounded_lg, + a.rounded_xl, a.border, t.atoms.bg, - t.atoms.shadow_sm, + t.atoms.shadow_md, t.atoms.border_contrast_low, !gtMobile && { width: MOBILE_CARD_WIDTH, @@ -204,6 +205,7 @@ export function ProfileGrid({ const {t: l} = useLingui() const moderationOpts = useModerationOpts() const {gtMobile} = useBreakpoints() + const gutters = useGutters([0, 'base']) const followDialogControl = useDialogControl() const isLoading = isSuggestionsLoading || !moderationOpts @@ -414,7 +416,7 @@ export function ProfileGrid({ moderationOpts={moderationOpts} logContext="FeedInterstitial" withIcon={false} - style={[a.rounded_sm]} + style={[a.rounded_full]} onFollow={() => { ax.metric('suggestedUser:follow', { logContext, @@ -458,40 +460,43 @@ export function ProfileGrid({ pointerEvents={IS_IOS ? 'auto' : 'box-none'}> - - Suggested for you - - + + + Suggested for you + + + @@ -540,7 +545,7 @@ function SeeMoreSuggestedProfilesCard({onPress}: {onPress: () => void}) { a.justify_center, a.gap_sm, a.p_md, - a.rounded_lg, + a.rounded_xl, {width: FINAL_CARD_WIDTH}, ]}> diff --git a/src/components/GlassView.tsx b/src/components/GlassView.tsx index a695a0678a..cac5bd268d 100644 --- a/src/components/GlassView.tsx +++ b/src/components/GlassView.tsx @@ -15,6 +15,8 @@ export const IS_GLASS_AVAILABLE = * Liquid Glass View that uses `expo-glass-effect` * * If unavailable, falls back to a regular `View`. Use `fallbackStyle` to customize the fallback appearance. + * Note: Setting opacity to 0 on Expo GlassView or any of its parent views causes the glass effect to not render at all. https://docs.expo.dev/versions/v56.0.0/sdk/glass-effect/#known-issues + * If animating the opacity of a parent view, start from a non-zero opacity to avoid this issue. */ export const GlassView = IS_GLASS_AVAILABLE ? InnerGlassView : FallbackView diff --git a/src/components/InterestTabs.tsx b/src/components/InterestTabs.tsx index 41638184f9..5df1fb62e3 100644 --- a/src/components/InterestTabs.tsx +++ b/src/components/InterestTabs.tsx @@ -10,6 +10,7 @@ import {useLingui} from '@lingui/react' import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' import {DraggableScrollView} from '#/view/com/pager/DraggableScrollView' +import {BlockDrawerGesture} from '#/view/shell/BlockDrawerGesture' import {atoms as a, tokens, useTheme, web} from '#/alf' import {transparentifyColor} from '#/alf/util/colorGeneration' import {Button, ButtonIcon} from '#/components/Button' @@ -200,42 +201,44 @@ export function InterestTabs({ return ( - !!o).length === interests.length - ? tabOffsets.map(o => o.x - tokens.space.xl) - : undefined - } - onLayout={evt => setTotalWidth(evt.nativeEvent.layout.width)} - onContentSizeChange={width => setContentWidth(width)} - onScroll={evt => { - const newScrollX = evt.nativeEvent.contentOffset.x - setScrollX(newScrollX) - }} - scrollEventThrottle={16}> - {interests.map((interest, i) => { - const active = interest === selectedInterest && !disabled - return ( - - ) - })} - + + !!o).length === interests.length + ? tabOffsets.map(o => o.x - tokens.space.xl) + : undefined + } + onLayout={evt => setTotalWidth(evt.nativeEvent.layout.width)} + onContentSizeChange={width => setContentWidth(width)} + onScroll={evt => { + const newScrollX = evt.nativeEvent.contentOffset.x + setScrollX(newScrollX) + }} + scrollEventThrottle={16}> + {interests.map((interest, i) => { + const active = interest === selectedInterest && !disabled + return ( + + ) + })} + + {IS_WEB && canScrollLeft && ( contentContainerStyle?: StyleProp ignoreTabletLayoutOffset?: boolean + ref?: AnimatedRef } /** * Default scroll view for simple pages */ -export const Content = memo( - forwardRef(function Content( - { - children, - style, - contentContainerStyle, - ignoreTabletLayoutOffset, - ...props - }, - ref, - ) { - const t = useTheme() - const {footerHeight} = useShellLayout() - const {isWithinSplitView} = useIsWithinSplitView() +export const Content = memo(function Content({ + children, + style, + contentContainerStyle, + ignoreTabletLayoutOffset, + ref, + ...props +}: ContentProps) { + const t = useTheme() + const {footerHeight} = useShellLayout() + const {isWithinSplitView} = useIsWithinSplitView() - // note - if we ever make the footer transparent in any way, - // we'll need to change this to use contentInsets/scrollIndicatorInsets - // on iOS and contentContainerStyle padding on Android -sfn - const animatedStyle = useAnimatedStyle(() => { - return { - marginBottom: footerHeight.get(), - } - }) + // note - if we ever make the footer transparent in any way, + // we'll need to change this to use contentInsets/scrollIndicatorInsets + // on iOS and contentContainerStyle padding on Android -sfn + const animatedStyle = useAnimatedStyle(() => { + return { + marginBottom: footerHeight.get(), + } + }) - return ( - - {IS_WEB ? ( -
- {/* @ts-expect-error web only -esb */} - {children} -
- ) : ( - children - )} -
- ) - }), -) + return ( + + {IS_WEB ? ( +
+ {/* @ts-expect-error web only -esb */} + {children} +
+ ) : ( + children + )} +
+ ) +}) /** * Utility component to center content within the screen diff --git a/src/components/Lightbox/chrome/ImageMenu.tsx b/src/components/Lightbox/chrome/ImageMenu.tsx index 632f5eb362..9088b9ded9 100644 --- a/src/components/Lightbox/chrome/ImageMenu.tsx +++ b/src/components/Lightbox/chrome/ImageMenu.tsx @@ -2,12 +2,12 @@ import {useRef, useState} from 'react' import {Modal, Pressable, StyleSheet, View} from 'react-native' import Animated, { interpolate, - runOnJS, useAnimatedStyle, useSharedValue, withSpring, withTiming, } from 'react-native-reanimated' +import {scheduleOnRN} from 'react-native-worklets' import {useLingui} from '@lingui/react/macro' import {atoms as a} from '#/alf' @@ -52,7 +52,7 @@ export function ImageMenu({onPressShare, onPressSave}: Props) { progress.set( withTiming(0, TIMING_OUT, finished => { if (finished) { - runOnJS(setIsMounted)(false) + scheduleOnRN(setIsMounted, false) } }), ) diff --git a/src/components/Lightbox/pager/ImageItem/ImageItem.android.tsx b/src/components/Lightbox/pager/ImageItem/ImageItem.android.tsx index 62e28523a7..72d39875ab 100644 --- a/src/components/Lightbox/pager/ImageItem/ImageItem.android.tsx +++ b/src/components/Lightbox/pager/ImageItem/ImageItem.android.tsx @@ -7,7 +7,7 @@ import { } from 'react-native-gesture-handler' import Animated, { type AnimatableValue, - runOnJS, + Reanimated3DefaultSpringConfig, type SharedValue, useAnimatedReaction, useAnimatedRef, @@ -15,6 +15,7 @@ import Animated, { useSharedValue, withSpring, } from 'react-native-reanimated' +import {scheduleOnRN} from 'react-native-worklets' import {Image} from 'expo-image' import { @@ -94,7 +95,7 @@ const ImageItem = ({ }, (nextIsScaled, prevIsScaled) => { if (nextIsScaled !== prevIsScaled) { - runOnJS(handleZoom)(nextIsScaled) + scheduleOnRN(handleZoom, nextIsScaled) } }, ) @@ -244,7 +245,7 @@ const ImageItem = ({ const singleTap = Gesture.Tap().onEnd(() => { 'worklet' - runOnJS(onTap)() + scheduleOnRN(onTap) }) const doubleTap = Gesture.Tap() @@ -358,9 +359,9 @@ const ImageItem = ({ }, (show, prevShow) => { if (!prevShow && show) { - runOnJS(setShowLoader)(true) + scheduleOnRN(setShowLoader, true) } else if (prevShow && !show) { - runOnJS(setShowLoader)(false) + scheduleOnRN(setShowLoader, false) } }, ) @@ -463,7 +464,10 @@ function clampTranslation( function withClampedSpring(value: T): T { 'worklet' - return withSpring(value, {overshootClamping: true}) + return withSpring(value, { + ...Reanimated3DefaultSpringConfig, + overshootClamping: true, + }) } export default memo(ImageItem) diff --git a/src/components/Lightbox/pager/ImageItem/ImageItem.ios.tsx b/src/components/Lightbox/pager/ImageItem/ImageItem.ios.tsx index 19373cbe1a..9cf088f864 100644 --- a/src/components/Lightbox/pager/ImageItem/ImageItem.ios.tsx +++ b/src/components/Lightbox/pager/ImageItem/ImageItem.ios.tsx @@ -14,7 +14,6 @@ import { type PanGesture, } from 'react-native-gesture-handler' import Animated, { - runOnJS, type SharedValue, useAnimatedProps, useAnimatedReaction, @@ -24,6 +23,7 @@ import Animated, { useSharedValue, } from 'react-native-reanimated' import {useSafeAreaFrame} from 'react-native-safe-area-context' +import {scheduleOnRN} from 'react-native-worklets' import {Image} from 'expo-image' import { @@ -84,7 +84,7 @@ const ImageItem = ({ 'worklet' const nextIsScaled = e.zoomScale > 1 if (scaled !== nextIsScaled) { - runOnJS(handleZoom)(nextIsScaled) + scheduleOnRN(handleZoom, nextIsScaled) } }, onBeginDrag() { @@ -118,7 +118,7 @@ const ImageItem = ({ const singleTap = Gesture.Tap().onEnd(() => { 'worklet' - runOnJS(onTap)() + scheduleOnRN(onTap) }) const doubleTap = Gesture.Tap() @@ -142,7 +142,7 @@ const ImageItem = ({ screenSize, ) } - runOnJS(zoomTo)(nextZoomRect) + scheduleOnRN(zoomTo, nextZoomRect) }) const composedGesture = Gesture.Exclusive( @@ -170,8 +170,6 @@ const ImageItem = ({ width: screenSize.width, maxHeight: screenSize.height, alignSelf: 'center', - aspectRatio: imageAspect ?? 1 /* force onLoad */, - opacity: imageAspect === undefined ? 0 : 1, } }) @@ -180,11 +178,19 @@ const ImageItem = ({ return { transform: cropContentTransform, width: '100%', - aspectRatio: imageAspect ?? 1 /* force onLoad */, - opacity: imageAspect === undefined ? 0 : 1, } }) + /* + * When the aspect ratio is unknown until onLoad fires, these layout props + * change after mount. They must be applied via a React render rather than + * useAnimatedStyle + */ + const imageLayoutStyle = { + aspectRatio: imageAspect ?? 1 /* force onLoad */, + opacity: imageAspect === undefined ? 0 : 1, + } + const [showLoader, setShowLoader] = useState(false) const [hasLoaded, setHasLoaded] = useState(false) useAnimatedReaction( @@ -193,9 +199,9 @@ const ImageItem = ({ }, (show, prevShow) => { if (!prevShow && show) { - runOnJS(setShowLoader)(true) + scheduleOnRN(setShowLoader, true) } else if (prevShow && !show) { - runOnJS(setShowLoader)(false) + scheduleOnRN(setShowLoader, false) } }, ) @@ -225,8 +231,8 @@ const ImageItem = ({ {showLoader && ( )} - - + + { setActiveLightbox(null) - runOnUI(() => { + scheduleOnUI(() => { 'worklet' thumbRects.set({}) - })() + }) requestIdleCallback(() => { void Image.clearMemoryCache() }) @@ -151,7 +148,7 @@ export default function ImageViewRoot({ () => openProgress.get() === 0, (isGone, wasGone) => { if (isGone && !wasGone) { - runOnJS(onFullyClosed)() + scheduleOnRN(onFullyClosed) } }, ) @@ -162,10 +159,10 @@ export default function ImageViewRoot({ () => openProgress.get() === 1, (isOpen, wasOpen) => { if (isOpen && !wasOpen) { - runOnJS(ScreenOrientation.unlockAsync)() + scheduleOnRN(ScreenOrientation.unlockAsync) } else if (!isOpen && wasOpen) { // default is PORTRAIT_UP - set via config plugin in app.config.js -sfn - runOnJS(ScreenOrientation.lockAsync)(PORTRAIT_UP) + scheduleOnRN(ScreenOrientation.lockAsync, PORTRAIT_UP) } }, ) @@ -173,7 +170,7 @@ export default function ImageViewRoot({ const onFlyAway = useCallback(() => { 'worklet' openProgress.set(0) - runOnJS(onRequestClose)() + scheduleOnRN(onRequestClose) }, [onRequestClose, openProgress]) return ( @@ -322,7 +319,7 @@ function ImageView({ const handleRequestClose = useCallback(() => { const activeRef = images[imageIndex]?.thumbRef if (isAnimated && activeRef) { - runOnUI(() => { + scheduleOnUI(() => { 'worklet' const rect = measure(activeRef) thumbRects.modify(rects => { @@ -330,8 +327,8 @@ function ImageView({ rects[imageIndex] = rect return rects }) - runOnJS(onRequestClose)() - })() + scheduleOnRN(onRequestClose) + }) } else { onRequestClose() } @@ -532,7 +529,7 @@ function LightboxImage({ const dismissTranslateY = isActive && openProgressValue === 1 ? dismissSwipeTranslateY.get() : 0 - if (openProgressValue === 0 && isFlyingAway.get()) { + if (openProgressValue === 0) { return { isHidden: true, isResting: false, @@ -609,6 +606,7 @@ function LightboxImage({ return withSpring(0, { stiffness: 700, damping: 50, + mass: 1, reduceMotion: ReduceMotion.Never, }) }) diff --git a/src/components/Lightbox/state.tsx b/src/components/Lightbox/state.tsx index 6a8fdbe0b7..b5284a6d7c 100644 --- a/src/components/Lightbox/state.tsx +++ b/src/components/Lightbox/state.tsx @@ -1,10 +1,6 @@ import {createContext, useContext, useEffect, useMemo, useState} from 'react' -import { - measure, - type MeasuredDimensions, - runOnJS, - runOnUI, -} from 'react-native-reanimated' +import {measure, type MeasuredDimensions} from 'react-native-reanimated' +import {scheduleOnRN, scheduleOnUI} from 'react-native-worklets' import {nanoid} from 'nanoid/non-secure' import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' @@ -73,7 +69,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { if (thumbRef) { // Measure the tapped image on the UI thread, then open with // the rect baked in so it's available from the first render. - // Only the rect (plain data) goes through runOnJS โ€” AnimatedRef + // Only the rect (plain data) goes through scheduleOnRN โ€” AnimatedRef // objects can't survive serialization across threads. const openWithRect = (rect: MeasuredDimensions | null) => { doOpen({ @@ -83,11 +79,11 @@ export function Provider({children}: React.PropsWithChildren<{}>) { ), }) } - runOnUI(() => { + scheduleOnUI(() => { 'worklet' const rect = measure(thumbRef) - runOnJS(openWithRect)(rect) - })() + scheduleOnRN(openWithRect, rect) + }) } else { doOpen(lightbox) } diff --git a/src/components/Lightbox/types.ts b/src/components/Lightbox/types.ts index 19789fdc62..db68917452 100644 --- a/src/components/Lightbox/types.ts +++ b/src/components/Lightbox/types.ts @@ -6,7 +6,6 @@ * */ -import {type Component} from 'react' import {type TransformsStyle} from 'react-native' import { type AnimatedRef, @@ -29,7 +28,7 @@ export type ImageSource = { thumbUri: string thumbDimensions: Dimensions | null thumbRect: MeasuredDimensions | null - thumbRef?: AnimatedRef | null + thumbRef?: AnimatedRef | null thumbBorderRadius?: number alt?: string type: 'image' | 'circle-avi' | 'rect-avi' diff --git a/src/components/OTAChannelNotice.tsx b/src/components/OTAChannelNotice.tsx new file mode 100644 index 0000000000..b00f75f56c --- /dev/null +++ b/src/components/OTAChannelNotice.tsx @@ -0,0 +1,65 @@ +import {type StyleProp, View, type ViewStyle} from 'react-native' +import {Trans, useLingui} from '@lingui/react/macro' + +import {useApplyPullRequestOTAUpdate} from '#/lib/hooks/useOTAUpdates' +import {atoms as a, useTheme} from '#/alf' +import * as Admonition from '#/components/Admonition' +import {ButtonIcon, ButtonText} from '#/components/Button' +import {Loader} from '#/components/Loader' +import {Text} from '#/components/Typography' + +/** + * Warns that the running bundle came from a channel this build doesn't normally + * receive updates from, e.g. a pull request deployment applied from the dev + * settings. Renders nothing on a standard channel, and never on web. + */ +export function OTAChannelNotice({style}: {style?: StyleProp}) { + const t = useTheme() + const {t: l} = useLingui() + const { + currentChannel, + defaultChannel, + isCurrentlyRunningNonStandardChannel, + restoreDefaultChannel, + pending, + } = useApplyPullRequestOTAUpdate() + + if (!isCurrentlyRunningNonStandardChannel) return null + + return ( + + + + + + Non-standard OTA channel + + + + This app is running a deployment of{' '} + + {currentChannel} + + . Restore the {defaultChannel} deployment to get back to a + standard build. + + + + + + void restoreDefaultChannel()}> + + Restore default + + {pending && } + + + + ) +} diff --git a/src/components/Pills.tsx b/src/components/Pills.tsx index d2b5eb51c6..c24e51047c 100644 --- a/src/components/Pills.tsx +++ b/src/components/Pills.tsx @@ -177,6 +177,7 @@ export function LabelBase({ text, a.font_semi_bold, a.leading_tight, + a.flex_shrink, t.atoms.text_contrast_medium, {paddingRight: 3}, ]}> diff --git a/src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx b/src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx index 56e84cfd4f..9decdea95b 100644 --- a/src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx +++ b/src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx @@ -8,12 +8,12 @@ import { } from 'react-native' import Animated, { measure, - runOnJS, useAnimatedRef, useFrameCallback, } from 'react-native-reanimated' import {useSafeAreaInsets} from 'react-native-safe-area-context' import {WebView} from 'react-native-webview' +import {scheduleOnRN} from 'react-native-worklets' import {Image} from 'expo-image' import {type AppBskyEmbedExternal} from '@atproto/api' import {msg} from '@lingui/core/macro' @@ -164,7 +164,7 @@ export function ExternalPlayer({ const isVisible = top <= realWinHeight - insets.bottom && bot >= insets.top if (!isVisible) { - runOnJS(setIsPlayerActive)(false) + scheduleOnRN(setIsPlayerActive, false) } }, false) // False here disables autostarting the callback diff --git a/src/components/Post/Embed/ImageEmbed.tsx b/src/components/Post/Embed/ImageEmbed.tsx index 235a82ebaf..073c47fbb1 100644 --- a/src/components/Post/Embed/ImageEmbed.tsx +++ b/src/components/Post/Embed/ImageEmbed.tsx @@ -59,7 +59,7 @@ export function ImageEmbed({ // Captured from AutoSizedImage so the peek-commit handler can reuse the same // ref + dims that a tap would โ€” keeps the lightbox's return animation intact. - const singleContainerRef = useRef | null>(null) + const singleContainerRef = useRef(null) const singleDimsRef = useRef(null) if (images.length > 0) { @@ -71,7 +71,7 @@ export function ImageEmbed({ })) const onPress = ( index: number, - refs: AnimatedRef[], + refs: AnimatedRef[], fetchedDims: (Dimensions | null)[], ) => { if (postContext) { diff --git a/src/components/ProfileCard.tsx b/src/components/ProfileCard.tsx index a177a33620..7b4d75164d 100644 --- a/src/components/ProfileCard.tsx +++ b/src/components/ProfileCard.tsx @@ -601,7 +601,7 @@ export function FollowButtonPlaceholder({style}: ViewStyleProp) { return ( }) { const t = useTheme() - const {_} = useLingui() + const {t: l} = useLingui() const {gtPhone} = useBreakpoints() const {rightNavVisible} = useLayoutBreakpoints() const {currentAccount} = useSession() @@ -79,7 +77,7 @@ export function ProgressGuideList({style}: {style?: StyleProp}) { size="tiny" color="secondary" shape="round" - label={_(msg`Dismiss getting started guide`)} + label={l`Dismiss getting started guide`} onPress={endProgressGuide} style={[a.bg_transparent, {marginTop: -6, marginRight: -6}]}> @@ -107,14 +105,14 @@ export function ProgressGuideList({style}: {style?: StyleProp}) { )} diff --git a/src/components/ProgressGuide/Task.tsx b/src/components/ProgressGuide/Task.tsx index 997c777af6..5cb979e5fc 100644 --- a/src/components/ProgressGuide/Task.tsx +++ b/src/components/ProgressGuide/Task.tsx @@ -1,5 +1,5 @@ import {View} from 'react-native' -import * as Progress from 'react-native-progress' +import {Circle as ProgressCircle} from 'react-native-progress' import {atoms as a, useTheme} from '#/alf' import {AnimatedCheck} from '../anim/AnimatedCheck' @@ -25,7 +25,7 @@ export function ProgressGuideTask({ {current === total ? ( ) : ( - runOnJS(setIsntOpen)(), + () => scheduleOnRN(setIsntOpen), ), ) }, [setIsOpen, opacity]) @@ -88,7 +88,7 @@ export const ProgressGuideToast = forwardRef< duration: 100, easing: Easing.out(Easing.cubic), }, - () => runOnJS(playCheckmark)(), + () => scheduleOnRN(playCheckmark), ), ) translateY.set(0) @@ -119,7 +119,8 @@ export const ProgressGuideToast = forwardRef< left = right = (winDim.width - 380) / 2 } return { - position: IS_WEB ? 'fixed' : 'absolute', + // position: fixed is web only + position: (IS_WEB ? 'fixed' : 'absolute') as 'absolute', top: 0, left, right, @@ -134,12 +135,7 @@ export const ProgressGuideToast = forwardRef< return ( isOpen && ( - + { - setBubbleMeasurements({ - width: e.nativeEvent.layout.width, - height: e.nativeEvent.layout.height, + const {width, height} = e.nativeEvent.layout + setBubbleMeasurements(prev => { + if (prev?.width === width && prev.height === height) return prev + return {width, height} }) }}> {children} diff --git a/src/components/TrendingTopics.tsx b/src/components/TrendingTopics.tsx index 4b045c6e3e..56fe08ccc9 100644 --- a/src/components/TrendingTopics.tsx +++ b/src/components/TrendingTopics.tsx @@ -1,22 +1,30 @@ -import {useMemo} from 'react' +import {useEffect, useMemo} from 'react' import {type AppBskyUnspeccedDefs, type AtUri} from '@atproto/api' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' +import {useLingui} from '@lingui/react/macro' import {PressableScale} from '#/lib/custom-animations/PressableScale' +import {useCallOnce} from '#/lib/once' // import {makeProfileLink} from '#/lib/routes/links' // import {feedUriToHref} from '#/lib/strings/url-helpers' import {native} from '#/alf' import {Link as InternalLink, type LinkProps} from '#/components/Link' +import {type Metrics, useAnalytics} from '#/analytics' export function TrendingTopicLink({ topic: raw, + metricContext, + rank, + recId, children, ...rest }: { topic: AppBskyUnspeccedDefs.TrendView + metricContext: Metrics['trendingTopic:seen']['context'] + rank: number + recId?: string } & Omit) { const topic = useTopic(raw) + useTrendingTopicSeen(metricContext, rank, recId) return ( { + ax.metric('trendingTopic:seen', { + context, + rank, + feedSliceIndex, + recId, + }) + }) + + useEffect(() => { + trackSeen() + }, [trackSeen]) +} + type ParsedTrendingTopic = | { type: 'topic' | 'tag' | 'starter-pack' | 'unknown' @@ -48,14 +77,14 @@ type ParsedTrendingTopic = export function useTopic( raw: AppBskyUnspeccedDefs.TrendView, ): ParsedTrendingTopic { - const {_} = useLingui() + const {t: l} = useLingui() return useMemo(() => { const {topic: displayName, link} = raw if (link.startsWith('/search')) { return { type: 'topic', - label: _(msg`Browse posts about ${displayName}`), + label: l`Browse posts about ${displayName}`, displayName, uri: undefined, url: link, @@ -63,7 +92,7 @@ export function useTopic( } else if (link.startsWith('/hashtag')) { return { type: 'tag', - label: _(msg`Browse posts tagged with ${displayName}`), + label: l`Browse posts tagged with ${displayName}`, displayName, // displayName: displayName.replace(/^#/, ''), uri: undefined, @@ -72,7 +101,7 @@ export function useTopic( } else if (link.startsWith('/starter-pack')) { return { type: 'starter-pack', - label: _(msg`Browse starter pack ${displayName}`), + label: l`Browse starter pack ${displayName}`, displayName, uri: undefined, url: link, @@ -109,10 +138,10 @@ export function useTopic( return { type: 'unknown', - label: _(msg`Browse topic ${displayName}`), + label: l`Browse topic ${displayName}`, displayName, uri: undefined, url: link, } - }, [_, raw]) + }, [l, raw]) } diff --git a/src/components/Typography.tsx b/src/components/Typography.tsx index b105ffbb8c..aab4751020 100644 --- a/src/components/Typography.tsx +++ b/src/components/Typography.tsx @@ -1,4 +1,4 @@ -import {UITextView} from 'react-native-uitextview' +import {UITextView} from '@bsky.app/react-native-uitextview' import {logger} from '#/logger' import {atoms as a, type TextStyleProp, useAlf, useTheme, web} from '#/alf' diff --git a/src/components/VideoPostCard.tsx b/src/components/VideoPostCard.tsx index 898d43eb6f..ba3d83ec16 100644 --- a/src/components/VideoPostCard.tsx +++ b/src/components/VideoPostCard.tsx @@ -9,8 +9,7 @@ import { AppBskyFeedPost, type ModerationDecision, } from '@atproto/api' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' +import {useLingui} from '@lingui/react/macro' import {sanitizeHandle} from '#/lib/strings/handles' import {formatCount} from '#/view/com/util/numeric/format' @@ -52,7 +51,7 @@ export function VideoPostCard({ onInteract?: () => void }) { const t = useTheme() - const {_, i18n} = useLingui() + const {t: l, i18n} = useLingui() const embed = post.embed const { state: pressed, @@ -118,8 +117,8 @@ export function VideoPostCard({ return ( - - {_(msg`Hidden`)} - + {l`Hidden`}
@@ -367,7 +364,7 @@ export function CompactVideoPostCard({ onInteract?: () => void }) { const t = useTheme() - const {_, i18n} = useLingui() + const {t: l, i18n} = useLingui() const embed = post.embed const { state: pressed, @@ -398,7 +395,7 @@ export function CompactVideoPostCard({ return ( - - {_(msg`Hidden`)} - + {l`Hidden`}
@@ -469,7 +465,7 @@ export function CompactVideoPostCard({ - + + style={[ + a.relative, + a.rounded_full, + { + width: 24, + height: 24, + }, + ]}> + + - - + - See more - - + a.overflow_hidden, + a.border, + a.rounded_xl, + t.atoms.bg, + t.atoms.border_contrast_low, + ]}> + {isLoading || isRefetching + ? Array.from({length: TOPIC_COUNT}).map((_, i) => ( + + )) + : trending?.trends?.map((trend, index) => { + const rank = index + 1 + return ( + { + ax.metric('trendingTopic:click', { + context: 'interstitial', + rank, + feedSliceIndex, + recId: trending.recId, + }) + }} + /> + ) + })} + + - - {isLoading || isRefetching - ? Array.from({length: TOPIC_COUNT}).map((_, i) => ( - - )) - : trending?.trends?.map((trend, index) => ( - { - ax.metric('trendingTopic:click', {context: 'interstitial'}) - }} - /> - ))} - - + { + ax.metric('trendingTopics:hide', {context: 'interstitial'}) + setTrendingDisabled(true) + }} + /> + ) } function TrendRow({ trend, rank, + feedSliceIndex, + recId, onPress, }: ViewStyleProp & { trend: AppBskyUnspeccedDefs.TrendView rank: number + feedSliceIndex: number + recId?: string children?: React.ReactNode onPress?: () => void }) { @@ -163,6 +193,8 @@ function TrendRow({ const {t: l, i18n} = useLingui() const actors = useModerateTrendingActors(trend.actors) + const formattedPostCount = formatCount(i18n, trend.postCount) + useTrendingTopicSeen('interstitial', rank, recId, feedSliceIndex) return ( {({hovered, pressed}) => ( <> @@ -205,7 +232,7 @@ function TrendRow({ - + {trend.displayName} @@ -215,14 +242,14 @@ function TrendRow({ - {trend.postCount >= 1000 ? ( - 1K+ posts - ) : ( - - {formatCount(i18n, trend.postCount)}{' '} - {plural(trend.postCount, {one: 'post', other: 'posts'})} - - )} + + {formattedPostCount}{' '} + + diff --git a/src/components/interstitials/Trending.tsx b/src/components/interstitials/Trending.tsx index 94c4b37dd6..0b94064dac 100644 --- a/src/components/interstitials/Trending.tsx +++ b/src/components/interstitials/Trending.tsx @@ -1,7 +1,6 @@ import {useCallback} from 'react' import {ScrollView, View} from 'react-native' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' +import {useLingui} from '@lingui/react/macro' import { useTrendingSettings, @@ -30,7 +29,7 @@ export function TrendingInterstitial() { export function Inner() { const t = useTheme() - const {_} = useLingui() + const {t: l} = useLingui() const ax = useAnalytics() const gutters = useGutters([0, 'base', 0, 'base']) const trendingPrompt = Prompt.usePromptControl() @@ -99,30 +98,37 @@ export function Inner() { ) : !trending?.trends ? null : ( <> - {trending.trends.map(topic => ( - { - ax.metric('trendingTopic:click', { - context: 'interstitial', - recId: trending.recId, - }) - }}> - - - {topic.topic} - - - - ))} + {trending.trends.map((topic, index) => { + const rank = index + 1 + return ( + { + ax.metric('trendingTopic:click', { + context: 'interstitial', + rank, + recId: trending.recId, + }) + }}> + + + {topic.topic} + + + + ) + })} + + + Trending videos + + + - - @@ -186,7 +185,7 @@ function VideoCards({ function ViewMoreCard() { const t = useTheme() - const {_} = useLingui() + const {t: l} = useLingui() const href = useMemo(() => { const urip = new AtUri(VIDEO_FEED_URI) @@ -197,16 +196,16 @@ function ViewMoreCard() { {({pressed}) => ( + label={l`View more trending videos`}> diff --git a/src/components/moderation/ReportDialog/const.ts b/src/components/moderation/ReportDialog/const.ts index b516ec0006..8f5f16db9f 100644 --- a/src/components/moderation/ReportDialog/const.ts +++ b/src/components/moderation/ReportDialog/const.ts @@ -7,6 +7,7 @@ import {type ParsedReportSubject} from '#/components/moderation/ReportDialog/typ export const DMCA_LINK = 'https://bsky.social/about/support/copyright' export const SUPPORT_PAGE = 'https://bsky.social/about/support' +export const NCII_FORM = 'https://forms.bsky.app/f/ncii' export const NEW_TO_OLD_REASON_MAPPING: Record = {} diff --git a/src/components/moderation/ReportDialog/errors.test.ts b/src/components/moderation/ReportDialog/errors.test.ts new file mode 100644 index 0000000000..4a469c5eb2 --- /dev/null +++ b/src/components/moderation/ReportDialog/errors.test.ts @@ -0,0 +1,107 @@ +import {XRPCError} from '@atproto/api' + +import {classifyReportError} from './errors' + +describe('classifyReportError', () => { + it('treats account takedown as an expected rejection', () => { + const result = classifyReportError( + new XRPCError( + 403, + 'AccountTakedown', + 'Report not accepted from takendown account', + ), + ) + + expect(result).toMatchObject({ + kind: 'account-takedown', + shouldReport: false, + fingerprint: ['{{ default }}', 'report-dialog:account-takedown'], + tags: { + report_error_kind: 'account-takedown', + report_error_bucket: 'account-takedown', + report_xrpc_error: 'AccountTakedown', + report_http_status: 403, + }, + }) + }) + + it.each([ + { + error: new XRPCError( + 502, + 'InternalServerError', + 'Failed to perform upstream request', + ), + bucket: 'upstream-fetch', + }, + { + error: new XRPCError(502, 'UpstreamFailure', 'Internal Server Error'), + bucket: 'upstream-internal', + }, + { + error: new XRPCError( + 502, + 'UpstreamFailure', + 'Upstream server responded with a 502 error', + ), + bucket: 'upstream-http-502', + }, + { + error: new XRPCError( + 504, + 'UpstreamTimeout', + 'Upstream server responded with a 504 error', + ), + bucket: 'upstream-http-504', + }, + ])('classifies $bucket as unavailable', ({error, bucket}) => { + expect(classifyReportError(error)).toMatchObject({ + kind: 'service-unavailable', + shouldReport: true, + fingerprint: ['{{ default }}', `report-dialog:${bucket}`], + }) + }) + + it('classifies an invalid reason type separately', () => { + const result = classifyReportError( + new XRPCError( + 400, + 'InvalidRequest', + 'Invalid reason type: tools.ozone.report.defs#reasonOther', + ), + ) + + expect(result).toMatchObject({ + kind: 'invalid-reason-type', + shouldReport: true, + fingerprint: ['{{ default }}', 'report-dialog:invalid-reason-type'], + }) + }) + + it.each([400, 404])( + 'separates a non-retryable upstream %i without calling it temporary', + status => { + const result = classifyReportError( + new XRPCError( + 502, + 'UpstreamFailure', + `Upstream server responded with a ${status} error`, + ), + ) + + expect(result).toMatchObject({ + kind: 'unexpected', + shouldReport: true, + fingerprint: ['{{ default }}', `report-dialog:upstream-http-${status}`], + }) + }, + ) + + it('classifies non-XRPC errors as unexpected', () => { + expect(classifyReportError(new Error('boom'))).toMatchObject({ + kind: 'unexpected', + shouldReport: true, + fingerprint: ['{{ default }}', 'report-dialog:unexpected'], + }) + }) +}) diff --git a/src/components/moderation/ReportDialog/errors.ts b/src/components/moderation/ReportDialog/errors.ts new file mode 100644 index 0000000000..2dc71c8d23 --- /dev/null +++ b/src/components/moderation/ReportDialog/errors.ts @@ -0,0 +1,111 @@ +import {XRPCError} from '@atproto/api' + +import {isRetryableHttpStatus, shouldRetryError} from '#/lib/strings/errors' + +export type ReportErrorKind = + | 'account-takedown' + | 'invalid-reason-type' + | 'service-unavailable' + | 'unexpected' + +export type ReportErrorClassification = { + kind: ReportErrorKind + shouldReport: boolean + fingerprint: string[] + tags: Record +} + +export function classifyReportError(error: unknown): ReportErrorClassification { + if (!(error instanceof XRPCError)) { + return classification('unexpected', 'unexpected', true) + } + + const xrpcTags = { + report_xrpc_error: error.error, + report_http_status: error.status, + } + + if (error.error === 'AccountTakedown') { + return classification( + 'account-takedown', + 'account-takedown', + false, + xrpcTags, + ) + } + + if (error.message.startsWith('Invalid reason type')) { + return classification( + 'invalid-reason-type', + 'invalid-reason-type', + true, + xrpcTags, + ) + } + + if (error.message === 'Failed to perform upstream request') { + return classification( + 'service-unavailable', + 'upstream-fetch', + true, + xrpcTags, + ) + } + + if (error.message === 'Internal Server Error') { + return classification( + 'service-unavailable', + 'upstream-internal', + true, + xrpcTags, + ) + } + + const upstreamStatus = error.message.match( + /^Upstream server responded with a (\d{3}) error$/, + )?.[1] + if (upstreamStatus) { + return classification( + isRetryableHttpStatus(Number(upstreamStatus)) + ? 'service-unavailable' + : 'unexpected', + `upstream-http-${upstreamStatus}`, + true, + xrpcTags, + ) + } + + if (shouldRetryError(error)) { + return classification( + 'service-unavailable', + `xrpc-retryable-${error.status}`, + true, + xrpcTags, + ) + } + + return classification( + 'unexpected', + `xrpc-other-${error.status}`, + true, + xrpcTags, + ) +} + +function classification( + kind: ReportErrorKind, + bucket: string, + shouldReport: boolean, + tags: Record = {}, +): ReportErrorClassification { + return { + kind, + shouldReport, + fingerprint: ['{{ default }}', `report-dialog:${bucket}`], + tags: { + report_error_kind: kind, + report_error_bucket: bucket, + ...tags, + }, + } +} diff --git a/src/components/moderation/ReportDialog/index.tsx b/src/components/moderation/ReportDialog/index.tsx index d1d3aa5584..50c780630e 100644 --- a/src/components/moderation/ReportDialog/index.tsx +++ b/src/components/moderation/ReportDialog/index.tsx @@ -40,11 +40,19 @@ import {useSubmitReportMutation} from './action' import { BSKY_LABELER_ONLY_REPORT_REASONS, BSKY_LABELER_ONLY_SUBJECT_TYPES, + NCII_FORM, NEW_TO_OLD_REASONS_MAP, SUPPORT_PAGE, } from './const' import {useCopyForSubject} from './copy' -import {initialState, reducer} from './state' +import {classifyReportError} from './errors' +import { + getNciiQualificationOutcome, + initialState, + type NciiQualification as NciiQualificationState, + reducer, + type ReportAction, +} from './state' import {type ReportDialogProps, type ReportSubject} from './types' import {parseReportSubject} from './utils/parseReportSubject' import { @@ -237,14 +245,39 @@ function Inner(props: ReportDialogProps) { }) }, 1e3) } catch (err) { - const e = err as Error + const e = err instanceof Error ? err : new Error(String(err)) + const classification = classifyReportError(e) + const tags = { + ...classification.tags, + report_subject_type: props.subject.type, + report_labeler: state.selectedLabeler?.creator.did, + report_reason: state.selectedOption?.reason, + } + ax.metric('reportDialog:failure', {}) - logger.error(e, { - source: 'ReportDialog', - }) + + if (classification.shouldReport) { + logger.error(e, { + source: 'ReportDialog', + fingerprint: classification.fingerprint, + tags, + }) + } else { + logger.warn('Report rejected for taken down account', {tags}) + } + + let error = l`Something went wrong. Please try again.` + if (classification.kind === 'account-takedown') { + error = l`Your account cannot submit reports while it is taken down.` + } else if (classification.kind === 'invalid-reason-type') { + error = l`This moderation service does not support that report reason. Please choose a different reason or moderation service.` + } else if (classification.kind === 'service-unavailable') { + error = l`The moderation service is temporarily unavailable. Please try again later.` + } + dispatch({ type: 'setError', - error: l`Something went wrong. Please try again.`, + error, }) } finally { setIsPending(false) @@ -381,23 +414,28 @@ function Inner(props: ReportDialogProps) { activeIndex1={state.activeStepIndex1} /> {state.selectedOption ? ( - - - + <> + + + + + - - + {state.ncii && ( + + )} + ) : state.selectedCategory ? ( {getCategory(state.selectedCategory.key).options.map(o => ( @@ -780,6 +818,126 @@ function OptionCard({ ) } +/** + * Qualifying question shown when the NCII reason is selected. The depicted + * person (or their authorized representative) is directed to the external + * NCII report form; everyone else continues with the normal in-app + * submission. + */ +function NciiQualification({ + ncii, + dispatch, +}: { + ncii: NciiQualificationState + dispatch: React.Dispatch +}) { + const t = useTheme() + const {t: l} = useLingui() + const outcome = getNciiQualificationOutcome(ncii) + return ( + + { + dispatch({ + type: 'answerNciiQuestion', + question: 'isDepicted', + answer, + }) + }} + /> + {outcome === 'externalForm' && ( + + {({hovered, pressed}) => ( + + + + Please submit your report through the Report non-consensual + intimate imagery (NCII) form. + + + + + )} + + )} + + ) +} + +function YesNoQuestion({ + question, + value, + onAnswer, + testID, +}: { + question: string + value?: boolean + onAnswer: (answer: boolean) => void + testID?: string +}) { + const {t: l} = useLingui() + return ( + + {question} + + + + + + + + + + ) +} + function OptionCardSkeleton() { const t = useTheme() return ( diff --git a/src/components/moderation/ReportDialog/state.test.ts b/src/components/moderation/ReportDialog/state.test.ts new file mode 100644 index 0000000000..6c08fe3d5c --- /dev/null +++ b/src/components/moderation/ReportDialog/state.test.ts @@ -0,0 +1,110 @@ +import { + type AppBskyLabelerDefs, + ToolsOzoneReportDefs as OzoneReportDefs, +} from '@atproto/api' + +import { + getNciiQualificationOutcome, + initialState, + reducer, + type ReportState, +} from './state' + +const nciiOption = { + title: 'Non-consensual intimate imagery', + reason: OzoneReportDefs.REASONSEXUALNCII, +} + +const otherOption = { + title: 'Unlabeled adult content', + reason: OzoneReportDefs.REASONSEXUALUNLABELED, +} + +function selectNciiOption(state: ReportState = initialState) { + return reducer(state, {type: 'selectOption', option: nciiOption}) +} + +describe('getNciiQualificationOutcome', () => { + it('returns undefined when not an NCII report', () => { + expect(getNciiQualificationOutcome(undefined)).toBeUndefined() + }) + + it('is pending until the question is answered', () => { + expect(getNciiQualificationOutcome({})).toBe('pending') + }) + + it('directs the depicted person to the external form', () => { + expect(getNciiQualificationOutcome({isDepicted: true})).toBe('externalForm') + }) + + it('directs everyone else to in-app submission', () => { + expect(getNciiQualificationOutcome({isDepicted: false})).toBe('inApp') + }) +}) + +describe('reducer NCII qualification', () => { + it('holds at step 2 when the NCII reason is selected', () => { + const state = selectNciiOption() + expect(state.activeStepIndex1).toBe(2) + expect(state.ncii).toEqual({}) + }) + + it('does not gate non-NCII reasons', () => { + const state = reducer(initialState, { + type: 'selectOption', + option: otherOption, + }) + expect(state.activeStepIndex1).toBe(3) + expect(state.ncii).toBeUndefined() + }) + + it('holds at step 2 for the depicted person (external form)', () => { + let state = selectNciiOption() + state = reducer(state, { + type: 'answerNciiQuestion', + question: 'isDepicted', + answer: true, + }) + expect(getNciiQualificationOutcome(state.ncii)).toBe('externalForm') + expect(state.activeStepIndex1).toBe(2) + }) + + it('advances to step 3 when not the depicted person', () => { + let state = selectNciiOption() + state = reducer(state, { + type: 'answerNciiQuestion', + question: 'isDepicted', + answer: false, + }) + expect(state.activeStepIndex1).toBe(3) + }) + + it('does not advance past a pending question when a labeler is auto-selected', () => { + let state = selectNciiOption() + state = reducer(state, { + type: 'selectLabeler', + labeler: {} as AppBskyLabelerDefs.LabelerViewDetailed, + }) + expect(state.activeStepIndex1).toBe(2) + }) + + it('skips to step 4 when the answer resolves after labeler auto-selection', () => { + let state = selectNciiOption() + state = reducer(state, { + type: 'selectLabeler', + labeler: {} as AppBskyLabelerDefs.LabelerViewDetailed, + }) + state = reducer(state, { + type: 'answerNciiQuestion', + question: 'isDepicted', + answer: false, + }) + expect(state.activeStepIndex1).toBe(4) + }) + + it('clears NCII state when the reason or category is cleared', () => { + const state = selectNciiOption() + expect(reducer(state, {type: 'clearOption'}).ncii).toBeUndefined() + expect(reducer(state, {type: 'clearCategory'}).ncii).toBeUndefined() + }) +}) diff --git a/src/components/moderation/ReportDialog/state.ts b/src/components/moderation/ReportDialog/state.ts index 7b15e174b2..d86b5e28b9 100644 --- a/src/components/moderation/ReportDialog/state.ts +++ b/src/components/moderation/ReportDialog/state.ts @@ -1,4 +1,7 @@ -import {type AppBskyLabelerDefs} from '@atproto/api' +import { + type AppBskyLabelerDefs, + ToolsOzoneReportDefs as OzoneReportDefs, +} from '@atproto/api' import {OTHER_REPORT_REASONS} from '#/components/moderation/ReportDialog/const' import { @@ -6,6 +9,10 @@ import { type ReportOption, } from '#/components/moderation/ReportDialog/utils/useReportOptions' +export type NciiQualification = { + isDepicted?: boolean +} + export type ReportState = { selectedCategory?: ReportCategoryConfig selectedOption?: ReportOption @@ -14,6 +21,26 @@ export type ReportState = { detailsOpen: boolean activeStepIndex1: number error?: string + /** + * Present while the selected reason is NCII. Tracks the answer to the + * qualifying question that determines whether the report should go through + * the external NCII report form instead of in-app submission. + */ + ncii?: NciiQualification +} + +/** + * Resolves the NCII qualifying question into an outcome. The depicted person + * (or their authorized representative) is directed to the external NCII + * report form; everyone else proceeds with the normal in-app submission. + */ +export function getNciiQualificationOutcome( + ncii?: NciiQualification, +): 'pending' | 'externalForm' | 'inApp' | undefined { + if (!ncii) return undefined + if (ncii.isDepicted === true) return 'externalForm' + if (ncii.isDepicted === false) return 'inApp' + return 'pending' } export type ReportAction = @@ -32,6 +59,11 @@ export type ReportAction = | { type: 'clearOption' } + | { + type: 'answerNciiQuestion' + question: keyof NciiQualification + answer: boolean + } | { type: 'selectLabeler' labeler: AppBskyLabelerDefs.LabelerViewDetailed @@ -81,14 +113,19 @@ export function reducer(state: ReportState, action: ReportAction): ReportState { selectedLabeler: undefined, activeStepIndex1: 1, detailsOpen: false, + ncii: undefined, } - case 'selectOption': + case 'selectOption': { + const isNcii = action.option.reason === OzoneReportDefs.REASONSEXUALNCII return { ...state, selectedOption: action.option, - activeStepIndex1: 3, + // NCII reports require answering qualifying questions before moving on + activeStepIndex1: isNcii ? 2 : 3, detailsOpen: OTHER_REPORT_REASONS.has(action.option.reason), + ncii: isNcii ? {} : undefined, } + } case 'clearOption': return { ...state, @@ -96,12 +133,33 @@ export function reducer(state: ReportState, action: ReportAction): ReportState { selectedLabeler: undefined, activeStepIndex1: 2, detailsOpen: false, + ncii: undefined, } + case 'answerNciiQuestion': { + const ncii = {...state.ncii, [action.question]: action.answer} + return { + ...state, + ncii, + activeStepIndex1: + getNciiQualificationOutcome(ncii) === 'inApp' + ? state.selectedLabeler + ? 4 + : 3 + : 2, + } + } case 'selectLabeler': return { ...state, selectedLabeler: action.labeler, - activeStepIndex1: 4, + /* + * Labelers may be auto-selected (e.g. chat reports only go to + * Bluesky), so don't advance past pending NCII qualifying questions. + */ + activeStepIndex1: + getNciiQualificationOutcome(state.ncii) === 'inApp' || !state.ncii + ? 4 + : 2, detailsOpen: state.selectedOption ? OTHER_REPORT_REASONS.has(state.selectedOption?.reason) : false, diff --git a/src/lib/__tests__/persisted-query-storage.test.ts b/src/lib/__tests__/persisted-query-storage.test.ts index fe6a61884b..126c99153c 100644 --- a/src/lib/__tests__/persisted-query-storage.test.ts +++ b/src/lib/__tests__/persisted-query-storage.test.ts @@ -1,6 +1,6 @@ import {beforeEach, describe, expect, it, jest} from '@jest/globals' -jest.mock('@bsky.app/react-native-mmkv', () => ({ +jest.mock('react-native-mmkv', () => ({ MMKV: class MMKVMock { _store = new Map() diff --git a/src/lib/custom-animations/GestureActionView.tsx b/src/lib/custom-animations/GestureActionView.tsx index 71b7864df2..d70a1546fc 100644 --- a/src/lib/custom-animations/GestureActionView.tsx +++ b/src/lib/custom-animations/GestureActionView.tsx @@ -5,7 +5,6 @@ import Animated, { clamp, interpolate, interpolateColor, - runOnJS, useAnimatedReaction, useAnimatedStyle, useDerivedValue, @@ -14,6 +13,7 @@ import Animated, { withSequence, withTiming, } from 'react-native-reanimated' +import {scheduleOnRN} from 'react-native-worklets' import {useHaptics} from '#/lib/haptics' import {type GestureActions} from './GestureActionView.shared' @@ -74,17 +74,17 @@ export function GestureActionView({ () => transX, () => { if (transX.get() === 0) { - runOnJS(setActiveAction)(null) + scheduleOnRN(setActiveAction, null) } else if (transX.get() < 0) { if ( actions.leftSecond && transX.get() <= -actions.leftSecond.threshold ) { if (activeAction !== 'leftSecond') { - runOnJS(setActiveAction)('leftSecond') + scheduleOnRN(setActiveAction, 'leftSecond') } } else if (activeAction !== 'leftFirst') { - runOnJS(setActiveAction)('leftFirst') + scheduleOnRN(setActiveAction, 'leftFirst') } } else if (transX.get() > 0) { if ( @@ -92,10 +92,10 @@ export function GestureActionView({ transX.get() > actions.rightSecond.threshold ) { if (activeAction !== 'rightSecond') { - runOnJS(setActiveAction)('rightSecond') + scheduleOnRN(setActiveAction, 'rightSecond') } } else if (activeAction !== 'rightFirst') { - runOnJS(setActiveAction)('rightFirst') + scheduleOnRN(setActiveAction, 'rightFirst') } } }, @@ -127,7 +127,7 @@ export function GestureActionView({ !hitSecond.get() ) { runPopAnimation() - runOnJS(haptic)() + scheduleOnRN(haptic) hitSecond.set(true) } else if ( hitSecond.get() && @@ -144,7 +144,7 @@ export function GestureActionView({ !hitFirst.get() ) { runPopAnimation() - runOnJS(haptic)() + scheduleOnRN(haptic) hitFirst.set(true) } else if ( hitFirst.get() && @@ -161,7 +161,7 @@ export function GestureActionView({ !hitSecond.get() ) { runPopAnimation() - runOnJS(haptic)() + scheduleOnRN(haptic) hitSecond.set(true) } else if ( hitSecond.get() && @@ -178,7 +178,7 @@ export function GestureActionView({ !hitFirst.get() ) { runPopAnimation() - runOnJS(haptic)() + scheduleOnRN(haptic) hitFirst.set(true) } else if ( hitFirst.get() && @@ -193,15 +193,15 @@ export function GestureActionView({ 'worklet' if (e.translationX < 0) { if (hitSecond.get() && actions.leftSecond) { - runOnJS(actions.leftSecond.action)() + scheduleOnRN(actions.leftSecond.action) } else if (hitFirst.get() && actions.leftFirst) { - runOnJS(actions.leftFirst.action)() + scheduleOnRN(actions.leftFirst.action) } } else if (e.translationX > 0) { if (hitSecond.get() && actions.rightSecond) { - runOnJS(actions.rightSecond.action)() + scheduleOnRN(actions.rightSecond.action) } else if (hitSecond.get() && actions.rightFirst) { - runOnJS(actions.rightFirst.action)() + scheduleOnRN(actions.rightFirst.action) } } transX.set(() => withTiming(0, {duration: 200})) diff --git a/src/lib/custom-animations/LikeIcon.tsx b/src/lib/custom-animations/LikeIcon.tsx index 223f8e9f18..4ab9582aae 100644 --- a/src/lib/custom-animations/LikeIcon.tsx +++ b/src/lib/custom-animations/LikeIcon.tsx @@ -107,6 +107,7 @@ export function AnimatedLikeIcon({ zIndex: -1, pointerEvents: 'none', borderRadius: size / 2, + opacity: 0, }} /> diff --git a/src/lib/hooks/useIntentHandler.ts b/src/lib/hooks/useIntentHandler.ts index eaa6482830..71a3437ad2 100644 --- a/src/lib/hooks/useIntentHandler.ts +++ b/src/lib/hooks/useIntentHandler.ts @@ -84,11 +84,19 @@ export function useIntentHandler() { } case 'apply-ota': { const channel = params.get('channel') + const releaseVersion = params.get('releaseVersion') + const buildNumber = params.get( + IS_IOS ? 'iosBuildNumber' : 'androidBuildNumber', + ) + const appVersion = + releaseVersion && buildNumber + ? `${releaseVersion}.${buildNumber}` + : null if (!channel) { Alert.alert('Error', 'No channel provided to look for.') - } else { - tryApplyUpdate(channel) + return } + tryApplyUpdate(channel, appVersion) return } default: { diff --git a/src/lib/hooks/useOTAUpdates.test.ts b/src/lib/hooks/useOTAUpdates.test.ts new file mode 100644 index 0000000000..871cac0e63 --- /dev/null +++ b/src/lib/hooks/useOTAUpdates.test.ts @@ -0,0 +1,354 @@ +import {Alert} from 'react-native' +import { + checkForUpdateAsync, + fetchUpdateAsync, + reloadAsync, + setExtraParamAsync, + UpdateCheckResultNotAvailableReason, + useUpdates, +} from 'expo-updates' +import {act, renderHook, waitFor} from '@testing-library/react-native' + +import {logger} from '#/logger' +import {APP_VERSION} from '#/env' +import {device} from '#/storage' +import { + useApplyPullRequestOTAUpdate, + useOTAUpdateRecovery, +} from './useOTAUpdates' + +jest.mock('expo-updates', () => ({ + checkForUpdateAsync: jest.fn(), + fetchUpdateAsync: jest.fn(), + isEnabled: true, + reloadAsync: jest.fn(), + setExtraParamAsync: jest.fn(), + UpdateCheckResultNotAvailableReason: { + NO_UPDATE_AVAILABLE_ON_SERVER: 'noUpdateAvailableOnServer', + UPDATE_PREVIOUSLY_FAILED: 'updatePreviouslyFailed', + }, + useUpdates: jest.fn(), +})) + +jest.mock('#/logger', () => ({ + logger: { + debug: jest.fn(), + error: jest.fn(), + }, +})) + +jest.mock('#/storage', () => ({ + device: { + get: jest.fn(), + remove: jest.fn(), + set: jest.fn(), + }, +})) + +jest.mock('#/alf', () => ({ + useTheme: jest.fn().mockImplementation(() => ({ + scheme: 'light', + })), +})) + +/** + * `channel` here is the build-time constant baked into the native build, not the + * channel of the running bundle. `channel` is passed as the manifest metadata + * channel our update server stamps into every published update - omit it to + * simulate an embedded launch, which has no server manifest. + */ +function mockCurrentlyRunning({ + buildChannel = 'testflight', + channel, + updateId = 'current-update', +}: { + buildChannel?: string + channel?: string + updateId?: string +} = {}) { + const currentlyRunning = { + channel: buildChannel, + emergencyLaunchReason: null, + isEmbeddedLaunch: !channel, + isEmergencyLaunch: false, + updateId, + manifest: channel ? {id: updateId, metadata: {channel}} : undefined, + } + jest.mocked(useUpdates).mockReturnValue({ + currentlyRunning, + } as ReturnType) + return currentlyRunning +} + +const currentUpdate = {updateId: 'current-update'} + +beforeEach(() => { + jest.clearAllMocks() + mockCurrentlyRunning() + jest.mocked(setExtraParamAsync).mockResolvedValue(undefined) + jest.mocked(reloadAsync).mockResolvedValue(undefined) + jest.spyOn(Alert, 'alert').mockImplementation(() => {}) +}) + +describe('useApplyPullRequestOTAUpdate', () => { + it('detects a running PR deployment from the manifest metadata', () => { + mockCurrentlyRunning({ + buildChannel: 'testflight', + channel: 'pull-request-123', + }) + + const {result} = renderHook(() => useApplyPullRequestOTAUpdate()) + + expect(result.current.currentChannel).toBe('pull-request-123') + expect(result.current.isCurrentlyRunningPullRequestDeployment).toBe(true) + expect(result.current.isCurrentlyRunningNonStandardChannel).toBe(true) + }) + + it('treats a standard downloaded update as a standard channel', () => { + mockCurrentlyRunning({buildChannel: 'testflight', channel: 'testflight'}) + + const {result} = renderHook(() => useApplyPullRequestOTAUpdate()) + + expect(result.current.currentChannel).toBe('testflight') + expect(result.current.isCurrentlyRunningPullRequestDeployment).toBe(false) + expect(result.current.isCurrentlyRunningNonStandardChannel).toBe(false) + }) + + it('falls back to the build channel for an embedded launch', () => { + mockCurrentlyRunning({buildChannel: 'testflight'}) + + const {result} = renderHook(() => useApplyPullRequestOTAUpdate()) + + expect(result.current.currentChannel).toBe('testflight') + expect(result.current.isCurrentlyRunningNonStandardChannel).toBe(false) + }) + + it('reports no channel when updates are disabled', () => { + mockCurrentlyRunning({buildChannel: ''}) + + const {result} = renderHook(() => useApplyPullRequestOTAUpdate()) + + expect(result.current.currentChannel).toBeUndefined() + expect(result.current.isCurrentlyRunningNonStandardChannel).toBe(false) + }) + + it('stays quiet when already running the latest of the requested channel', async () => { + mockCurrentlyRunning({ + buildChannel: 'testflight', + channel: 'pull-request-123', + }) + jest.mocked(checkForUpdateAsync).mockResolvedValue({ + isAvailable: false, + reason: UpdateCheckResultNotAvailableReason.NO_UPDATE_AVAILABLE_ON_SERVER, + } as Awaited>) + const {result} = renderHook(() => useApplyPullRequestOTAUpdate()) + + await act(() => result.current.tryApplyUpdate('pull-request-123')) + + expect(Alert.alert).not.toHaveBeenCalled() + }) + + it('warns when no deployment is available for a different channel', async () => { + mockCurrentlyRunning({ + buildChannel: 'testflight', + channel: 'pull-request-123', + }) + jest.mocked(checkForUpdateAsync).mockResolvedValue({ + isAvailable: false, + reason: UpdateCheckResultNotAvailableReason.NO_UPDATE_AVAILABLE_ON_SERVER, + } as Awaited>) + const {result} = renderHook(() => useApplyPullRequestOTAUpdate()) + + await act(() => result.current.tryApplyUpdate('pull-request-456')) + + expect(Alert.alert).toHaveBeenCalledWith( + 'No Deployment Available', + expect.stringContaining('pull-request-456'), + ) + }) + + it('stays silent on a re-fired intent even when the app version differs', async () => { + mockCurrentlyRunning({ + buildChannel: 'testflight', + channel: 'pull-request-123', + }) + jest.mocked(checkForUpdateAsync).mockResolvedValue({ + isAvailable: false, + reason: UpdateCheckResultNotAvailableReason.NO_UPDATE_AVAILABLE_ON_SERVER, + } as Awaited>) + const {result} = renderHook(() => useApplyPullRequestOTAUpdate()) + + await act(() => result.current.tryApplyUpdate('pull-request-123', '0.0.0')) + + expect(Alert.alert).not.toHaveBeenCalled() + expect(fetchUpdateAsync).not.toHaveBeenCalled() + }) + + it('prompts to apply an available update when the app version matches', async () => { + jest.mocked(checkForUpdateAsync).mockResolvedValue({ + isAvailable: true, + } as Awaited>) + const {result} = renderHook(() => useApplyPullRequestOTAUpdate()) + + await act(() => + result.current.tryApplyUpdate('pull-request-123', APP_VERSION), + ) + + expect(Alert.alert).toHaveBeenCalledWith( + 'Apply update from PR #123?', + expect.stringContaining('relaunch'), + expect.arrayContaining([expect.objectContaining({text: 'Apply'})]), + ) + }) + + it('warns before applying an OTA built for a different app version', async () => { + jest.mocked(checkForUpdateAsync).mockResolvedValue({ + isAvailable: true, + } as Awaited>) + jest.mocked(fetchUpdateAsync).mockResolvedValue({ + isNew: true, + isRollBackToEmbedded: false, + manifest: {id: 'mismatched-update'}, + } as Awaited>) + const {result} = renderHook(() => useApplyPullRequestOTAUpdate()) + + await act(() => result.current.tryApplyUpdate('pull-request-123', '0.0.0')) + + expect(Alert.alert).toHaveBeenCalledWith( + 'App Version Mismatch', + expect.stringContaining('Applying it anyway may cause'), + expect.arrayContaining([expect.objectContaining({text: 'Apply Anyway'})]), + ) + + const buttons = jest.mocked(Alert.alert).mock.calls[0][2] + act(() => buttons?.[1].onPress?.()) + + await waitFor(() => expect(reloadAsync).toHaveBeenCalled()) + expect(device.set).toHaveBeenCalledWith(['pendingOTAUpdate'], { + attemptedAt: expect.any(Number), + channel: 'pull-request-123', + updateId: 'mismatched-update', + }) + }) + + it('informs the user when checking for an OTA fails', async () => { + jest.mocked(checkForUpdateAsync).mockRejectedValue(new Error('offline')) + const {result} = renderHook(() => useApplyPullRequestOTAUpdate()) + + await act(() => result.current.tryApplyUpdate('pull-request-123')) + + expect(Alert.alert).toHaveBeenCalledWith( + 'Update Check Failed', + expect.stringContaining('Error: offline'), + ) + expect(result.current.pending).toBe(false) + }) + + it('informs the user when downloading an OTA fails', async () => { + jest.mocked(checkForUpdateAsync).mockResolvedValue({ + isAvailable: true, + } as Awaited>) + jest + .mocked(fetchUpdateAsync) + .mockRejectedValue(new Error('download failed')) + const {result} = renderHook(() => useApplyPullRequestOTAUpdate()) + + await act(() => result.current.tryApplyUpdate('pull-request-123')) + const buttons = jest.mocked(Alert.alert).mock.calls[0][2] + + act(() => buttons?.[1].onPress?.()) + + await waitFor(() => + expect(Alert.alert).toHaveBeenLastCalledWith( + 'Update Failed', + expect.stringContaining('Error: download failed'), + ), + ) + expect(device.set).not.toHaveBeenCalled() + expect(result.current.pending).toBe(false) + }) + + it('clears the recovery marker and informs the user when reloading fails', async () => { + jest.mocked(checkForUpdateAsync).mockResolvedValue({ + isAvailable: true, + } as Awaited>) + jest.mocked(fetchUpdateAsync).mockResolvedValue({ + isNew: true, + isRollBackToEmbedded: false, + manifest: {id: 'new-update'}, + } as Awaited>) + jest.mocked(reloadAsync).mockRejectedValue(new Error('reload failed')) + const {result} = renderHook(() => useApplyPullRequestOTAUpdate()) + + await act(() => result.current.tryApplyUpdate('pull-request-123')) + const buttons = jest.mocked(Alert.alert).mock.calls[0][2] + + act(() => buttons?.[1].onPress?.()) + + await waitFor(() => + expect(Alert.alert).toHaveBeenLastCalledWith( + 'Update Failed', + expect.stringContaining('Error: reload failed'), + ), + ) + expect(device.set).toHaveBeenCalledWith(['pendingOTAUpdate'], { + attemptedAt: expect.any(Number), + channel: 'pull-request-123', + updateId: 'new-update', + }) + expect(device.remove).toHaveBeenCalledWith(['pendingOTAUpdate']) + expect(result.current.pending).toBe(false) + }) +}) + +describe('useOTAUpdateRecovery', () => { + it('informs the user when Expo fell back from the attempted OTA', async () => { + jest.mocked(device.get).mockReturnValue({ + attemptedAt: Date.now(), + channel: 'pull-request-123', + updateId: 'failed-update', + }) + + renderHook(() => useOTAUpdateRecovery()) + + await waitFor(() => + expect(Alert.alert).toHaveBeenCalledWith( + 'Update Failed', + expect.stringContaining('PR #123 deployment could not start'), + ), + ) + expect(device.remove).toHaveBeenCalledWith(['pendingOTAUpdate']) + expect(logger.error).toHaveBeenCalledWith( + 'Custom OTA Update Failed to Launch', + expect.objectContaining({attemptedUpdateId: 'failed-update'}), + ) + }) + + it('recognizes a launched OTA when the update ID casing differs', () => { + jest.mocked(device.get).mockReturnValue({ + attemptedAt: Date.now(), + channel: 'pull-request-123', + updateId: currentUpdate.updateId.toUpperCase(), + }) + + renderHook(() => useOTAUpdateRecovery()) + + expect(device.remove).toHaveBeenCalledWith(['pendingOTAUpdate']) + expect(Alert.alert).not.toHaveBeenCalled() + expect(logger.error).not.toHaveBeenCalled() + }) + + it('silently clears a stale marker from an older OTA bundle', () => { + jest.mocked(device.get).mockReturnValue({ + attemptedAt: Date.now() - 10 * 60e3, + channel: 'pull-request-123', + updateId: 'older-update', + }) + + renderHook(() => useOTAUpdateRecovery()) + + expect(device.remove).toHaveBeenCalledWith(['pendingOTAUpdate']) + expect(Alert.alert).not.toHaveBeenCalled() + expect(logger.error).not.toHaveBeenCalled() + }) +}) diff --git a/src/lib/hooks/useOTAUpdates.ts b/src/lib/hooks/useOTAUpdates.ts index 766fb959df..180102c2cd 100644 --- a/src/lib/hooks/useOTAUpdates.ts +++ b/src/lib/hooks/useOTAUpdates.ts @@ -1,20 +1,74 @@ import {useCallback, useEffect, useRef, useState} from 'react' -import {Alert, AppState, type AppStateStatus} from 'react-native' +import { + Alert, + AppState, + type AppStateStatus, + Image as RNImage, +} from 'react-native' import {nativeBuildVersion} from 'expo-application' import { checkForUpdateAsync, + type CurrentlyRunningInfo, fetchUpdateAsync, isEnabled, reloadAsync, + type ReloadScreenOptions, setExtraParamAsync, + UpdateCheckResultNotAvailableReason, useUpdates, } from 'expo-updates' import {isNetworkError} from '#/lib/strings/errors' import {logger} from '#/logger' -import {IS_ANDROID, IS_IOS, IS_TESTFLIGHT} from '#/env' +import {useTheme} from '#/alf' +import {APP_VERSION, IS_IOS, IS_TESTFLIGHT} from '#/env' +import {device} from '#/storage' const MINIMUM_MINIMIZE_TIME = 15 * 60e3 +const OTA_RECOVERY_WINDOW = 5 * 60e3 + +/** + * The channel this native build is expected to receive updates from. Anything + * else is only reachable through the dev tooling in settings. + */ +const DEFAULT_CHANNEL = IS_TESTFLIGHT ? 'testflight' : 'production' + +/** + * Channels that our native builds are configured with, see `eas.json`. An + * update running on any other channel was applied manually. + */ +const STANDARD_CHANNELS = ['production', 'testflight', 'development'] + +function getDeploymentName(channel: string) { + const pullRequestNumber = channel.match(/^pull-request-(\d+)$/)?.[1] + return pullRequestNumber ? `PR #${pullRequestNumber}` : channel +} + +/** + * The channel of the update bundle that is actually running. The + * `currentlyRunning.channel` constant only reflects the channel baked into the + * native build config, so a manually applied deployment (e.g. a pull request + * channel) must be detected from the manifest metadata our update server stamps + * into every published update. Embedded launches have no server manifest and + * fall back to the build constant. + */ +function getRunningChannel( + currentlyRunning: CurrentlyRunningInfo | undefined, +): string | undefined { + /* + * `metadata` is typed as a bare `object` by expo-manifests, and is absent + * entirely from embedded manifests, so narrow it ourselves. + */ + const manifest = currentlyRunning?.manifest as + | {metadata?: {channel?: unknown}} + | undefined + const channel = manifest?.metadata?.channel + if (typeof channel === 'string' && channel) { + return channel + } + // The build constant is an empty string rather than null when unconfigured. + return currentlyRunning?.channel || undefined +} async function setExtraParams() { await setExtraParamAsync( @@ -23,10 +77,7 @@ async function setExtraParams() { // This just ensures it gets passed as a string `${nativeBuildVersion}`, ) - await setExtraParamAsync( - 'channel', - IS_TESTFLIGHT ? 'testflight' : 'production', - ) + await setExtraParamAsync('channel', DEFAULT_CHANNEL) } async function setExtraParamsPullRequest(channel: string) { @@ -39,7 +90,7 @@ async function setExtraParamsPullRequest(channel: string) { await setExtraParamAsync('channel', channel) } -async function updateTestflight() { +async function updateTestflight(scheme: 'light' | 'dark') { await setExtraParams() const res = await checkForUpdateAsync() @@ -57,7 +108,9 @@ async function updateTestflight() { text: 'Relaunch', style: 'default', onPress: async () => { - await reloadAsync() + await reloadAsync({ + reloadScreenOptions: splash(scheme), + }) }, }, ], @@ -66,70 +119,241 @@ async function updateTestflight() { } export function useApplyPullRequestOTAUpdate() { + const t = useTheme() const {currentlyRunning} = useUpdates() const [pending, setPending] = useState(false) - const currentChannel = currentlyRunning?.channel + const currentChannel = getRunningChannel(currentlyRunning) const isCurrentlyRunningPullRequestDeployment = currentChannel?.startsWith('pull-request') + /* + * Covers pull request deployments as well as any other channel we manually + * applied an update from. Note that the channel is undefined when updates are + * disabled (e.g. in dev), in which case there's nothing to restore. + */ + const isCurrentlyRunningNonStandardChannel = Boolean( + currentChannel && !STANDARD_CHANNELS.includes(currentChannel), + ) - const tryApplyUpdate = async (channel: string) => { + const tryApplyUpdate = async ( + channel: string, + declaredAppVersion?: string | null, + ) => { + const deploymentName = getDeploymentName(channel) + + const checkForDeployment = async () => { + await setExtraParamsPullRequest(channel) + const res = await checkForUpdateAsync() + if (!res.isAvailable) { + if ( + res.reason === + UpdateCheckResultNotAvailableReason.UPDATE_PREVIOUSLY_FAILED + ) { + Alert.alert( + 'Deployment Blocked', + `The ${deploymentName} deployment previously failed to start on this device, so the app will not try to apply it again.`, + ) + } else if (currentChannel !== channel) { + Alert.alert( + 'No Deployment Available', + `No new deployments of ${channel} are currently available for your current native build.`, + ) + } + } + return res.isAvailable + } + + const applyUpdate = () => { + setPending(true) + void (async () => { + try { + if (!(await checkForDeployment())) return + const fetchedUpdate = await fetchUpdateAsync() + if (!fetchedUpdate.isNew) { + throw new Error('Expo did not download a new update.') + } + + device.set(['pendingOTAUpdate'], { + attemptedAt: Date.now(), + channel, + updateId: fetchedUpdate.manifest.id, + }) + try { + /* + * TODO: once expo-linking is upgraded to >= 57, enable this so the + * re-delivered initial URL doesn't trigger a redundant silent check + * after the reload. + */ + // Linking.clearInitialURL() + await reloadAsync({ + reloadScreenOptions: splash(t.scheme), + }) + } catch (e) { + device.remove(['pendingOTAUpdate']) + throw e + } + } catch (e: unknown) { + const error = String(e) + logger.error('Internal OTA Update Error', {error}) + Alert.alert( + 'Update Failed', + `Could not apply the ${deploymentName} deployment: ${error}`, + ) + } finally { + setPending(false) + } + })() + } + + /* + * Check before prompting about anything, so that re-running this while + * already on the newest update of `channel` stays silent. Reloading into an + * update re-delivers the deep link that triggered it, and the same link may + * also just be tapped again. + */ setPending(true) - await setExtraParamsPullRequest(channel) - const res = await checkForUpdateAsync() - if (res.isAvailable) { + try { + if (!(await checkForDeployment())) return + + if (declaredAppVersion && declaredAppVersion !== APP_VERSION) { + Alert.alert( + 'App Version Mismatch', + `This OTA update was built for a different version of the app.\n\nCurrent app version: ${APP_VERSION}\nOTA app version: ${declaredAppVersion}\n\nApplying it anyway may cause the app to stop working and require a reinstall.`, + [ + { + text: 'Cancel', + style: 'cancel', + }, + { + text: 'Apply Anyway', + style: 'destructive', + onPress: applyUpdate, + }, + ], + ) + return + } + 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?`, + `Apply update from ${deploymentName}?`, + 'The app will relaunch after the update is applied.', [ { - text: 'No', + text: 'Cancel', style: 'cancel', }, { - text: 'Relaunch', + text: 'Apply', style: 'default', - onPress: async () => { - await fetchUpdateAsync() - await reloadAsync() - }, + onPress: applyUpdate, }, ], ) - } else { + } catch (e: unknown) { + const error = String(e) + logger.error('Internal OTA Update Error', {error}) Alert.alert( - 'No Deployment Available', - `No new deployments of ${channel} are currently available for your current native build.`, + 'Update Check Failed', + `Could not check the ${deploymentName} deployment: ${error}`, ) + } finally { + setPending(false) } - setPending(false) } - const revertToEmbedded = async () => { + /** + * Pulls the newest update from the channel this build ships with and relaunches + * into it, undoing a manually applied deployment. + */ + const restoreDefaultChannel = async () => { + setPending(true) try { - await updateTestflight() + await setExtraParams() + const res = await checkForUpdateAsync() + if (res.isAvailable) { + await fetchUpdateAsync() + await reloadAsync() + } else { + Alert.alert( + 'Nothing to Restore', + `No deployment of ${DEFAULT_CHANNEL} is currently available for your native build. Reinstall the app to get back to a standard build.`, + ) + } } catch (e: any) { logger.error('Internal OTA Update Error', {error: `${e}`}) + Alert.alert( + 'Restore Failed', + `Could not restore the ${DEFAULT_CHANNEL} deployment: ${e}`, + ) + } finally { + setPending(false) } } return { tryApplyUpdate, - revertToEmbedded, + restoreDefaultChannel, isCurrentlyRunningPullRequestDeployment, + isCurrentlyRunningNonStandardChannel, currentChannel, + defaultChannel: DEFAULT_CHANNEL, pending, } } +/** + * Reports when expo-updates recovered from a custom OTA that failed to launch. + * The attempted update ID is persisted before reload so the previous bundle can + * distinguish a successful relaunch from an automatic fallback. + */ +export function useOTAUpdateRecovery() { + const {currentlyRunning} = useUpdates() + + useEffect(() => { + const pendingUpdate = device.get(['pendingOTAUpdate']) + if (!pendingUpdate || !currentlyRunning) return + + device.remove(['pendingOTAUpdate']) + if ( + pendingUpdate.updateId.toLowerCase() === + currentlyRunning.updateId?.toLowerCase() + ) { + return + } + + // A fallback relaunch is immediate. A stale marker can be left by a + // successful runtime-compatible bundle that predates this hook. + if ( + typeof pendingUpdate.attemptedAt !== 'number' || + Date.now() - pendingUpdate.attemptedAt >= OTA_RECOVERY_WINDOW + ) { + return + } + + const deploymentName = getDeploymentName(pendingUpdate.channel) + logger.error('Custom OTA Update Failed to Launch', { + channel: pendingUpdate.channel, + attemptedUpdateId: pendingUpdate.updateId, + currentUpdateId: currentlyRunning.updateId, + isEmergencyLaunch: currentlyRunning.isEmergencyLaunch, + emergencyLaunchReason: currentlyRunning.emergencyLaunchReason, + }) + Alert.alert( + 'Update Failed', + `The ${deploymentName} deployment could not start. The app recovered by loading a working version instead.`, + ) + }, [currentlyRunning]) +} + export function useOTAUpdates() { const shouldReceiveUpdates = isEnabled && !__DEV__ + const t = useTheme() const appState = useRef('active') const lastMinimize = useRef(0) const ranInitialCheck = useRef(false) const timeout = useRef(undefined) const {currentlyRunning, isUpdatePending} = useUpdates() - const currentChannel = currentlyRunning?.channel + const currentChannel = getRunningChannel(currentlyRunning) const setCheckTimeout = useCallback(() => { timeout.current = setTimeout(async () => { @@ -155,13 +379,13 @@ export function useOTAUpdates() { const onIsTestFlight = useCallback(async () => { try { - await updateTestflight() + await updateTestflight(t.scheme) } catch (err: any) { if (!isNetworkError(err)) { logger.error('Internal OTA Update Error', {safeMessage: err}) } } - }, []) + }, [t.scheme]) useEffect(() => { // We don't need to check anything if the current update is a PR update @@ -192,13 +416,6 @@ export function useOTAUpdates() { return } - // TEMP: disable wake-from-background OTA loading on Android. - // This is causing a crash when the thread view is open due to - // `maintainVisibleContentPosition`. See repro repo for more details: - // https://github.com/mozzius/ota-crash-repro - // Old Arch only - re-enable once we're on the New Archictecture! -sfn - if (IS_ANDROID) return - const subscription = AppState.addEventListener( 'change', async nextAppState => { @@ -210,7 +427,9 @@ export function useOTAUpdates() { // chances are that there isn't anything important going on in the current session. if (lastMinimize.current <= Date.now() - MINIMUM_MINIMIZE_TIME) { if (isUpdatePending) { - await reloadAsync() + await reloadAsync({ + reloadScreenOptions: splash(t.scheme), + }) } else { setCheckTimeout() } @@ -227,5 +446,27 @@ export function useOTAUpdates() { clearTimeout(timeout.current) subscription.remove() } - }, [isUpdatePending, currentChannel, setCheckTimeout]) + }, [isUpdatePending, currentChannel, setCheckTimeout, t.scheme]) +} + +/** + * Splash screen for while the app is updating + */ +export const splash = (scheme: 'light' | 'dark') => { + const source = + scheme === 'light' + ? require('../../../assets/splash/splash.png') + : require('../../../assets/splash/splash-dark.png') + + return { + image: RNImage.resolveAssetSource(source).uri, + imageFullScreen: true, + imageResizeMode: 'cover', + backgroundColor: scheme === 'light' ? '#006AFF' : '#002861', + spinner: { + enabled: true, + color: '#ffffff', + size: 'large', + }, + } satisfies ReloadScreenOptions } diff --git a/src/lib/hooks/useOTAUpdates.web.ts b/src/lib/hooks/useOTAUpdates.web.ts index 30cb2c6dba..970deebf1b 100644 --- a/src/lib/hooks/useOTAUpdates.web.ts +++ b/src/lib/hooks/useOTAUpdates.web.ts @@ -1,10 +1,16 @@ export function useOTAUpdates() {} +export function useOTAUpdateRecovery() {} export function useApplyPullRequestOTAUpdate() { return { - tryApplyUpdate: async (_channel: string) => {}, - revertToEmbedded: () => {}, + tryApplyUpdate: async ( + _channel: string, + _declaredAppVersion?: string | null, + ) => {}, + restoreDefaultChannel: async () => {}, isCurrentlyRunningPullRequestDeployment: false, + isCurrentlyRunningNonStandardChannel: false, currentChannel: 'web-build', + defaultChannel: 'web-build', pending: false, } } diff --git a/src/lib/media/picker.tsx b/src/lib/media/picker.tsx index c9a52b8bad..926b2e9560 100644 --- a/src/lib/media/picker.tsx +++ b/src/lib/media/picker.tsx @@ -17,11 +17,11 @@ export async function openCamera(customOpts: ImagePickerOptions) { } const res = await launchCameraAsync(opts) - if (!res || !res.assets) { - throw new Error('Camera was closed before taking a photo') + if (res.canceled) { + return } - const asset = res?.assets[0] + const asset = res.assets[0] return { path: asset.uri, diff --git a/src/lib/media/video/multipart/upload.ts b/src/lib/media/video/multipart/upload.ts index 1605bf40c9..af2d71d596 100644 --- a/src/lib/media/video/multipart/upload.ts +++ b/src/lib/media/video/multipart/upload.ts @@ -3,6 +3,7 @@ import {nanoid} from 'nanoid/non-secure' import {AbortError} from '#/lib/async/cancelable' import {type CompressedVideo} from '#/lib/media/video/types' +import {shouldRetryError} from '#/lib/strings/errors' import {getServiceAuthToken} from '../upload.shared' import {mimeToExt} from '../util' import { @@ -18,6 +19,7 @@ import {getMissingParts, planParts} from './planParts' import {createChunkReader} from './readChunk' import {createUploadPart} from './uploadPart' import {uploadParts} from './uploadParts' +import {delay, isRetryableMultipartError} from './utils' export class MultipartFallbackError extends Error {} @@ -35,7 +37,7 @@ export async function uploadVideoMultipart({ onStarted?: () => void }): Promise { throwIfAborted(signal) - const tokenProvider = createTokenProvider(agent) + const tokenProvider = createTokenProvider(agent, signal) const token = await tokenProvider.get() const name = `${nanoid(12)}.${mimeToExt(video.mimeType)}` let session @@ -60,6 +62,7 @@ export async function uploadVideoMultipart({ } signal.addEventListener('abort', abortOnCancel, {once: true}) let reader: ReturnType | undefined + // Kept outside the upload try block for finish-time missing-part recovery. let parts: ReturnType = [] try { try { @@ -85,9 +88,7 @@ export async function uploadVideoMultipart({ ) } - // Finish stores this credential for the later PDS blob upload, so use a - // fresh token rather than the one that may have aged during transfer. - await tokenProvider.get(true) + // Preserve TypeScript's narrowing inside the recovery callback. const activeReader = reader if (!activeReader) throw new Error('Video chunk reader is unavailable') return await finishAndRecover({ @@ -126,14 +127,18 @@ async function finishAndRecover({ resendMissingParts, }: { jobId: string - getToken: () => Promise + getToken: (forceRefresh?: boolean) => Promise signal: AbortSignal resendMissingParts: (receivedPartNumbers: number[]) => Promise }): Promise { let createdFailures = 0 + let forceTokenRefresh = true while (true) { throwIfAborted(signal) - const token = await getToken() + // Finish stores this credential for the later PDS blob upload. Refresh it + // once after part transfer, then reuse it while polling/recovering. + const token = await getToken(forceTokenRefresh) + forceTokenRefresh = false try { const result = await finishUpload(jobId, token, signal) return result.jobStatus @@ -162,8 +167,8 @@ async function finishAndRecover({ } return await abortThenFallbackOrResolve(jobId, token, finishError) case 'finishing': - // Finalization owns the reservation and may already have assembled - // the object. Retrying is idempotent; legacy fallback is unsafe. + // The service may have assembled the upload even though the finish + // request failed. Poll and retry instead of starting a second upload. await delay(1000, signal) continue case 'failed': @@ -177,6 +182,16 @@ async function finishAndRecover({ `Multipart upload ${status.state}`, status.state === 'aborted' ? 'UploadAborted' : 'UploadExpired', ) + case 'completed': + throw new MultipartUploadError( + 'Multipart upload completed without a job status', + 'InvalidUploadStatus', + ) + default: + throw new MultipartUploadError( + 'Multipart upload returned an unknown status', + 'InvalidUploadStatus', + ) } } } @@ -193,7 +208,7 @@ async function getUploadStatusWithRetry( return await getUploadStatus(jobId, token, signal) } catch (err) { throwIfAborted(signal) - if (!isRetryableStatusError(err)) throw err + if (!isRetryableMultipartError(err)) throw err lastError = err if (attempt < 3) await delay(500 * 2 ** (attempt - 1), signal) } @@ -201,16 +216,6 @@ async function getUploadStatusWithRetry( throw lastError } -function isRetryableStatusError(err: unknown) { - return ( - err instanceof TypeError || - (err instanceof MultipartUploadError && - (err.error === 'ServiceOverloaded' || - err.status === undefined || - err.status >= 500)) - ) -} - async function abortThenFallbackOrResolve( jobId: string, token: string, @@ -233,7 +238,7 @@ async function abortThenFallbackOrResolve( ) } -function createTokenProvider(agent: AtpAgent) { +function createTokenProvider(agent: AtpAgent, signal: AbortSignal) { let token: string | undefined let expiresAt = 0 let refresh: Promise | undefined @@ -242,11 +247,7 @@ function createTokenProvider(agent: AtpAgent) { if (!forceRefresh && token && Date.now() < expiresAt - 60_000) return token if (!refresh) { const exp = Math.floor(Date.now() / 1000) + 60 * 30 - refresh = getServiceAuthToken({ - agent, - lxm: 'com.atproto.repo.uploadBlob', - exp, - }) + refresh = getServiceAuthTokenWithRetry(agent, exp, signal) .then(nextToken => { token = nextToken expiresAt = exp * 1000 @@ -262,20 +263,30 @@ function createTokenProvider(agent: AtpAgent) { return {get} } +async function getServiceAuthTokenWithRetry( + agent: AtpAgent, + exp: number, + signal: AbortSignal, +) { + let lastError: unknown + for (let attempt = 1; attempt <= 3; attempt++) { + throwIfAborted(signal) + try { + return await getServiceAuthToken({ + agent, + lxm: 'com.atproto.repo.uploadBlob', + exp, + }) + } catch (err) { + throwIfAborted(signal) + if (!(err instanceof TypeError) && !shouldRetryError(err)) throw err + lastError = err + if (attempt < 3) await delay(500 * 2 ** (attempt - 1), signal) + } + } + throw lastError +} + function throwIfAborted(signal: AbortSignal) { if (signal.aborted) throw new AbortError() } - -function delay(ms: number, signal: AbortSignal) { - return new Promise((resolve, reject) => { - const timer = setTimeout(() => { - signal.removeEventListener('abort', onAbort) - resolve() - }, ms) - function onAbort() { - clearTimeout(timer) - reject(new AbortError()) - } - signal.addEventListener('abort', onAbort, {once: true}) - }) -} diff --git a/src/lib/media/video/multipart/uploadParts.test.ts b/src/lib/media/video/multipart/uploadParts.test.ts index edaa0bb536..7965a28df9 100644 --- a/src/lib/media/video/multipart/uploadParts.test.ts +++ b/src/lib/media/video/multipart/uploadParts.test.ts @@ -1,3 +1,5 @@ +import {AbortError} from '#/lib/async/cancelable' +import {MultipartUploadError} from './api' import {type ChunkReader, type UploadPartFn} from './types' import {uploadParts} from './uploadParts' @@ -65,7 +67,7 @@ describe('uploadParts', () => { const n = (attemptsByPart.get(part.partNumber) ?? 0) + 1 attemptsByPart.set(part.partNumber, n) if (part.partNumber === 2 && n === 1) { - return Promise.reject(new Error('transient')) + return Promise.reject(new TypeError('transient network error')) } return Promise.resolve({ partNumber: part.partNumber, @@ -86,9 +88,59 @@ describe('uploadParts', () => { expect(results).toHaveLength(3) }) + it('retries rate-limited parts', async () => { + let attempts = 0 + const uploadPart: UploadPartFn = ({part}) => { + attempts++ + if (attempts === 1) { + return Promise.reject( + new MultipartUploadError('rate limited', 'RateLimitExceeded', 429), + ) + } + return Promise.resolve({ + partNumber: part.partNumber, + sizeBytes: part.size, + }) + } + + await uploadParts({ + parts: parts.slice(0, 1), + reader: fakeReader(), + uploadPart, + totalBytes: 10, + setProgress: () => {}, + signal: new AbortController().signal, + }) + + expect(attempts).toBe(2) + }) + + it('does not retry a non-retryable response', async () => { + const uploadPart = jest.fn< + ReturnType, + Parameters + >(() => + Promise.reject( + new MultipartUploadError('bad request', 'InvalidRequest', 400), + ), + ) + + await expect( + uploadParts({ + parts: parts.slice(0, 1), + reader: fakeReader(), + uploadPart, + totalBytes: 10, + setProgress: () => {}, + signal: new AbortController().signal, + }), + ).rejects.toThrow('bad request') + expect(uploadPart).toHaveBeenCalledTimes(1) + }) + it('throws after exhausting attempts', async () => { const uploadPart: UploadPartFn = () => - Promise.reject(new Error('always fails')) + Promise.reject(new TypeError('always fails')) await expect( uploadParts({ @@ -103,6 +155,32 @@ describe('uploadParts', () => { ).rejects.toThrow('always fails') }) + it('preserves the originating error when sibling workers abort', async () => { + const uploadPart: UploadPartFn = ({part, signal}) => { + if (part.partNumber === 1) { + return new Promise((_resolve, reject) => { + signal.addEventListener('abort', () => reject(new AbortError()), { + once: true, + }) + }) + } + return Promise.reject(new Error('part upload failed')) + } + + await expect( + uploadParts({ + parts: parts.slice(0, 2), + reader: fakeReader(), + uploadPart, + totalBytes: 20, + setProgress: () => {}, + signal: new AbortController().signal, + concurrency: 2, + maxAttempts: 1, + }), + ).rejects.toThrow('part upload failed') + }) + it('reports progress that reaches 1 when all parts complete', async () => { const progress: number[] = [] const uploadPart: UploadPartFn = ({part, chunk, onProgress}) => { diff --git a/src/lib/media/video/multipart/uploadParts.ts b/src/lib/media/video/multipart/uploadParts.ts index ca7bcd2844..cda502fb54 100644 --- a/src/lib/media/video/multipart/uploadParts.ts +++ b/src/lib/media/video/multipart/uploadParts.ts @@ -7,6 +7,7 @@ import { type PartUploadResult, type UploadPartFn, } from './types' +import {delay, isRetryableMultipartError} from './utils' /** * Uploads every part with a concurrency cap and per-part retry, aggregating @@ -78,10 +79,15 @@ export async function uploadParts({ }), ) signal.removeEventListener('abort', abortWorkers) - const failure = settled.find( + const failures = settled.filter( (result): result is PromiseRejectedResult => result.status === 'rejected', ) if (signal.aborted) throw new AbortError() + // A sibling worker aborted after the first failure can settle earlier in + // array order. Preserve the originating error for fallback and telemetry. + const failure = + failures.find(result => !(result.reason instanceof AbortError)) ?? + failures[0] if (failure) throw failure.reason return results } @@ -113,6 +119,7 @@ async function uploadPartWithRetry({ throw new AbortError() } lastError = err + if (!isRetryableMultipartError(err)) throw err if (attempt < maxAttempts) { await delay(500 * 2 ** (attempt - 1), signal) } @@ -120,17 +127,3 @@ async function uploadPartWithRetry({ } throw lastError } - -function delay(ms: number, signal: AbortSignal) { - return new Promise((resolve, reject) => { - const timer = setTimeout(() => { - signal.removeEventListener('abort', onAbort) - resolve() - }, ms) - function onAbort() { - clearTimeout(timer) - reject(new AbortError()) - } - signal.addEventListener('abort', onAbort, {once: true}) - }) -} diff --git a/src/lib/media/video/multipart/utils.ts b/src/lib/media/video/multipart/utils.ts new file mode 100644 index 0000000000..4184ab5666 --- /dev/null +++ b/src/lib/media/video/multipart/utils.ts @@ -0,0 +1,27 @@ +import {AbortError} from '#/lib/async/cancelable' +import {isRetryableHttpStatus} from '#/lib/strings/errors' +import {MultipartUploadError} from './api' + +export function isRetryableMultipartError(err: unknown) { + return ( + err instanceof TypeError || + (err instanceof MultipartUploadError && + (err.error === 'ServiceOverloaded' || + err.status === undefined || + isRetryableHttpStatus(err.status))) + ) +} + +export function delay(ms: number, signal: AbortSignal) { + return new Promise((resolve, reject) => { + const timer = setTimeout(() => { + signal.removeEventListener('abort', onAbort) + resolve() + }, ms) + function onAbort() { + clearTimeout(timer) + reject(new AbortError()) + } + signal.addEventListener('abort', onAbort, {once: true}) + }) +} diff --git a/src/lib/strings/errors.ts b/src/lib/strings/errors.ts index 994c91515b..11e7c11362 100644 --- a/src/lib/strings/errors.ts +++ b/src/lib/strings/errors.ts @@ -88,6 +88,10 @@ export function isCancelledError(e: unknown) { // TODO Replace this with error.shouldRetry() when available. -dsb const RETRYABLE_ERRORS = [408, 425, 429, 500, 502, 503, 504, 522, 524] -export function shouldRetryError(e: unknown) { - return e instanceof XRPCError && RETRYABLE_ERRORS.includes(e.status) +export function isRetryableHttpStatus(status: number) { + return RETRYABLE_ERRORS.includes(status) +} + +export function shouldRetryError(e: unknown) { + return e instanceof XRPCError && isRetryableHttpStatus(e.status) } diff --git a/src/locale/i18n.ts b/src/locale/i18n.ts index 42041ca9a4..3238cf5468 100644 --- a/src/locale/i18n.ts +++ b/src/locale/i18n.ts @@ -69,7 +69,9 @@ export async function dynamicActivate(locale: AppLanguage) { import('date-fns/locale/es').then(m => m.es), import('@formatjs/intl-pluralrules/locale-data/an.js'), import('@formatjs/intl-numberformat/locale-data/an.js'), - import('@formatjs/intl-displaynames/locale-data/an.js'), + // Aragonese locale data is missing + // see: https://github.com/bluesky-social/social-app/pull/11327 + import('@formatjs/intl-displaynames/locale-data/es.js'), ]) return dateLocale } diff --git a/src/locale/locales/an/messages.po b/src/locale/locales/an/messages.po index 088cd770ee..38e2e44bde 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Aragonese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(tien conteniu incrustau)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# horas}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# me-fa-goyo} other {# me-fa-goyos}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} seguindo" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "No se puede ninviar mensaches a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# elemento no leyiu} other {# elementos msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {seguindo} other {seguindo}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {citas}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicaciรณn} other {republicacions}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 dรญas" msgid "7 days" msgstr "7 dรญas" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Accesibilidat" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Achustes d'accesibilidat" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Cuenta silenciada per lista" msgid "Account options" msgstr "Opcions de cuenta" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Cuenta sacada de l'acceso rรกpido" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Anyadir texto alternativo (opcional)" msgid "Add another account" msgstr "Anyadir una atra cuenta" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Anyadir una atra publicaciรณn" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Anyade esta canal a las tuyas canals" msgid "Add to lists" msgstr "Anyadir a listas" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Adulto" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Toz" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Toz los idiomas" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Totas las tuyas canals alzadas, en un solo puesto." @@ -1560,7 +1511,7 @@ msgstr "Permitir acceso a mensaches directos" msgid "Already have a code?" msgstr "Ya tiens un codigo?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "Un codigo de verificaciรณn s'ha ninviau a {0}. Escribe aquรญ ixe codigo. msgid "An error has occurred" msgstr "I ha habiu una error" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "I ha habiu una error" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "I ha habiu una error en chenerar lo suyo paquet d'inicio. Quiers intentar-lo de nuevo?" @@ -1640,11 +1591,11 @@ msgstr "I ha habiu una error en chenerar lo suyo paquet d'inicio. Quiers intenta msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "I ha habiu una error en cargar lo video. Per favor torne a intentar-lo." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "I ha habiu una error mientres cargaba lo video. Per favor torne a intentar-lo." @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Un problema no incluyiu en estas opcions" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "I ha habiu un problema mientres intentaba ubrir lo chat." +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Las claus d'aplicaciรณn han de tener a lo menos 4 carรกcters" msgid "App passwords" msgstr "Claus d'aplicaciรณn" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Claus de l'app" @@ -1891,8 +1838,8 @@ msgstr "Apelar esta decisiรณn" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archivau dende {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Publicaciรณn archivada" @@ -1980,7 +1927,7 @@ msgstr "Yes seguro que deseyas sacar esto d'as tuyas canals?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Seguro que quiers eliminar esta publicaciรณn?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "Autorreproducir videos y GIFs" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Antes de crear un paquet d'inicio has de verificar lo tuyo correu." @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "Aniversario" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Blocau" msgid "Blocked accounts" msgstr "Cuentas blocadas" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cuentas blocadas" @@ -2282,7 +2244,7 @@ msgstr "Las cuentas blocadas no podrรกn responder en os tuyos filos, mencionar-t msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Las cuentas blocadas no podrรกn responder en os tuyos filos, mencionar-te ni interactuar con tu de garra traza. No veyerรกs lo suyo conteniu y no podrรกn veyer lo tuyo." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Si blocas un etiquetador encara podrรกn seguir aplicando etiquetas a la tuya cuenta." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no puede confirmar l'autenticidat d'a data declarada." @@ -2330,7 +2293,7 @@ msgstr "Bluesky ye un ret ubierto an que puez triar lo furnidor d'aloch. Si yes msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky ye un ret ubierto an que puez trigar lo tuyo propio proveidor. Si yes nuevo aquรญ, te recomendamos que te quedes con a opciรณn per defecto Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky ye millor con amigos!" @@ -2358,7 +2321,7 @@ msgstr "Condicions d'o servicio de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky triarรก un conchunto de cuentas recomendadas de personas en o suyo ret." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Revisar mas canals" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Explorar mas sucherencias" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Explora mas sucherencias" @@ -2425,24 +2388,25 @@ msgstr "Explora mas sucherencias" msgid "Browse other feeds" msgstr "Explorar atras canals" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Explora las publicacions sobre {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Explora les publicacions etiquetades amb {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Explora lo paquet d'inicio {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Explorar las publicacions d'o tema {displayName}" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Per {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Per <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "En crear una cuenta, aceptas los <0>Termins de Servicio y la <1>Poli msgid "By creating an account you agree to the <0>Terms of Service." msgstr "En crear una cuenta, acceptas los <0>Termins de Servicio." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Camera" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Cancelar la reactivaciรณn y zarrar la sesiรณn" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancelar busqueda" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat silenciau" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Achustes de chat" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat no silenciau" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "Triar un metodo de verificaciรณn de dominio" msgid "Choose Feeds" msgstr "Triar canals" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Triar pa yo" @@ -2854,7 +2819,7 @@ msgstr "Trรญar chent" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Trรญa esta color como lo tuyo avatar" @@ -2879,7 +2844,7 @@ msgstr "Trรญa la tuya propia linia temporal! Las canals creadas per la comunidat msgid "Choose your password" msgstr "Trรญa la tuya clau" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Lo tuyo identificador" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Fe clic pa reintentar mensache fallido" @@ -3003,7 +2968,7 @@ msgstr "Fe clic pa reintentar mensache fallido" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Fe clic pa reintentar mensache fallido" msgid "Close" msgstr "Zarrar" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Zarrar dialogo activo" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "Zarrar este dialogo" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Zarra l'alerta d'actualizaciรณn de clau" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modo de color" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Historietas" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directrices d'a comunidat" @@ -3141,7 +3106,7 @@ msgstr "Directrices d'a comunidat" msgid "Complete onboarding and start using your account" msgstr "Completa la incorporaciรณn y prencipia a usar la tuya cuenta" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa lo desafรญo" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Redactar una nueva publicaciรณn" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "Redactar la respuesta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Comprimindo video..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contactar con soporte" @@ -3253,7 +3218,7 @@ msgstr "Conteniu y multimedia" msgid "Content and media" msgstr "Conteniu y multimedia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Conteniu y multimedia" @@ -3265,10 +3230,6 @@ msgstr "Conteniu Blocau" msgid "Content filters" msgstr "Filtros de conteniu" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Conteniu de tot lo ret que te podrรญa fer goyo." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Advertencia de conteniu" msgid "Content warnings" msgstr "Advertencias de conteniu" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fondo d'o menรบ contextual, faga clic pa zarrar lo menรบ." @@ -3302,7 +3263,7 @@ msgstr "Fondo d'o menรบ contextual, faga clic pa zarrar lo menรบ." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Continar filo..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Versiรณn de compilaciรณn copiada a lo portafuellas" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Copiar clau d'aplicaciรณn" msgid "Copy at:// URI" msgstr "Copiar at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copiar DID de l'autor" @@ -3449,10 +3410,10 @@ msgstr "Copiar vinclo" msgid "Copy link to list" msgstr "Copia lo vinclo a la lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar lo vinclo a la publicaciรณn" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "Copiar texto d'o mensache" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copiar at:// URI d'a publicaciรณn" @@ -3490,7 +3451,7 @@ msgstr "Copiar valor de rechistro TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politica de dreitos d'autor" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "No s'ha puesto salir d'este chat " -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "No s'ha puesto cargar esta canal" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "No s'ha puesto silenciar lo chat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crear" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Crear un codigo QR pa pack d'inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Crea un paquet d'inicio" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crea un paquet d'inicio pa yo" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Crear cuenta" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Crea una cuenta" @@ -3666,15 +3627,15 @@ msgstr "Crea una cuenta" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Crea un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Crea-ne unatro" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "Cultura" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Fosco" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Fosco" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema fosco" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Per Defecto" @@ -3894,7 +3855,7 @@ msgstr "Borrar la mรญa cuenta" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Borrar una publicaciรณn" @@ -3988,7 +3949,7 @@ msgstr "Achustar quรญ puede interactuar con esta publicaciรณn" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Tenue" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "Desactivau" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "Descartar cambios?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Descartar borrador?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Descartar la publicaciรณn?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Privar que las aplicacions amuestren la mรญa cuenta a los usuarios desconnectaus" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Privar que las aplicacions amuestren la mรญa cuenta a los usuarios desco msgid "Discover new custom feeds" msgstr "Descubre nuevas canals personalizadas" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descubrir nuevas canals" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Descartar" @@ -4103,28 +4064,28 @@ msgstr "Descartar" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Descartar error" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Descartar la guรญa d'introducciรณn" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Amagar esta secciรณn" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "Amostrar insignias de texto alternativo mas grans" msgid "Display name" msgstr "Amostrar lo nombre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "Listo" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Dople toque pa zarrar lo dialogo" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Toca dos vegadas pa indicar que te fa goyo" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Editar la imachen" msgid "Edit interaction settings" msgstr "Editar achustes d'interacciรณn" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar las mรญas noticias" @@ -4406,6 +4368,11 @@ msgstr "Editar las mรญas noticias" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar Personas" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Editar quรญ puede responder" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Edita lo tuyo paquet d'inicio" @@ -4500,8 +4467,8 @@ msgstr "Incrustar codigo HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incrustar publicaciรณn" @@ -4509,7 +4476,7 @@ msgstr "Incrustar publicaciรณn" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta esta publicaciรณn en o tuyo puesto web. Simplament copia lo siguient fragmento y apega-lo en o codigo HTML d'o tuyo puesto web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Reproductor de video incrustau" @@ -4533,7 +4500,7 @@ msgstr "Activar conteniu adulto" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "Activar fichers multimedia externos" msgid "Enable media players for" msgstr "Reproducir multimedia de" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "Activar los videos populares en Discover d'a tuya canal" msgid "Enabled" msgstr "Activau" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fin de noticias" @@ -4608,7 +4576,7 @@ msgstr "Escribe una parola u etiqueta" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Dentrar en pantalla completa" @@ -4650,11 +4618,11 @@ msgstr "Escribe lo tuyo identificador y clau" msgid "Enters full screen" msgstr "Cambia a pantalla completa" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" @@ -4684,7 +4652,7 @@ msgstr "I ha habiu una error en alzar lo fichero" msgid "Error receiving captcha response." msgstr "Error en recibir la respuesta d'o captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "Toz pueden responder" msgid "Everybody can reply to this post." msgstr "Toz pueden responder a esta publicaciรณn." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Toz" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Toz" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "Excluyir a los usuarios que sigues" msgid "Excludes users you follow" msgstr "Excluye a los usuarios que sigues" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Salir de pantalla completa" @@ -4755,11 +4723,11 @@ msgstr "Expandir lista d'usuarios" msgid "Expand or collapse the full post you are replying to" msgstr "Expandir u comprimir la publicaciรณn completa a la cual yes respondendo" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Ixampla u reduce lo texto d'a publicaciรณn" @@ -4802,15 +4770,15 @@ msgstr "Fichers multimedia explicitos u potencialment perturbadors." msgid "Explicit sexual images." msgstr "Imรกchens sexuals explicitas." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "Fichers multimedia externos" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Ye posible que fichers multimedia externos permitan que atros puestos recopilen datos sobre tu y lo tuyo dispositivo. No se ninvia u solicita garra tipo d'informaciรณn dica que pretes lo botรณn de \"reproducir\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Fichers multimedia externos" @@ -4886,7 +4854,7 @@ msgstr "No s'ha puesto cambiar l'identificador. Torna-lo a intentar." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Error en cargar las preferencias de canals" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Error en cargar las canals sucheridas" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Error en cargar las sucherencias de seguimiento" @@ -5027,12 +4996,12 @@ msgstr "Error en cargar las sucherencias de seguimiento" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Canal" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menรบ d'a canal" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Canals actualizadas!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Canals que creyemos que te farรกn goyo." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "Fichero alzau exitosament!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtrar d'as canals" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtrar la busqueda per idioma" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrar la busqueda per idioma (actualment: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "Buscar cuentas pa seguir" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Seguir {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Seguir {handle}" @@ -5453,11 +5406,11 @@ msgstr "Seguir {handle}" msgid "Follow 10 accounts" msgstr "Sigue 10 cuentas" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Sigue 7 cuentas" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Seguidors de @{0} que conoixes" @@ -5544,7 +5497,7 @@ msgstr "Seguidors que conoixes" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Seguindo {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Seguindo {handle}" @@ -5578,21 +5531,21 @@ msgstr "Seguindo {handle}" msgid "Following feed preferences" msgstr "Preferencias d'a canal de seguimiento" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencias d'a canal de Seguimiento" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Te sigue" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Fuent" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Grandaria de fuent" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Per razons de seguranza, no podrรกs tornar-lo a veyer. Si pierdes esta clau d'aplicaciรณn, habrรกs de chenerar-ne una de nueva." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Pa una millor experiencia, recomendamos que uses la fuent d'o tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "Pa cutio" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "Has olbidau la tuya clau?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Chenera un paquet d'inicio" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "Obtiene aduya" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Da-le una cara a lo tuyo perfil" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Etiqueta" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Tiens problemas?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "Aduya" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Aduya a que las personas sepan que no yes un bot puyando una foto u creando un avatar." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Amagau" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Amagau per la tuya configuraciรณn de moderaciรณn." @@ -6148,9 +6102,10 @@ msgstr "Amagau per la tuya configuraciรณn de moderaciรณn." msgid "Hidden list" msgstr "Lista amagada" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Lista amagada" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Amagar" @@ -6198,7 +6154,7 @@ msgstr "Amagar respuesta pa toz" msgid "Hide reply for me" msgstr "Amagar respuesta pa yo" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "Amagar esta respuesta?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Amaga las tendencias" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Quiers amagar las tendencias?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Quiers amagar los videos en tendencias?" @@ -6240,7 +6198,7 @@ msgstr "Amagar lista d'usuarios" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Amaga lo conteniu" @@ -6293,8 +6251,8 @@ msgstr "Pareixe que somos tenendo problemas pa cargar estes datos. Mira debaixo msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Aguarte! Somos dando acceso a videos gradualment, y encara yes en a lista d'espera. Torna a consultar luego!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si deseyas cambiar la tuya clau, te ninviaremos un codigo pa verificar que esta ye la tuya cuenta." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Nombre d'usuario u clau no validos" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "Codigo d'invitaciรณn" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "No s'accepta lo codigo d'invitaciรณn. Compreba que l'has escrito correctament y torna-lo a intentar." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Nomรกs yes tu per agora! Anyade mas personas a lo tuyo paquet d'inicio buscando alto." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID de fayena: {0}" @@ -6816,8 +6766,8 @@ msgstr "Une-te a la conversa" msgid "Journalism" msgstr "Periodismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etiquetado per {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etiquetau per l'autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiquetas" @@ -6852,7 +6802,7 @@ msgstr "S'han anyadiu las etiquetas" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Las etiquetas son anotacions sobre usuarios y conteniu. Pueden usar-se pa amagar, advertir y categorizar lo ret." @@ -6864,7 +6814,7 @@ msgstr "Etiquetas en a tuya cuenta" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Achustes d'Idiomas" @@ -6874,7 +6824,7 @@ msgstr "Achustes d'Idiomas" msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Mas gran" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Zaguero" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Aprender-ne mas" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Obtiene mas informaciรณn sobre cรณmo autoalochar la tuya PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Mas informaciรณn sobre la moderaciรณn que s'ha aplicau en esta publicaciรณn" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Aprender mas sobre esta advertencia" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Aprender-ne mas." @@ -6993,8 +6943,8 @@ msgstr "Deixar" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Salir de Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "quedan." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Deixa-me triar" @@ -7057,7 +7007,7 @@ msgstr "Imos!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Liuchero" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Liuchero" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Me fa goyo" @@ -7076,7 +7026,7 @@ msgstr "Me fa goyo" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Me fa goyo ({0, plural, one {# me-fa-goyo} other {# me-fa-goyos}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Da-le ยซme fa goyoยป a 10 publicacions" @@ -7085,7 +7035,7 @@ msgstr "Da-le ยซme fa goyoยป a 10 publicacions" msgid "Like 10 posts to train the Discover feed" msgstr "Da-le ยซme fa goyoยป a 10 publicacions pa entrenar la canal de descubrimiento" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Dar ยซme fa goyoยป a esta noticia" @@ -7093,8 +7043,8 @@ msgstr "Dar ยซme fa goyoยป a esta noticia" msgid "Like this labeler" msgstr "Como este etiquetador" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Le ha feito goyo a" @@ -7111,27 +7061,45 @@ msgstr "Le ha feito goyo a" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Le fa goyo a {0, plural, one {# usuario} other {# usuarios}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Le fa goyo a {likeCount, plural, one {# usuario} other {# usuarios}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Me fa goyo" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Me fa goyo en esta publicaciรณn" @@ -7144,7 +7112,7 @@ msgstr "Linial" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "La lista ya no ye silenciada" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Cargar-ne mas" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Cargar mas canals sucheridas" @@ -7292,8 +7260,8 @@ msgstr "Cargar mas canals sucheridas" msgid "Load new notifications" msgstr "Cargar notificacions nuevas" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Rechistro" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Fe un pa yo" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Marcar como leyiu" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimedia" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Fichers multipedia que pueden estar perturbadors u no adecuaus pa ciertas audiencias." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "usuarios mencionaus" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mencions" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mensache eliminau" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mensaches" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderaciรณn" @@ -7636,7 +7608,7 @@ msgstr "Lista de moderaciรณn actualizada" msgid "Moderation lists" msgstr "Listas de moderaciรณn" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de moderaciรณn" @@ -7645,7 +7617,7 @@ msgstr "Listas de moderaciรณn" msgid "moderation settings" msgstr "achustes de moderaciรณn" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Estaus de moderaciรณn" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "Cuentas silenciadas" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cuentas silenciadas" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "No importa, crea un identificador per yo" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nuevo" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nuevo chat" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "Nueva lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Nueva clau" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nueva publicaciรณn" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Respuestas nuevas primer" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Noticias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Imachen nueva" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "Encara sin claus de l'aplicaciรณn" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "No se troboron canals. Mira de buscar bella cosa mas." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Encara sini \"me-fa-goyos\"" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "Ya no sigues a {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "No i hai mensaches encara" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "Dengรบn, fueras de l'autor, puede citar esta publicaciรณn." msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "No i hai citas encara" @@ -8198,11 +8190,7 @@ msgstr "No i hai citas encara" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "Sin resultau" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sin resultaus" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "No s'ha trobau resultaus" msgid "No results found for \"{query}\"" msgstr "No s'ha trobau resultaus pa \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "No gracias" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "Dengรบn" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Dengรบn ha dau \"me fa goyo\" a esto encara. Talment habrรญas d'estar lo primero!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Dengรบn ha citau esto encara. Talment habrรญas d'estar lo primero!" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Desnudez no sexual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "No trobau" @@ -8333,7 +8325,7 @@ msgstr "Nota sobre compartir" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky ye un ret ubierto y publico. Esta configuraciรณn nomรกs limita la visibilidat d'o tuyo conteniu en l'aplicaciรณn y lo puesto web de Bluesky, y ye posible que atras aplicacions no respecten esta configuraciรณn. Atras aplicacions y puestos web pueden seguir amostrando lo tuyo conteniu a los usuarios que haigan zarrau sesiรณn." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Achustes de notificaciรณn" @@ -8353,11 +8345,12 @@ msgstr "Achustes de notificaciรณn" msgid "Notification sounds" msgstr "Sons de notificaciรณn" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Quรฉ problema!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "D'acuerdo" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Ye bien" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Reiniciando" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Falta lo texto alternativo d'uno u mas GIFs." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Falta lo texto alternativo en una u cuantas imรกchens." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Falta lo texto alternativo d'uno u mas videos." @@ -8471,7 +8466,7 @@ msgstr "Nomรกs {0} puede responder." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Nomรกs s'admiten fichers WebVTT (.vtt)" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ui!" @@ -8544,7 +8543,7 @@ msgstr "Ui!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Ubrir lo creyador de avatares" @@ -8570,21 +8569,22 @@ msgstr "Ubrir opcions de conversaciรณn" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Ubrir lo menรบ lateral" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Ubrir selector d'emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Ubrir la pantalla d'informaciรณn d'a canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Ubrir menรบ d'opcions d'a canal" @@ -8627,7 +8627,7 @@ msgstr "Ubrir la pachina de debug d'a moderaciรณn" msgid "Open muted words and tags settings" msgstr "Ubrir achustes de parolas y etiquetas silenciadas" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "Ubre detalles adicionals pa una dentrada de depuraciรณn" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Ubrir camera d'o dispositivo" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Ubre lo fluxo pa crear una nueva cuenta de Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Ubre lo fluxo pa iniciar sesiรณn en a tuya cuenta existent de Bluesky" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Clau actualizada!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausar" @@ -8925,12 +8925,12 @@ msgstr "Pausar" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausar video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personas" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personas seguidas per @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personas seguindo a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Imรกchens destinadas a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Clavar la canal" @@ -9034,7 +9034,7 @@ msgstr "Clavar la canal" msgid "Pin to home" msgstr "Clavar en inicio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Clavar en inicio" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Clavau" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} clavau en Inicio" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Las tuyas canals clavadas" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Reproducir" @@ -9076,8 +9076,8 @@ msgstr "Reproducir {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reproducir video" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Per favor, trรญa lo tuyo identificador." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Per favor, trรญa la tuya clau." @@ -9122,7 +9122,7 @@ msgstr "Per favor, trรญa la tuya clau." msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." msgstr "" -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Per favor, completa la verificaciรณn CAPTCHA." @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Escribe lo tuyo correu electronico." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politica" @@ -9269,7 +9269,7 @@ msgstr "Politica" msgid "Porn" msgstr "Pornografรญa" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Publicar" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicar-lo tot" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Publicaciรณn per {0}" @@ -9340,7 +9340,7 @@ msgstr "Publicaciรณn amagada per tu" msgid "Post interaction settings" msgstr "Achustes d'interacciรณn d'a publicaciรณn" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Configuraciรณn d'interacciรณn d'a publicaciรณn" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "Publicaciรณn clavada" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "Publicaciรณn desclavada" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Publicacions" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Las publicacions pueden estar silenciadas seguntes lo suyo texto, las su msgid "Posts hidden" msgstr "Publicacions amagadas" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Privacidat" msgid "Privacy and security" msgstr "Privacidat y seguranza" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidat y seguranza" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Politica de privacidat" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Procesando video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Listas publicas y compartibles pa blocar u silenciar a usuarios de vez." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Citas deshabilitadas" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citas" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citas d'esta publicaciรณn" @@ -9647,7 +9650,7 @@ msgstr "Reactivar la tuya cuenta" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Amostrar-ne menos" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Amostrar-ne mas" @@ -9687,11 +9690,11 @@ msgstr "Leyer las Politicas de Privacidat de Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Leyer los Termins y Condicions de Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomendacions" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconnectar" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Recargar conversacions" @@ -9766,7 +9765,7 @@ msgstr "Recargar conversacions" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Eliminar" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Borrar la cuenta" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Sacar d'as mรญas canals" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Borrar de l'acceso rapido?" @@ -9862,7 +9861,7 @@ msgstr "Borrar de l'acceso rapido?" msgid "Remove from saved feeds" msgstr "Sacar d'as canals alzadas" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Eliminar la imachen" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Eliminau d'a lista" msgid "Removed from saved feeds" msgstr "Eliminada d'as mรญas canals alzadas" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respuestas" @@ -10037,7 +10037,7 @@ msgstr "Las respuestas en esta publicaciรณn son deshabilitadas." msgid "Reply" msgstr "Responder" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -10098,8 +10098,8 @@ msgstr "Denunciar conversaciรณn" msgid "Report dialog" msgstr "Finestra de denuncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Denunciar canal" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Tornau a publicar per tu" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Republicacions d'esta publicaciรณn" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Reintenta la zaguera acciรณn, que presentรณ una error" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Tornar ta la pachina d'inicio" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Tornar ta la pachina anterior" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Alzar cambios" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Alzar codigo QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Alzar en as mรญas canals" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Canals alzadas" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Alzau en as tuyas canals" @@ -10520,8 +10520,8 @@ msgstr "Alzau en as tuyas canals" msgid "Say hello!" msgstr "Di ola!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Ciencia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Desplazar enta alto" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Buscar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Mirar en as publicacions de @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Buscar canals que quieras sucherir a atros." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Buscar GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "Veyer publicacions sobre #{tag} per usuario" msgid "See jobs at Bluesky" msgstr "Veyer emplegos en Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Control eslisant de busqueda. Fe servir las teclas de flecha mirar entabant y entazaga, y espacio pa reproducir/pausa" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Trรญa una color" @@ -10764,11 +10769,11 @@ msgstr "Triar cuenta" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Trรญa un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Trรญa un emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Triar GIF" msgid "Select GIF \"{0}\"" msgstr "Triar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Triar lo emoji {emojiName} como lo tuyo avatar" @@ -10945,7 +10951,8 @@ msgstr "Ninviar mensache" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Ninviar publicaciรณn a..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Ninviar correu de verificaciรณn" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Ninviar vรญa mensache directo" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Estableix lo correu electronico pa restablir la clau" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Achustes" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Compartir de totas trazas" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Finestra pa compartir vinclo" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Compartir codigo QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Comparte esta canal" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Compartir este paquet d'inicio" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparte este paquet d'inicio y aduya a las personas a unir-se a la tuya comunidat en Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Prebador de Preferencias Compartidas" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Veyer" msgid "Show alt text" msgstr "Veyer texto alternativo" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Veyer de totas trazas" @@ -11274,9 +11281,9 @@ msgstr "Amostrar lista de totas trazas" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Veyer mas" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Amostrar advertencia y filtrar d'as canals" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Amuestra informaciรณn sobre cuรกn se va crear esta publicaciรณn" @@ -11341,15 +11348,15 @@ msgstr "Amuestra informaciรณn sobre cuรกn se va crear esta publicaciรณn" msgid "Shows other accounts you can switch to" msgstr "Amuestra atras cuentas a las cuals puez cambiar" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Amuestra lo conteniu" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Amuestra lo conteniu" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Salir?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Se requiere iniciar sesiรณn" @@ -11469,7 +11476,7 @@ msgstr "Blincar" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Mas chicot" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Belatras canals que podrรญan fer-te goyo" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "I ha habiu una error, per favor intenta de nuevo" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "I ha habiu una error. Intenta-lo atra vegada." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Bella cosa va mal? Fe-nos-lo saber." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Esportes" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Iniciar un nuevo chat" @@ -11682,17 +11689,17 @@ msgstr "Empecipia a anyadir chent" msgid "Start adding people!" msgstr "Empecipia a anyadir chent!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Iniciar chat con {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paquet d'inicio" @@ -11715,12 +11722,16 @@ msgstr "Paquet d'inicio creau per tu" msgid "Starter pack is invalid" msgstr "Lo paquet d'inicio ye invalido" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Paquez d'inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Los paquez d'inicio te permiten compartir facilment las tuyas canals y personas favoritas con os tuyos amigos." @@ -11728,7 +11739,7 @@ msgstr "Los paquez d'inicio te permiten compartir facilment las tuyas canals y p msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Pachina d'estau" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Paso {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "Almagacenamiento limpio, te fa falta reiniciar l'aplicaciรณn agora." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Libro de cuentos" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscribi-te a @{0} pa usar estas etiquetas:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Sucheriu pa tu" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Cambiar a {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Toca pa descartar" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Fayena completa - seguindo 10 cuentas!" msgid "Task complete - 10 likes!" msgstr "Fayena completada - 10 \"me fa goyo\"!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Amuestra a lo nuestro algorismo lo que te fa goyo" @@ -12060,7 +12073,7 @@ msgstr "Condicions" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "No s'ha puesto trobar ixe paquet d'inicio." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Ixo ye tot, amigos!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Ixo ye tot!" @@ -12216,7 +12229,7 @@ msgstr "Pareix que lo servidor ye experimentando problemas. Torna-lo a intentar msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Lo paquet d'inicio que intentas veyer ye invalido. Puez eliminar este paquet d'inicio en o suyo puesto." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "Lo codigo de verificaciรณn que has proporcionau ye invalido. Per favor, msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "I ha habiu un problema en contactar con o servidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "I ha habiu un problema en contactar con o servidor, compreba la tuya connexiรณn y torna-lo a intentar." @@ -12283,8 +12296,8 @@ msgstr "I ha habiu un problema en contactar con o servidor, compreba la tuya con msgid "There was an issue fetching notifications. Tap here to try again." msgstr "I ha habiu un problema en obtener las notificacions. Toca aquรญ pa intentar de nuevo." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "I ha habiu un problema en obtener las publicacions. Toca aquรญ pa intentar de nuevo." @@ -12309,7 +12322,7 @@ msgstr "I ha habiu un problema trayendo la tuya informaciรณn de servicio" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "I ha habiu un problema eliminando esta canal. Compreba la tuya connexiรณn y torna-lo a intentar." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Estes achustes nomรกs afectan a la canal \"Seguindo\"" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Esta {screenDescription} ha estau marcada:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Esta cuenta ha solicitau que los usuarios inicien sesiรณn pa veyer lo suyo perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Esta canal ye vueda! Ye posible que amenestas seguir a mas usuarios u achustar la configuraciรณn d'idioma." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Esta canal ye vueda." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Este identificador ye reservau. Intenta-lo con una diferent." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Esta etiqueta ye estada aplicada per tu." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este etiquetador no ha declarau quรฉ etiquetas publica y puede que no sรญa activo." @@ -12621,13 +12634,13 @@ msgstr "Esta lista ye vueda." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta publicaciรณn diz haber estau creada lo <0>{0}, pero la hemos vista en Bluesky lo <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Esta publicaciรณn diz haber estau creada lo <0>{0}, pero la hemos vi msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Esta publicaciรณn tiene un tipo de threadgate desconoixiu. Ye posible que la tuya aplicaciรณn siga obsoleta." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta publicaciรณn serรก amagada d'as canals y filos. Esto no se puede desfer." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "L'autor d'esta publicaciรณn ha deshabilitau las citas de publicacions." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Este usuario no tiene seguidors." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Este usuario t'ha blocau. No puez veyer lo suyo conteniu." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Este usuario ye incluyiu en a lista <0>{0} que has silenciau." msgid "This user is new here. Press for more info about when they joined." msgstr "Este usuario ye nuevo aquรญ. Presiona pa mas informaciรณn sobre cuรกn s'uniรณ." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Este usuario no sigue a dengรบn." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Esto eliminarรก @{0} d'a lista d'acceso rapido." @@ -12786,7 +12801,7 @@ msgstr "Preferencias de filos" msgid "Threaded" msgstr "En filos" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferencias de filos" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Alto" @@ -12858,7 +12873,7 @@ msgstr "Alto" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tema" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendencia" @@ -12902,13 +12919,15 @@ msgstr "Tendencia" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Vรญdeos populars" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Desblocar cuenta?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Deixar de seguir a {0}" msgid "Unfollow account" msgstr "Deixar de seguir esta cuenta" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Deixa de seguir a l'usuario" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Ya no me fa goyo" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "Deixar de silenciar filo" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Deixar de silenciar video" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Desclavar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desclavar la canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Desclavar d'inicio" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Desclavar lista de moderaciรณn" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} ye desclavau d'Inicio" @@ -13258,11 +13279,11 @@ msgstr "Dar-se de baixa d'este etiquetador" msgid "Unsubscribed from list" msgstr "Dau de baixa d'a lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Ha fallau l'actualizaciรณn d'a visibilidat d'a respuesta" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Puya una foto en cuenta" @@ -13355,7 +13376,7 @@ msgstr "Puyar dende los tuyos fichers" msgid "Upload from Library" msgstr "Puyar dende la biblioteca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "Cargando imรกchens..." msgid "Uploading link thumbnail..." msgstr "Cargando thumbnail d'o vinclo..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Cargando video..." @@ -13408,7 +13429,7 @@ msgstr "Fe-lo servir pa iniciar sesiรณn en l'atra app chunto a lo tuyo identific msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "Video" msgid "Video failed to process" msgstr "Lo video no s'ha puesto procesar" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Canal de video" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Video de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videojuegos" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Lo video ye en pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Lo video se ye reproducindo" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video no trobau." @@ -13653,7 +13674,7 @@ msgstr "Video no trobau." msgid "Video settings" msgstr "Configuraciรณn d'o video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video cargau" @@ -13662,17 +13683,17 @@ msgstr "Video cargau" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "Veyer l'avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Veyer lo perfil de {0}" @@ -13724,13 +13745,13 @@ msgstr "Veyer la dentrada d'o blog pa mas detalles" msgid "View debug entry" msgstr "Veyer dentrada de depuraciรณn" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Veyer detalles" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Veyer filo completo" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "Veyer informaciรณn sobre estas etiquetas" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Veyer mas" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Veyer lo servicio de etiquetau proporcionau per @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Veyer usuarios a qui les fa goyo esta canal" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Mirar lo video" @@ -13831,7 +13852,7 @@ msgstr "Veyer las tuyas listas de moderaciรณn" msgid "View your muted accounts" msgstr "Veyer las tuyas cuentas silenciadas" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "Veyer la imachen completa" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Veyer lo video en o modo immersivo" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Somos tenendo problemas de ret, intenta de nuevo" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "Vai, no hemos puesto resolver esta lista. Si esto persiste, per favor co msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Vai, pero no hemos puesto cargar las tuyas parolas silenciadas en este momento. Per favor, intenta de nuevo." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Vai! La publicaciรณn a la cual yes respondendo ha estau eliminada." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Quรฉ fas?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Vai!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Redacta una publicaciรณn" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Redacta una respuesta" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "No tiens permiso pa puyar videos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Agora puez iniciar sesiรณn con a tuya nueva clau." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Puez actualizar-lo mas enta debant dende la tuya configuraciรณn." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Has alcanzau temporalment lo limite de puyadas de videos. Torna a intentar-lo mas enta debant." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Encara no has creau un paquet d'inicio!" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Nomรกs puez anyadir dica 3 canals" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Has de seguir a lo menos a siet personas mas pa chenerar un paquet d'inicio." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Malas que remates de crear la tuya cuenta podrรกs seguir usuarios y canals sucheridas!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Prencipiarรกs a seguir a los usuarios sucherius malas que remates de crear la tuya cuenta!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Has harribau a la fin d'a tuya canal! Troba mas cuentas pa seguir." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus videos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Ya has visto toz los videos que i heba. Y si te descansas una mica?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "La tuya cuenta" @@ -14835,11 +14861,11 @@ msgstr "La tuya cuenta ye estada suspendida" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "La tuya cuenta encara no tiene prou antiguidat como pa puyar videos. Torna a intentar-lo mas enta debant." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Lo tuyo correu electronico pareixe no estar valido." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "La tuya ha de tener a lo menos 8 carรกcters." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Lo tuyo perfil, publicacions, canals y listas no tornarรกn a estar visibles pa atros usuarios de Bluesky. Puez reactivar la tuya cuenta dentrando-ie en cualsequier momento." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "La tuya denuncia se ninviarรก a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/ar/messages.po b/src/locale/locales/ar/messages.po index 040140ea0f..da389ca167 100644 --- a/src/locale/locales/ar/messages.po +++ b/src/locale/locales/ar/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ar_SA\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Arabic, Saudi Arabia\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -1560,7 +1511,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1591,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1656,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1838,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1927,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2244,7 @@ msgstr "" msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2256,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2293,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -2425,28 +2388,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2468,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2819,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2844,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2968,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3106,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3218,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3230,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3263,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3585,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3618,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3627,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3659,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3855,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3949,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,28 +4064,28 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4368,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4467,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4476,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4500,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4576,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4618,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4652,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4723,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4854,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +4996,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5497,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "" @@ -6198,7 +6154,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "" msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" @@ -6776,12 +6726,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6766,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6802,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6814,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6824,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6867,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6943,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7007,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7026,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7035,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7043,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7061,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7112,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7260,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7608,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7617,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "" msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8198,11 +8190,7 @@ msgstr "" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8325,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8345,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8466,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8543,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8569,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8627,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8726,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8925,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9076,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "" @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "" @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "" @@ -9269,7 +9269,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9340,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,21 +10703,26 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13376,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13674,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13683,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13745,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13818,8 +13839,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14156,8 @@ msgstr "" msgid "whatโ€™s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "" @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/ast/messages.po b/src/locale/locales/ast/messages.po index 74c36fe75f..8c9e5c8752 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Asturian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(contiรฉn elementos incrustaos)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# hores}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# prรฉstame} other {# prรฉstames}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "Sigue a {following}" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Nun se puen unviar mensaxes a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "{1, plural, one {Sigue a} other {Sigue a}} <0>{0}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {cites}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicaciรณn} other {republicaciones}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 dรญes" msgid "7 days" msgstr "7 dรญes" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Accesibilidรก" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Configuraciรณn d'accesibilidรก" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Quitรณse la cuenta del accesu rรกpidu" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "Amestar otra cuenta" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Amestar otra publicaciรณn" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "Amestar a llistes" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "P'adultos" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Too" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Toles llingรผes" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Tolos feeds que guardesti, nun llugar." @@ -1560,7 +1511,7 @@ msgstr "Permite l'accesu a los mensaxes direutos" msgid "Already have a code?" msgstr "ยฟYรก tienes un cรณdigu?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "Unviรณse un mensaxe a {0}. Inclรบi un cรณdigu de confirmaciรณn que pues msgid "An error has occurred" msgstr "Prodรบxose un error" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Prodรบxose un error" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Prodรบxose un error mentanto se xeneraba'l paquete d'iniciaciรณn. ยฟQuies volver tentalo?" @@ -1640,11 +1591,11 @@ msgstr "Prodรบxose un error mentanto se xeneraba'l paquete d'iniciaciรณn. ยฟQuie msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Prodรบxose un error mentanto se cargaba'l videu. Volvi tentalo dempuรฉs." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Prodรบxose un error mentanto se cargaba'l videu. Volvi tentalo." @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Un problema que nun s'inclรบi nestes opciones" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Prodรบxose un error al tentar d'abrir la charra" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Los nomes de les contraseรฑes d'aplicaciรณn han tener polo menos 4 carรก msgid "App passwords" msgstr "Contraseรฑes d'aplicaciรณn" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contraseรฑes d'aplicaciรณn" @@ -1891,8 +1838,8 @@ msgstr "Apellar esta decisiรณn" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Archivรณse la publicaciรณn" @@ -1980,7 +1927,7 @@ msgstr "ยฟDe xuru que quies quitar esti elementu de los tos feeds?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "ยฟDe xuru que quies escartar esta publicaciรณn?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "Reproducir automรกticamente vรญdeos y GIFs" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Enantes de crear un paquete d'iniciaciรณn, tienes de verificar primero la direiciรณn de corrรฉu." @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "Aniversariu" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Bloquiรณse" msgid "Blocked accounts" msgstr "Cuentes bloquiaes" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cuentes bloquiaes" @@ -2282,7 +2244,7 @@ msgstr "Les cuentes bloquiaes nun puen responder nos tos filos, mentante nin int msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Les cuentes bloquiaes nun puen responder nos tos filos, mentante nin interactuar contigo de nenguna forma. Tampoco vas ver el so contenรญu nin ellos el de to." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "El bloquรฉu nun impide qu'esti etiquetador aplique etiquetes a la to cuenta." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nun pue verificar l'autenticidรก de la data indicada." @@ -2330,7 +2293,7 @@ msgstr "Bluesky ye una rede abierta onde pues escoyer l'agospiador. Si yes desen msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky ye una rede abierta onde pues escoyer el to fornidor. Si ye la primer vegada que tas equรญ, aconseyรกmoste que seleiciones la opciรณn predeterminada de Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "ยกBluesky ye meyor con compaรฑa!" @@ -2358,7 +2321,7 @@ msgstr "Tรฉrminos del serviciu de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Restolar mรกs feeds na pรกxina ยซEsploraciรณnยป" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Restolar mรกs suxerencies" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Restolar mรกs suxerencies na pรกxina ยซEsploraciรณnยป" @@ -2425,24 +2388,25 @@ msgstr "Restolar mรกs suxerencies na pรกxina ยซEsploraciรณnยป" msgid "Browse other feeds" msgstr "Restolar otros feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Por ยซ{0}ยป" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2468,11 @@ msgstr "Al crear una cuenta aceptes los <0>tรฉrminos del serviciu y la <1>po msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Al crear una cuenta aceptes los <0>tรฉrminos del serviciu." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Cรกmara" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Silenciรณse la charra" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Configuraciรณn de la charra" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "La charra dexรณ de tar silenciada" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "" msgid "Choose Feeds" msgstr "Seleiciรณn de feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Escoyer por min" @@ -2854,7 +2819,7 @@ msgstr "Escueyi persones" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2844,7 @@ msgstr "ยกEscueyi les llinies temporales que quieras! Feeds creaos pola comunid msgid "Choose your password" msgstr "Escueyi una contraseรฑa" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "L'identificador" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Calca pa volver unviar el mensaxe que fallรณ" @@ -3003,7 +2968,7 @@ msgstr "Calca pa volver unviar el mensaxe que fallรณ" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Calca pa volver unviar el mensaxe que fallรณ" msgid "Close" msgstr "Zarrar" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Zarrar el diรกlogu activu" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "Zarrar esti diรกlogu" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Mou de color" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Cรณmics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Pautes de la Comunidรก" @@ -3141,7 +3106,7 @@ msgstr "Pautes de la Comunidรก" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa'l retu" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Comprimiendo'l videuโ€ฆ" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3218,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3230,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3263,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Siguir col filuโ€ฆ" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "La versiรณn de la compilaciรณn copiรณse nel cartafueyu" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Copiar la contraseรฑa d'aplicaciรณn" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "Copiar l'enllaz" msgid "Copy link to list" msgstr "Copiar l'enllaz de la llista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar l'enllaz de la publicaciรณn" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "Copiar el testu del mensaxe" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "Copiar el valor de rexistru TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Polรญtica de derechos d'autor" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Nun se pudo colar de la charra" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Nun se pudo cargar el feed" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Nun se pudo silenciar la charra" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crear" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Crear una cuenta" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3627,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Crear un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "Cultura" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Escuru" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Escuru" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Estilu escuru" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "La predeterminada" @@ -3894,7 +3855,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Desaniciar la publicaciรณn" @@ -3988,7 +3949,7 @@ msgstr "Diรกlogu: configura quiรฉn pue interactuar con esta publicaciรณn" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Lleve" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "Desactivรณse" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Escartar" msgid "Discard changes?" msgstr "ยฟQuies escartar los cambeos?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "ยฟQuies escartar el borrador?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "ยฟQuies escartar la publicaciรณn?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descubri feeds nuevos" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,28 +4064,28 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Escartar l'error" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "Amosar los indicadores de testu alternativu mรกs grandes" msgid "Display name" msgstr "Nome visible" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "Fecho" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Editar la imaxe" msgid "Edit interaction settings" msgstr "Editar la configuraciรณn de les interaiciones" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Ediciรณn de los mios feeds" @@ -4406,6 +4368,11 @@ msgstr "Ediciรณn de los mios feeds" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Ediciรณn de les persones" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4467,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incrustar la publicaciรณn" @@ -4509,7 +4476,7 @@ msgstr "Incrustar la publicaciรณn" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta esta publicaciรณn nel to sitiu web. Namรกs copia'l fragmentu de testu siguiente y apiรฉgalu nel cรณdigu HTML del sitiu web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4500,7 @@ msgstr "Activar el contenรญu p'adultos" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "Activar el contenรญu multimedia esternu" msgid "Enable media players for" msgstr "Activar los reproductores multimedia de:" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "Activรณse" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fin del feed" @@ -4608,7 +4576,7 @@ msgstr "Introduz una pallabra o etiqueta" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4618,11 @@ msgstr "Introduz l'identificador y la contraseรฑa de to" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" @@ -4684,7 +4652,7 @@ msgstr "Prodรบxose un error mentanto se guardaba'l ficheru" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "Tol mundu pue responder" msgid "Everybody can reply to this post." msgstr "Tol mundu pue responder a esta publicaciรณn." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Tol mundu" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Tol mundu" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4723,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "Imรกxenes sexuales esplรญcites." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "Contenรญu multimedia esternu" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "El contenรญu multimedia esternu pue permitir que los sitios web recueyan informaciรณn de ti y del presรฉu. Nun s'unvia nin se solicita nenguna informaciรณn hasta que nun primas el botรณn ยซReproducirยป." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferencies del contenรญu multimedia esternu" @@ -4886,7 +4854,7 @@ msgstr "El cambรฉu del identificador fallรณ. Volvi tentalo." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "La carga de les preferencies de los feeds fallรณ" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "La carga de los feeds suxerรญos fallรณ" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "La carga de los perfiles suxerรญos fallรณ" @@ -5027,12 +4996,12 @@ msgstr "La carga de los perfiles suxerรญos fallรณ" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "ยกAnovรกronse los feeds!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "ยกEl ficheru guardรณse correutamente!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "Atopar cuentes pa siguir" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Siguidores de @{0} que conoces" @@ -5544,7 +5497,7 @@ msgstr "Siguidores que conoces" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "Preferencies del feed ยซSiguiendoยป" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencies del feed ยซSiguiendoยป" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Sรญguete" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Fonte" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tamaรฑu de la fonte" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por motivos de seguranza, nun vas ser a volver vela. Si pierdes esta contraseรฑa, vas tener de xenerar una nueva." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Pa tener la meyor esperiencia, aconseyamos usar la fonte del estilu." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "Siempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "ยฟEscaeciesti la contraseรฑa?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Xeneraciรณn d'un paquete d'iniciaciรณn" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Pon cara al perfil" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Etiqueta" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "ยฟTienes dalgรบn problema?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "Ayuda" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Ayuda a que les persones sepan que nun yes un robรณ xubiendo una semeya o creando un avatar." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Esconder" @@ -6198,7 +6154,7 @@ msgstr "Esconder la rempuesta pa tol mundu" msgid "Hide reply for me" msgstr "Escondeme la rempuesta" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "ยฟQuies esconder esta rempuesta?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "ยฟQuies esconder los temes en tendencia?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "ยฟQuies esconder los vรญdeos en tendencia?" @@ -6240,7 +6198,7 @@ msgstr "Esconder la llista d'usuarios" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "Ummโ€ฆ Nun pudimos cargar el serviciu de moderaciรณn." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si quies camudar la contraseรฑa, vamos unviate un cรณdigu pa verificar qu'esta cuenta ye de to." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "Cรณdigu d'invitaciรณn" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Refugรณse'l cรณdigu d'invitaciรณn. Comprueba que lu introduxeres correutamente y volvi tentalo." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "ยกNamรกs tas tu! Amiesta mรกs persones al paquete d'iniciaciรณn buscando arriba." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID de trabayu: {0}" @@ -6816,8 +6766,8 @@ msgstr "Xรบnite a la conversaciรณn" msgid "Journalism" msgstr "Periodismu" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiquetes" @@ -6852,7 +6802,7 @@ msgstr "Amestรกronse les etiquetes" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6814,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Configuraciรณn de llingua" @@ -6874,7 +6824,7 @@ msgstr "Configuraciรณn de llingua" msgid "Languages" msgstr "Llingรผes" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Grande" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Lo รบltimo" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Saber mรกs tocante a esta alvertencia" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Saber mรกs." @@ -6993,8 +6943,8 @@ msgstr "Colar" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Dexame escoyer" @@ -7057,7 +7007,7 @@ msgstr "ยกVamos!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Claru" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claru" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Dar prรฉstame" @@ -7076,7 +7026,7 @@ msgstr "Dar prรฉstame" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10 prรฉstames" @@ -7085,7 +7035,7 @@ msgstr "10 prรฉstames" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7043,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "A quiรฉn-y prestรณ" @@ -7111,27 +7061,45 @@ msgstr "A quiรฉn-y prestรณ" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {Prestรณ-y a # usuariu} other {Prestรณ-yos a # usuarios}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {Prestรณ-y a # usuariu} other {Prestรณ-yos a # usuarios}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Prรฉstames" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Prรฉstames d'esta publicaciรณn" @@ -7144,7 +7112,7 @@ msgstr "Socesiรณn llinial" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Cargar mรกs" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Cargar mรกs feeds suxerรญos" @@ -7292,8 +7260,8 @@ msgstr "Cargar mรกs feeds suxerรญos" msgid "Load new notifications" msgstr "Cargar los avisos nuevos" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Rexistru" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Crear unu por min" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Marcar como lleรญu" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Contenรญu multimedia" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Elementos multimedia que puen molestar o nun ser afayadizos pa dalgunos pรบblicos." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menciones" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Desaniciรณse'l mensaxe" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mensaxes" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderaciรณn" @@ -7636,7 +7608,7 @@ msgstr "Anovรณse la llista de moderaciรณn" msgid "Moderation lists" msgstr "Llistes de moderaciรณn" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Llistes de moderaciรณn" @@ -7645,7 +7617,7 @@ msgstr "Llistes de moderaciรณn" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "Cuentes silenciaes" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cuentes silenciaes" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Crear un identificador" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nueva" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Charra nueva" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "Llista nueva" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Contraseรฑa nueva" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Publicaciรณn nueva" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Les rempuestes nueves primero" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Noticies" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Imaxe siguiente" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "Nun hai nenguna contraseรฑa d'aplicaciรณn" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Nun s'atopรณ nengรบn feed. Prueba a buscar otra cosa." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Nun hai nengรบn prรฉstame" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "Yรก nun sigues a {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "Nun hai nengรบn mensaxe" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "Naide mรกs que l'autor pue citar esta publicaciรณn." msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Nun hai nenguna cita" @@ -8198,11 +8190,7 @@ msgstr "Nun hai nenguna cita" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "Nun hai nengรบn resultรกu" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Nun hai nengรบn resultรกu" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "Nun s'atopรณ nengรบn resultรกu" msgid "No results found for \"{query}\"" msgstr "Nun s'atopรณ nengรบn resultรกu pa: {query}" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "Non, gracies" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "Naide" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Nun s'atopรณ" @@ -8333,7 +8325,7 @@ msgstr "Nota sobre compartir" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8345,12 @@ msgstr "" msgid "Notification sounds" msgstr "Sonรญos d'avisu" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "ยกOh, non!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "D'acuerdu" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "A unu o mรกs GIFs fรกlta-yos el testu alternativu." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "A una o mรกs imรกxenes fรกlta-yos el testu alternativu." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "A unu o mรกs vรญdeos fรกlta-yos el testu alternativu." @@ -8471,7 +8466,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Namรกs son compatibles los ficheros WebVTT (.vtt)" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "ยกMeca!" @@ -8544,7 +8543,7 @@ msgstr "ยกMeca!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Abrir el creador d'avatares" @@ -8570,21 +8569,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Abrir el selector de fustaxes" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8627,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "Abre los detalles adicionales d'una entrada de depuraciรณn" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Abre la cรกmara del presรฉu" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "ยกAnovรณse la configuraciรณn!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8925,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Persones" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Persones siguรญes por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Persones que siguen a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Semeyes destinaes a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixar el feed" @@ -9034,7 +9034,7 @@ msgstr "Fixar el feed" msgid "Pin to home" msgstr "Fixar nel aniciu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fixar nel aniciu" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Fixรณse" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Fixesti ยซ{0}ยป nel aniciu" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9076,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Escueyi un identificador." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Escueyi una contraseรฑa." @@ -9122,7 +9122,7 @@ msgstr "Escueyi una contraseรฑa." msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." msgstr "" -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Completa'l captcha de verificaciรณn." @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Introduz la to direiciรณn de corrรฉu eletrรณnicu." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Polรญtica" @@ -9269,7 +9269,7 @@ msgstr "Polรญtica" msgid "Porn" msgstr "Pornu" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Publicar" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicar too" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9340,7 @@ msgstr "" msgid "Post interaction settings" msgstr "Configuraciรณn de les interaiciones de la publicaciรณn" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "Fixรณse la publicaciรณn" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "Lliberรณse la publicaciรณn" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Publicaciones" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "Escondiรฉronse les publicaciones" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Privacidรก" msgid "Privacy and security" msgstr "Privacidรก y seguranza" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidรก y seguranza" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Polรญtica de privacidรก" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Procesando'l videuโ€ฆ" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Desactivรกronse les cites" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Cites" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Cites d'esta publicaciรณn" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Volver cargar les conversaciones" @@ -9766,7 +9765,7 @@ msgstr "Volver cargar les conversaciones" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Quitar" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Quitar la cuenta" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Quitar de los mios feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Quitรณse de la llista" msgid "Removed from saved feeds" msgstr "Quitรณse de los feeds guardaos" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Rempuestes" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "Responder" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -10098,8 +10098,8 @@ msgstr "Informar de la conversaciรณn" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Informar del feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Republiquesti" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Republicaciones d'esta publicaciรณn" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Volvi tentar la รบltima aiciรณn, la que produxo l'error" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Guardar los cambeos" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Guardar nos mios feeds" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feeds guardaos" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Guardรณse nos tos feeds" @@ -10520,8 +10520,8 @@ msgstr "Guardรณse nos tos feeds" msgid "Say hello!" msgstr "ยกSaluda!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Ciencia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Buscar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Busca feeds que quieras suxerir a otres persones." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Unviar la publicaciรณn aโ€ฆ" @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Unviar per mensaxe direutu" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Configuraciรณn" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Compartir de toes toes" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Compartir el cรณdigu QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparti esti paquete d'iniciaciรณn y ayuda a la xente a xunise a la to comunidรก en Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Amosar" msgid "Show alt text" msgstr "Amosar el testu alternativu" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Amosar de toes toes" @@ -11274,9 +11281,9 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Amosar mรกs" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "ยฟQuies zarrar la sesiรณn?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "Saltar" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Pequeรฑa" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Prodรบxose dalgรบn error, volvi tentalo" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "ยฟHai daquรฉ mal? Comรฉntanoslo." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Deportes" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Charra nueva" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "Amestar persones" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paquete d'iniciaciรณn" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "El paquete d'iniciaciรณn ye invรกlidu" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Paquetes d'iniciaciรณn" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Los paquetes d'iniciaciรณn dรฉxente compartir fรกcilmente los feeds y les persones que prefieres coles amistaes." @@ -11728,7 +11739,7 @@ msgstr "Los paquetes d'iniciaciรณn dรฉxente compartir fรกcilmente los feeds y le msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Pรกxina d'estรกu" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Pasu {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "Borrรณse l'almacenamientu y agora tienes de reaniciar l'aplicaciรณn." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Suxerencies pa ti" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Del sistema" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "Xera completada- ยก10 prรฉstames!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Deprendi al nuesu algoritmu lo que te presta" @@ -12060,7 +12073,7 @@ msgstr "Tรฉrminos" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Nun se pudo atopar esi paquete d'iniciaciรณn." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Alรณn." -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "El sirvidor paez que sufre problemes. Volvi tentalo nun momentu." msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "El cรณdigu de verificaciรณn que forniesti ye invรกlidu. Asegรบrate de qu msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Del estilu" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Hebo un problema al conectase col sirvidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Hebo un problema al conectase col sirvidor. Comprueba la conexรณn a internet y volvi tentalo." @@ -12283,8 +12296,8 @@ msgstr "Hebo un problema al conectase col sirvidor. Comprueba la conexรณn a inte msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hebo un problema al catar los avisos. Toca equรญ pa volver tentalo." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hebo un problema al catar les publicaciones. Toca equรญ pa volver tentalo." @@ -12309,7 +12322,7 @@ msgstr "Hebo un problema al catar la informaciรณn del serviciu" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Hebo un problema al quitar esti feed. Comprueba la conexรณn a internet y volvi tentalo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Esta configuraciรณn namรกs s'aplica al feed ยซSiguiendoยป." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Esta cuenta solicitรณ que los usuarios anicien la sesiรณn pa ver el so perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "ยกEsti feed ta baleru! Ye posible que tengas de siguir mรกs usuarios o camudar la configuraciรณn de llingua." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Esti feed ta baleru." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Esti identificador ta acutรกu. Prueba con otru." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Apliquesti esta etiqueta." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Esti etiquetador nun declarรณ quรฉ etiquetes publica y ye posible que nun tea activu." @@ -12621,13 +12634,13 @@ msgstr "Esta llista ta balera." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Indicรณse qu'esta publicaciรณn se creรณ'l <0>{0} mas la primer vegada que se creรณ en Bluesky foi'l <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Indicรณse qu'esta publicaciรณn se creรณ'l <0>{0} mas la primer vegad msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Esta publicaciรณn contiรฉn un tipu desconocรญu de ยซthreadgateยป. Ye posible que l'aplicaciรณn nun tea anovada." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta publicaciรณn nun va apaecer nos feeds nin nos filos. Esta aiciรณn nun se pue desfacer." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "L'autor d'esta publicaciรณn desactivรณ les cites." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Esti usuariu nun tien nengรบn siguidor." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Esti usuariu bloquiรณte. Nun pues ver el so contenรญu." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "Esti usuariu ye nuevu. Primi pa consiguir mรกs informaciรณn tocante a cuรกndo se xuniรณ." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Esti usuariu nun sigue a naide." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "Preferencies de los filos" msgid "Threaded" msgstr "Filos" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferencies de los filos" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Lo destacao" @@ -12858,7 +12873,7 @@ msgstr "Lo destacao" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tema" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "En tendencia" @@ -12902,13 +12919,15 @@ msgstr "En tendencia" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Vรญdeos en tendencia" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "ยฟQuies desbloquiar la cuenta?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Dexa de siguir al usuariu" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "Dexar de silenciar el filu" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Lliberar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Lliberar el feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Lliberar del aniciu" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Lliberar la llista de moderaciรณn" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Lliberรฉsti'l feed ยซ{0}ยป del aniciu" @@ -13258,11 +13279,11 @@ msgstr "Dase de baxa d'esti etiquetador" msgid "Unsubscribed from list" msgstr "Diรฉstite de baxa d'esta llista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "L'anovamientu de la visibilidรก de la rempuesta fallรณ" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Xubir una semeya" @@ -13355,7 +13376,7 @@ msgstr "Xubir dende Ficheros" msgid "Upload from Library" msgstr "Xubir dende Biblioteca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "Xubiendo les imรกxenesโ€ฆ" msgid "Uploading link thumbnail..." msgstr "Xubiendo la miniatura del enllazโ€ฆ" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Xubiendo'l videuโ€ฆ" @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "Videu" msgid "Video failed to process" msgstr "Nun se pudo procesar el videu" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videoxuegos" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Nun s'atopรณ'l videu." @@ -13653,7 +13674,7 @@ msgstr "Nun s'atopรณ'l videu." msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Xubiรณse'l videu" @@ -13662,17 +13683,17 @@ msgstr "Xubiรณse'l videu" msgid "Video: {0}" msgstr "Videu: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Vรญdeos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "Ver l'avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Ver el perfil de {0}" @@ -13724,13 +13745,13 @@ msgstr "Ver la entrada del blogue pa consultar los detalles" msgid "View debug entry" msgstr "Ver la entrada de depuraciรณn" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ver los detalles" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Ver el filu completu" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "Ver la informaciรณn d'estes etiquetes" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Ver mรกs" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Ver a quรฉ usuarios-yos prestรณ esti feed" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "Ver les tos llistes de moderaciรณn" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Tenemos problemes de rede. Volvi tentalo" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "Nun fuimos a resolver esta llista. Si sigue'l problema, ponte en contaut msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Nesti momentu nun fuimos a cargar la llista de pallabres silenciaes. Volvi tentalo." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Desaniciรณse la publicaciรณn a la que tas respondiendo." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "ยฟQue pasรณ?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "ยกMeca!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Escribir una rempuesta" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Nun tienes permisu pa xubir vรญdeos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Yรก pues aniciar la sesiรณn cola contraseรฑa nueva." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Algamesti temporalmente la llende vรญdeos xubรญos. Volvi tentalo dempuรฉs." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "ยกNun creesti nengรบn paquete d'iniciaciรณn!" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Namรกs pues amestar hasta 3 feeds" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Tienes de siguir a, polo menos, siete persones mรกs pa xenerar un paquete d'iniciaciรณn." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Namรกs qu'acabes de crear la cuenta, vas siguir a los usuarios y feeds suxerรญos." -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Namรกs qu'acabes de crear la cuenta, vas sigur a los usuarios suxerรญos." @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ยกAlgamesti la fin del feed! Atopa dalgunes cuentes mรกs y sรญguiles." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Algamesti la llende diaria de vรญdeos xubรญos (milenta bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Algamesti la llende diaria de vรญdeos xubรญos (milenta vรญdeos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "La cuenta" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "La cuenta nun tien abonda antigรผedรก como pa xubir vรญdeos. Volvi tentalo dempuรฉs." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "La direiciรณn de corrรฉu paez ser invรกlida." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "El perfil, les publicaciones, los feeds y les llistes yรก nun van ser visibles pa otros usuarios de Bluesky. Pues volver activar la cuenta en cualesquier momentu aniciando la sesiรณn." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/az/messages.po b/src/locale/locales/az/messages.po index 0a34dcac47..4e4f9bdd97 100644 --- a/src/locale/locales/az/messages.po +++ b/src/locale/locales/az/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: az\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Azerbaijani\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -1560,7 +1511,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1591,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1656,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1838,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1927,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2244,7 @@ msgstr "" msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2256,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2293,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -2425,28 +2388,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2468,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2819,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2844,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2968,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3106,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3218,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3230,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3263,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3585,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3618,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3627,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3659,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3855,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3949,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,28 +4064,28 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4368,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4467,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4476,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4500,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4576,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4618,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4652,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4723,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4854,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +4996,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5497,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "" @@ -6198,7 +6154,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "" msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" @@ -6776,12 +6726,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6766,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6802,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6814,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6824,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6867,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6943,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7007,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7026,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7035,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7043,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7061,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7112,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7260,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7608,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7617,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "" msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8198,11 +8190,7 @@ msgstr "" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8325,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8345,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8466,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8543,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8569,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8627,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8726,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8925,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9076,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "" @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "" @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "" @@ -9269,7 +9269,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9340,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,21 +10703,26 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13376,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13674,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13683,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13745,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13818,8 +13839,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14156,8 @@ msgstr "" msgid "whatโ€™s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "" @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/bn/messages.po b/src/locale/locales/bn/messages.po index 1d5a73d5cf..47f848b81a 100644 --- a/src/locale/locales/bn/messages.po +++ b/src/locale/locales/bn/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: bn\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Bengali\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -1560,7 +1511,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1591,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1656,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1838,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1927,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2244,7 @@ msgstr "" msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2256,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2293,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -2425,28 +2388,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2468,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2819,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2844,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2968,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3106,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3218,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3230,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3263,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3585,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3618,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3627,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3659,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3855,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3949,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,28 +4064,28 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4368,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4467,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4476,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4500,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4576,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4618,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4652,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4723,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4854,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +4996,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5497,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "" @@ -6198,7 +6154,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "" msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" @@ -6776,12 +6726,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6766,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6802,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6814,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6824,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6867,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6943,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7007,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7026,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7035,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7043,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7061,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7112,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7260,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7608,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7617,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "" msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8198,11 +8190,7 @@ msgstr "" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8325,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8345,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8466,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8543,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8569,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8627,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8726,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8925,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9076,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "" @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "" @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "" @@ -9269,7 +9269,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9340,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,21 +10703,26 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13376,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13674,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13683,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13745,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13818,8 +13839,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14156,8 @@ msgstr "" msgid "whatโ€™s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "" @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/br/messages.po b/src/locale/locales/br/messages.po index 778d8d31bb..061fd3405b 100644 --- a/src/locale/locales/br/messages.po +++ b/src/locale/locales/br/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: br\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Breton\n" "Plural-Forms: nplurals=5; plural=(n%10==1 && (n%100!=11 || n%100!=71 || n%100!=91) ? 0 : n%10==2 && (n%100!=12 || n%100!=72 || n%100!=92) ? 1 : ((n%10>=3 && n%10<=4) || n%10==9) && ((n%100 < 10 || n%100 > 19) || (n%100 < 70 || n%100 > 79) || (n%100 < 90 || n%100 > 99)) ? 2 : (n!=0 && n%1;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -1560,7 +1511,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1591,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1656,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1838,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1927,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2244,7 @@ msgstr "" msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2256,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2293,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -2425,28 +2388,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2468,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2819,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2844,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2968,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3106,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3218,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3230,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3263,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3585,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3618,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3627,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3659,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3855,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3949,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,28 +4064,28 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4368,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4467,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4476,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4500,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4576,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4618,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4652,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4723,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4854,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +4996,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5497,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "" @@ -6198,7 +6154,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "" msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" @@ -6776,12 +6726,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6766,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6802,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6814,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6824,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6867,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6943,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7007,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7026,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7035,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7043,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7061,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7112,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7260,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7608,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7617,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "" msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8198,11 +8190,7 @@ msgstr "" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8325,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8345,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8466,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8543,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8569,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8627,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8726,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8925,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9076,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "" @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "" @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "" @@ -9269,7 +9269,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9340,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,21 +10703,26 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13376,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13674,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13683,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13745,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13818,8 +13839,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14156,8 @@ msgstr "" msgid "whatโ€™s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "" @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index 5806077f41..395bd03cd4 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" categoria (activa)A" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(missatge bloquejat amagat)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(tรฉ contingut incrustat)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(missatge suprimit)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(enllaรง d'invitaciรณ al xat invร lid)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(missatge enviat abans que t'unissis)" @@ -103,14 +103,14 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# hores}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" -msgstr "" +msgstr "{0, plural, one {# etiqueta aplicada a la teva publicaciรณ} other {# etiquetes aplicades a la teva publicaciรณ}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" -msgstr "" +msgstr "{0, plural, one {# etiqueta aplicada} other {# etiquetes aplicades}}" #. placeholder {0}: likeCount ?? 0 #: src/screens/Post/PostLikedBy.tsx:34 @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# m'agrada} other {# m'agrades}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membre} other {# membres}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# nova solยทlicitud} other {# noves solยทlicituds}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {# persona ha} other {# persones han}} reaccionatโ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Compte)" @@ -251,36 +252,13 @@ msgstr "{0} s'ha afegit al xat" msgid "{0} and {1} added to chat" msgstr "{0} i {1} s'han afegit al xat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} seguint" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} t'ha bloquejat" @@ -324,14 +302,6 @@ msgstr "{0} ha sortit" msgid "{0} left the group" msgstr "{0} ha deixat el grup" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ha reaccionat amb {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} i {memberCount, plural, one {# altre} other {# altres}} s'han afegit al xat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} t'ha verificat" msgid "{following} following" msgstr "{following} seguint" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, one {publicaciรณ} other {publicacions}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} no es pot afegir" @@ -698,7 +660,7 @@ msgstr "{handle} no es pot afegir" msgid "{handle} can't be messaged" msgstr "No es poden enviar missatges a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "No es poden enviar missatges a {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# element sense llegir} other {# elemen msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contacte trobat} other {# contactes trobats}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} es va unir a Bluesky fa {timeAgoString}" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} es va unir a Bluesky, utilitzant un Starter Pack, fa {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {Queda # carร cter} other {Queden # carร cters}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} ha respost" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} ha respost a {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} t'ha respost" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# solยทlicitud} other {# solยทlicituds}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ solยทlicituds" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "fa {type} h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} รฉs un verificador de confianรงa" @@ -842,13 +795,13 @@ msgstr "Verificacions de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {seguint} other {seguint}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {cites}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicaciรณ} other {republicacions}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, one {desada} other {desades}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, one {m'agrada} other {m'agrades}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> t'ha afegit" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Inicia la sessiรณ<1> o <2>crea un compte<3> <4>per cercar notรญcies, esports, polรญtica, jocs de paraules i tot el que passa a Bluesky." @@ -971,7 +924,7 @@ msgstr "30 dies" msgid "7 days" msgstr "7 dies" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Una colยทlecciรณ de canals populars que pots trobar a Bluesky, com ara News, Booksky, Game Dev, Blacksky i Fountain Pens" @@ -988,9 +941,11 @@ msgstr "S'ha produรฏt un error de xarxa. Si us plau, comprova la connexiรณ a Int #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "S'ha enviat un codi nou" msgid "A new form of verification" msgstr "Una nova forma de verificaciรณ" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Una resposta a un missatge enviat abans que t'unissis" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Una captura de pantalla del compositor de publicacions amb un botรณ nou al costat que diu \"Esborranys\", amb un efecte de focs artificials de l'arc de Sant Martรญ. A sota, el text del compositor diu \"Ei, estร s al cas de les novetats? Bluesky ja tรฉ esborranys!!!\"." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "El remitent no segueix algun dels destinataris seleccionats." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Accรฉs solยทlicitat! El propietari del grup revisarร  la teva solยทlicit msgid "Accessibility" msgstr "Accessibilitat" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Configuraciรณ d'accessibilitat" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Compte silenciat per una llista" msgid "Account options" msgstr "Opcions del compte" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Compte eliminat de l'accรฉs rร pid" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Els comptes amb una marca de verificaciรณ blava<0><1/>poden verificar-ne altres. Bluesky selecciona aquests verificadors de confianรงa." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Activitat d'altres persones" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Notificacions d'activitat" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,17 +1183,17 @@ msgstr "Afegeix text alternatiu (opcional)" msgid "Add another account" msgstr "Afegeix un altre compte" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Afegeix una altra publicaciรณ" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Afegeix una altra publicaciรณ al fil" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" -msgstr "" +msgstr "Afegeix un altre filtre de cerca" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 msgid "Add app password" @@ -1253,7 +1213,7 @@ msgstr "Afegeix una etiqueta d'automatitzaciรณ al compte" msgid "Add emoji reaction" msgstr "Afegeix una reacciรณ d'emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Afegeix un filtre" @@ -1338,7 +1298,7 @@ msgstr "Afegeix aquest canal als teus canals" msgid "Add to lists" msgstr "Afegeix a les llistes" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Desa la publicaciรณ" @@ -1400,7 +1360,7 @@ msgstr "Adults" msgid "Adult content" msgstr "Contingut per a adults" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "josepmaria@exemple.cat" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Totes" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Segueixes a tots els amics!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Tots els idiomes" @@ -1491,11 +1447,6 @@ msgstr "Tots els idiomes es mostraran als teus canals." msgid "All of these words" msgstr "Totes aquestes paraules" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "Totes les publicacions" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Tots els canals que has desat, en un sol lloc." @@ -1560,7 +1511,7 @@ msgstr "Permet l'accรฉs als missatges directes" msgid "Already have a code?" msgstr "Ja tens un codi?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Ja tens un compte?" @@ -1614,7 +1565,7 @@ msgstr "S'ha enviat un correu a {0}. Inclou un codi de confirmaciรณ que has d'en msgid "An error has occurred" msgstr "Hi ha hagut un error" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Hi ha hagut un error" @@ -1631,7 +1582,7 @@ msgstr "S'ha produรฏt un error en obtenir els comptes suggerits." msgid "An error occurred while fetching the feed." msgstr "S'ha produรฏt un error en anar a buscar el canal." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "S'ha produรฏt un error en generar el teu starter pack. Vols tornar-ho a provar?" @@ -1640,11 +1591,11 @@ msgstr "S'ha produรฏt un error en generar el teu starter pack. Vols tornar-ho a msgid "An error occurred while hiding suggestion. {0}" msgstr "S'ha produรฏt un error en ocultar el suggeriment. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Hi ha hagut un error mentre es carregava el vรญdeo. Prova-ho mรฉs tard." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Hi ha hagut un error mentre es carregava el vรญdeo. Prova-ho mรฉs tard." @@ -1684,7 +1635,7 @@ msgstr "S'ha produรฏt un error. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Una ilยทlustraciรณ que representa els avatars d'usuari que flueixen des d'una llibreta de contactes fins a l'aplicaciรณ Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Una ilยทlustraciรณ de diverses publicacions de Bluesky juntament amb icones de republicaciรณ, m'agrada i comentari" @@ -1705,17 +1656,15 @@ msgstr "Un enllaรง d'invitaciรณ permet que les persones s'uneixin a aquest xat d msgid "An issue not included in these options" msgstr "Un problema que no estร  inclรฒs en aquestes opcions" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "S'ha produรฏt un problema en crear el xat de grup. Torna-ho a provar." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "S'ha produรฏt un problema en iniciar el xat, torna-ho a provar." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Hi ha hagut un problema en provar d'obrir el xat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "S'ha produรฏt un problema en iniciar el xat de grup. Torna-ho a provar." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1766,11 +1715,9 @@ msgstr "Anunciant la verificaciรณ a Bluesky" #. Placeholder text for a date picker #: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 msgid "Any date" -msgstr "" +msgstr "Qualsevol data" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Qualsevol" @@ -1802,7 +1749,7 @@ msgstr "Qualsevol que em segueixi" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Qualsevol persona que el tingui ja no podrร  unir-se ni solยทlicitar unir-se. Sempre pots crear-ne un de nou." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1829,7 +1776,7 @@ msgstr "El nom de la contrasenya d'aplicaciรณ ha de ser รบnic" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" -msgstr "" +msgstr "Els noms de contrasenyes d'aplicaciรณ nomรฉs poden contenir lletres, nรบmeros, espais, guions i guions baixos" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 msgid "App password names must be at least 4 characters long" @@ -1840,7 +1787,7 @@ msgstr "Els noms de contrasenyes d'aplicaciรณ han de tenir almenys 4 carร cters" msgid "App passwords" msgstr "Contrasenyes de l'aplicaciรณ" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contrasenyes de l'aplicaciรณ" @@ -1858,7 +1805,7 @@ msgstr "Apelยทla \"{0}\" etiqueta" #: src/components/moderation/ModerationDetailsDialog.tsx:159 msgid "Appeal label" -msgstr "" +msgstr "Apelยทla l'etiqueta" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 msgid "Appeal livestream suspension" @@ -1889,10 +1836,10 @@ msgstr "Apelยทla aquesta decisiรณ" #: src/components/moderation/ModerationDetailsDialog.tsx:219 msgid "Appeal this label" -msgstr "" +msgstr "Apelยทla aquesta etiqueta" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Aplica la peticiรณ d'integraciรณ Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arxivat del dia {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Publicaciรณ arxivada" @@ -1980,7 +1927,7 @@ msgstr "Segur que vols eliminar-ho dels teus canals?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Segur que vols retirar la teva solยทlicitud per a unir-te a {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Estร s segur que vols descartar aquesta publicaciรณ?" @@ -2018,22 +1965,27 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "Autor" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Compte automatitzat" #: src/screens/Login/components/HostingProviderDialog.tsx:165 #: src/screens/Login/components/HostingProviderDialog.tsx:167 msgid "Automatic" -msgstr "" +msgstr "Automร tic" #: src/screens/Settings/AccountSettings.tsx:155 #: src/screens/Settings/AccountSettings.tsx:158 msgid "Automation label" msgstr "Etiqueta d'automatitzaciรณ" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Etiqueta d'automatitzaciรณ" @@ -2050,12 +2002,16 @@ msgstr "Reprodueix automร ticament vรญdeos i GIFs" msgid "Available" msgstr "Disponible" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "Creador d'avatars" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Abans de crear una publicaciรณ o respondre-la, primer has de verificar el teu correu." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Abans de crear un starter pack, primer has de verificar el teu correu." @@ -2135,10 +2091,10 @@ msgstr "Abans de poder rebre notificacions de les publicacions de {name}, primer #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2116,28 @@ msgstr "Comenรงa el procรฉs de garantia d'edat emplenant els segรผents camps." msgid "Beta Feature" msgstr "Funciรณ beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" -msgstr "" +msgstr "Funcions beta" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Funcions beta activades" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Les funcions beta poden ser inestables. ร‰s possible que alguns canvis requereixin recarregar l'aplicaciรณ." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Les funcions beta poden ser inestables. Alguns canvis poden requerir reiniciar l'aplicaciรณ." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2147,9 @@ msgstr "Data de naixement" msgid "Birthday" msgstr "Aniversari" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Bloquejada" msgid "Blocked accounts" msgstr "Comptes bloquejats" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Comptes bloquejats" @@ -2282,7 +2244,7 @@ msgstr "Els comptes bloquejats no poden respondre cap fil teu, ni anomenar-te ni msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Els comptes bloquejats no poden respondre a cap fil teu, ni anomenar-te ni interactuar amb tu de cap manera. No veurร s mai el seu contingut ni ells el teu." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "El bloqueig no evita que aquest etiquetador apliqui etiquetes al teu compte." @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no pot confirmar l'autenticitat de la data declarada." @@ -2330,7 +2293,7 @@ msgstr "Bluesky รฉs una xarxa oberta on pots escollir el teu proveรฏdor d'allotj msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky รฉs una xarxa oberta on pots triar el proveรฏdor. Si estร s comenรงant, et recomanem l'opciรณ per defecte, Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky รฉs millor amb colยทlegues!" @@ -2358,7 +2321,7 @@ msgstr "Condicions del servei de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky emmagatzema els contactes com a dades codificades. Si els elimines, aquestes dades s'eliminaran immediatament." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky triarร  un conjunt de comptes recomanats de les persones de la teva xarxa." @@ -2403,20 +2366,20 @@ msgstr "Reuneix fins a 50 amics en un mateix xat." msgid "Browse custom feeds" msgstr "Navega pels canals personalitzats" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Navega per mรฉs comptes" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Explora mรฉs canals a la pร gina Explora" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Explora mรฉs recomanacions" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Explora mรฉs recomanacions a la pร gina Explora" @@ -2425,24 +2388,25 @@ msgstr "Explora mรฉs recomanacions a la pร gina Explora" msgid "Browse other feeds" msgstr "Explora altres canals" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Explora les publicacions sobre {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Explora les publicacions etiquetades amb {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Explora l'Starter pack de {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Explora les publicacions del tema {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Explora les publicacions del tema {displayName}" @@ -2461,8 +2425,8 @@ msgstr "Botรณ per tornar a la cronologia d'inici" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Per {0}" @@ -2473,9 +2437,9 @@ msgstr "per @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Per <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Creant un compte indiques que estร s d'acord amb les <0>Condicions del s msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Creant un compte indiques que estร s d'acord amb les <0>Condicions del servei." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Per tu" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Cร mera" @@ -2534,7 +2498,7 @@ msgstr "Cal accรฉs a la cร mera" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Cal accรฉs a la cร mera" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,13 +2549,13 @@ msgstr "Cancelยทla la reactivaciรณ i surt" msgid "Cancel reply" msgstr "Cancelยทla la resposta" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancelยทla la cerca" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 msgid "Cancels signing in so you can check your username" -msgstr "" +msgstr "Cancelยทla l'inici de sessiรณ perquรจ puguis comprovar el teu nom d'usuari" #: src/components/PostControls/index.tsx:108 #: src/components/PostControls/index.tsx:138 @@ -2649,7 +2613,7 @@ msgstr "Canvia l'identificador" #: src/screens/Login/LoginForm.tsx:644 msgid "Change hosting provider" -msgstr "" +msgstr "Canvia el proveรฏdor d'allotjament" #: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Els canvis a l'Starter Pack no es reflectiran a la llista desprรฉs de la seva creaciรณ. La llista serร  una cรฒpia independent." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Xat silenciat" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "No s'ha trobat el xat." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Opcions de xat" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Els propietaris del xat no poden abandonar un xat grupal." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "El remitent no segueix el destinatari del xat." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Safata de solยทlicituds de xat" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Solยทlicituds de xat" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Configuraciรณ del xat" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Xat no silenciat" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Xats" @@ -2810,7 +2775,7 @@ msgstr "Comprova <0>{currentEmail} per a rebre un correu amb el codi de conf #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Torna mรฉs tard!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2802,7 @@ msgstr "Tria el mรจtode de verificaciรณ del domini" msgid "Choose Feeds" msgstr "Tria els canals" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Tria per mi" @@ -2854,7 +2819,7 @@ msgstr "Tria les persones" msgid "Choose post languages" msgstr "Tria els idiomes de publicaciรณ" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Tria aquest color com el teu avatar" @@ -2869,7 +2834,7 @@ msgstr "Tria a qui vols convidar" #: src/components/dialogs/ServerInput.tsx:134 #: src/screens/Login/components/HostingProviderDialog.tsx:155 msgid "Choose your hosting provider" -msgstr "" +msgstr "Tria el teu proveรฏdor d'allotjament" #: src/view/screens/Feeds.tsx:726 msgid "Choose your own timeline! Feeds built by the community help you find content you love." @@ -2879,7 +2844,7 @@ msgstr "Tria la teva prรฒpia lรญnia de temps! Els canals creats per la comunitat msgid "Choose your password" msgstr "Tria la teva contrasenya" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "El teu identificador d'usuari" @@ -2966,7 +2931,7 @@ msgstr "Fes clic per a mostrar l'enllaรง d'invitaciรณ a aquest xat de grup" msgid "Click to open tag menu for {0}" msgstr "Fes clic per a obrir el menรบ d'etiquetes per a {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Clica aquรญ per provar d'enviar el missatge de nou" @@ -3003,7 +2968,7 @@ msgstr "Clica aquรญ per provar d'enviar el missatge de nou" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Clica aquรญ per provar d'enviar el missatge de nou" msgid "Close" msgstr "Tanca" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Tanca el diร leg actiu" @@ -3047,7 +3012,7 @@ msgstr "Tanca el bร ner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Tanca el visor d'imatges" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Tanca el menรบ" @@ -3090,7 +3055,7 @@ msgstr "Tanca el bร ner de solยทlicituds entrants" msgid "Close this dialog" msgstr "Tanca aquest diร leg" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Tanca la finestra emergent de benvinguda" @@ -3098,7 +3063,7 @@ msgstr "Tanca la finestra emergent de benvinguda" msgid "Closes password update alert" msgstr "Tanca l'alerta d'actualitzaciรณ de contrasenya" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Tanca l'editor de la publicaciรณ i descarta l'esborrany" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Color" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Mode de color" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Cรฒmics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directrius de la comunitat" @@ -3141,7 +3106,7 @@ msgstr "Directrius de la comunitat" msgid "Complete onboarding and start using your account" msgstr "Finalitza el registre i comenรงa a utilitzar el teu compte" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa la prova" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Crea una nova publicaciรณ" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Crear publicacions de fins a {0, plural, one {}other {# carร cters}} de longitud" @@ -3160,11 +3125,11 @@ msgstr "Crear publicacions de fins a {0, plural, one {}other {# carร cters}} de msgid "Compose reply" msgstr "Redacta una resposta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Comprimint el GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Comprimint el vรญdeo..." @@ -3199,12 +3164,12 @@ msgstr "Connectant amb el servei..." #: src/screens/Login/LoginForm.tsx:542 msgid "Connecting to serviceโ€ฆ" -msgstr "" +msgstr "Connectant amb el serveiโ€ฆ" #: src/screens/Login/ForgotPasswordForm.tsx:138 #: src/screens/Login/LoginForm.tsx:548 msgid "Connectingโ€ฆ" -msgstr "" +msgstr "Connectantโ€ฆ" #: src/ageAssurance/components/RedirectOverlay.tsx:297 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Contacta amb el nostre equip de suport" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contacta amb suport" @@ -3253,7 +3218,7 @@ msgstr "Contingut i multimรจdia" msgid "Content and media" msgstr "Contingut i multimรจdia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Contingut i multimรจdia" @@ -3265,10 +3230,6 @@ msgstr "Contingut bloquejat" msgid "Content filters" msgstr "Filtres de contingut" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Contingut de tota la xarxa que et podria agradar" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Idiomes del contingut" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Contingut que promou o representa l'autolesiรณ" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Advertรจncia del contingut" msgid "Content warnings" msgstr "Advertรจncies del contingut" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Telรณ de fons del menรบ contextual, fes clic per a tancar-lo." @@ -3302,7 +3263,7 @@ msgstr "Telรณ de fons del menรบ contextual, fes clic per a tancar-lo." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3315,7 +3276,7 @@ msgstr "Continua com a {0} (sessiรณ actual)" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 msgid "Continue signing in" -msgstr "" +msgstr "Continua iniciant sessiรณ" #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 msgid "Continue thread" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Continua el fil..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continua fins al nom del grup" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "No s'ha trobat la conversa." msgid "Copied build version to clipboard" msgstr "Nรบmero de versiรณ copiat en memรฒria" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Enllaรง copiat al porta-retalls" @@ -3376,7 +3337,7 @@ msgstr "Enllaรง copiat al porta-retalls" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Copia la contrasenya d'aplicaciรณ" msgid "Copy at:// URI" msgstr "Copia at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copia DID de l'autor" @@ -3449,10 +3410,10 @@ msgstr "Copia l'enllaรง" msgid "Copy link to list" msgstr "Copia l'enllaรง a la llista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copia l'enllaรง a la publicaciรณ" @@ -3470,8 +3431,8 @@ msgstr "Copia l'enllaรง a l'starter pack" msgid "Copy message text" msgstr "Copia el text del missatge" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copia at:// URI de la publicaciรณ" @@ -3490,7 +3451,7 @@ msgstr "Copia el valor del registre TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Polรญtica de drets d'autor" @@ -3540,11 +3501,11 @@ msgstr "No s'han pogut seguir totes les coincidรจncies. {0}" msgid "Could not leave chat" msgstr "No s'ha pogut abandonar el xat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "No s'ha pogut abandonar el xat." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "No s'ha pogut carregar el canal" @@ -3562,7 +3523,7 @@ msgstr "No s'ha pogut carregar el perfil" msgid "Could not mute chat" msgstr "No s'ha pogut silenciar el xat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "No s'ha pogut eliminar el membre." @@ -3606,8 +3567,8 @@ msgstr "vaques porcs" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crea" @@ -3624,26 +3585,26 @@ msgstr "Crea una llista a partir d'aquest l'starter pack" msgid "Create a QR code for a starter pack" msgstr "Crea un codi QR per a un starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Crea un starter pack" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Crea un Starter Pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crea un starter pack per a mi" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Registra't" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Crea un compte" @@ -3666,15 +3627,15 @@ msgstr "Crea un compte" msgid "Create an account without using this starter pack" msgstr "Crea un compte sense utilitzar aquest starter pack" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Enlloc d'aixรฒ, crea un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Crea'n un altre" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Crea un xat de grup" @@ -3741,9 +3702,9 @@ msgstr "Cultura" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Funcions beta actuals" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Xat actual" @@ -3770,8 +3731,8 @@ msgstr "Substร ncies perilloses o abรบs de drogues" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Fosc" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Fosc" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema fosc" @@ -3814,7 +3775,7 @@ msgstr "Rebutja aquest suggeriment d'idioma" msgid "Deepfake adult content" msgstr "Contingut per a adults deepfake" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Per defecte" @@ -3894,7 +3855,7 @@ msgstr "Elimina el meu compte" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Elimina la publicaciรณ" @@ -3986,9 +3947,9 @@ msgstr "Diร leg: ajusta qui pot interactuar amb aquesta publicaciรณ" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 msgid "Dialog: Set search filters" -msgstr "" +msgstr "Diร leg: Estableix els filtres de cerca" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Tรจnue" @@ -4002,7 +3963,7 @@ msgstr "Desactiva" msgid "Disable 2FA" msgstr "Deshabilita la verificaciรณ en dos passos" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Desactiva els subtรญtols" @@ -4045,9 +4006,9 @@ msgstr "Desactivat" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Descarta" msgid "Discard changes?" msgstr "Vols descartar els canvis?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Vols descartar l'esborrany?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Vols descartar la publicaciรณ?" @@ -4079,6 +4040,10 @@ msgstr "Desconnecta Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Evita que les aplicacions mostrin el meu compte als usuaris no connectats" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Descobreix canals" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Evita que les aplicacions mostrin el meu compte als usuaris no connectat msgid "Discover new custom feeds" msgstr "Descobreix nous canals personalitzats" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Descobreix nous canals" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descobreix nous canals" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Descarta" @@ -4103,28 +4064,28 @@ msgstr "Descarta" msgid "Dismiss banner" msgstr "Ignora el bร ner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Descarta l'error" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Ignora la guia d'inici" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Descarta interessos" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Ignora el bร ner d'esdeveniment en directe" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Amaga aquesta secciรณ" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Descarta aquest suggeriment" @@ -4142,7 +4103,7 @@ msgstr "Mostra insรญgnies de text alternatiu mรฉs grans" msgid "Display name" msgstr "Nom mostrat" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Deixa de banda els trolls i els pesca-clics. Troba persones reals i converses que t'importin." @@ -4205,8 +4166,8 @@ msgstr "No pateixis! Tots els missatges i la configuraciรณ existents es desen i #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "No pateixis! Tots els missatges i la configuraciรณ existents es desen i msgid "Done" msgstr "Fet" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Fes un toc doble o premeu llargament el missatge per a afegir una reacciรณ" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Fes doble toc per tancar el diร leg" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Fes dos tocs per a fer m'agrada" @@ -4328,6 +4289,7 @@ msgstr "Trastorns alimentaris" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Edita la imatge" msgid "Edit interaction settings" msgstr "Edita les preferรจncies de les interaccions" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Edita els interessos" @@ -4397,7 +4359,7 @@ msgstr "Edita l'estat en directe" msgid "Edit moderation list" msgstr "Edita la llista de moderaciรณ" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Edita els meus canals" @@ -4406,6 +4368,11 @@ msgstr "Edita els meus canals" msgid "Edit name" msgstr "Edita el nom" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Edita les notificacions de {0}" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Edita les persones" @@ -4444,7 +4411,7 @@ msgstr "Edita la llista d'usuaris" msgid "Edit who can reply" msgstr "Edita qui pot respondre" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Edita el teu starter pack" @@ -4500,8 +4467,8 @@ msgstr "Incrusta el codi HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incrusta la publicaciรณ" @@ -4509,7 +4476,7 @@ msgstr "Incrusta la publicaciรณ" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta aquesta publicaciรณ al teu lloc web. Copia el fragment segรผent i enganxa'l al codi HTML del teu lloc web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Incrusta el reproductor de vรญdeo" @@ -4531,9 +4498,9 @@ msgstr "Habilita el contingut per a adults" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Activa les funcions beta" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Activa els subtรญtols" @@ -4550,12 +4517,13 @@ msgstr "Habilita els continguts externs" msgid "Enable media players for" msgstr "Habilita reproductors de contingut per" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activa les notificacions per a un compte visitant el seu perfil i prement la <0>icona de la campana <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Activa les notificacions push" @@ -4581,7 +4549,7 @@ msgstr "Activa els vรญdeos populars al canal Discover" msgid "Enabled" msgstr "Habilitat" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fi del canal" @@ -4608,7 +4576,7 @@ msgstr "Introdueix una lletra o etiqueta" msgid "Enter code" msgstr "Entra el codi" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Entra a pantalla completa" @@ -4650,11 +4618,11 @@ msgstr "Introdueix el teu usuari i contrasenya" msgid "Enters full screen" msgstr "Canvia a pantalla completa" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Entreteniment" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" @@ -4684,7 +4652,7 @@ msgstr "Ha ocorregut un error en desar el fitxer" msgid "Error receiving captcha response." msgstr "Error en rebre la resposta al captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Error: {error}" @@ -4696,8 +4664,8 @@ msgstr "Tothom pot respondre" msgid "Everybody can reply to this post." msgstr "Tothom pot respondre a aquesta publicaciรณ." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Tothom" @@ -4711,14 +4679,14 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Tothom" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Tota la resta" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 msgid "Everything look right?" -msgstr "" +msgstr "Tot estร  correcte?" #. Advanced search filter #. Advanced search filter @@ -4738,7 +4706,7 @@ msgstr "Exclou els usuaris que segueixes" msgid "Excludes users you follow" msgstr "Exclou els usuaris que segueixes" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Surt de la pantalla completa" @@ -4755,11 +4723,11 @@ msgstr "Expandeix la llista d'usuaris" msgid "Expand or collapse the full post you are replying to" msgstr "Expandeix o replega la publicaciรณ completa a la qual estร s responent" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Expandeix el text de la publicaciรณ" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Amplia o redueix el text de la publicaciรณ" @@ -4802,15 +4770,15 @@ msgstr "Contingut explรญcit o potencialment pertorbador." msgid "Explicit sexual images." msgstr "Imatges sexuals explรญcites." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explora" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Explora l'aplicaciรณ" @@ -4844,7 +4812,7 @@ msgstr "Contingut extern" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "El contingut extern pot permetre que algunes webs recullin informaciรณ sobre tu i el teu dispositiu. No s'envia ni es demana cap informaciรณ fins que premis el botรณ \"reproduir\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferรจncia del contingut extern" @@ -4886,7 +4854,7 @@ msgstr "No s'ha pogut canviar l'identificador. Torna-ho a provar." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "No s'ha pogut copiar l'enllaรง" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "No s'ha pogut abandonar el xat de grup" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "No s'han pogut carregar les converses" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "No s'han pogut carregar els canals" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "No s'han pogut carregar les preferรจncies dels canals" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "No s'ha pogut carregar la configuraciรณ de notificacions." @@ -5012,14 +4981,14 @@ msgstr "No s'ha pogut carregar la preferรจncia." msgid "Failed to load profiles" msgstr "No s'han pogut carregar els perfils" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "No s'han pogut carregar els canals suggerits" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "No s'han pogut carregar els comptes suggerits" @@ -5027,12 +4996,12 @@ msgstr "No s'han pogut carregar els comptes suggerits" msgid "Failed to lock group chat" msgstr "No s'ha pogut bloquejar el xat de grup" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "No s'han pogut marcar tots els xats com a llegits" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "No s'ha pogut retirar la teva solยทlicitud. Torna-ho a provar." msgid "Failed to resolve location. Please try again." msgstr "La ubicaciรณ ha fallat. Torna-ho a provar." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Error en desar l'esborrany" @@ -5191,7 +5160,7 @@ msgstr "Compte fals o bot" msgid "False information about elections" msgstr "Informaciรณ falsa sobre les eleccions" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Canal" @@ -5212,7 +5181,7 @@ msgstr "Creador del canal" msgid "Feed identifier" msgstr "Identificador del canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menรบ del canal" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Comentaris enviats a l'operador del canal" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Canals actualitzats!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Canals que creiem que t'agradaran." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Cerca actualitzacions" @@ -5273,34 +5238,22 @@ msgstr "Cerca actualitzacions" msgid "File saved successfully!" msgstr "Fitxer desat amb รจxit" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Filtra per autor" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtra per autor (actualment: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Filtra per contingut multimรจdia" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Filtra per mรจdia (actualment: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtra-ho dels canals" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtra la cerca per idioma" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtra la cerca per idioma (actualment: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "Filtra la cerca per multimรจdia (actualment: {currentLabel})" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "Filtra aquesta cerca per {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtra qui pot optar per rebre notificacions de la teva activitat" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtra de qui reps notificacions" @@ -5318,7 +5271,7 @@ msgstr "Filtra de qui reps notificacions" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 msgctxt "search" msgid "Filters" -msgstr "" +msgstr "Filtres" #: src/screens/Onboarding/StepFinished/index.tsx:335 msgid "Finalizing" @@ -5352,8 +5305,8 @@ msgstr "Troba comptes per a seguir" msgid "Find and invite friends" msgstr "Cerca i convida amics" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Troba contactes" @@ -5387,7 +5340,7 @@ msgstr "Troba els teus amics" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Troba els teus amics a Bluesky verificant el teu nรบmero de telรจfon i fent-lo coincidir amb els teus contactes. Nosaltres protegim la teva informaciรณ i tu controles quรจ passa desprรฉs. <0>Mรฉs informaciรณ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Troba la teva gent" @@ -5429,7 +5382,7 @@ msgstr "Centra el camp de cerca" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Segueix {0}" msgid "Follow {displayName}" msgstr "Segueix {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Segueix {handle}" @@ -5453,11 +5406,11 @@ msgstr "Segueix {handle}" msgid "Follow 10 accounts" msgstr "Segueix 10 comptes" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Segueix a 10 persones per comenรงar" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Segueix 7 comptes" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Els seguidors es poden unir" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Seguidors de @{0} que coneixes" @@ -5544,7 +5497,7 @@ msgstr "Seguidors que coneixes" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Seguint {0}" msgid "Following {displayName}" msgstr "Seguint {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Seguint {handle}" @@ -5578,21 +5531,21 @@ msgstr "Seguint {handle}" msgid "Following feed preferences" msgstr "Preferรจncies del canal Seguint" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferรจncies del canal Seguint" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Et segueix" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Tipus de lletra" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Mida de la lletra" @@ -5612,13 +5565,13 @@ msgstr "Per motius de seguretat necessitem enviar-te un codi de confirmaciรณ al msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Per motius de seguretat, no podrร s tornar a veure aixรฒ. Si perds aquesta contrasenya d'aplicaciรณ, n'haurร s de generar una de nova." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Per obtenir la millor experiรจncia, et recomanem utilitzar el tipus de lletra del tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Per a tu" @@ -5628,7 +5581,7 @@ msgstr "Per a tu" msgid "Forever" msgstr "Per sempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Oblida't del soroll" @@ -5647,11 +5600,11 @@ msgstr "Has oblidat la contrasenya?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Quatre bombolles de missatge que representen un xat de grup. Primer missatge: ยซHas vist la novetat? Bluesky ja tรฉ xats de grup!ยป Segon missatge: ยซostres, no fotisยป Tercer missatge: ยซUau, 50 persones en un sol xat!ยป Quart missatge: ยซTambรฉ pots enviar enllaรงos d'invitaciรณi!ยป" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Allibera el teu canal" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De" @@ -5674,7 +5627,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "D'aquestes persones" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Genera un starter pack" @@ -5712,45 +5665,45 @@ msgstr "Germ DM reconnectat" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features weโ€™re testing." -msgstr "" +msgstr "Obtรฉn accรฉs anticipat a les funcions experimentals que estem provant." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Aconsegueix ajuda" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Rep notificacions sobre adhesions a starter packs, verificacions i altres activitats." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Rep notificacions quan la gent et segueixi." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Rep notificacions quan a la gent li agradin les teves publicacions." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Rep notificacions quan a la gent li agradin les teves republicacions." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Rep notificacions quan la gent et mencioni." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Rep notificacions quan la gent citi les teves publicacions." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Rep notificacions quan la gent respongui a les teves publicacions." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Rep notificacions quan la gent republiqui les teves publicacions." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Rep notificacions quan la gent republiqui les teves republicacions." @@ -5762,15 +5715,15 @@ msgstr "Rep notificacions quan la gent t'enviรฏ solยทlicituds de missatge." msgid "Get notifications when people send you messages." msgstr "Rep notificacions quan la gent t'enviรฏ missatges." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Rep notificacions quan hi hagi activitat als apunts als quals estร s subscrit." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Rep notificacions sobre noves publicacions" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Rep notificacions sobre publicacions i respostes dels comptes que triรฏs." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Rep notificacions de les noves publicacions de {name}" @@ -5799,11 +5752,11 @@ msgstr "Comenรงa" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "S'ha penjat el GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Posa una cara al teu perfil" @@ -5813,20 +5766,20 @@ msgstr "Glorificaciรณ de la violรจncia" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,9 +5829,9 @@ msgid "Go live for" msgstr "Emet en directe durant" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" -msgstr "" +msgstr "Vรฉs al perfil de {0}" #: src/view/com/notifications/NotificationFeedItem.tsx:256 msgid "Go to {firstAuthorName}'s profile" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "S'ha actualitzar el nom del grup de xat" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Parร metres del xat de grup" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Els xats de grup nomรฉs poden tenir un mร xim de {0, plural, one {# persona} other {# persones}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "El grup estร  bloquejat" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Nom del grup" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "El nom del grup รฉs massa llarg. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {} other {El nombre mร xim de carร cters รฉs #.}}" @@ -6077,7 +6031,7 @@ msgstr "Activitats nocives o d'alt risc" msgid "Harming or endangering minors" msgstr "Perjudicar o posar en perill els menors" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Etiqueta" @@ -6098,7 +6052,7 @@ msgstr "Tens un codi?<0>Clica aquรญ." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Hem encertat la teva ubicaciรณ? <0>Toca aquรญ per actualitzar la teva ubicaciรณ amb el GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Tens problemes?" @@ -6114,7 +6068,7 @@ msgstr "Retingut per Bluesky durant 7 dies per evitar abusos, i desprรฉs elimina msgid "Help" msgstr "Ajuda" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Ajuda la gent a saber que no ets un bot penjant una imatge o creant un avatar." @@ -6135,12 +6089,12 @@ msgstr "Ep!" msgid "Hi there!" msgstr "Ep!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Amagat" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Amagat per la teva configuraciรณ de moderaciรณ." @@ -6148,9 +6102,10 @@ msgstr "Amagat per la teva configuraciรณ de moderaciรณ." msgid "Hidden list" msgstr "Llista amagada" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Llista amagada" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Amaga" @@ -6181,7 +6137,7 @@ msgstr "Amaga les llistes" #: src/screens/Login/LoginForm.tsx:613 msgid "Hide password" -msgstr "" +msgstr "Amaga la contrasenya" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 @@ -6198,7 +6154,7 @@ msgstr "Amaga la resposta per a tothom" msgid "Hide reply for me" msgstr "Amaga'm la resposta" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Amaga aquesta targeta" @@ -6218,16 +6174,18 @@ msgstr "Vols amagar aquesta resposta?" msgid "Hide translation" msgstr "Amaga la traducciรณ" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Amaga els temes del moment" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Vols amagar els temes del moment?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Vols amagar els vรญdeos populars?" @@ -6240,7 +6198,7 @@ msgstr "Amaga la llista d'usuaris" msgid "Hide verification badges" msgstr "Amaga les insรญgnies de verificaciรณ" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Amaga el contingut" @@ -6293,8 +6251,8 @@ msgstr "No podem carregar el servei de moderaciรณ." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Espera! A poc a poc estem donant accรฉs al vรญdeo i encara estร s a la cua. Torna mรฉs tard!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6315,15 +6273,11 @@ msgstr "Proveรฏdor d'allotjament" #. placeholder {0}: toNiceHostingUrl(state.pdsUrl) #: src/screens/Login/LoginForm.tsx:655 msgid "Hosting provider: {0}" -msgstr "" +msgstr "Proveรฏdor d'allotjament: {0}" #: src/screens/Login/LoginForm.tsx:657 msgid "Hosting provider: Bluesky" -msgstr "" - -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Candent" +msgstr "Proveรฏdor d'allotjament: Bluesky" #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" @@ -6409,6 +6363,7 @@ msgstr "Si actualitzes el teu correu, es deshabilitarร  la verificaciรณ en dos p msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si vols canviar la contrasenya t'enviarem un codi per a verificar que aquest compte รฉs teu." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Si vols restringir qui pot rebre notificacions de l'activitat del teu compte, pots canviar-ho a <0>Configuraciรณ โ†’ Privacitat i seguretat." @@ -6548,7 +6503,7 @@ msgstr "A l'aplicaciรณ, push, tothom" msgid "In-app, push, people you follow" msgstr "A l'aplicaciรณ, push, gent a qui segueixes" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Safata d'entrada buida" @@ -6564,7 +6519,6 @@ msgstr "La safata estร  buida" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "Inclou" @@ -6573,7 +6527,7 @@ msgstr "Inclou" msgid "Include or exclude matching posts (currently: {0})" msgstr "Inclou o exclou les publicacions coincidents (actualment: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Inclou publicacions o respostes (actualment: {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "Inclou les publicacions fetes des d'aquesta data" msgid "Include posts made until this date" msgstr "Inclou publicacions fetes fins a aquesta data" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Inclou aquests resultats" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Nom d'usuari o contrasenya incorrectes" @@ -6683,7 +6633,7 @@ msgstr "Convida {name} a unir-se a Bluesky" msgid "Invite code" msgstr "Codi d'invitaciรณ" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Codi d'invitaciรณ rebutjat. Comprova que l'has entrat correctament i torna-ho a provar." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Ara nomรฉs ets tu! Afegeix mรฉs persones al teu starter pack cercant a dalt." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Identificador de la tasca: {0}" @@ -6816,8 +6766,8 @@ msgstr "Uneix-te a la conversa" msgid "Journalism" msgstr "Periodisme" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continua editant" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "Lloc web de KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etiquetat per {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etiquetat per l'autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiquetes" @@ -6850,9 +6800,9 @@ msgstr "Etiquetes afegides" #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "Labels applied to this post" -msgstr "" +msgstr "Etiquetes aplicades a aquesta publicaciรณ" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Les etiquetes sรณn anotacions sobre els usuaris i el contingut. Poden ser utilitzades per a ocultar, advertir i categoritzar la xarxa." @@ -6864,7 +6814,7 @@ msgstr "Etiquetes al teu compte" msgid "Language" msgstr "Idioma" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Configuraciรณ d'idioma" @@ -6874,7 +6824,7 @@ msgstr "Configuraciรณ d'idioma" msgid "Languages" msgstr "Idiomes" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Mรฉs gran" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "รšltima iniciaciรณ ara mateix" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "El mรฉs recent" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Mรฉs informaciรณ" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Mรฉs informaciรณ" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Mรฉs informaciรณ sobre <0>com utilitzar la cerca avanรงada." @@ -6937,8 +6887,8 @@ msgstr "Mรฉs informaciรณ sobre la importaciรณ de contactes" msgid "Learn more about self hosting your PDS." msgstr "Mรฉs informaciรณ sobre com allotjament el teu PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Mรฉs informaciรณ sobre la moderaciรณ que s'ha aplicat a aquesta publicaciรณ" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Aprรจn mรฉs sobre aquests canvis i com compartir les teves opinions amb nosaltres llegint la nostra entrada de blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Mรฉs informaciรณ d'aquesta advertรจncia" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Mรฉs informaciรณ a la <0>configuraciรณ del compte." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Mรฉs informaciรณ." @@ -6993,8 +6943,8 @@ msgstr "Surt" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Sortint de Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Si surts d'aquesta conversa, es bloquejarร  permanentment i no t'hi podrร s tornar a unir." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Has abandonat el xat de grup." @@ -7042,7 +6992,7 @@ msgstr "Has abandonat el xat de grup." msgid "left to go." msgstr "queda." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Deixa'm triar" @@ -7057,7 +7007,7 @@ msgstr "Som-hi!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Clar" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Clar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "M'agrada" @@ -7076,7 +7026,7 @@ msgstr "M'agrada" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "M'agrada ({0, plural, one {# m'agrada} other {# m'agrades}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Fes m'agrada a 10 publicacions" @@ -7085,7 +7035,7 @@ msgstr "Fes m'agrada a 10 publicacions" msgid "Like 10 posts to train the Discover feed" msgstr "Fes m'agrada a 10 publicacions per a entrenar el canal Discover" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Fes m'agrada a aquest canal" @@ -7093,8 +7043,8 @@ msgstr "Fes m'agrada a aquest canal" msgid "Like this labeler" msgstr "Fes m'agrada a aquest etiquetador" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Li ha agradat a" @@ -7111,27 +7061,45 @@ msgstr "Li ha agradat a" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Li ha agradat a {0, plural, one {# usuari} other {# usuaris}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Li ha agradat a {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Li ha agradat a {0} i {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Li ha agradat a {likeCount, plural, one {# usuari} other {# usuaris}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "M'agrades" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "M'agrades de les teves republicacions" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "M'agrades a aquesta publicaciรณ" @@ -7144,7 +7112,7 @@ msgstr "Lineal" msgid "Link copied to clipboard" msgstr "S'ha copiat l'enllaรง en memรฒria" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Llista" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Llista no silenciada" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "EN DIRECTE" msgid "Live event happening now: {0}" msgstr "Esdeveniment en directe que tรฉ lloc ara: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Esdeveniment en directe amagat" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Esdeveniment en directe mostrat" @@ -7279,12 +7247,12 @@ msgstr "La funciรณ en directe estร  en fase beta" msgid "Live link" msgstr "Enllaรง de l'emissiรณ en directe" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Carrega'n mรฉs" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Carrega mรฉs canals suggerits" @@ -7292,8 +7260,8 @@ msgstr "Carrega mรฉs canals suggerits" msgid "Load new notifications" msgstr "Carrega noves notificacions" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Tanca aquest xat de grup" msgid "Locked" msgstr "Tancat" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Registre" @@ -7387,7 +7355,7 @@ msgstr "GIFs d'amor" msgid "Make adjustments to email settings for your account" msgstr "Fes ajustaments a la configuraciรณ del correu del teu compte" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Fes-ne un per mi" @@ -7411,22 +7379,22 @@ msgstr "Gestiona les teves etiquetes i paraules silenciades" #: src/screens/Login/components/HostingProviderDialog.tsx:173 #: src/screens/Login/components/HostingProviderDialog.tsx:174 msgid "Manual" -msgstr "" +msgstr "Manual" #: src/screens/Messages/Inbox.tsx:312 #: src/screens/Messages/Inbox.tsx:318 msgid "Mark all as read" msgstr "Marca-ho tot com a llegit" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marca tots els xats com a llegits" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Marca com a llegit" msgid "Marked all as read" msgstr "S'ha marcat tot com a llegit" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "S'han marcat tots els xats com a llegits" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "S'han marcat totes les solยทlicituds com a llegides" @@ -7456,8 +7424,12 @@ msgstr "S'han marcat totes les solยทlicituds com a llegides" msgid "Maybe later" msgstr "Potser mรฉs tard" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Jo" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Imatges" @@ -7475,7 +7447,7 @@ msgstr "Imatge desada en un altre dispositiu" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Continguts que poden ser inquietants o inadequats per a alguns pรบblics." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Membre eliminat del xat de grup." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "usuaris mencionats" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mencions" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Missatge esborrat" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "No s'ha pogut enviar el missatge." @@ -7563,15 +7535,15 @@ msgstr "El missatge รฉs massa llarg ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Opcions del missatge" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Missatges" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Els missatges d'aquesta persona estan ocults mentre t'estigui bloquejant." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Els missatges d'aquesta persona s'oculten mentre la tinguis bloquejada." @@ -7592,7 +7564,7 @@ msgstr "Enganyรณs" msgid "Missing media" msgstr "No es troba la imatge" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderaciรณ" @@ -7636,7 +7608,7 @@ msgstr "S'ha actualitzat la llista de moderaciรณ" msgid "Moderation lists" msgstr "Llistes de moderaciรณ" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Llistes de moderaciรณ" @@ -7645,7 +7617,7 @@ msgstr "Llistes de moderaciรณ" msgid "moderation settings" msgstr "preferรจncies de moderaciรณ" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Estats de moderaciรณ" @@ -7786,7 +7758,7 @@ msgstr "Silenciat" msgid "Muted accounts" msgstr "Comptes silenciats" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Comptes silenciats" @@ -7867,7 +7839,6 @@ msgstr "Has d'informar d'una infracciรณ dels drets d'autor, una solยทlicitud leg msgid "Nevermind, create a handle for me" msgstr "Tant hi fa, crea'm un identificador" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nou" @@ -7893,11 +7864,11 @@ msgstr "Nou {postsCount, plural, one {publicaciรณ} other{publicacions}} de {firs #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Xat nou" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Funciรณ nova" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nous seguidors" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nou xat de grup" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nou xat de grup" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nou xat de grup amb:" @@ -7966,13 +7937,13 @@ msgstr "Llista nova" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Solยทlicituds de missatges nous" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Missatges nous" @@ -7982,12 +7953,12 @@ msgstr "Missatges nous" msgid "New password" msgstr "Nova contrasenya" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nova publicaciรณ" @@ -8011,7 +7982,7 @@ msgstr "Nou starter pack" #: src/screens/Login/LoginForm.tsx:569 msgid "New to Bluesky? <0>Sign up" -msgstr "" +msgstr "Ets nou a Bluesky? <0>Registra't" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Les respostes mรฉs noves primer" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Notรญcies" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Segรผent imatge" msgid "Night" msgstr "Nit" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Sense anuncis, sense seguiment invasiu, sense trampes d'interacciรณ. Bluesky respecta el teu temps i la teva atenciรณ." @@ -8065,9 +8036,14 @@ msgstr "Sense anuncis, sense seguiment invasiu, sense trampes d'interacciรณ. Blu msgid "No app passwords yet" msgstr "Encara no hi ha contrasenyes d'aplicaciรณ" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "Sense filtre d'autor" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "De moment no hi ha funcions beta." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8074,7 @@ msgstr "Sense caducitat definida" msgid "No feeds found. Try searching for something else." msgstr "No s'han trobat canals. Intenta cercar una altra cosa." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Encara no hi ha seguidors" @@ -8116,9 +8092,15 @@ msgstr "No hi ha GIFs per mostrar ara, prova-ho mรฉs tard." msgid "No image" msgstr "Sense imatge" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "Sense filtre d'idioma" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Encara no tรฉ cap m'agrada" @@ -8135,7 +8117,12 @@ msgstr "No hi ha llistes" msgid "No longer following {0}" msgstr "Ja no segueixes a {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "Sense filtre multimรจdia" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Encara no hi ha imatges" @@ -8143,7 +8130,7 @@ msgstr "Encara no hi ha imatges" msgid "No messages yet" msgstr "Encara no tens cap missatge" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "S'han acabat els algoritmes plens de brossa i que t'enganxen en una espiral de notรญcies negatives. Troba canals que funcionin per a tu, no en contra teva." @@ -8180,16 +8167,21 @@ msgstr "Ningรบ mรฉs que l'autor pot citar aquesta publicaciรณ." msgid "No one can send messages" msgstr "Ningรบ pot enviar missatges" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "Sense filtre de publicacions" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "No hi ha publicacions aquรญ" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Encara no hi ha publicacions" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Encara no tรฉ cap citaciรณ" @@ -8198,11 +8190,7 @@ msgstr "Encara no tรฉ cap citaciรณ" msgid "No recent GIFs yet. Pick one to see it here." msgstr "No hi ha GIFs recents encara. Tria'n un per veure'l aquรญ." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "Sense respostes" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Encara no hi ha respostes" @@ -8217,13 +8205,13 @@ msgstr "Cap resultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Cap resultat" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "No s'han trobat resultats per \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "No s'han trobat resultats" msgid "No results found for \"{query}\"" msgstr "No s'han trobat resultats per \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "No s'ha trobat cap resultat per a ยซ<0>{query}ยป amb els filtres de cerca avanรงada aplicats." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "No s'han trobat resultats per a โ€œ<0>{query}โ€." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "No s'ha trobat cap resultat per a la teva consulta amb els filtres de cerca avanรงada aplicats." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Cap resultat." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "No hi ha Starter Packs encara" @@ -8265,7 +8253,7 @@ msgstr "No, grร cies" msgid "No translation received from your device." msgstr "No s'ha rebut cap traducciรณ del vostre dispositiu." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Encara no hi ha publicacions de vรญdeo" @@ -8278,7 +8266,7 @@ msgstr "Ningรบ" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "A ningรบ encara li ha agradat aixรฒ. Potser hauries de ser el primer!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ningรบ ha citat aixรฒ encara. Potser hauries de ser el primer!" @@ -8298,6 +8286,10 @@ msgstr "Imatges รญntimes no consentides" msgid "Non-sexual Nudity" msgstr "Nuesa no sexual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Cap" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "No disponible en aquesta plataforma." msgid "Not followed by anyone youโ€™re following" msgstr "No el segueix ningรบ a qui segueixis" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "No s'ha trobat" @@ -8333,7 +8325,7 @@ msgstr "Nota sobre compartir" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky รฉs una xarxa oberta i pรบblica. Aquesta configuraciรณ tan sols limita el teu contingut a l'aplicaciรณ de Bluesky i a la web, altres aplicacions poden no respectar-ho. El teu contingut pot ser mostrat a usuaris no connectats per altres aplicacions i webs." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Nota: Aquesta publicaciรณ nomรฉs รฉs visible per als usuaris que han iniciat la sessiรณ." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Encara no hi ha res desat" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Configuraciรณ de les notificacions" @@ -8353,11 +8345,12 @@ msgstr "Configuraciรณ de les notificacions" msgid "Notification sounds" msgstr "Sons de les notificacions" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Ostres!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "D'acord" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "D'acord" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Restableix la incorporaciรณ" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Un dels destinataris seleccionats no permet xats grupals." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Un dels destinataris seleccionats t'ha bloquejat i no se li pot enviar cap missatge." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Falta el text alternatiu a un o mรฉs GIFs." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Falta el text alternatiu a una o mรฉs imatges." @@ -8454,11 +8449,11 @@ msgstr "Un o mรฉs dels fitxers seleccionats no sรณn compatibles." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "Un o mรฉs dels fitxers seleccionats sรณn massa grans. La mida mร xima รฉs de {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Una o mรฉs publicacions sรณn massa llargues per desar-les com a esborrany. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {El nombre mร xim de carร cters รฉs de # carร cter.} other {El nombre mร xim de carร cters รฉs de # carร cters.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Falta el text alternatiu a un o mรฉs videos." @@ -8471,7 +8466,7 @@ msgstr "Nomรฉs {0} poden respondre." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Nomรฉs s'han afegit {0} de {1} {2, plural, one {imatge} other {imatges}}; el lรญmit รฉs {MAX_GALLERY_IMAGES}" @@ -8507,6 +8502,10 @@ msgstr "Nomรฉs s'hi pot unir gent a qui {0} segueix." msgid "Only people the chat owner follows can join" msgstr "Nomรฉs les persones que segueix el propietari del xat poden unir-s'hi" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "Nomรฉs publicacions" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "Nomรฉs publicacions amb contingut multimรจdia" @@ -8519,7 +8518,7 @@ msgstr "Nomรฉs publicacions amb vรญdeos" msgid "Only replies" msgstr "Nomรฉs respostes" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Nomรฉs s'admeten fitxers WebVTT (.vtt)" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Vaja, aquest perfil no existeix. Prova d'escanejar-ne un altre." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ostres!" @@ -8544,7 +8543,7 @@ msgstr "Ostres!" msgid "Open advanced search options" msgstr "Obre les opcions de cerca avanรงada" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Obre el creador d'avatars" @@ -8570,21 +8569,22 @@ msgstr "Obre les opcions de les converses" msgid "Open draft" msgstr "Obre l'esborrany" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Obre el menรบ del calaix" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Obre el selector d'emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Obre la pantalla d'informaciรณ del canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Obre el menรบ de les opcions del canal" @@ -8627,7 +8627,7 @@ msgstr "Obre la pร gina de depuraciรณ de moderaciรณ" msgid "Open muted words and tags settings" msgstr "Obre la configuraciรณ de les paraules i etiquetes silenciades" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Obre el pack" @@ -8681,7 +8681,7 @@ msgstr "Obre un diร leg per afegir un avรญs de contingut a la teva publicaciรณ" #: src/screens/Login/LoginForm.tsx:645 msgid "Opens a dialog to change the hosting provider you sign in to" -msgstr "" +msgstr "Obre un diร leg per canviar el proveรฏdor d'allotjament amb el qual inicieu sessiรณ" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 msgid "Opens a dialog to choose who can interact with this post" @@ -8699,7 +8699,7 @@ msgstr "Obre detalls addicionals per una entrada de depuraciรณ" msgid "Opens alt text dialog" msgstr "Obre el diร leg de text alternatiu" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Obre la cร mera del dispositiu" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Obre el procรฉs per a crear un nou compte de Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Obre el procรฉs per a iniciar sessiรณ a un compte existent de Bluesky" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Contrasenya actualitzada!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Posa en pausa" @@ -8925,12 +8925,12 @@ msgstr "Posa en pausa" msgid "Pause GIF" msgstr "Pausa el GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Posa en pausa el vรญdeo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Gent" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Les persones que segueixen {ownerName} poden solยทlicitar unir-s'hi" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Persones seguides per @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Persones seguint a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Gent que segueixo" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Les persones que segueixo poden solยทlicitar unir-se" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Persones que segueixes" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Imatges destinades a adults." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixa el canal" @@ -9034,7 +9034,7 @@ msgstr "Fixa el canal" msgid "Pin to home" msgstr "Fixa a l'inici" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fixa a l'Inici" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Fixat" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} fixat a l'inici" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Fixat als teus canals" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Reprodueix" @@ -9076,8 +9076,8 @@ msgstr "Reprodueix {0}" msgid "Play GIF" msgstr "Reprodueix el GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reprodueix el vรญdeo" @@ -9109,11 +9109,11 @@ msgstr "Afegeix les etiquetes d'advertรจncia de contingut aplicables als conting 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Tria el teu identificador." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Tria la teva contrasenya." @@ -9122,7 +9122,7 @@ msgstr "Tria la teva contrasenya." 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 "Fes clic a l'enllaรง del correu que us acabem d'enviar per verificar la teva nova adreรงa electrรฒnica. Aquest รฉs un pas important per permetre't continuar gaudint de totes les funcions de Bluesky." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Completa el captcha de verificaciรณ." @@ -9179,7 +9179,7 @@ msgstr "Introdueix el codi que has rebut i la nova contrasenya que vols utilitza 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:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Introdueix el teu correu." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Escriu el teu missatge a continuaciรณ:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Polรญtica" @@ -9269,7 +9269,7 @@ msgstr "Polรญtica" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publica" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Publica" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Publica una foto" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Publica un vรญdeo" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publica-ho tot" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Publica de totes maneres" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Publicaciรณ bloquejada" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Publicaciรณ per @{0}" @@ -9340,7 +9340,7 @@ msgstr "Publicaciรณ amagada per tu" msgid "Post interaction settings" msgstr "Configuraciรณ de les interaccions de la publicaciรณ" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Configuraciรณ de les interaccions de la publicaciรณ" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Publicaciรณ fixada" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "S'ha desat la publicaciรณ" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "Tipus de publicaciรณ" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Publicaciรณ sense fixar" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Publicacions" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "Publicacions i respostes" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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รณ." @@ -9398,6 +9396,10 @@ msgstr "Les publicacions es poden silenciar segons el seu text, les seves etique msgid "Posts hidden" msgstr "Publicacions amagades" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Publicacions, Respostes" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Enllaรง potencialment enganyรณs" @@ -9449,20 +9451,21 @@ msgstr "Privacitat" msgid "Privacy and security" msgstr "Privadesa i seguretat" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privadesa i seguretat" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Configuraciรณ de privadesa i seguretat" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Polรญtica de privacitat" msgid "Privacy violation of a minor" msgstr "Violaciรณ de la privadesa d'un menor" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Processant el GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Processant el vรญdeo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Llistes pรบbliques i compartibles d'usuaris per silenciar o bloquejar de manera massiva." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publica la publicaciรณ" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publica les publicacions" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publica les respostes" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publica la resposta" @@ -9599,12 +9602,12 @@ msgstr "S'han deshabilitat les citacions" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citacions" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citacions d'aquesta publicaciรณ" @@ -9647,7 +9650,7 @@ msgstr "Torna a activar el teu compte" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Llegeix {0, plural, one {# resposta mรฉs} other {# respostes mรฉs}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Consulta com utilitzar els filtres de cerca avanรงats" @@ -9657,11 +9660,11 @@ msgstr "Consulta com utilitzar els filtres de cerca avanรงats" msgid "Read blog post" msgstr "Llegeix la publicaciรณ del blog" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Mostra'n menys" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Mostra'n mรฉs" @@ -9687,11 +9690,11 @@ msgstr "Llegeix la polรญtica de privacitat de Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Llegeix els termes de servei de Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Converses reals." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Persones reals." @@ -9721,10 +9724,6 @@ msgstr "Cerques recents" msgid "Recently used" msgstr "Utilitzat recentment" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomanats" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Torna a connectar" @@ -9748,7 +9747,7 @@ msgstr "Rebutja la solยทlicitud de xat" msgid "Reject join request" msgstr "Rebutja la solยทlicitud per a unir-te" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Carrega les converses de nou" @@ -9766,7 +9765,7 @@ msgstr "Carrega les converses de nou" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Elimina" @@ -9792,8 +9791,8 @@ msgstr "Vols eliminar {displayName}?" msgid "Remove {q}" msgstr "Elimina {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Elimina el compte" @@ -9845,15 +9844,15 @@ msgstr "Elimina el filtre" msgid "Remove from chat" msgstr "Elimina del xat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Elimina dels meus canals" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Vols eliminar-lo de l'accรฉs rร pid?" @@ -9862,7 +9861,7 @@ msgstr "Vols eliminar-lo de l'accรฉs rร pid?" msgid "Remove from saved feeds" msgstr "Elimina'l dels canals desats" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Elimina de les publicacions desades" @@ -9880,8 +9879,8 @@ msgstr "Elimina la imatge" msgid "Remove live status" msgstr "Elimina l'estat en directe" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Elimina el membre" @@ -9943,7 +9942,7 @@ msgstr "Elimina de la llista" msgid "Removed from saved feeds" msgstr "Eliminat dels canals desats" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "S'ha eliminat de les publicacions desades" @@ -9952,7 +9951,7 @@ msgstr "S'ha eliminat de les publicacions desades" msgid "Removed from starter pack" msgstr "Eliminat de l'starter pack" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "T'ha respost" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Missatge respost de {senderName}, toca per desplaรงar-t'hi" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "El missatge respost es va enviar abans que t'unissis" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Missatge respost, toca per desplaรงar-t'hi" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respostes" @@ -10037,7 +10037,7 @@ msgstr "Les respostes a aquesta publicaciรณ estan deshabilitades." msgid "Reply" msgstr "Respon" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Respon" @@ -10098,8 +10098,8 @@ msgstr "Informa d'aquesta conversa" msgid "Report dialog" msgstr "Diร leg de l'informe" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Informa del canal" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Republicat per tu" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Republicacions" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Republicacions d'aquesta publicaciรณ" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Republicacions de les teves republicacions" @@ -10253,7 +10253,7 @@ msgstr "Solยทlicitat" msgid "Requests" msgstr "Solยทlicituds" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10333,7 +10333,7 @@ msgstr "Restableix la contrasenya" #: src/screens/Login/LoginForm.tsx:422 msgid "Reset your password by sending a code to your email" -msgstr "" +msgstr "Restableix la contrasenya enviant un codi al teu correu electrรฒnic" #: src/screens/Settings/FindContactsSettings.tsx:544 #: src/screens/Settings/FindContactsSettings.tsx:560 @@ -10358,10 +10358,10 @@ msgstr "Torna a intentar l'รบltima acciรณ, que ha donat error" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Torna a la pร gina d'inici" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Torna a la pร gina anterior" @@ -10406,7 +10406,7 @@ msgstr "Ves al pas anterior" #: src/screens/Login/LoginForm.tsx:613 msgid "Reveal password" -msgstr "" +msgstr "Mostra la contrasenya" #. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. #: src/features/gifPicker/components/GifCategoryPills.tsx:75 @@ -10446,27 +10446,27 @@ msgstr "Desa la data de naixement" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Desa els canvis" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Vols desar els canvis?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Desa l'esborrany" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Vols desar l'esborrany?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Desa el codi QR" msgid "Save these options for next time" msgstr "Desa aquestes opcions per a la propera vegada" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Desa-ho als meus canals" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Canals desats" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Publicacions desades" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "S'ha desat als teus canals." @@ -10520,8 +10520,8 @@ msgstr "S'ha desat als teus canals." msgid "Say hello!" msgstr "Digues hola!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Saluda a algรบ" @@ -10535,7 +10535,7 @@ msgstr "Escaneja" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Escaneja el codi QR" @@ -10543,15 +10543,15 @@ msgstr "Escaneja el codi QR" msgid "Science" msgstr "Ciรจncia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Desplaรงa't a l'esquerra" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Desplaรงa't a la dreta" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Desplaรงa't fins al missatge al qual es respon" @@ -10564,8 +10564,8 @@ msgstr "Desplaรงa't cap a dalt" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Cerca" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cerca a les publicacions de @{0}" @@ -10606,17 +10606,17 @@ msgstr "Cerca ยซ{searchText}ยป" #: src/screens/Search/components/SearchHistory.tsx:136 msgid "Search for {q}" -msgstr "" +msgstr "Cerca per {q}" #: src/screens/StarterPack/Wizard/index.tsx:541 msgid "Search for feeds that you want to suggest to others." msgstr "Cerca canals que vulgueu suggerir als altres." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Cerca mรฉs comptes" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Cerca mรฉs canals" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Cerca GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "La cerca no estร  disponible actualment amb la sessiรณ tancada" @@ -10707,17 +10707,22 @@ msgstr "Mostra les publicacions amb #{tag} de l'usuari" msgid "See jobs at Bluesky" msgstr "Veure les feines a Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Veure mรฉs" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Veure mรฉs perfils suggerits" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "Mostra mรฉs temes del moment" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Veure comptes suggerits" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Cerca el control lliscant. Utilitza les tecles de fletxa per cercar cap endavant i cap enrere, i l'espai per reproduir/pausar" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Selecciona la categoria \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Selecciona {0}" msgid "Select {langName}" msgstr "Selecciona {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecciona un color" @@ -10764,11 +10769,11 @@ msgstr "Selecciona el compte" msgid "Select an app language" msgstr "Selecciona un idioma de l'aplicaciรณ" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selecciona un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selecciona un emoji" @@ -10780,12 +10785,13 @@ msgstr "Selecciona una opciรณ" msgid "Select app language" msgstr "Selecciona l'idioma de l'aplicaciรณ" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Tria el fitxer de subtรญtols (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Selecciona el xat \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Selecciona GIF" msgid "Select GIF \"{0}\"" msgstr "Selecciona GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Selecciona els membres del grup del xat" @@ -10864,7 +10870,7 @@ msgstr "Selecciona l'idioma principal" msgid "Select telephone code" msgstr "Tria el codi de telรจfon" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Selecciona el {emojiName} emoji com al teu avatar" @@ -10945,7 +10951,8 @@ msgstr "Envia el missatge" msgid "Send post to {name}" msgstr "Envia la publicaciรณ a {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Envia el missatge a..." @@ -10963,12 +10970,12 @@ msgstr "Envia el missatge des del teu telรจfon" msgid "Send verification email" msgstr "Envia un correu de verificaciรณ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Envia per missatge directe" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Envia per xat" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11011,24 +11018,24 @@ msgstr "Estableix la teva data de naixement a continuaciรณ i et permetrem tornar #: src/screens/Login/LoginForm.tsx:352 msgid "set your hosting provider manually" -msgstr "" +msgstr "defineix manualment el teu proveรฏdor d'allotjament" #: src/screens/Login/LoginForm.tsx:486 msgid "Set your hosting provider manually" -msgstr "" +msgstr "Configura el teu proveรฏdor d'allotjament manualment" #: src/screens/Login/ForgotPasswordForm.tsx:104 msgid "Sets email for password reset" msgstr "Estableix un correu per a restablir la contrasenya" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Configuraciรณ" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Configuraciรณ de l'activitat d'altres persones" @@ -11036,49 +11043,49 @@ msgstr "Configuraciรณ de l'activitat d'altres persones" msgid "Settings for allowing others to be notified of your posts" msgstr "Configuraciรณ per permetre que altres persones rebin notificacions de les teves publicacions" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Configuraciรณ de les notificacions de \"m'agrada\"" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Configuraciรณ de les notificacions de mencions" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Configuraciรณ de les notificacions de nou seguidor" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Configuraciรณ de les notificacions de tota la resta" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Configuraciรณ de les notificacions de m'agrades a les teves republicacions" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Configuraciรณ de les notificacions per a noves solยทlicituds de missatge" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Configuraciรณ de les notificacions de missatges nous" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Configuraciรณ de les notificacions de republicacions de les teves republicacions" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Configuraciรณ de les notificacions de citacions" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Configuraciรณ de les notificacions de respostes" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Configuraciรณ de les notificacions de republicacions" @@ -11109,14 +11116,14 @@ msgstr "Comparteix" #: src/ageAssurance/useVerificationFlow.ts:62 msgid "Share age range" -msgstr "" +msgstr "Comparteix el rang d'edat" #: src/view/com/profile/ProfileMenu.tsx:549 msgid "Share anyway" msgstr "Comparteix de totes maneres" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Comparteix el DID de l'autor" @@ -11125,9 +11132,9 @@ msgstr "Comparteix el DID de l'autor" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Comparteix comentaris" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Diร leg de comparticiรณ de l'enllaรง" msgid "Share my profile" msgstr "Comparteix el meu perfil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Comparteix l'URI at:// de la publicaciรณ" @@ -11169,12 +11176,12 @@ msgstr "Comparteix el perfil" msgid "Share QR code" msgstr "Comparteix el codi QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Comparteix aquest canal" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Comparteix aquesta cerca" @@ -11186,8 +11193,8 @@ msgstr "Comparteix aquest starter pack" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparteix aquest starter pack i ajuda la gent de la teva comunitat a unir-se a Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,23 +11210,23 @@ msgstr "Comparteix els teus contactes per trobar amics" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughtsโ€ฆ" -msgstr "" +msgstr "Comparteix el que pensesโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Comprovador de preferรจncies compartides" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 msgid "Sharing your age range reveals only the range associated with your Apple Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "Compartir el teu rang d'edat nomรฉs revela el rang associat al teu Compte d'Apple, per exemple, que tens com a mรญnim 18 anys. <0>La teva edat exacta i la teva data de naixement mai no es comparteixen, i aquestes dades mai no surten d'aquest dispositiu. Per tant, nomรฉs permet l'accรฉs en aquest dispositiu. Com a alternativa, <1>pots utilitzar el nostre soci de confianรงa, KWS, per completar la teva verificaciรณ i habilitar l'accรฉs a totes les plataformes." #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "Compartir el teu interval d'edat nomรฉs revela l'interval associat al teu compte de Google, per exemple, que tens com a mรญnim 18 anys. <0>La teva edat exacta i la data de naixement no es comparteixen mai, i aquestes dades no surten mai d'aquest dispositiu. Per tant, nomรฉs permet l'accรฉs en aquest dispositiu. Com a alternativa, <1>pots utilitzar el nostre soci de confianรงa, KWS, per completar la verificaciรณ i habilitar l'accรฉs a totes les plataformes." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Mostra" msgid "Show alt text" msgstr "Mostra el text alternatiu" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Mostra igualment" @@ -11274,9 +11281,9 @@ msgstr "Mostra la llista de totes maneres" msgid "Show lists of users to select from" msgstr "Mostra llistes d'usuaris per seleccionar" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Mostra mรฉs" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "Mostra'n mรฉs" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Mostra l'advertiment i filtra-ho dels canals" msgid "Show when youโ€™re live" msgstr "Mostra quan estร s en directe" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Mostra informaciรณ sobre quan es va crear aquesta publicaciรณ" @@ -11341,15 +11348,15 @@ msgstr "Mostra informaciรณ sobre quan es va crear aquesta publicaciรณ" msgid "Shows other accounts you can switch to" msgstr "Mostra altres comptes als quals pots canviar" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Mostra el contingut" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Mostra el contingut" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11379,7 +11386,7 @@ msgstr "Inicia sessiรณ com a {0}" #: src/screens/Login/ChooseAccountForm.tsx:84 msgid "Sign in asโ€ฆ" -msgstr "" +msgstr "Inicia la sessiรณ com aโ€ฆ" #: src/screens/Deactivated.tsx:195 #: src/screens/Deactivated.tsx:201 @@ -11434,9 +11441,9 @@ msgstr "Tancar la sessiรณ?" #: src/screens/Login/LoginForm.tsx:572 msgid "Sign up" -msgstr "" +msgstr "Registra't" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Es requereix iniciar sessiรณ" @@ -11469,7 +11476,7 @@ msgstr "Salta aquest pas" msgid "Skip contact sharing and continue to the app" msgstr "Omet la comparticiรณ de contactes i continua a l'aplicaciรณ" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Vols ometre les publicacions buides?" @@ -11487,7 +11494,7 @@ msgstr "Salta al pas segรผent" msgid "slide" msgstr "llisca" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Mรฉs petit" @@ -11499,14 +11506,14 @@ msgstr "Posposa el recordatori" msgid "So many thoughts, you should post one" msgstr "Tantes idees, n'hauries de publicar alguna" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Xarxes socials que tu controles." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Prova social a les publicacions" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11520,7 +11527,7 @@ msgstr "Alguns serveis de moderaciรณ de la teva llista ja no estan disponibles." msgid "Some of your verifications are invalid." msgstr "Algunes de les teves verificacions no sรณn vร lides." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Alguns altres canals que potser t'agradaran" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Algรบ ha deixat el grup" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Algรบ ha reaccionat amb {0}" @@ -11554,7 +11561,7 @@ msgstr "Algรบ ha reaccionat amb {0}" msgid "Someone reacted {0} to {target}" msgstr "Algรบ ha reaccionat amb {0} a {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Algรบ ha respost" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Alguna cosa ha fallat, torna-ho a provar" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Alguna cosa ha fallat, torna-ho a provar d'aquรญ una estona." msgid "Something went wrong. Please try again." msgstr "Alguna cosa ha fallat, torna-ho a provar." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Alguna cosa no va a l'hora? Fes-nos-ho saber." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Correu brossa o altres comportaments no autรจntics o enganys" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Esports" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Detecta publicacions que han agradat als teus amics i persones que segueixes." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Enceta una conversa i apareixerร  aquรญ." msgid "Start a group chat" msgstr "Inicia un xat de grup" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Comenรงa un nou xat" @@ -11682,17 +11689,17 @@ msgstr "Comenรงa a afegir gent" msgid "Start adding people!" msgstr "Comenรงa a afegir gent" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Inicia un xat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Comenรงa un xat amb {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Starter pack" @@ -11715,12 +11722,16 @@ msgstr "Starter pack fet per tu" msgid "Starter pack is invalid" msgstr "Aquest starter pack รฉs invร lid" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Starter packs" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Starter packs" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Els starter packs et permeten compartir els teus canals i persones preferides amb els teus amics." @@ -11728,7 +11739,7 @@ msgstr "Els starter packs et permeten compartir els teus canals i persones prefe msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Els starter packs et permeten compartir els teus canals i persones preferides amb els teus amics." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Els Starter Packs et permeten compartir els teus canals i persones preferides amb els teus amics." @@ -11742,7 +11753,7 @@ msgstr "Pร gina d'estat" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Pas {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "L'emmagatzematge s'ha esborrat, cal que reinicieu l'aplicaciรณ ara." msgid "Stored as part of a secure code for matching with others" msgstr "Emmagatzemat com a part d'un codi segur per a la coincidรจncia amb altres persones" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Historial" @@ -11787,7 +11798,7 @@ msgstr "Envia l'apelยทlaciรณ" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Envia comentaris" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Subscriu-te a {publicationTitle} a {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscriu-te a @{0} per a utilitzar aquestes etiquetes:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Verificat correctament" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Suggerit" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Comptes suggerits" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Suggeriments per tu" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Ocร s" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Encara no s'ha activat la compatibilitat amb aquesta funciรณ al teu paรญs. Torna-ho a comprovar mรฉs tard." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Els comptes suspesos no poden participar en un xat de grup." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Els comptes suspesos no poden participar al xat." @@ -11921,8 +11934,8 @@ msgstr "Canvia a {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Fes la conversa privada." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Toca a continuaciรณ per a permetre que Bluesky accedeixi a la teva ubicaciรณ GPS. Farem servir aquestes dades per a determinar amb mรฉs precisiรณ el contingut i les funcions disponibles a la teva regiรณ." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Toca per a mรฉs detalls" @@ -11976,7 +11989,7 @@ msgstr "Toca per a tancar el menรบ contextual" msgid "Tap to copy this invite link" msgstr "Toca per copiar aquest enllaรง d'invitaciรณ" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Toca per a ignorar" @@ -12003,7 +12016,7 @@ msgstr "Toca per eliminar la teva reacciรณ {0}" msgid "Tap to request access to join this group chat" msgstr "Toca per solยทlicitar l'accรฉs a aquest xat de grup" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Toca per tornar-ho a provar" @@ -12016,7 +12029,7 @@ msgstr "Toca per mostrar {0} reaccions" msgid "Tap to show all reactions" msgstr "Toca per mostrar totes les reaccions" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Toca per veure les reaccions" @@ -12032,7 +12045,7 @@ msgstr "Tasca completa - 10 seguint!" msgid "Task complete - 10 likes!" msgstr "Tasca completa - 10 m'agrades!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Ensenya el que t'agrada al nostre algorisme" @@ -12060,7 +12073,7 @@ msgstr "Condicions" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Grร cies pels teus comentaris! S'han enviat a l'operador del canal." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Grร cies pels teus comentaris!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "No s'ha pogut trobar aquest starter pack." msgid "That username is already taken" msgstr "Aquest nom d'usuari ja estร  agafat" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Aixรฒ รฉs tot, amics!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Aixรฒ รฉs tot!" @@ -12171,7 +12184,7 @@ msgstr "S'ha canviat el canal per Discover." #: src/components/moderation/LabelsOnMeDialog.tsx:64 msgid "The following labels were applied to this post." -msgstr "" +msgstr "Les segรผents etiquetes s'han aplicat a aquesta publicaciรณ." #: src/components/moderation/LabelsOnMeDialog.tsx:63 msgid "The following labels were applied to your account." @@ -12216,7 +12229,7 @@ msgstr "Sembla que el servidor estร  experimentant problemes. Torneu-ho a provar msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "L'starter pack que estร s provant de veure no รฉs vร lid. En lloc d'aixรฒ, podeu suprimir-lo." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "El tema del menรบ contextual" @@ -12238,7 +12251,7 @@ msgstr "El codi de verificaciรณ que has proporcionat no รฉs vร lid. Assegura't q msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "El proveรฏdor de verificaciรณ no ha pogut enviar un codi al teu nรบmero de telรจfon. Comprova'l i torna-ho a provar." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "No s'han pogut carregar els GIFs. Comprova la teva connexiรณ i torna-ho msgid "There was a problem with your internet connection, please try again" msgstr "Hi ha hagut un problema amb la connexiรณ a Internet. Torna-ho a intentar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Hi ha hagut un problema amb la connexiรณ a Internet. Torna-ho a intentar msgid "There was an issue contacting the server" msgstr "Hi ha hagut un problema per a contactar amb el servidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "S'ha produรฏt un problema en contactar amb el servidor, comprova la teva connexiรณ a Internet i torna-ho a provar." @@ -12283,8 +12296,8 @@ msgstr "S'ha produรฏt un problema en contactar amb el servidor, comprova la teva msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquรญ per a tornar-ho a provar." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquรญ per a tornar-ho a provar." @@ -12309,7 +12322,7 @@ msgstr "Hi ha hagut un problema en recuperar la informaciรณ del teu servei" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "S'ha produรฏt un problema en eliminar aquest canal. Comprova la teva connexiรณ a Internet i torna-ho a provar." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Aquests parร metres nomรฉs s'apliquen al canal Seguint." msgid "These URLs" msgstr "Aquestes URLs" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Aquest xat รฉs seu" @@ -12392,7 +12405,7 @@ msgstr "Aquest xat รฉs seu" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "No s'hi podran tornar a unir tret que els hi tornis a convidar." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Aquesta {screenDescription} ha estat etiquetada:" @@ -12408,7 +12421,7 @@ msgstr "Aquest compte ha estat marcat com a automatitzat pel seu propietari." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Aquest compte tรฉ una o mรฉs verificacions, perรฒ actualment no estร  verificat." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Aquest compte ha solยทlicitat que els usuaris estiguin registrats per a veure el seu perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Aquest canal estร  buit! Necessites seguir mรฉs usuaris o modificar la teva configuraciรณ d'idiomes." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Aquest canal รฉs buit." @@ -12554,7 +12567,7 @@ msgstr "Aquest grup estร  bloquejat per una acciรณ de moderaciรณ sobre el propie msgid "This handle is reserved. Please try a different one." msgstr "Aquest identificador estร  reservat. Si us plau, provi un altre." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "No s'ha pogut utilitzar aquesta imatge. Prova un format diferent com ara .jpg o .png." @@ -12572,7 +12585,7 @@ msgstr "Aquest enllaรง de convit no รฉs vร lid" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 msgid "This is just a one-time security check, since we haven't seen this account on this device before." -msgstr "" +msgstr "Es tracta d'una comprovaciรณ de seguretat รบnica, ja que no havรญem vist aquest compte en aquest dispositiu abans." #: src/features/liveNow/components/EditLiveDialog.tsx:171 #: src/features/liveNow/components/GoLiveDialog.tsx:161 @@ -12594,9 +12607,9 @@ msgstr "Aquesta etiqueta ha estat aplicada per tu." #: src/components/moderation/LabelsOnMeDialog.tsx:156 #: src/components/moderation/ModerationDetailsDialog.tsx:231 msgid "This label was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "Aquesta etiqueta s'ha aplicat a tot el compte d'usuari i apareixerร  en totes les publicacions." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Aquest etiquetador no ha declarat quines etiquetes publica i pot ser que no estigui actiu." @@ -12621,13 +12634,13 @@ msgstr "Aquesta llista estร  buida." msgid "This message is hidden" msgstr "Aquest missatge estร  ocult" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Aquest missatge estร  ocult perquรจ aquest usuari t'estร  bloquejant." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Aquest missatge estร  ocult perquรจ heu blocat aquest usuari." @@ -12641,7 +12654,7 @@ msgstr "Aquesta persona t'ha bloquejat" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Aquesta publicaciรณ afirma haver estat creada el <0>{0}, perรฒ va ser vista per primera vegada per Bluesky el <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Aquesta publicaciรณ afirma haver estat creada el <0>{0}, perรฒ va se msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Aquesta publicaciรณ tรฉ un tipus de threadgate desconegut. ร‰s possible que la teva aplicaciรณ estigui obsoleta." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Aquesta publicaciรณ nomรฉs รฉs visible per als usuaris que han iniciat la sessiรณ." @@ -12661,7 +12674,7 @@ msgstr "L'autor ha eliminat la publicaciรณ" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Aquesta publicaciรณ s'amagarร  dels canals i fils. Aixรฒ no es pot desfer." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "L'autor d'aquesta publicaciรณ ha deshabilitat les citacions." @@ -12698,11 +12711,12 @@ msgstr "Aixรฒ nomรฉs hauria de tardar uns minuts." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Aquest usuari no tรฉ un nom de visualitzaciรณ i, per tant, no es pot verificar." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Aquest usuari no tรฉ cap seguidor." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Aquest usuari t'ha bloquejat i no se li pot enviar missatges." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Aquest usuari t'ha bloquejat. No pots veure les seves publicacions." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Aquest usuari ha desactivat el xat i no se li poden enviar missatges." @@ -12733,17 +12748,17 @@ msgstr "Aquest usuari estร  inclรฒs a la llista <0>{0} que has silenciat." msgid "This user is new here. Press for more info about when they joined." msgstr "Aquest usuari รฉs nou aquรญ. Prem per obtenir mรฉs informaciรณ sobre quan es van unir." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Aquest usuari no segueix a ningรบ." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Aquest vรญdeo no es pot reproduir al teu dispositiu. ร‰s possible que al teu navegador o sistema li faltin els cรฒdecs de vรญdeo necessaris (H.264/AAC)." #: src/view/com/composer/videos/VideoPreview.web.tsx:65 msgid "This video canโ€™t be previewed in your browser. It will still be uploaded." -msgstr "" +msgstr "Aquest vรญdeo no es pot previsualitzar al teu navegador. Tot i aixรญ, es carregarร ." #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 msgid "This will create a new list with the same name, description, and members as this starter pack." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Aixรฒ eliminarร  irreversiblement el teu compte de Bluesky <0>{currentHandle} i totes les dades associades. Tingues en compte que aixรฒ afectarร  qualsevol altre servei del <1>protocol AT que utilitzis amb aquest compte." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Aixรฒ eliminarร  @{0} de la llista d'accรฉs rร pid." @@ -12786,7 +12801,7 @@ msgstr "Preferรจncies dels fils de debat" msgid "Threaded" msgstr "En mode fils de debat" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferรจncies dels fils de debat" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Massa contactes: has superat el nombre de contactes que pots importar per trobar els teus amics" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Superior" @@ -12858,7 +12873,7 @@ msgstr "Superior" msgid "Top replies first" msgstr "Primer les respostes principals" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tema" @@ -12893,7 +12908,9 @@ msgstr "La traducciรณ al mateix idioma no estร  disponible al teu dispositiu." msgid "Tree view" msgstr "Vista d'arbre" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendรจncia" @@ -12902,13 +12919,15 @@ msgstr "Tendรจncia" msgid "Trending GIFs" msgstr "GIFs de moda" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opcions dels temes del moment" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Vรญdeos populars" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Trolejar" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "La confianรงa sorgeix de les relacions, les comunitats i el context compartit, de manera que tambรฉ estem habilitant <0>verificadors de confianรงa: organitzacions que poden emetre directament la verificaciรณ." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Prova un terme de cerca diferent o elimina alguns filtres." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Prova un terme de cerca diferent." @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "No s'han pogut obtenir les solยทlicituds d'uniรณ." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "No s'ha pogut trobar un destinatari seleccionat." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "No s'ha pogut trobar el destinatari seleccionat." @@ -13024,12 +13045,12 @@ msgstr "No disponible" msgid "Unavailable feed information" msgstr "Informaciรณ del canal no disponible" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Vols desbloquejar el compte?" msgid "Unblock list" msgstr "Desbloqueja la llista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Deixa de seguir a {0}" msgid "Unfollow account" msgstr "Deixa de seguir el compte" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Deixa de seguir l'usuari" @@ -13132,7 +13153,7 @@ msgstr "Contingut per a adults sense etiquetar" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Contingut per a adults sense etiquetar, abusiu o no consentit" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Desfรฉs el m'agrada" @@ -13192,7 +13213,7 @@ msgstr "Deixa de silenciar aquest xat de grup" msgid "Unmute thread" msgstr "Deixa de silenciar el fil de debat" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Deixa de silenciar el vรญdeo" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Deixa de fixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Deixa de fixar el canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Deixa de fixar a l'inici" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Desancora la llista de moderaciรณ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} ja no estร  fixat a l'inici" @@ -13258,11 +13279,11 @@ msgstr "Dona't de baixa d'aquest etiquetador" msgid "Unsubscribed from list" msgstr "T'has dona't de baixa de la llista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Contingut del porta-retalls no compatible" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Tipus de vรญdeo no compatible: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "No s'ha pogut actualitzar la visibilitat de la resposta" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Enlloc d'aixรฒ, penja una foto" @@ -13355,7 +13376,7 @@ msgstr "Puja dels Fitxers" msgid "Upload from Library" msgstr "Puja de la biblioteca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "S'estร  penjant el GIF..." @@ -13369,7 +13390,7 @@ msgstr "S'estan penjant imatges..." msgid "Uploading link thumbnail..." msgstr "S'estร  penjant la miniatura de l'enllaรง..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "S'estร  penjant el vรญdeo..." @@ -13408,7 +13429,7 @@ msgstr "Utilitza-ho per a iniciar sessiรณ a l'altra aplicaciรณ, juntament amb el msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Fes servir l'adreรงa electrรฒnica del teu compte o una altra adreรงa electrรฒnica real que controlis, en cas que KWS o Bluesky necessitin contactar amb tu." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "usuari" @@ -13482,7 +13503,7 @@ msgstr "El nom d'usuari nomรฉs pot tenir lletres (a-z), nombres i guionets" #: src/screens/Login/LoginForm.tsx:305 msgid "Username or email" -msgstr "" +msgstr "Nom d'usuari o correu" #: src/screens/Login/LoginForm.tsx:315 msgid "Username or email address" @@ -13510,7 +13531,7 @@ msgstr "La verificaciรณ ha fallat, torna-ho a provar." msgid "Verification settings" msgstr "Configuraciรณ de verificaciรณ" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Configuraciรณ de verificaciรณ" @@ -13618,34 +13639,34 @@ msgstr "Vรญdeo" msgid "Video failed to process" msgstr "El vรญdeo no s'ha pogut processar" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Canal de vรญdeos" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Vรญdeo de: {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Vรญdeo de {0}. Toca per reproduir o pausar el vรญdeo" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videojocs" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Vรญdeo en pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Vรญdeo en reproducciรณ" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "No s'ha trobat el vรญdeo." @@ -13653,7 +13674,7 @@ msgstr "No s'ha trobat el vรญdeo." msgid "Video settings" msgstr "Configuraciรณ de vรญdeo" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Vรญdeo penjat" @@ -13662,17 +13683,17 @@ msgstr "Vรญdeo penjat" msgid "Video: {0}" msgstr "Vรญdeo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Vรญdeos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Els vรญdeos han de tenir una durada inferior a 3 minuts." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Veure" @@ -13691,9 +13712,9 @@ msgstr "Veure l'avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Veure el perfil de {0}" @@ -13724,13 +13745,13 @@ msgstr "Veure l'entrada al blog per a mรฉs detalls" msgid "View debug entry" msgstr "Veure el registre de depuraciรณ" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Veure els detalls" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Veure el fil de debat complet" @@ -13750,18 +13771,18 @@ msgstr "Mostra les solยทlicituds entrants per unir-se a aquest xat de grup" msgid "View information about these labels" msgstr "Mostra informaciรณ sobre aquestes etiquetes" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Mostra'n mรฉs" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Veure mรฉs vรญdeos del moment" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Veure la publicaciรณ" @@ -13798,15 +13819,15 @@ msgstr "Mostra l'enllaรง d'invitaciรณ per a aquest xat de grup" msgid "View the labeling service provided by @{0}" msgstr "Veure el servei d'etiquetatge proporcionat per @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Veure les verificacions d'aquest usuari" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Veure els usuaris a qui els agrada aquest canal" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Reprodueix el vรญdeo" @@ -13831,7 +13852,7 @@ msgstr "Veure les teves llistes de moderaciรณ" msgid "View your muted accounts" msgstr "Veure els teus comptes silenciats" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Veure les teves verificacions" @@ -13840,7 +13861,7 @@ msgstr "Veure les teves verificacions" msgid "Views full image" msgstr "Veure la imatge completa" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Veure el vรญdeo en el mode immersiu" @@ -13898,7 +13919,7 @@ msgstr "No hem pogut trobar aquesta llista. Probablement s'ha suprimit." #: src/screens/Login/LoginForm.tsx:348 msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." -msgstr "" +msgstr "No hem pogut trobar cap compte amb aquest nom d'usuari. Comprova que l'hagis escrit correctament, o <0>configura el proveรฏdor d'allotjament manualment." #: src/screens/Hashtag.tsx:260 msgid "We couldn't find any results for that tag." @@ -13922,7 +13943,7 @@ msgstr "No hem pogut carregar la configuraciรณ d'aquesta conversa" #: src/screens/Login/LoginForm.tsx:482 msgid "We couldnโ€™t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." -msgstr "" +msgstr "No hem pogut verificar el teu proveรฏdor d'allotjament. Comprova la connexiรณ a Internet o <0>configura el teu proveรฏdor d'allotjament manualment." #: src/components/contacts/screens/GetContacts.tsx:244 msgid "We delete hashes after matches are made" @@ -14001,7 +14022,7 @@ msgstr "T'avisarem quan trobem els teus amics." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "Weโ€™d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Ens encantaria conรจixer la teva experiรจncia provant les funcions beta!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Tenim problemes de xarxa, torna-ho a provar" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Tenim problemes de xarxa, torna-ho a provar" @@ -14043,7 +14064,7 @@ msgstr "Tenim problemes de xarxa, torna-ho a provar" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Estem introduint una nova capa de verificaciรณ a Bluesky: una marca de verificaciรณ fร cil de veure." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Estem molt contents que t'uneixis a nosaltres!" @@ -14064,13 +14085,15 @@ msgstr "Ho sentim, perรฒ no hem pogut resoldre aquesta llista. Si aixรฒ continua msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Ho sentim, perรฒ no hem pogut carregar les teves paraules silenciades en aquest moment. Torna-ho a provar." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." -msgstr "" +msgstr "Ho sentim, perรฒ no s'ha pogut completar la cerca." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Ens sap greu, perรฒ la teva cerca no s'ha pogut fer. Prova-ho d'aquรญ una estona." @@ -14078,7 +14101,7 @@ msgstr "Ens sap greu, perรฒ la teva cerca no s'ha pogut fer. Prova-ho d'aquรญ un msgid "We're sorry, you cannot access this screen at this time." msgstr "Ho sentim, no pots accedir a aquesta pantalla en aquest moment." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ho sentim! La publicaciรณ a la qual estร s responent s'ha suprimit." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "quรจ hi ha de nou" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Quรจ hi ha de nou" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Qui pot verrificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Vaja!" @@ -14220,21 +14243,21 @@ msgstr "Vols bloquejar aquest usuari i/o sortir d'aquesta conversa?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Vols desar aixรฒ com a esborrany abans de veure la resta dels teus esborranys?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Vols desar-ho com a esborrany per editar-ho mรฉs tard?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Escriu una publicaciรณ" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Escriu una publicaciรณ" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Escriu la teva resposta" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Estร s accedint a Bluesky des d'una regiรณ que legalment ens obliga a verificar la teva edat abans de permetre't accedir a l'aplicaciรณ." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Estร s bloquejant {0}" @@ -14342,7 +14365,7 @@ msgstr "Ja no estร s emetent en directe" msgid "You are not allowed to upload videos." msgstr "No t'รฉs permรจs pujar vรญdeos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Encara no segueixes a ningรบ" @@ -14362,7 +14385,7 @@ msgstr "Estร s verificat. Perdrร s el teu estat de verificaciรณ si canvies el no msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Estร s verificat. Perdrร s el teu estat de verificaciรณ si canvies el teu identificador. <0>Mรฉs informaciรณ." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Pots ajustar els teus interessos en qualsevol moment a la configuraciรณ de \"Contingut i multimรจdia\"." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Ara pots iniciar sessiรณ amb la nova contrasenya." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Nomรฉs pots afegir fins a {MAX_GALLERY_IMAGES, plural, one {# imatge} other {# imatges}} per publicaciรณ" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Nomรฉs pots desar esborranys de fins a 1000 carร cters." @@ -14439,9 +14462,11 @@ msgstr "Pots llegir l'historial del xat, perรฒ no pots enviar missatges nous." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Pots seleccionar fins a {MAX_GALLERY_IMAGES, plural, one {# imatge} other {# imatges}} en total." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Pots actualitzar-ho mรฉs tard des de la teva configuraciรณ." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "No pots afegir mรฉs de {EMOJI_REACTION_LIMIT, plural, one {# reacciรณ amb emoji} other {# reaccions amb emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Encara no pots crear un xat de grup." @@ -14555,7 +14581,7 @@ msgstr "Has verificat correctament el teu correu. Pots tancar aquest diร leg." msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Has arribat temporalment al lรญmit de pujades de vรญdeos. Torna-ho a provar mรฉs tard." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Tens canvis sense desar en aquest esborrany. Vols desar-los?" @@ -14563,7 +14589,7 @@ msgstr "Tens canvis sense desar en aquest esborrany. Vols desar-los?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Tens canvis sense desar. Vols desar-los abans de veure els teus esborranys?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Encara no has creat cap starter pack!" @@ -14614,7 +14640,7 @@ msgstr "Nomรฉs pots afegir un total de {STARTER_PACK_MAX_SIZE, plural, one {}oth msgid "You may only add up to 3 feeds" msgstr "Nomรฉs pots afegir 3 canals" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Has de ser el propietari del xat per a eliminar un membre." @@ -14622,7 +14648,7 @@ msgstr "Has de ser el propietari del xat per a eliminar un membre." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Has de tenir com a mรญnim 13 anys per utilitzar Bluesky. Llegeix les nostres <0>Condicions del servei per obtenir mรฉs informaciรณ." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Has de seguir almenys set persones mรฉs per generar un starter pack." @@ -14639,7 +14665,7 @@ msgstr "Has de permetre l'accรฉs a la teva biblioteca multimรจdia." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Has de verificar el teu correu abans de poder habilitar la verificaciรณ en dos passos." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Aquest xat รฉs teu" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Segurament vols reiniciar l'aplicaciรณ ara." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Has reaccionat amb {0}" @@ -14667,15 +14693,15 @@ msgstr "Has reaccionat amb {0} a {target}" msgid "You recently changed your birthdate" msgstr "Has canviat la teva data de naixement fa poc" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Has respost" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Has respost a {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "T'has respost a tu mateix" @@ -14715,11 +14741,11 @@ msgstr "No podrร s tornar a unir-te si no t'hi conviden." msgid "You: {message}" msgstr "Tu: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguirร s els usuaris i els canals suggerits un cop hagis acabat de crear el teu compte!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguirร s els usuaris suggerits un cop hagis acabat de crear el teu compte!" @@ -14791,7 +14817,7 @@ msgstr "Has arribat al final del contingut actiu." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Has arribat al final del teu canal! Cerca alguns comptes mรฉs per a seguir." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Has arribat al nombre mร xim d'esborranys" @@ -14799,7 +14825,7 @@ msgstr "Has arribat al nombre mร xim d'esborranys" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Has arribat al nombre mร xim de solยทlicituds permeses. Torna-ho a provar mรฉs tard." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Has arribat al mร xim de {MAX_FILTERS, plural, one {# filtre} other {# filtres}}. Afegeix mรฉs valors a un filtre existent en lloc de crear-ne de nous." @@ -14815,11 +14841,11 @@ msgstr "Has assolit el teu lรญmit diari de pujades de vรญdeos (massa bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Has assolit el teu lรญmit diari de pujades de vรญdeos (massa vรญdeos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "T'has acabat els vรญdeos. Potser รฉs un bon moment per a fer un descans." -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "El teu compte" @@ -14835,11 +14861,11 @@ msgstr "S'ha suspรจs el teu compte" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "El teu compte encara no tรฉ l'edat suficient per penjar vรญdeos. Torna-ho a provar mรฉs tard." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "El teu compte รฉs massa nou" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "El teu compte ha de tenir com a mรญnim 7 dies d'antiguitat per crear un xat de grup nou." @@ -14896,7 +14922,7 @@ msgstr "El teu correu" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "El teu correu no sembla vร lid." @@ -14924,14 +14950,14 @@ msgstr "El teu identificador complet serร  <0>@{0}" #: src/screens/Login/components/HostingProviderDialog.tsx:182 msgid "Your hosting provider canโ€™t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." -msgstr "" +msgstr "El vostre proveรฏdor d'allotjament no es pot detectar a partir d'una adreรงa de correu electrรฒnic, aixรญ que s'utilitzarร  el servei predeterminat de Bluesky. Introduรฏu el vostre nom d'usuari o configureu el proveรฏdor manualment." #: src/screens/Login/components/HostingProviderDialog.tsx:188 msgid "Your hosting provider is detected automatically from the username you enter." -msgstr "" +msgstr "El proveรฏdor d'allotjament es detecta automร ticament a partir del nom d'usuari que introduรฏu." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "S'han actualitzat els teus interessos!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Els teus interessos ens ajuden a trobar el que t'agrada!" @@ -14967,11 +14993,11 @@ msgstr "La teva contrasenya s'ha canviat correctament! Fes servir la nova contra msgid "Your password must be at least 8 characters long." msgstr "La contrasenya ha de tenir almenys 8 carร cters." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "La teva publicaciรณ s'ha enviat" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Les teves publicacions s'han enviat" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "El teu idioma preferent" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "La teva foto de perfil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "La teva foto de perfil envoltada de cercles concรจntrics de les fotos de perfil d'altres usuaris" @@ -14992,7 +15018,7 @@ msgstr "La teva foto de perfil envoltada de cercles concรจntrics de les fotos de msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "El teu perfil, publicacions, canals i llistes ja no seran visibles per a altres usuaris de Bluesky. Pots reactivar el teu compte en qualsevol moment iniciant sessiรณ." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "La teva resposta s'ha enviat" @@ -15005,13 +15031,13 @@ msgstr "El teu informe s'enviarร  a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Seleccionar els teus interessos ens ajuda a mostrar-te el contingut que t'importa." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "El teu fil tรฉ publicacions buides que s'ometran. Les publicacions restants es publicaran com a fil." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 msgid "Your username and password will be shared with <0>{host}. If you donโ€™t recognize this provider, double-check your username." -msgstr "" +msgstr "El vostre nom d'usuari i contrasenya es compartiran amb <0>{host}. Si no reconeixeu aquest proveรฏdor, comproveu el vostre nom d'usuari." #: src/components/verification/VerificationsDialog.tsx:67 msgid "Your verifications" diff --git a/src/locale/locales/cs/messages.po b/src/locale/locales/cs/messages.po index 526868c8fb..8e26546173 100644 --- a/src/locale/locales/cs/messages.po +++ b/src/locale/locales/cs/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: cs\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Czech\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorie \"{interestsDisplayName}\" (aktivnรญ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(blokovanรก zprรกva skryta)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(obsahuje vloลพenรฝ obsah)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(smazanรก zprรกva)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(neplatnรฝ odkaz na pozvรกnku ke konverzaci)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(zprรกva odeslรกna pล™ed tรญm, neลพ jste se pล™ipojili)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hodina} few {# hodiny} other {# hodin}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# ลกtรญtek pouลพit na vรกลก pล™รญspฤ›vek} few {# ลกtรญtky pouลพity na vรกลก pล™รญspฤ›vek} many {# ลกtรญtkลฏ pouลพito na vรกลก pล™รญspฤ›vek} other {# ลกtรญtkลฏ pouลพito na vรกลก pล™รญspฤ›vek}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# ลกtรญtek pouลพit} few {# ลกtรญtky pouลพity} many {# ลกtรญtkลฏ pouลพito} other {# ลกtรญtkลฏ pouลพito}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# oznaฤenรญ To se mi lรญbรญ} few {# oznaฤenรญ To se m #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# ฤlen} few {# ฤlenovรฉ} other {# ฤlenลฏ}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# novรก ลพรกdost o pล™ipojenรญ} few {# novรฉ ลพรกdosti #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {# osoba zareagovala} few {# osoby zareagovaly} many {# osob zareagovalo} other {# osob zareagovalo}} โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (รšฤet)" @@ -251,36 +252,13 @@ msgstr "{0} pล™idรกn do konverzace" msgid "{0} and {1} added to chat" msgstr "Pล™idรกno do konverzace: {0} a {1}" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} a {1} se lรญbรญ" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} a {others, plural, one {{1} dalลกรญmu} few {{2} dalลกรญm} many {{2} dalลกรญm} other {{2} dalลกรญm}}" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} a {othersLabel} se lรญbรญ" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} sledujรญcรญch" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} vรกs blokuje" @@ -324,14 +302,6 @@ msgstr "{0} odeลกel/ลกla" msgid "{0} left the group" msgstr "{0} opustil/a skupinu" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} se lรญbรญ" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} z 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} napsal reakci na {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} a {memberCount, plural, one {# dalลกรญ pล™idรกn} few {# dalลกรญ pล™idรกni} other {# dalลกรญch pล™idรกno}} do konverzace" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1} a {others, plural, one {{2} dalลกรญmu} other {{3} dalลกรญm}} se lรญbรญ" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1}, a {othersLabel} se lรญbรญ" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "Vรกลก รบฤet byl ovฤ›ล™en dรญky {firstAuthorName}" msgid "{following} following" msgstr "{following} sledovanรฝch" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} nemลฏลพe bรฝt pล™idรกn" @@ -698,7 +660,7 @@ msgstr "{handle} nemลฏลพe bรฝt pล™idรกn" msgid "{handle} can't be messaged" msgstr "Nemลฏลพete posรญlat zprรกvy {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "Nemลฏลพete posรญlat zprรกvy {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# nepล™eฤtenรก poloลพka} few {# nepล™e msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {nalezen # kontakt} few {nalezeny # kontakty} many {nalezeno # kontaktu} other {nalezeno # kontaktลฏ}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} dalลกรญ} few {{1} dalลกรญ} many {{1} dalลกรญch} other {{1} dalลกรญch}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} se pล™ipojil/a k Bluesky pล™ed {timeAgoString}" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} se pล™ipojil/a k Bluesky pomocรญ startovacรญho balรญฤku pล™ed {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {Zbรฝvรก # znak} few {Zbรฝvajรญ # znaky} other {Zbรฝvรก # znakลฏ}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} odpovฤ›dฤ›l/a" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} odpovฤ›dฤ›l/a uลพivateli {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} vรกm odpovฤ›dฤ›l/a" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# ลพรกdost} few {# ลพรกdosti} many {# ลพรกdo msgid "{requestCount}+ requests" msgstr "{requestCount}+ poลพadavkลฏ" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "pล™ed {type}h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} je dลฏvฤ›ryhodnรฝ ovฤ›ล™ovatel" @@ -842,13 +795,13 @@ msgstr "Ovฤ›ล™enรญ uลพivatele {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {sledovanรฝ} few {sledovanรญ} many {sledovan #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citace} few {citace} many {citace} other {citacรญ}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} few {reposty} many {repostu} other {repostลฏ}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {uloลพenรญ} few {uloลพenรญ} many {uloลพenรญ} #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {se lรญbรญ} few {se lรญbรญ} many {se lรญbรญ} other {se lรญbรญ}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> vรกs pล™idal" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Pล™ihlaste se<1> nebo si <2>vytvoล™te รบฤet<3> <4>a vyhledรกvejte zprรกvy, sport, politiku a vลกe ostatnรญ, co se na Bluesky dฤ›je." @@ -971,7 +924,7 @@ msgstr "30 dnรญ" msgid "7 days" msgstr "7 dnรญ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Sbรญrka oblรญbenรฝch feedลฏ, kterรฉ najdete na Bluesky, vฤetnฤ› News, Booksky, Game Dev, Blacksky a Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Doลกlo k chybฤ› sรญtฤ›. Zkontrolujte prosรญm svรฉ pล™ipojenรญ k internet #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Byl zaslรกn novรฝ kรณd" msgid "A new form of verification" msgstr "Novรฝ zpลฏsob ovฤ›ล™enรญ" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Odpovฤ›ฤ na zprรกvu odeslanou pล™ed tรญm, neลพ jste se pล™ipojili" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Snรญmek obrazovky editoru pล™รญspฤ›vkลฏ s novรฝm tlaฤรญtkem vedle tlaฤรญtka pro odeslรกnรญ pล™รญspฤ›vku, na kterรฉm je napsรกno โ€žKonceptyโ€œ, s duhovรฝm efektem ohลˆostroje. Pod tรญm text v editoru znรญ โ€žHej, slyลกeli jste tu novinku? Bluesky mรก teฤ koncepty!!!โ€œ." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Vybranรฝ pล™รญjemce nenรญ sledovรกn odesรญlatelem." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "ลฝรกdost o pล™รญstup odeslรกna! Vlastnรญk skupiny posoudรญ vaลกi ลพรกdos msgid "Accessibility" msgstr "Pล™รญstupnost" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Nastavenรญ pล™รญstupnosti" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "รšฤet byl ztlumen ze seznamu" msgid "Account options" msgstr "Moลพnosti รบฤtu" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "รšฤet byl odebrรกn z rychlรฉho pล™รญstupu" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "รšฤty s vroubkovanou modrou znaฤkou zaลกkrtnutรญ <0><1/> mohou ovฤ›ล™ovat ostatnรญ. Tyto dลฏvฤ›ryhodnรฉ ovฤ›ล™ovatele vybรญrรก Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Aktivita od ostatnรญch" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Pล™idat alternativnรญ text (volitelnฤ›)" msgid "Add another account" msgstr "Pล™idat jinรฝ รบฤet" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Pล™idat dalลกรญ pล™รญspฤ›vek" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Pล™idat dalลกรญ pล™รญspฤ›vek do vlรกkna" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Pล™idat dalลกรญ filtr vyhledรกvรกnรญ" @@ -1253,7 +1213,7 @@ msgstr "Pล™idat automatickรฝ ลกtรญtek k รบฤtu" msgid "Add emoji reaction" msgstr "Pล™idat reakci emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Pล™idat filtr" @@ -1338,7 +1298,7 @@ msgstr "Pล™idat tento kanรกl mezi vaลกe kanรกly" msgid "Add to lists" msgstr "Pล™idat do seznamลฏ" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Pล™idat do uloลพenรฝch pล™รญspฤ›vkลฏ" @@ -1400,7 +1360,7 @@ msgstr "Dospฤ›lรฝ" msgid "Adult content" msgstr "Obsah pro dospฤ›lรฉ" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Vลกe" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Vลกichni pล™รกtelรฉ sledovรกni!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Vลกechny jazyky" @@ -1491,11 +1447,6 @@ msgstr "Ve vaลกich kanรกlech se zobrazรญ vลกechny jazyky." msgid "All of these words" msgstr "Vลกechna tato slova" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "Vลกechny pล™รญspฤ›vky" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Vลกechny kanรกly, kterรฉ jste uloลพil, pล™รญmo na jednom mรญstฤ›." @@ -1560,7 +1511,7 @@ msgstr "Umoลพnit pล™รญstup k pล™รญmรฝm zprรกvรกm" msgid "Already have a code?" msgstr "Uลพ mรกte kรณd?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Uลพ mรกte รบฤet?" @@ -1614,7 +1565,7 @@ msgstr "E-mail byl odeslรกn na {0}. Obsahuje potvrzovacรญ kรณd, kterรฝ mลฏลพete msgid "An error has occurred" msgstr "Doลกlo k chybฤ›" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Nastala chyba" @@ -1631,7 +1582,7 @@ msgstr "Pล™i naฤรญtรกnรญ navrhovanรฝch รบฤtลฏ doลกlo k chybฤ›." msgid "An error occurred while fetching the feed." msgstr "Pล™i naฤรญtรกnรญ kanรกlu doลกlo k chybฤ›." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Nastala chyba pล™i generovรกnรญ startovacรญho balรญฤku. Chcete to zkusit znovu?" @@ -1640,11 +1591,11 @@ msgstr "Nastala chyba pล™i generovรกnรญ startovacรญho balรญฤku. Chcete to zkusi msgid "An error occurred while hiding suggestion. {0}" msgstr "Doลกlo k chybฤ› pล™i skrรฝvรกnรญ nรกvrhu. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Pล™i naฤรญtรกnรญ videa doลกlo k chybฤ›. Opakujte akci pozdฤ›ji." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Pล™i naฤรญtรกnรญ videa doลกlo k chybฤ›. Opakujte akci." @@ -1684,7 +1635,7 @@ msgstr "Doลกlo k chybฤ›. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Ilustrace zobrazujรญcรญ uลพivatelskรฉ avatary pochรกzejรญcรญ z knihy kontaktลฏ do aplikace Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Ilustrace nฤ›kolika Bluesky pล™รญspฤ›vkลฏ vedle repostลฏ, lajkลฏ a komentรกล™ลฏ ikon" @@ -1705,17 +1656,15 @@ msgstr "Odkaz na pozvรกnku umoลพลˆuje lidem pล™ipojit se k tรฉto skupinovรฉ konv msgid "An issue not included in these options" msgstr "Problรฉm, kterรฝ nenรญ zahrnut v tฤ›chto moลพnostech" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Pล™i vytvรกล™enรญ skupinovรฉho chatu doลกlo k problรฉmu, zkuste to prosรญm znovu." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Pล™i zahรกjenรญ konverzace doลกlo k chybฤ›, opakujte akci." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Pล™i pokusu o otevล™enรญ konverzace doลกlo k problรฉmu" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "Libovolnรฉ datum" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Kdokoli" @@ -1802,7 +1749,7 @@ msgstr "Kdokoli, kdo mฤ› sleduje" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Nikdo, kdo jej mรก, se jiลพ nebude moci pล™ipojit ani poลพรกdat o pล™ipojenรญ. Vลพdy mลฏลพete vytvoล™it novรฝ." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Nรกzvy hesel aplikace musรญ mรญt nejmรฉnฤ› 4 znaky" msgid "App passwords" msgstr "Hesla aplikace" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Hesla aplikace" @@ -1891,8 +1838,8 @@ msgstr "Odvolat toto rozhodnutรญ" msgid "Appeal this label" msgstr "Odvolat se proti tomuto ลกtรญtku" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Pouลพรญt ลพรกdost o pล™ijetรญ zmฤ›n" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archivovรกno z {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Archivovanรฝ pล™รญspฤ›vek" @@ -1980,7 +1927,7 @@ msgstr "Opravdu chcete odstranit tuto poloลพku z vaลกich kanรกlลฏ?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Opravdu chcete odvolat svou ลพรกdost o pล™ipojenรญ k {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Opravdu chcete zruลกit tento pล™รญspฤ›vek?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Automatizovanรฝ รบฤet" @@ -2033,7 +1985,7 @@ msgstr "Automaticky" msgid "Automation label" msgstr "Automatickรฝ popisek" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatickรฝ popisek" @@ -2050,12 +2002,16 @@ msgstr "Automatickรฉ pล™ehrรกvรกnรญ videa a GIFลฏ" msgid "Available" msgstr "Dostupnรฝ" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Pล™ed vytvoล™enรญm pล™รญspฤ›vku nebo odpovฤ›dรญ musรญte nejprve ovฤ›ล™it svลฏj e-mail." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Pล™ed vytvoล™enรญm startovacรญho balรญฤku musรญte nejprve ovฤ›ล™it svลฏj e-mail." @@ -2135,10 +2091,10 @@ msgstr "Neลพ budete moci dostรกvat oznรกmenรญ o pล™รญspฤ›vcรญch {name}, musรญte #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2116,28 @@ msgstr "Zaฤnฤ›te proces zajiลกtฤ›nรญ vฤ›ku vyplnฤ›nรญm nรญลพe uvedenรฝch polรญ. msgid "Beta Feature" msgstr "Funkce beta verze" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" +msgstr "Funkce beta verze" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" msgstr "" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Funkce beta verze mohou bรฝt nestabilnรญ. Nฤ›kterรฉ zmฤ›ny mohou vyลพadovat opฤ›tovnรฉ naฤtenรญ aplikace." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Funkce beta verze mohou bรฝt nestabilnรญ. Nฤ›kterรฉ zmฤ›ny mohou vyลพadovat restartovรกnรญ aplikace." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2147,9 @@ msgstr "Datum narozenรญ" msgid "Birthday" msgstr "Narozeniny" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Zablokovรกno" msgid "Blocked accounts" msgstr "Blokovanรฉ รบฤty" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokovanรฉ รบฤty" @@ -2282,7 +2244,7 @@ msgstr "Blokovanรฉ รบฤty nemohou odpovฤ›dฤ›t ve vaลกich vlรกknech, zmรญnit vรกs msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blokovanรฉ รบฤty nemohou odpovฤ›dฤ›t ve vaลกich vlรกknech, zmรญnit vรกs nebo jinak s vรกmi komunikovat. Neuvidรญte jejich obsah a zabrรกnรญte jim, aby vidฤ›li vรกลก obsah." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokovรกnรญ nebrรกnรญ tomuto labelerovi v tom, aby na vรกลก รบฤet umรญstil ลกtรญtky." @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nemลฏลพe potvrdit pravost poลพadovanรฉho data." @@ -2330,7 +2293,7 @@ msgstr "Bluesky je otevล™enรก sรญลฅ, kde si mลฏลพete vybrat svรฉho poskytovatele msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky je otevล™enรก sรญลฅ, kde si mลฏลพete vybrat svรฉho vlastnรญho poskytovatele. Pokud jste zde novรฝ/รก, doporuฤujeme dodrลพet vรฝchozรญ moลพnosti Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky je lepลกรญ s pล™รกteli!" @@ -2358,7 +2321,7 @@ msgstr "Podmรญnky sluลพby Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky uklรกdรก vaลกe kontakty jako kรณdovanรก data. Odstranฤ›nรญm kontaktลฏ budou tato data okamลพitฤ› smazรกna." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky vybere sadu doporuฤenรฝch รบฤtลฏ od lidรญ ve vaลกรญ sรญti." @@ -2403,20 +2366,20 @@ msgstr "Spojte aลพ 50 pล™รกtel v jednom chatu." msgid "Browse custom feeds" msgstr "Prochรกzet vlastnรญ kanรกly" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Prochรกzet dalลกรญ รบฤty" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Prochรกzet dalลกรญ kanรกly na strรกnce Prozkoumat" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Prochรกzet dalลกรญ nรกvrhy" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Prochรกzet dalลกรญ nรกvrhy na strรกnce Prozkoumat" @@ -2425,24 +2388,25 @@ msgstr "Prochรกzet dalลกรญ nรกvrhy na strรกnce Prozkoumat" msgid "Browse other feeds" msgstr "Prochรกzet dalลกรญ kanรกly" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Prochรกzet pล™รญspฤ›vky o {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Prochรกzet pล™รญspฤ›vky oznaฤenรฉ {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Prochรกzet startovacรญ balรญฤek {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Prochรกzet tรฉma {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Prochรกzet tรฉma {displayName}" @@ -2461,8 +2425,8 @@ msgstr "Tlaฤรญtko pro nรกvrat na domรกcรญ ฤasovou osu" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Od {0}" @@ -2473,9 +2437,9 @@ msgstr "od @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Od <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Vytvoล™enรญm รบฤtu souhlasรญte s <0>Podmรญnkami sluลพby a <1>Zรกsad msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Vytvoล™enรญm รบฤtu souhlasรญte s <0>Podmรญnkami sluลพby." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Vรกmi" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Fotoaparรกt" @@ -2534,7 +2498,7 @@ msgstr "Je vyลพadovรกn pล™รญstup ke kameล™e" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Je vyลพadovรกn pล™รญstup ke kameล™e" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Zruลกit opฤ›tovnรฉ aktivaci a odhlรกsit se" msgid "Cancel reply" msgstr "Zruลกit odpovฤ›ฤ" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Zruลกit vyhledรกvรกnรญ" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Zmฤ›ny startovacรญho balรญฤku nebudou po vytvoล™enรญ zohlednฤ›ny v seznamu. Seznam bude nezรกvislรก kopie." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Konverzace ztlumena" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Konverzace nenalezena." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Moลพnosti konverzace" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Vlastnรญci konverzace nemohou opustit skupinovou konverzaci." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Pล™รญjemce konverzace nenรญ sledovรกn odesรญlatelem." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Schrรกnka ลพรกdostรญ o konverzaci" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "ลฝรกdosti o konverzaci" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Nastavenรญ konverzace" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Konverzace nenรญ ztlumena" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Konverzace" @@ -2810,7 +2775,7 @@ msgstr "Zkontrolujte <0>{currentEmail} pro e-mail s potvrzovacรญm kรณdem, kt #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Vraลฅte se pozdฤ›ji!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2802,7 @@ msgstr "Zvolte metodu ovฤ›ล™enรญ domรฉny" msgid "Choose Feeds" msgstr "Vybrat kanรกly" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Vybrat za mฤ›" @@ -2854,7 +2819,7 @@ msgstr "Vybrat osoby" msgid "Choose post languages" msgstr "Vybrat jazyky pล™รญspฤ›vkลฏ" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Vyberte tuto barvu jako svรฉho avatara" @@ -2879,7 +2844,7 @@ msgstr "Vyberte si svoji vlastnรญ ฤasovou osu! Kanรกly vytvoล™enรฉ komunitou v msgid "Choose your password" msgstr "Zvolte svรฉ heslo" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Zvolte svรฉ uลพivatelskรฉ jmรฉno" @@ -2966,7 +2931,7 @@ msgstr "Kliknฤ›te zde pro zobrazenรญ pozvรกnky na tuto skupinovou konverzaci" msgid "Click to open tag menu for {0}" msgstr "Klepnutรญm otevล™ete menu znaฤky pro {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Kliknฤ›te pro opakovรกnรญ neรบspฤ›ลกnรฉ zprรกvy" @@ -3003,7 +2968,7 @@ msgstr "Kliknฤ›te pro opakovรกnรญ neรบspฤ›ลกnรฉ zprรกvy" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Kliknฤ›te pro opakovรกnรญ neรบspฤ›ลกnรฉ zprรกvy" msgid "Close" msgstr "Zavล™รญt" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Zavล™รญt aktivnรญ dialogovรฉ okno" @@ -3047,7 +3012,7 @@ msgstr "Zavล™รญt banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Zavล™รญt prohlรญลพeฤ obrรกzkลฏ" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Zavล™รญt nabรญdku" @@ -3090,7 +3055,7 @@ msgstr "Zavล™รญt banner pล™รญchozรญch ลพรกdostรญ" msgid "Close this dialog" msgstr "Zavล™รญt tento dialog" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Zavล™รญt uvรญtacรญ okno" @@ -3098,7 +3063,7 @@ msgstr "Zavล™รญt uvรญtacรญ okno" msgid "Closes password update alert" msgstr "Zavล™e upozornฤ›nรญ o aktualizaci hesla" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Zavล™e editor pล™รญspฤ›vku a zahodรญ koncept pล™รญspฤ›vku" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Barva" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Reลพim barev" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Komiksy" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Obecnรฉ zรกsady komunity" @@ -3141,7 +3106,7 @@ msgstr "Obecnรฉ zรกsady komunity" msgid "Complete onboarding and start using your account" msgstr "Dokonฤit รบvodnรญ nastavenรญ a zaฤรญt pouลพรญvat svลฏj รบฤet" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Dokonฤete vรฝzvu" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Vytvoล™it novรฝ pล™รญspฤ›vek" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Napiลก pล™รญspฤ›vky dlouhรฉ aลพ {0, plural, one {# znak} few {# znaky} many {# znakลฏ}other {# znakลฏ}}" @@ -3160,11 +3125,11 @@ msgstr "Napiลก pล™รญspฤ›vky dlouhรฉ aลพ {0, plural, one {# znak} few {# znaky} m msgid "Compose reply" msgstr "Napiลกte odpovฤ›ฤ" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Komprese GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Komprese videa..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Kontaktujte nรกลก tรฝm podpory" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Kontakt na podporu" @@ -3253,7 +3218,7 @@ msgstr "Obsah & Mรฉdia" msgid "Content and media" msgstr "Obsah a mรฉdia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Obsah a mรฉdia" @@ -3265,10 +3230,6 @@ msgstr "Obsah zablokovรกn" msgid "Content filters" msgstr "Filtry obsahu" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Obsah z celรฉ sรญtฤ›, o kterรฉm si myslรญme, ลพe by se vรกm mohl lรญbit." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Jazyky obsahu" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Obsah propagujรญcรญ nebo zobrazujรญcรญ sebepoลกkozovรกnรญ" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Varovรกnรญ o obsahu" msgid "Content warnings" msgstr "Varovรกnรญ o obsahu" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Pozadรญ kontextovรฉ nabรญdky, kliknutรญm nabรญdku zavล™ete." @@ -3302,7 +3263,7 @@ msgstr "Pozadรญ kontextovรฉ nabรญdky, kliknutรญm nabรญdku zavล™ete." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Pokraฤovat ve vlรกknฤ›..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Pokraฤovat na nรกzev skupiny" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "Konverzace nenalezena." msgid "Copied build version to clipboard" msgstr "Verze sestavenรญ zkopรญrovรกna do schrรกnky" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Odkaz zkopรญrovรกn do schrรกnky" @@ -3376,7 +3337,7 @@ msgstr "Odkaz zkopรญrovรกn do schrรกnky" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Kopรญrovat heslo aplikace" msgid "Copy at:// URI" msgstr "Kopรญrovat at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Kopรญrovat DID autora" @@ -3449,10 +3410,10 @@ msgstr "Kopรญrovat odkaz" msgid "Copy link to list" msgstr "Kopรญrovat odkaz do seznamu" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopรญrovat odkaz do pล™รญspฤ›vku" @@ -3470,8 +3431,8 @@ msgstr "Kopรญrovat odkaz do startovacรญho balรญฤku" msgid "Copy message text" msgstr "Kopรญrovat text zprรกvy" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Kopรญrovat pล™รญspฤ›vek at:// URI" @@ -3490,7 +3451,7 @@ msgstr "Kopรญrovat hodnotu TXT zรกznamu" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Pravidla autorskรฝch prรกv" @@ -3540,11 +3501,11 @@ msgstr "Nelze sledovat vลกechny shody. {0}" msgid "Could not leave chat" msgstr "Nelze opustit konverzaci" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Nelze opustit konverzaci." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Nelze naฤรญst kanรกl" @@ -3562,7 +3523,7 @@ msgstr "Profil se nepodaล™ilo naฤรญst" msgid "Could not mute chat" msgstr "Nelze ztlumit konverzaci" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "ฤŒlena nebylo moลพnรฉ odebrat." @@ -3606,8 +3567,8 @@ msgstr "krรกvy prasata" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Vytvoล™it" @@ -3624,26 +3585,26 @@ msgstr "Vytvoล™it seznam z tohoto startovacรญho balรญฤku" msgid "Create a QR code for a starter pack" msgstr "Vytvoล™it QR kรณd pro startovacรญ balรญฤek" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Vytvoล™it startovacรญ balรญฤek" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Vytvoล™it startovacรญ balรญฤek" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Vytvoล™it pro mฤ› startovacรญ balรญฤek" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Zaloลพit รบฤet" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Zaloลพit รบฤet" @@ -3666,15 +3627,15 @@ msgstr "Zaloลพit รบฤet" msgid "Create an account without using this starter pack" msgstr "Vytvoล™it รบฤet bez pouลพitรญ tohoto startovacรญho balรญฤku" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Mรญsto toho vytvoล™it avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Vytvoล™it dalลกรญ" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Vytvoล™it skupinovou konverzaci" @@ -3741,9 +3702,9 @@ msgstr "Kultura" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Aktuรกlnรญ funkce beta verze" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Aktuรกlnรญ konverzace" @@ -3770,8 +3731,8 @@ msgstr "Nebezpeฤnรฉ lรกtky nebo zneuลพรญvรกnรญ drog" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Tmavรฝ" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Tmavรฝ" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tmavรฝ motiv" @@ -3814,7 +3775,7 @@ msgstr "Odmรญtnout tento nรกvrh jazyka" msgid "Deepfake adult content" msgstr "Deepfake obsah pro dospฤ›lรฉ" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Vรฝchozรญ" @@ -3894,7 +3855,7 @@ msgstr "Smazat mลฏj รบฤet" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Smazat pล™รญspฤ›vek" @@ -3988,7 +3949,7 @@ msgstr "Dialog: upravit, kdo mลฏลพe reagovat na tento pล™รญspฤ›vek" msgid "Dialog: Set search filters" msgstr "Dialogovรฉ okno: Nastavit filtry vyhledรกvรกnรญ" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Ztmavit" @@ -4002,7 +3963,7 @@ msgstr "Zakรกzat" msgid "Disable 2FA" msgstr "Vypnout 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Vypnout titulky" @@ -4045,9 +4006,9 @@ msgstr "Neaktivnรญ" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Zahodit" msgid "Discard changes?" msgstr "Zahodit zmฤ›ny?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Zahodit koncept?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Zahodit pล™รญspฤ›vek?" @@ -4079,6 +4040,10 @@ msgstr "Odpojit Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Odradit aplikace od zobrazenรญ mรฉho รบฤtu odhlรกลกenรฝm uลพivatelลฏm" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Odradit aplikace od zobrazenรญ mรฉho รบฤtu odhlรกลกenรฝm uลพivatelลฏm" msgid "Discover new custom feeds" msgstr "Objevte novรฉ vlastnรญ kanรกly" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Objevte novรฉ kanรกly" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Objevte novรฉ kanรกly" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Odmรญtnout" @@ -4103,28 +4064,28 @@ msgstr "Odmรญtnout" msgid "Dismiss banner" msgstr "Odmรญtnout banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Odmรญtnout chybu" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Odmรญtnout รบvodnรญho prลฏvodce" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Odmรญtnout zรกjmy" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Odmรญtnout banner ลพivรฝch udรกlostรญ" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Odmรญtnout tuto sekci" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Odmรญtnout tento nรกvrh" @@ -4142,7 +4103,7 @@ msgstr "Zobrazit vฤ›tลกรญ odznaky alternativnรญho textu" msgid "Display name" msgstr "Zobrazovanรฉ jmรฉno" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Zapomeลˆte na trolly a clickbait. Najdฤ›te skuteฤnรฉ lidi a konverzace, na kterรฝch vรกm zรกleลพรญ." @@ -4205,8 +4166,8 @@ msgstr "ลฝรกdnรฉ obavy! Vลกechny stรกvajรญcรญ zprรกvy a nastavenรญ jsou uloลพen #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "ลฝรกdnรฉ obavy! Vลกechny stรกvajรญcรญ zprรกvy a nastavenรญ jsou uloลพen msgid "Done" msgstr "Hotovo" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Dvojitรฝm klepnutรญm nebo dlouhรฝm stisknutรญm zprรกvy pล™idรกte reakci" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Dvojitรฝm klepnutรญm zavล™ete dialog" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Dvojitรฝm klepnutรญm dรกte lajk" @@ -4328,6 +4289,7 @@ msgstr "Poruchy pล™รญjmu potravy" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Upravit obrรกzek" msgid "Edit interaction settings" msgstr "Upravit nastavenรญ interakcรญ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Upravit zรกjmy" @@ -4397,7 +4359,7 @@ msgstr "Upravit stav ลพivรฉho vysรญlรกnรญ" msgid "Edit moderation list" msgstr "Upravit seznam moderovรกnรญ" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Upravit moje kanรกly" @@ -4406,6 +4368,11 @@ msgstr "Upravit moje kanรกly" msgid "Edit name" msgstr "Upravit nรกzev" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Upravit lidi" @@ -4444,7 +4411,7 @@ msgstr "Upravit seznam uลพivatelลฏ" msgid "Edit who can reply" msgstr "Upravit, kdo mลฏลพe odpovรญdat" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Upravit svลฏj startovacรญ balรญฤek" @@ -4500,8 +4467,8 @@ msgstr "Vloลพit HTML kรณd" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Vloลพit pล™รญspฤ›vek" @@ -4509,7 +4476,7 @@ msgstr "Vloลพit pล™รญspฤ›vek" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Vloลพte tento pล™รญspฤ›vek na svลฏj web. Staฤรญ zkopรญrovat nรกsledujรญcรญ รบryvek a vloลพit jej do HTML kรณdu vaลกeho webu." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Vestavฤ›nรฝ pล™ehrรกvaฤ videa" @@ -4531,9 +4498,9 @@ msgstr "Povolit obsah pro dospฤ›lรฉ" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Povolit funkce beta verze" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Zapnout titulky" @@ -4550,12 +4517,13 @@ msgstr "Povolit externรญ mรฉdia" msgid "Enable media players for" msgstr "Povolit pล™ehrรกvaฤe mรฉdiรญ pro" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Povolte oznรกmenรญ pro รบฤet tak, ลพe navลกtรญvรญte jeho profil a stisknete <0>ikonu zvoneฤku <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Povolit push oznรกmenรญ" @@ -4581,7 +4549,7 @@ msgstr "Povolit trendujรญcรญ videa ve vaลกem kanรกlu Objevit" msgid "Enabled" msgstr "Povoleno" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Konec kanรกlu" @@ -4608,7 +4576,7 @@ msgstr "Zadejte slovo nebo ลกtรญtek" msgid "Enter code" msgstr "Zadejte kรณd" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Pล™ejรญt na celou obrazovku" @@ -4650,11 +4618,11 @@ msgstr "Zadejte svรฉ uลพivatelskรฉ jmรฉno a heslo" msgid "Enters full screen" msgstr "Pล™ejde do reลพimu celรฉ obrazovky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Zรกbava" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Chyba" @@ -4684,7 +4652,7 @@ msgstr "Pล™i uklรกdรกnรญ souboru doลกlo k chybฤ›" msgid "Error receiving captcha response." msgstr "Chyba pล™i pล™ijรญmรกnรญ odpovฤ›di captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Chyba: {error}" @@ -4696,8 +4664,8 @@ msgstr "Odpovรญdat mลฏลพe kaลพdรฝ" msgid "Everybody can reply to this post." msgstr "Na tento pล™รญspฤ›vek mลฏลพe odpovฤ›dฤ›t kdokoli." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Vลกichni" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Vลกichni" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Vลกe ostatnรญ" @@ -4738,7 +4706,7 @@ msgstr "Vylouฤit uลพivatele, kterรฉ sledujete" msgid "Excludes users you follow" msgstr "Vylouฤรญ uลพivatele, kterรฉ sledujete" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Ukonฤit reลพim celรฉ obrazovky" @@ -4755,11 +4723,11 @@ msgstr "Rozbalit seznam uลพivatelลฏ" msgid "Expand or collapse the full post you are replying to" msgstr "Rozbalit nebo sbalit celรฝ pล™รญspฤ›vek, na kterรฝ odpovรญdรกte" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Rozbalit text pล™รญspฤ›vku" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Rozbalรญ nebo sbalรญ text pล™รญspฤ›vku" @@ -4802,15 +4770,15 @@ msgstr "Explicitnรญ nebo potenciรกlnฤ› znepokojivรฝ obsah." msgid "Explicit sexual images." msgstr "Explicitnรญ sexuรกlnรญ obrรกzky." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Prozkoumat" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Prozkoumat aplikaci" @@ -4844,7 +4812,7 @@ msgstr "Externรญ mรฉdia" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Externรญ mรฉdia mohou webลฏm umoลพnit shromaลพฤovat informace o vรกs a vaลกem zaล™รญzenรญ. ลฝรกdnรฉ informace se neodesรญlajรญ ani nevyลพadujรญ, dokud nestisknete tlaฤรญtko โ€žpล™ehrรกtโ€œ." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Pล™edvolby externรญch mรฉdiรญ" @@ -4886,7 +4854,7 @@ msgstr "Nepodaล™ilo se zmฤ›nit uลพivatelskรฉ jmรฉno. Zkuste to prosรญm znovu." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Nepodaล™ilo se zkopรญrovat odkaz" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Nepodaล™ilo se opustit skupinovou konverzaci" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Nepodaล™ilo se naฤรญst konverzace" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Nepodaล™ilo se naฤรญst kanรกly" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Nepodaล™ilo se naฤรญst pล™edvolby kanรกlลฏ" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Nepodaล™ilo se naฤรญst nastavenรญ oznรกmenรญ." @@ -5012,14 +4981,14 @@ msgstr "Nepodaล™ilo se naฤรญst pล™edvolbu." msgid "Failed to load profiles" msgstr "Profily se nepodaล™ilo naฤรญst" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Nepodaล™ilo se naฤรญst doporuฤenรฉ kanรกly" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Nepodaล™ilo se naฤรญst doporuฤenรฉ sledovรกnรญ" @@ -5027,12 +4996,12 @@ msgstr "Nepodaล™ilo se naฤรญst doporuฤenรฉ sledovรกnรญ" msgid "Failed to lock group chat" msgstr "Nepodaล™ilo se uzamknout skupinovou konverzaci" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Nepodaล™ilo se oznaฤit vลกechny konverzace jako pล™eฤtenรฉ" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "Nepodaล™ilo se zruลกit vรกลก poลพadavek. Zkuste to prosรญm znovu." msgid "Failed to resolve location. Please try again." msgstr "Nepodaล™ilo se zjistit polohu. Zkuste to prosรญm znovu." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Nepodaล™ilo se uloลพit koncept" @@ -5191,7 +5160,7 @@ msgstr "Faleลกnรฝ รบฤet nebo bot" msgid "False information about elections" msgstr "Nepravdivรฉ informace o volbรกch" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Kanรกl" @@ -5212,7 +5181,7 @@ msgstr "Tvลฏrce kanรกlu" msgid "Feed identifier" msgstr "Identifikรกtor kanรกlu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Nabรญdka kanรกlu" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Zpฤ›tnรก vazba byla odeslรกna provozovateli kanรกlu" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Kanรกly aktualizovรกny!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Kanรกly, kterรฉ by se vรกm mohly lรญbit." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Naฤรญst aktualizaci" @@ -5273,34 +5238,22 @@ msgstr "Naฤรญst aktualizaci" msgid "File saved successfully!" msgstr "Soubor byl รบspฤ›ลกnฤ› uloลพen!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Filtrovat podle autora" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtrovat podle autora (aktuรกlnฤ›: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Filtrovat podle mรฉdiรญ" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Filtrovat podle mรฉdiรญ (aktuรกlnฤ›: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtrovat z kanรกlลฏ" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtrovat vyhledรกvรกnรญ podle jazyka" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrovat vyhledรกvรกnรญ podle jazyka (aktuรกlnฤ›: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "Filtrovat toto vyhledรกvรกnรญ podle {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtrujte, kdo si mลฏลพe nastavit oznรกmenรญ o vaลกรญ aktivitฤ›" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtrujte, od koho dostรกvรกte oznรกmenรญ" @@ -5352,8 +5305,8 @@ msgstr "Najรญt รบฤty ke sledovรกnรญ" msgid "Find and invite friends" msgstr "Najรญt a pozvat pล™รกtele" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Najรญt kontakty" @@ -5387,7 +5340,7 @@ msgstr "Najdฤ›te svรฉ pล™รกtele" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Najdฤ›te svรฉ pล™รกtele na Bluesky tรญm, ลพe ovฤ›ล™รญte svรฉ telefonnรญ ฤรญslo a najdete shody mezi svรฝmi kontakty. Chrรกnรญme vaลกe informace a vy mรกte kontrolu nad tรญm, co se stane dรกl. <0>Zjistit vรญce" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Najdฤ›te svรฉ lidi" @@ -5429,7 +5382,7 @@ msgstr "Zamฤ›ล™it vyhledรกvacรญ pole" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Sledovat {0}" msgid "Follow {displayName}" msgstr "Sledovat {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Sledovat {handle}" @@ -5453,11 +5406,11 @@ msgstr "Sledovat {handle}" msgid "Follow 10 accounts" msgstr "Sledovat 10 รบฤtลฏ" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Zaฤnฤ›te sledovรกnรญm 10 lidรญ" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Sledovat 7 รบฤtลฏ" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Sledujรญcรญ se mohou pล™ipojit" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Sledujรญcรญ uลพivatele @{0}, kterรฉ znรกte" @@ -5544,7 +5497,7 @@ msgstr "Sledujรญcรญ, kterรฉ znรกte" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Sledujete {0}" msgid "Following {displayName}" msgstr "Sledujete {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Sledujete {handle}" @@ -5578,21 +5531,21 @@ msgstr "Sledujete {handle}" msgid "Following feed preferences" msgstr "Pล™edvolby kanรกlu Sledovanรฉ" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Pล™edvolby kanรกlu Sledovanรฉ" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Sleduje vรกs" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Pรญsmo" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Velikost pรญsma" @@ -5612,13 +5565,13 @@ msgstr "Z bezpeฤnostnรญch dลฏvodลฏ potล™ebujeme zaslat potvrzovacรญ kรณd na va msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Z bezpeฤnostnรญch dลฏvodลฏ si toto heslo nebudete moci znovu zobrazit. Pokud toto heslo aplikace ztratรญte, budete muset vygenerovat novรฉ." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Pro nejlepลกรญ zรกลพitek doporuฤujeme pouลพรญvat vรฝchozรญ pรญsmo motivu." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Pro vรกs" @@ -5628,7 +5581,7 @@ msgstr "Pro vรกs" msgid "Forever" msgstr "Navลพdy" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Zapomeลˆte na ลกum" @@ -5647,11 +5600,11 @@ msgstr "Zapomnฤ›li jste heslo?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "ฤŒtyล™i bubliny zprรกv pล™edstavujรญcรญ skupinovรฝ chat. Prvnรญ zprรกva: \"Slyลกeli jste tu novinku? Bluesky teฤ mรก skupinovรฉ chaty!\" Druhรก zprรกva: \"ty jo, to ne\" Tล™etรญ zprรกva: \"Pรกni, 50 lidรญ v jednom chatu!โ€œ ฤŒtvrtรก zprรกva: \"Mลฏลพete takรฉ posรญlat odkazy s pozvรกnkami!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Osvoboฤte svลฏj kanรกl" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Od" @@ -5674,7 +5627,7 @@ msgstr "Z <0/>" msgid "From these people" msgstr "Od tฤ›chto lidรญ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Vygenerovat startovacรญ balรญฤek" @@ -5712,45 +5665,45 @@ msgstr "Germ DM znovu pล™ipojeno" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features weโ€™re testing." -msgstr "" +msgstr "Zรญskejte rychlรฝ pล™รญstup k experimentรกlnรญm funkcรญm, kterรฉ testujeme." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Zรญskat pomoc" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Dostรกvejte oznรกmenรญ o pล™ipojenรญch ke startovacรญmu balรญฤku, ovฤ›ล™enรญch a dalลกรญch aktivitรกch." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Dostรกvejte upozornฤ›nรญ, kdyลพ vรกs nฤ›kdo zaฤne sledovat." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Dostรกvejte oznรกmenรญ, kdyลพ se lidem lรญbรญ vaลกe pล™รญspฤ›vky." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Dostรกvejte oznรกmenรญ, kdyลพ se lidem lรญbรญ vaลกe reposty." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Dostรกvejte oznรกmenรญ, kdyลพ vรกs nฤ›kdo zmรญnรญ." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Dostรกvejte oznรกmenรญ, kdyลพ lidรฉ citujรญ vaลกe pล™รญspฤ›vky." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Dostรกvejte upozornฤ›nรญ, kdyลพ lidรฉ odpovรญ na vaลกe pล™รญspฤ›vky." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Dostรกvejte oznรกmenรญ, kdyลพ lidรฉ repostujรญ vaลกe pล™รญspฤ›vky." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Dostรกvejte oznรกmenรญ, kdyลพ lidรฉ repostujรญ vaลกe reposty." @@ -5762,15 +5715,15 @@ msgstr "Dostรกvejte oznรกmenรญ, kdyลพ vรกm lidรฉ poลกlou ลพรกdost o zprรกvu." msgid "Get notifications when people send you messages." msgstr "Dostรกvejte oznรกmenรญ, kdyลพ vรกm lidรฉ poลกlou zprรกvu." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Dostรกvejte oznรกmenรญ, kdyลพ je aktivita u pล™รญspฤ›vkลฏ, k jejichลพ odbฤ›ru jste pล™ihlรกลกeni." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Dostรกvejte upozornฤ›nรญ na novรฉ pล™รญspฤ›vky" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Dostรกvejte upozornฤ›nรญ na novรฉ pล™รญspฤ›vky od uลพivatele {name}" @@ -5799,11 +5752,11 @@ msgstr "Zaฤรญnรกme" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF nahrรกn" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Dejte svรฉmu profilu tvรกล™" @@ -5813,20 +5766,20 @@ msgstr "Glorifikace nรกsilรญ" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Zaฤรญt vysรญlat ลพivฤ› na" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Pล™ejรญt na profil uลพivatele {0}" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Nรกzev skupinovรฉ konverzace byl aktualizovรกn" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Nastavenรญ skupinovรฉ konverzace" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Skupinovรฉ konverzace mohou mรญt maximรกlnฤ› {0, plural, one {# osobu} few {# osoby} many {# osob} other {# osob}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Skupina je uzamฤena" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Nรกzev skupiny" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Nรกzev skupiny je pล™รญliลก dlouhรฝ. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {Maximรกlnรญ poฤet znakลฏ je #.} few {Maximรกlnรญ poฤet znakลฏ je #.} many {Maximรกlnรญ poฤet znakลฏ je #.} other {Maximรกlnรญ poฤet znakลฏ je #.}}" @@ -6077,7 +6031,7 @@ msgstr "ล kodlivรฉ nebo vysoce rizikovรฉ aktivity" msgid "Harming or endangering minors" msgstr "Poลกkozovรกnรญ nebo ohroลพovรกnรญ nezletilรฝch" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6052,7 @@ msgstr "Mรกte kรณd? <0>Kliknฤ›te sem." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Mรกme ลกpatnou polohu? <0>Klepnutรญm sem aktualizujte svou polohu pomocรญ GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Mรกte potรญลพe?" @@ -6114,7 +6068,7 @@ msgstr "Bluesky je uchovรกvรก po dobu 7 dnลฏ kvลฏli prevenci zneuลพitรญ, potรฉ b msgid "Help" msgstr "Nรกpovฤ›da" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Pomozte lidem poznat, ลพe nejste bot, nahrรกnรญm obrรกzku nebo vytvoล™enรญm avatara." @@ -6135,12 +6089,12 @@ msgstr "Ahoj!" msgid "Hi there!" msgstr "Ahoj!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Skryto" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Skryto vaลกรญm nastavenรญm moderovรกnรญ." @@ -6148,9 +6102,10 @@ msgstr "Skryto vaลกรญm nastavenรญm moderovรกnรญ." msgid "Hidden list" msgstr "Skrytรฝ seznam" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Skrytรฝ seznam" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Skrรฝt" @@ -6198,7 +6154,7 @@ msgstr "Skrรฝt odpovฤ›ฤ pro vลกechny" msgid "Hide reply for me" msgstr "Skrรฝt odpovฤ›ฤ pro mฤ›" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Skrรฝt tuto kartu" @@ -6218,16 +6174,18 @@ msgstr "Skrรฝt tuto odpovฤ›ฤ?" msgid "Hide translation" msgstr "Skrรฝt pล™eklad" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Skrรฝt populรกrnรญ tรฉmata" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Skrรฝt populรกrnรญ tรฉmata?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Skrรฝt populรกrnรญ videa?" @@ -6240,7 +6198,7 @@ msgstr "Skrรฝt seznam uลพivatelลฏ" msgid "Hide verification badges" msgstr "Skrรฝt ovฤ›ล™ovacรญ odznaky" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Skryje obsah" @@ -6293,8 +6251,8 @@ msgstr "Hmm, nepodaล™ilo se nรกm naฤรญst tuto moderaฤnรญ sluลพbu." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Vydrลพte! Pล™รญstup k videu zpล™รญstupลˆujeme postupnฤ› a vy stรกle ฤekรกte ve frontฤ›. Zkuste to brzy znovu!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "Poskytovatel hostingu: {0}" msgid "Hosting provider: Bluesky" msgstr "Poskytovatel hostingu: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Populรกrnรญ" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Jak to funguje:" @@ -6409,6 +6363,7 @@ msgstr "Pokud zmฤ›nรญte svou e-mailovou adresu, 2FA ovฤ›ล™enรญ e-mailem bude dea msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Pokud si chcete zmฤ›nit heslo, zaลกleme vรกm kรณd pro ovฤ›ล™enรญ, ลพe se jednรก o vรกลก รบฤet." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Pokud chcete omezit, kdo mลฏลพe dostรกvat oznรกmenรญ o aktivitฤ› vaลกeho รบฤtu, mลฏลพete to zmฤ›nit v <0>Nastavenรญ โ†’ Soukromรญ a zabezpeฤenรญ." @@ -6548,7 +6503,7 @@ msgstr "V aplikaci, push, vลกichni" msgid "In-app, push, people you follow" msgstr "V aplikaci, push, lidรฉ, kterรฉ sledujete" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Prรกzdnรก schrรกnka" @@ -6564,7 +6519,6 @@ msgstr "Schrรกnka je prรกzdnรก!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "Zahrnout" @@ -6573,7 +6527,7 @@ msgstr "Zahrnout" msgid "Include or exclude matching posts (currently: {0})" msgstr "Zahrnout nebo vylouฤit odpovรญdajรญcรญ pล™รญspฤ›vky (aktuรกlnฤ›: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Zahrnout pล™รญspฤ›vky a/nebo odpovฤ›di (aktuรกlnฤ›: {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "Zahrnout pล™รญspฤ›vky vytvoล™enรฉ od tohoto data" msgid "Include posts made until this date" msgstr "Zahrnout pล™รญspฤ›vky vytvoล™enรฉ do tohoto data" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Zahrnout tyto vรฝsledky" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Nesprรกvnรฉ uลพivatelskรฉ jmรฉno nebo heslo" @@ -6683,7 +6633,7 @@ msgstr "Pozvat uลพivatele {name} na Bluesky" msgid "Invite code" msgstr "Zvacรญ kรณd" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Zvacรญ kรณd nebyl pล™ijat. Zkontrolujte, zda jste ho zadali sprรกvnฤ›, a zkuste to znovu." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Zatรญm jste tu jen vy! Pล™idejte do svรฉho startovacรญho balรญฤku dalลกรญ lidi pomocรญ vyhledรกvรกnรญ vรฝลกe." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID รบlohy: {0}" @@ -6816,8 +6766,8 @@ msgstr "Pล™ipojit se ke konverzaci" msgid "Journalism" msgstr "ลฝurnalistika" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Pokraฤovat v รบpravรกch" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "Web KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Oznaฤeno {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Oznaฤeno autorem." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "ล tรญtky" @@ -6852,7 +6802,7 @@ msgstr "ล tรญtky pล™idรกny" msgid "Labels applied to this post" msgstr "ล tรญtky pล™iล™azenรฉ k tomuto pล™รญspฤ›vku" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ล tรญtky jsou poznรกmky u uลพivatelลฏ a obsahu. Lze je pouลพรญt ke skrรฝvรกnรญ, varovรกnรญ a kategorizaci sรญtฤ›." @@ -6864,7 +6814,7 @@ msgstr "ล tรญtky na vaลกem รบฤtu" msgid "Language" msgstr "Jazyk" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Nastavenรญ jazyka" @@ -6874,7 +6824,7 @@ msgstr "Nastavenรญ jazyka" msgid "Languages" msgstr "Jazyky" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Vฤ›tลกรญ" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Naposledy spuลกtฤ›no prรกvฤ› teฤ" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Nejnovฤ›jลกรญ" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Zjistit vรญce" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Zjistit vรญce" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Zjistฤ›te vรญce o tom, <0>jak pouลพรญvat pokroฤilรฉ vyhledรกvรกnรญ." @@ -6937,8 +6887,8 @@ msgstr "Zjistit vรญce o importu kontaktลฏ" msgid "Learn more about self hosting your PDS." msgstr "Zjistฤ›te vรญce o vlastnรญm hostovรกnรญ vaลกeho PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Zjistฤ›te vรญce o moderovรกnรญ pouลพitรฉm na tento obsah" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Vรญce informacรญ o tฤ›chto zmฤ›nรกch a o tom, jak nรกm sdฤ›lit svลฏj nรกzor, se dozvรญte v naลกem pล™รญspฤ›vku na blogu." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Zjistit vรญce o tomto varovรกnรญ" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Vรญce informacรญ najdete v <0>nastavenรญ รบฤtu." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Zjistit vรญce." @@ -6993,8 +6943,8 @@ msgstr "Opustit" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Opouลกtรญte Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Opuลกtฤ›nรญm tรฉto konverzace ji trvale uzamknete a nebudete se moci znovu pล™ipojit." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Opustili jste skupinovou konverzaci." @@ -7042,7 +6992,7 @@ msgstr "Opustili jste skupinovou konverzaci." msgid "left to go." msgstr "zbรฝvรก." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Nech mฤ› vybrat" @@ -7057,7 +7007,7 @@ msgstr "Jdeme na to!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Svฤ›tlรฝ" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Svฤ›tlรฝ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "To se mi lรญbรญ" @@ -7076,7 +7026,7 @@ msgstr "To se mi lรญbรญ" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "To se mi lรญbรญ ({0, plural, one {# oznaฤenรญ To se mi lรญbรญ} few {# oznaฤenรญ To se mi lรญbรญ} many {# oznaฤenรญ To se mi lรญbรญ} other {# oznaฤenรญ To se mi lรญbรญ}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Lajknฤ›te 10 pล™รญspฤ›vkลฏ" @@ -7085,7 +7035,7 @@ msgstr "Lajknฤ›te 10 pล™รญspฤ›vkลฏ" msgid "Like 10 posts to train the Discover feed" msgstr "Lajknฤ›te 10 pล™รญspฤ›vkลฏ a nauฤte tak kanรกl Objevovat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Lajknฤ›te tento kanรกl" @@ -7093,8 +7043,8 @@ msgstr "Lajknฤ›te tento kanรกl" msgid "Like this labeler" msgstr "Lajknout tohoto labelera" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Lรญbรญ se uลพivatelลฏm" @@ -7111,27 +7061,45 @@ msgstr "Lรญbรญ se" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Lรญbรญ se {0, plural, one {# uลพivateli} few {# uลพivatelลฏm} many {# uลพivatelลฏm} other {# uลพivatelลฏm}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "To se lรญbรญ {likeCount, plural, one {# uลพivateli} few {# uลพivatelลฏm} many {# uลพivatelลฏm} other {# uลพivatelลฏm}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Lajky" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Lajky vaลกich repostลฏ" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Lajky u tohoto pล™รญspฤ›vku" @@ -7144,7 +7112,7 @@ msgstr "Lineรกrnรญ" msgid "Link copied to clipboard" msgstr "Odkaz zkopรญrovรกn do schrรกnky" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Seznam" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Seznam jiลพ nenรญ ztlumen" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "ลฝIVฤš" msgid "Live event happening now: {0}" msgstr "Probรญhรก ลพivรฉ vysรญlรกnรญ: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "ลฝivรก udรกlost skryta" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "ลฝivรก udรกlost zobrazena" @@ -7279,12 +7247,12 @@ msgstr "Funkce ลพivรฉho vysรญlรกnรญ je v beta verzi" msgid "Live link" msgstr "Odkaz na ลพivรฉ vysรญlรกnรญ" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Naฤรญst dalลกรญ" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Naฤรญst dalลกรญ doporuฤenรฉ kanรกly" @@ -7292,8 +7260,8 @@ msgstr "Naฤรญst dalลกรญ doporuฤenรฉ kanรกly" msgid "Load new notifications" msgstr "Naฤรญst novรก oznรกmenรญ" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Uzamknout tuto skupinovou konverzaci" msgid "Locked" msgstr "Uzamฤeno" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Protokol" @@ -7387,7 +7355,7 @@ msgstr "Zamilovanรฉ GIFy" msgid "Make adjustments to email settings for your account" msgstr "Upravte nastavenรญ e-mailu pro vรกลก รบฤet" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Vytvoล™it jeden pro mฤ›" @@ -7418,15 +7386,15 @@ msgstr "Ruฤnฤ›" msgid "Mark all as read" msgstr "Oznaฤit vลกe jako pล™eฤtenรฉ" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Oznaฤit vลกechny konverzace jako pล™eฤtenรฉ" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Oznaฤit jako pล™eฤtenรฉ" msgid "Marked all as read" msgstr "Vลกe oznaฤeno jako pล™eฤtenรฉ" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Vลกechny konverzace oznaฤeny jako pล™eฤtenรฉ" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Vลกechny ลพรกdosti byly oznaฤeny jako pล™eฤtenรฉ" @@ -7456,8 +7424,12 @@ msgstr "Vลกechny ลพรกdosti byly oznaฤeny jako pล™eฤtenรฉ" msgid "Maybe later" msgstr "Moลพnรก pozdฤ›ji" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Mรฉdia" @@ -7475,7 +7447,7 @@ msgstr "Mรฉdia uloลพenรก na jinรฉm zaล™รญzenรญ" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Mรฉdia, kterรก mohou bรฝt znepokojujรญcรญ nebo nevhodnรก pro nฤ›kterรฉ publikum." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "ฤŒlen byl odebrรกn ze skupinovรฉho chatu." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "zmรญnฤ›nรฉ uลพivatele" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Zmรญnky" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Zprรกva smazรกna" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Zprรกvu se nepodaล™ilo odeslat." @@ -7563,15 +7535,15 @@ msgstr "Zprรกva je pล™รญliลก dlouhรก ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Moลพnosti zprรกvy" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Zprรกvy" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Zprรกvy od tรฉto osoby jsou skrytรฉ, dokud vรกs blokuje." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Zprรกvy od tรฉto osoby jsou skrytรฉ, dokud ji blokujete." @@ -7592,7 +7564,7 @@ msgstr "Zavรกdฤ›jรญcรญ" msgid "Missing media" msgstr "Chybฤ›jรญcรญ mรฉdia" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderace" @@ -7636,7 +7608,7 @@ msgstr "Moderaฤnรญ seznam aktualizovรกn" msgid "Moderation lists" msgstr "Seznamy moderovรกnรญ" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Seznamy moderovรกnรญ" @@ -7645,7 +7617,7 @@ msgstr "Seznamy moderovรกnรญ" msgid "moderation settings" msgstr "nastavenรญ moderovรกnรญ" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Stavy moderovรกnรญ" @@ -7786,7 +7758,7 @@ msgstr "Ztlumeno" msgid "Muted accounts" msgstr "Ztlumenรฉ รบฤty" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Ztlumenรฉ รบฤty" @@ -7867,7 +7839,6 @@ msgstr "Potล™ebujete nahlรกsit poruลกenรญ autorskรฝch prรกv, prรกvnรญ ลพรกdost n msgid "Nevermind, create a handle for me" msgstr "To nevadรญ, vytvoล™te mi uลพivatelskรฉ jmรฉno" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Novรฉ" @@ -7893,11 +7864,11 @@ msgstr "N{postsCount, plural, one {ovรฝ pล™รญspฤ›vek} few {ovรฉ pล™รญspฤ›vky} ma #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Novรก konverzace" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Novรก funkce" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Novรญ sledujรญcรญ" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Novรก skupinovรก konverzace" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Novรก skupinovรก konverzace" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Novรฝ skupinovรฝ chat s:" @@ -7966,13 +7937,13 @@ msgstr "Novรฝ seznam" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Novรฉ ลพรกdosti o zprรกvu" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Novรฉ zprรกvy" @@ -7982,12 +7953,12 @@ msgstr "Novรฉ zprรกvy" msgid "New password" msgstr "Novรฉ heslo" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Novรฝ pล™รญspฤ›vek" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Nejnovฤ›jลกรญ odpovฤ›di jako prvnรญ" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Zprรกvy" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Dalลกรญ obrรกzek" msgid "Night" msgstr "Noฤnรญ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "ลฝรกdnรฉ reklamy, ลพรกdnรฉ invazivnรญ sledovรกnรญ, ลพรกdnรฉ pasti na pozornost. Bluesky respektuje vรกลก ฤas a pozornost." @@ -8065,9 +8036,14 @@ msgstr "ลฝรกdnรฉ reklamy, ลพรกdnรฉ invazivnรญ sledovรกnรญ, ลพรกdnรฉ pasti na poz msgid "No app passwords yet" msgstr "Zatรญm ลพรกdnรก hesla aplikacรญ" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "V tuto chvรญli nejsou ลพรกdnรฉ funkce beta verze." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8074,7 @@ msgstr "Nenรญ nastaveno vyprลกenรญ platnosti" msgid "No feeds found. Try searching for something else." msgstr "Nebyly nalezeny ลพรกdnรฉ kanรกly. Zkuste vyhledat nฤ›co jinรฉho." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Zatรญm ลพรกdnรญ sledujรญcรญ" @@ -8116,9 +8092,15 @@ msgstr "Momentรกlnฤ› nejsou k zobrazenรญ ลพรกdnรฉ GIFy. Zkuste to za chvรญli zno msgid "No image" msgstr "ลฝรกdnรฝ obrรกzek" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Zatรญm ลพรกdnรฉ lajky" @@ -8135,7 +8117,12 @@ msgstr "ลฝรกdnรฉ seznamy" msgid "No longer following {0}" msgstr "Jiลพ nesledujete {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Zatรญm ลพรกdnรก mรฉdia" @@ -8143,7 +8130,7 @@ msgstr "Zatรญm ลพรกdnรก mรฉdia" msgid "No messages yet" msgstr "Zatรญm ลพรกdnรฉ zprรกvy" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Konec nekoneฤnรฉho scrollovรกnรญ v algoritmech plnรฝch balastu. Najdฤ›te si kanรกly, kterรฉ pracujรญ pro vรกs, ne proti vรกm." @@ -8180,16 +8167,21 @@ msgstr "Tento pล™รญspฤ›vek mลฏลพe citovat pouze autor." msgid "No one can send messages" msgstr "Nikdo nemลฏลพe posรญlat zprรกvy" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "ลฝรกdnรฉ pล™รญspฤ›vky" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Zatรญm ลพรกdnรฉ pล™รญspฤ›vky" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Zatรญm ลพรกdnรฉ citace" @@ -8198,11 +8190,7 @@ msgstr "Zatรญm ลพรกdnรฉ citace" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Zatรญm ลพรกdnรฉ nedรกvnรฉ GIFy. Vyberte nฤ›jakรฝ a zobrazรญ se zde." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "ลฝรกdnรฉ odpovฤ›di" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Zatรญm ลพรกdnรฉ odpovฤ›di" @@ -8217,13 +8205,13 @@ msgstr "ลฝรกdnรฝ vรฝsledek" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "ลฝรกdnรฉ vรฝsledky" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "ลฝรกdnรฉ vรฝsledky pro โ€ž{0}โ€œ." @@ -8236,23 +8224,23 @@ msgstr "Nebyly nalezeny ลพรกdnรฉ vรฝsledky" msgid "No results found for \"{query}\"" msgstr "Nebyly nalezeny ลพรกdnรฉ vรฝsledky pro \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "Pro โ€ž<0>{query}โ€œ nebyly s pouลพitรฝmi pokroฤilรฝmi filtry vyhledรกvรกnรญ nalezeny ลพรกdnรฉ vรฝsledky." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "Pro โ€ž<0>{query}โ€œ nebyly nalezeny ลพรกdnรฉ vรฝsledky." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Pro vรกลก dotaz s pouลพitรฝmi pokroฤilรฝmi filtry vyhledรกvรกnรญ nebyly nalezeny ลพรกdnรฉ vรฝsledky." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "ลฝรกdnรฉ vรฝsledky." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Zatรญm ลพรกdnรฉ startovacรญ balรญฤky" @@ -8265,7 +8253,7 @@ msgstr "Ne, dฤ›kuji" msgid "No translation received from your device." msgstr "Z vaลกeho zaล™รญzenรญ nebyl pล™ijat ลพรกdnรฝ pล™eklad." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Zatรญm ลพรกdnรฉ video pล™รญspฤ›vky" @@ -8278,7 +8266,7 @@ msgstr "Nikdo" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Tohle se zatรญm nikomu nelรญbรญ. Moลพnรก byste mohli bรฝt prvnรญ!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Tento pล™รญspฤ›vek zatรญm nikdo necitoval. Moลพnรก byste mohli bรฝt prvnรญ!" @@ -8298,6 +8286,10 @@ msgstr "Nekonsenzuรกlnรญ intimnรญ snรญmky" msgid "Non-sexual Nudity" msgstr "Nesexuรกlnรญ nahota" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Nenรญ k dispozici na tรฉto platformฤ›." msgid "Not followed by anyone youโ€™re following" msgstr "Nenรญ sledovรกn nikรฝm z tฤ›ch, kterรฉ sledujete" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Nenalezeno" @@ -8333,7 +8325,7 @@ msgstr "Poznรกmka o sdรญlenรญ" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Poznรกmka: Bluesky je otevล™enรก a veล™ejnรก sรญลฅ. Toto nastavenรญ omezuje viditelnost vaลกeho obsahu pouze v aplikaci a na webu Bluesky a jinรฉ aplikace toto nastavenรญ nemusรญ respektovat. Vรกลก obsah mลฏลพe bรฝt i nadรกle zobrazovรกn nepล™ihlรกลกenรฝm uลพivatelลฏm prostล™ednictvรญm jinรฝch aplikacรญ a webovรฝch strรกnek." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Poznรกmka: Tento pล™รญspฤ›vek je viditelnรฝ pouze pro pล™ihlรกลกenรฉ uลพivatele." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Zatรญm nic uloลพeno" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Nastavenรญ oznรกmenรญ" @@ -8353,11 +8345,12 @@ msgstr "Nastavenรญ oznรกmenรญ" msgid "Notification sounds" msgstr "Zvuky oznรกmenรญ" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Ale ne!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Dobล™e" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Resetovat onboarding" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Jeden z vybranรฝch pล™รญjemcลฏ nepovoluje skupinovรฉ chaty." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Jeden z vybranรฝch pล™รญjemcลฏ vรกs zablokoval a nelze mu zaslat zprรกvu." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "U jednoho nebo vรญce souborลฏ GIF chybรญ alternativnรญ text." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "U jednoho nebo vรญce obrรกzkลฏ chybรญ alternativnรญ text." @@ -8454,11 +8449,11 @@ msgstr "Jeden nebo vรญce vybranรฝch souborลฏ nenรญ podporovรกn." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "Jeden nebo vรญce vybranรฝch souborลฏ je pล™รญliลก velkรฝ. Maximรกlnรญ velikost je {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Jeden nebo vรญce pล™รญspฤ›vkลฏ je pล™รญliลก dlouhรฝch na uloลพenรญ jako koncept. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Maximรกlnรญ poฤet znakลฏ je # znak.} few {Maximรกlnรญ poฤet znakลฏ jsou # znaky.} many {Maximรกlnรญ poฤet znakลฏ je # znakลฏ.} other {Maximรกlnรญ poฤet znakลฏ je # znakลฏ.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "U jednoho nebo vรญce videรญ chybรญ alternativnรญ text." @@ -8471,7 +8466,7 @@ msgstr "Odpovรญdat mohou pouze {0}." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Pล™idรกno pouze {0} z {1} {2, plural, one {obrรกzku} few {obrรกzkลฏ} many {obrรกzkลฏ} other {obrรกzkลฏ}}; limit je {MAX_GALLERY_IMAGES}" @@ -8507,6 +8502,10 @@ msgstr "Pล™ipojit se mohou jen lidรฉ, kterรฉ {0} sleduje." msgid "Only people the chat owner follows can join" msgstr "Pล™ipojit se mohou pouze lidรฉ, kterรฉ sleduje vlastnรญk konverzace" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "Pouze pล™รญspฤ›vky s mรฉdii" @@ -8519,7 +8518,7 @@ msgstr "Pouze pล™รญspฤ›vky s videem" msgid "Only replies" msgstr "Pouze odpovฤ›di" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Podporovรกny jsou pouze soubory WebVTT (.vtt)" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Jejda, tento profil neexistuje. Zkuste naskenovat jinรฝ." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Jejda!" @@ -8544,7 +8543,7 @@ msgstr "Jejda!" msgid "Open advanced search options" msgstr "Otevล™รญt pokroฤilรฉ moลพnosti vyhledรกvรกnรญ" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Otevล™รญt editor avatara" @@ -8570,21 +8569,22 @@ msgstr "Otevล™รญt moลพnosti konverzace" msgid "Open draft" msgstr "Otevล™รญt koncept" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Otevล™รญt nabรญdku" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Otevล™รญt vรฝbฤ›r emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Otevล™รญt obrazovku s informacemi o kanรกlu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Otevล™รญt nabรญdku moลพnostรญ kanรกlu" @@ -8627,7 +8627,7 @@ msgstr "Otevล™รญt strรกnku pro ladฤ›nรญ moderace" msgid "Open muted words and tags settings" msgstr "Otevล™รญt nastavenรญ ztlumenรฝch slov a znaฤek" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Otevล™รญt balรญฤek" @@ -8699,7 +8699,7 @@ msgstr "Otevล™e dalลกรญ podrobnosti pro poloลพku ladฤ›nรญ" msgid "Opens alt text dialog" msgstr "Otevล™e dialogovรฉ okno alternativnรญho textu" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Otevล™e fotoaparรกt zaล™รญzenรญ" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Otevล™e prลฏvodce vytvoล™enรญm novรฉho รบฤtu Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Otevล™e prลฏvodce pro pล™ihlรกลกenรญ do vaลกeho stรกvajรญcรญho รบฤtu Bluesky" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Heslo bylo aktualizovรกno!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pozastavit" @@ -8925,12 +8925,12 @@ msgstr "Pozastavit" msgid "Pause GIF" msgstr "Pozastavit GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pozastavit video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Lidรฉ" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Lidรฉ, kterรฉ {ownerName} sleduje, mohou poลพรกdat o pล™ipojenรญ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Lidรฉ sledovanรญ uลพivatelem @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Lidรฉ sledujรญcรญ @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Lidรฉ, kterรฉ sleduji" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Lidรฉ, kterรฉ sleduji, mohou poลพรกdat o pล™ipojenรญ" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Lidรฉ, kterรฉ sledujete" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Obrรกzky urฤenรฉ pro dospฤ›lรฉ." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Pล™ipnout kanรกl" @@ -9034,7 +9034,7 @@ msgstr "Pล™ipnout kanรกl" msgid "Pin to home" msgstr "Pล™ipnout na domovskou obrazovku" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Pล™ipnout na domovskou strรกnku" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Pล™ipnuto" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} pล™ipnuto na Domลฏ" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Pล™ipnuto k vaลกim kanรกlลฏm" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Pล™ehrรกt" @@ -9076,8 +9076,8 @@ msgstr "Pล™ehrรกt {0}" msgid "Play GIF" msgstr "Pล™ehrรกt GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Pล™ehrรกt video" @@ -9109,11 +9109,11 @@ msgstr "Pล™idejte prosรญm jakรฉkoli ลกtรญtky upozornฤ›nรญ na obsah, kterรฉ jsou msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "Zkontrolujte prosรญm svou e-mailovou schrรกnku, kde najdete dalลกรญ pokyny. Doruฤenรญ mลฏลพe trvat jednu aลพ dvฤ› minuty." -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Vyberte si prosรญm svรฉ uลพivatelskรฉ jmรฉno." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Zvolte si prosรญm heslo." @@ -9122,7 +9122,7 @@ msgstr "Zvolte si prosรญm heslo." 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 "Kliknฤ›te prosรญm na odkaz v e-mailu, kterรฝ jsme vรกm prรกvฤ› poslali, abyste ovฤ›ล™ili svou novou e-mailovou adresu. Je to dลฏleลพitรฝ krok, kterรฝ vรกm umoลพnรญ nadรกle vyuลพรญvat vลกechny funkce Bluesky." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Dokonฤete prosรญm ovฤ›ล™ovacรญ captcha." @@ -9179,7 +9179,7 @@ msgstr "Zadejte prosรญm kรณd, kterรฝ jste obdrลพeli, a novรฉ heslo, kterรฉ chcet msgid "Please enter the security code we sent to your previous email address." msgstr "Zadejte prosรญm bezpeฤnostnรญ kรณd, kterรฝ jsme zaslali na vaลกi pล™edchozรญ e-mailovou adresu." -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Zadejte prosรญm svลฏj e-mail." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Napiลกte prosรญm svou zprรกvu nรญลพe:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politika" @@ -9269,7 +9269,7 @@ msgstr "Politika" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Pล™รญspฤ›vek" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Pล™รญspฤ›vek" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Pล™idat fotku" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Pล™idat video" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Zveล™ejnit vลกe" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Pล™esto odeslat" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Pล™รญspฤ›vek zablokovรกn" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Pล™รญspฤ›vek od @{0}" @@ -9340,7 +9340,7 @@ msgstr "Pล™รญspฤ›vek skrytรฝ vรกmi" msgid "Post interaction settings" msgstr "Nastavenรญ interakcรญ s pล™รญspฤ›vkem" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Nastavenรญ interakcรญ s pล™รญspฤ›vky" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Pล™รญspฤ›vek pล™ipnut" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Pล™รญspฤ›vek uloลพen" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Pล™รญspฤ›vek odepnut" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Pล™รญspฤ›vky" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "Pล™รญspฤ›vky a odpovฤ›di" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Pล™รญspฤ›vky lze ztlumit podle jejich textu, ลกtรญtkลฏ nebo obojรญho. Doporuฤujeme vyhnout se bฤ›ลพnรฝm slovลฏm, kterรก se objevujรญ v mnoha pล™รญspฤ›vcรญch, protoลพe to mลฏลพe vรฉst k tomu, ลพe se nezobrazรญ ลพรกdnรฉ pล™รญspฤ›vky." @@ -9398,6 +9396,10 @@ msgstr "Pล™รญspฤ›vky lze ztlumit podle jejich textu, ลกtรญtkลฏ nebo obojรญho. Do msgid "Posts hidden" msgstr "Pล™รญspฤ›vky skryty" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Potenciรกlnฤ› zavรกdฤ›jรญcรญ odkaz" @@ -9449,20 +9451,21 @@ msgstr "Soukromรญ" msgid "Privacy and security" msgstr "Soukromรญ a zabezpeฤenรญ" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Soukromรญ a zabezpeฤenรญ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Nastavenรญ soukromรญ a zabezpeฤenรญ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Zรกsady ochrany osobnรญch รบdajลฏ" msgid "Privacy violation of a minor" msgstr "Poruลกenรญ soukromรญ nezletilรฉ osoby" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Zpracovรกvรกnรญ GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Zpracovรกvรกnรญ videa..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Veล™ejnรฉ, sdรญlitelnรฉ seznamy uลพivatelลฏ pro hromadnรฉ ztlumenรญ nebo blokovรกnรญ." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publikovat pล™รญspฤ›vek" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publikovat pล™รญspฤ›vky" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publikovat odpovฤ›di" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publikovat odpovฤ›ฤ" @@ -9599,12 +9602,12 @@ msgstr "Citovรกnรญ pล™รญspฤ›vkลฏ zakรกzรกno" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citace" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citace tohoto pล™รญspฤ›vku" @@ -9647,7 +9650,7 @@ msgstr "Reaktivovat vรกลก รบฤet" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Pล™eฤรญst {0, plural, one {# dalลกรญ odpovฤ›ฤ} few {# dalลกรญ odpovฤ›di} many {# dalลกรญch odpovฤ›dรญ} other {# dalลกรญch odpovฤ›dรญ}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Pล™eฤtฤ›te si, jak pouลพรญvat pokroฤilรฉ vyhledรกvacรญ filtry" @@ -9657,11 +9660,11 @@ msgstr "Pล™eฤtฤ›te si, jak pouลพรญvat pokroฤilรฉ vyhledรกvacรญ filtry" msgid "Read blog post" msgstr "Pล™eฤรญst blogovรฝ pล™รญspฤ›vek" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Zobrazit mรฉnฤ›" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "ฤŒรญst vรญce" @@ -9687,11 +9690,11 @@ msgstr "Pล™eฤรญst Zรกsady ochrany osobnรญch รบdajลฏ Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Pล™eฤรญst si Podmรญnky sluลพby Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Skuteฤnรฉ konverzace." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Skuteฤnรญ lidรฉ." @@ -9721,10 +9724,6 @@ msgstr "Nedรกvnรก hledรกnรญ" msgid "Recently used" msgstr "Nedรกvno pouลพitรฉ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Doporuฤenรฉ" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Znovu pล™ipojit" @@ -9748,7 +9747,7 @@ msgstr "Odmรญtnout poลพadavek na konverzaci" msgid "Reject join request" msgstr "Odmรญtnout poลพadavek na pล™idรกnรญ" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Znovu naฤรญst konverzace" @@ -9766,7 +9765,7 @@ msgstr "Znovu naฤรญst konverzace" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Odebrat" @@ -9792,8 +9791,8 @@ msgstr "Odebrat uลพivatele {displayName}?" msgid "Remove {q}" msgstr "Odebrat {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Odebrat รบฤet" @@ -9845,15 +9844,15 @@ msgstr "Odebrat filtr" msgid "Remove from chat" msgstr "Odebrat z konverzace" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Odebrat z mรฝch kanรกlลฏ" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Odebrat z rychlรฉho pล™รญstupu?" @@ -9862,7 +9861,7 @@ msgstr "Odebrat z rychlรฉho pล™รญstupu?" msgid "Remove from saved feeds" msgstr "Odebrat z uloลพenรฝch kanรกlลฏ" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Odebrat z uloลพenรฝch pล™รญspฤ›vkลฏ" @@ -9880,8 +9879,8 @@ msgstr "Odstranit obrรกzek" msgid "Remove live status" msgstr "Odebrat stav ลพivรฉho vysรญlรกnรญ" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Odebrat ฤlena" @@ -9943,7 +9942,7 @@ msgstr "Odebrรกno ze seznamu" msgid "Removed from saved feeds" msgstr "Odebrรกno z uloลพenรฝch kanรกlลฏ" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Odebrรกno z uloลพenรฝch pล™รญspฤ›vkลฏ" @@ -9952,7 +9951,7 @@ msgstr "Odebrรกno z uloลพenรฝch pล™รญspฤ›vkลฏ" msgid "Removed from starter pack" msgstr "Odebrรกno ze startovacรญho balรญฤku" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Odpovฤ›zeno vรกm" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Zprรกva od {senderName}, na kterou bylo odpovฤ›zeno, klepnutรญm se na ni pล™esunete" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Zprรกva, na kterou bylo odpovฤ›zeno, byla odeslรกna pล™ed tรญm, neลพ jste se pล™ipojili" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Zprรกva, na kterou bylo odpovฤ›zeno, klepnutรญm na ni pล™ejdete" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Odpovฤ›di" @@ -10037,7 +10037,7 @@ msgstr "Odpovฤ›di na tento pล™รญspฤ›vek jsou zakรกzรกny." msgid "Reply" msgstr "Odpovฤ›dฤ›t" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Odpovฤ›dฤ›t" @@ -10098,8 +10098,8 @@ msgstr "Nahlรกsit konverzaci" msgid "Report dialog" msgstr "Dialog nahlรกลกenรญ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Nahlรกsit kanรกl" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Repostovรกno vรกmi" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Reposty" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Reposty tohoto pล™รญspฤ›vku" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Reposty vaลกich repostลฏ" @@ -10253,7 +10253,7 @@ msgstr "Poลพรกdรกno" msgid "Requests" msgstr "ลฝรกdosti" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Zopakuje poslednรญ akci, kterรก skonฤila chybou" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Vrรกtรญ se na domovskou strรกnku" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Vrรกtรญ se na pล™edchozรญ strรกnku" @@ -10446,27 +10446,27 @@ msgstr "Uloลพit datum narozenรญ" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Uloลพit zmฤ›ny" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Uloลพit zmฤ›ny?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Uloลพit koncept" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Uloลพit koncept?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Uloลพit QR kรณd" msgid "Save these options for next time" msgstr "Uloลพit tato nastavenรญ pro pล™รญลกtฤ›" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Uloลพit do mรฝch kanรกlลฏ" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Uloลพenรฉ kanรกly" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Uloลพenรฉ pล™รญspฤ›vky" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Uloลพeno do vaลกich kanรกlลฏ" @@ -10520,8 +10520,8 @@ msgstr "Uloลพeno do vaลกich kanรกlลฏ" msgid "Say hello!" msgstr "Pozdravte!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Pozdravte nฤ›koho" @@ -10535,7 +10535,7 @@ msgstr "Skenovat" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Naskenovat QR kรณd" @@ -10543,15 +10543,15 @@ msgstr "Naskenovat QR kรณd" msgid "Science" msgstr "Vฤ›da" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Posunout doleva" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Posunout doprava" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Pล™ejรญt na zprรกvu, na kterou je tato odpovฤ›ฤ" @@ -10564,8 +10564,8 @@ msgstr "Pล™ejรญt nahoru" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Hledat" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Hledat pล™รญspฤ›vky uลพivatele @{0}" @@ -10612,11 +10612,11 @@ msgstr "Hledat {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Hledejte kanรกly, kterรฉ chcete doporuฤit ostatnรญm." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Hledat dalลกรญ รบฤty" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Hledat dalลกรญ kanรกly" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Hledat GIFy" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Vyhledรกvรกnรญ je po odhlรกลกenรญ momentรกlnฤ› nedostupnรฉ" @@ -10707,17 +10707,22 @@ msgstr "Zobrazit pล™รญspฤ›vky uลพivatele s #{tag}" msgid "See jobs at Bluesky" msgstr "Pracovnรญ nabรญdky v Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Zobrazit vรญce" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Zobrazit dalลกรญ doporuฤenรฉ profily" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Zobrazit doporuฤenรฉ รบฤty" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Posuvnรญk pล™ehrรกvรกnรญ. Pomocรญ ลกipek se mลฏลพete posouvat dopล™edu a dozadu, mezernรญkem pล™ehrรกvรกnรญ spustรญte nebo pozastavรญte" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Vybrat kategorii โ€ž{interestsDisplayName}โ€œ" @@ -10748,7 +10753,7 @@ msgstr "Vybrat {0}" msgid "Select {langName}" msgstr "Vybrat {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Vyberte barvu" @@ -10764,11 +10769,11 @@ msgstr "Vybrat รบฤet" msgid "Select an app language" msgstr "Vyberte jazyk aplikace" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Vyberte avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Vyberte emoji" @@ -10780,12 +10785,13 @@ msgstr "Vyberte moลพnost" msgid "Select app language" msgstr "Vyberte jazyk aplikace" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Vyberte soubor s titulky (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Vybrat konverzaci โ€ž{name}โ€œ" @@ -10826,7 +10832,7 @@ msgstr "Vybrat GIF" msgid "Select GIF \"{0}\"" msgstr "Vybrat GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Vybrat รบฤastnรญky skupinovรฉ konverzace" @@ -10864,7 +10870,7 @@ msgstr "Vyberte primรกrnรญ jazyk" msgid "Select telephone code" msgstr "Vyberte telefonnรญ pล™edvolbu" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Vybrat emoji {emojiName} jako svลฏj avatar" @@ -10945,7 +10951,8 @@ msgstr "Odeslat zprรกvu" msgid "Send post to {name}" msgstr "Odeslat pล™รญspฤ›vek uลพivateli {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Odeslat pล™รญspฤ›vek..." @@ -10963,12 +10970,12 @@ msgstr "Odeslat zprรกvu z vaลกeho telefonu" msgid "Send verification email" msgstr "Odeslat ovฤ›ล™ovacรญ e-mail" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Odeslat pล™รญmou zprรกvou" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Nastavit poskytovatele hostingu ruฤnฤ›" msgid "Sets email for password reset" msgstr "Nastavรญ e-mail pro obnovenรญ hesla" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Nastavenรญ" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Nastavenรญ pro aktivitu od ostatnรญch" @@ -11036,49 +11043,49 @@ msgstr "Nastavenรญ pro aktivitu od ostatnรญch" msgid "Settings for allowing others to be notified of your posts" msgstr "Nastavenรญ pro umoลพnฤ›nรญ ostatnรญm dostรกvat upozornฤ›nรญ na vaลกe pล™รญspฤ›vky" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Nastavenรญ oznรกmenรญ o lajcรญch" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Nastavenรญ oznรกmenรญ o zmรญnkรกch" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Nastavenรญ oznรกmenรญ o novรฝch sledujรญcรญch" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Nastavenรญ oznรกmenรญ pro vลกe ostatnรญ" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Nastavenรญ oznรกmenรญ o lajcรญch vaลกich repostลฏ" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Nastavenรญ oznรกmenรญ o novรฝch ลพรกdostech o zprรกvu" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Nastavenรญ oznรกmenรญ pro novรฉ zprรกvy" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Nastavenรญ oznรกmenรญ o repostech vaลกich repostลฏ" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Nastavenรญ oznรกmenรญ o citacรญch" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Nastavenรญ oznรกmenรญ o odpovฤ›dรญch" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Nastavenรญ oznรกmenรญ o repostech" @@ -11115,8 +11122,8 @@ msgstr "Sdรญlet vฤ›kovรฉ rozmezรญ" msgid "Share anyway" msgstr "Pล™esto sdรญlet" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Sdรญlet DID autora" @@ -11125,9 +11132,9 @@ msgstr "Sdรญlet DID autora" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Sdรญlet zpฤ›tnou vazbu" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialogovรฉ okno pro sdรญlenรญ odkazu" msgid "Share my profile" msgstr "Sdรญlet mลฏj profil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Sdรญlet pล™รญspฤ›vek at:// URI" @@ -11169,12 +11176,12 @@ msgstr "Sdรญlet profil" msgid "Share QR code" msgstr "Sdรญlet QR kรณd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Sdรญlet tento kanรกl" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Sdรญlet toto hledรกnรญ" @@ -11186,8 +11193,8 @@ msgstr "Sdรญlet tento startovacรญ balรญฤek" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Sdรญlejte tento startovacรญ balรญฤek a pomozte lidem pล™ipojit se k vaลกรญ komunitฤ› na Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,9 +11210,9 @@ msgstr "Sdรญlejte svรฉ kontakty a najdฤ›te pล™รกtele" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughtsโ€ฆ" -msgstr "" +msgstr "Sdรญlejte svรฉ myลกlenkyโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Tester sdรญlenรฝch pล™edvoleb" @@ -11219,7 +11226,7 @@ msgstr "Sdรญlenรญm vaลกeho vฤ›kovรฉho rozmezรญ odhalรญte pouze rozmezรญ spojenรฉ msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Sdรญlenรญ vฤ›kovรฉho rozmezรญ odhalรญ pouze rozmezรญ spojenรฉ s vaลกรญm รบฤtem Google โ€“ napล™รญklad ลพe je vรกm alespoลˆ 18 let. <0>Vaลกe pล™esnรฉ datum narozenรญ ani vฤ›k nejsou nikdy sdรญleny a tato data nikdy neopouลกtฤ›jรญ toto zaล™รญzenรญ. Umoลพลˆujรญ tedy pล™รญstup pouze na tomto zaล™รญzenรญ. Pล™รญpadnฤ› <1>mลฏลพete vyuลพรญt naลกeho dลฏvฤ›ryhodnรฉho partnera KWS a dokonฤit ovฤ›ล™enรญ, kterรฉ vรกm umoลพnรญ pล™รญstup na vลกech platformรกch." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Zobrazit" msgid "Show alt text" msgstr "Zobrazit alternativnรญ text" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Pล™esto zobrazit" @@ -11274,8 +11281,8 @@ msgstr "Pล™esto zobrazit seznam" msgid "Show lists of users to select from" msgstr "Zobrazit seznamy uลพivatelลฏ k vรฝbฤ›ru" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Zobrazit vรญce" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Zobrazit varovรกnรญ a odfiltrovat z kanรกlลฏ" msgid "Show when youโ€™re live" msgstr "Zobrazit, kdyลพ prรกvฤ› vysรญlรกte ลพivฤ›" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Zobrazรญ informace o tom, kdy byl tento pล™รญspฤ›vek vytvoล™en" @@ -11341,15 +11348,15 @@ msgstr "Zobrazรญ informace o tom, kdy byl tento pล™รญspฤ›vek vytvoล™en" msgid "Shows other accounts you can switch to" msgstr "Zobrazรญ dalลกรญ รบฤty, na kterรฉ lze pล™epnout" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Zobrazรญ obsah" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Zobrazรญ obsah" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Odhlรกsit se?" msgid "Sign up" msgstr "Zaregistrovat se" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Vyลพadovรกno pล™ihlรกลกenรญ" @@ -11469,7 +11476,7 @@ msgstr "Pล™eskoฤit" msgid "Skip contact sharing and continue to the app" msgstr "Pล™eskoฤit sdรญlenรญ kontaktลฏ a pokraฤovat do aplikace" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Pล™eskoฤit prรกzdnรฉ pล™รญspฤ›vky?" @@ -11487,7 +11494,7 @@ msgstr "Pล™eskoฤit na dalลกรญ krok" msgid "slide" msgstr "snรญmek" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Menลกรญ" @@ -11499,14 +11506,14 @@ msgstr "Odloลพรญ pล™ipomenutรญ" msgid "So many thoughts, you should post one" msgstr "Tolik myลกlenek, mฤ›li byste nฤ›jakou zveล™ejnit" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Sociรกlnรญ sรญtฤ› pod vaลกรญ kontrolou." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Sociรกlnรญ doporuฤenรญ u pล™รญspฤ›vkลฏ" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11520,7 +11527,7 @@ msgstr "Nฤ›kterรฉ moderรกtorskรฉ sluลพby ve vaลกem seznamu jiลพ nejsou dostupnรฉ msgid "Some of your verifications are invalid." msgstr "Nฤ›kterรก z vaลกich ovฤ›ล™enรญ jsou neplatnรก." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Dalลกรญ kanรกly, kterรฉ by se vรกm mohly lรญbit" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Nฤ›kdo opustil skupinu" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Nฤ›kdo zareagoval {0}" @@ -11554,7 +11561,7 @@ msgstr "Nฤ›kdo zareagoval {0}" msgid "Someone reacted {0} to {target}" msgstr "Nฤ›kdo reagoval {0} na {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Nฤ›kdo odpovฤ›dฤ›l" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Nฤ›co se pokazilo, zkuste to prosรญm znovu" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Nฤ›co se pokazilo. Zkuste to prosรญm za chvรญli znovu." msgid "Something went wrong. Please try again." msgstr "Nฤ›co se pokazilo. Zkuste to prosรญm znovu." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Nฤ›co nenรญ v poล™รกdku? Dejte nรกm vฤ›dฤ›t." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam nebo jinรฉ neautentickรฉ chovรกnรญ ฤi klamรกnรญ" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sport" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Zobrazovat pล™รญspฤ›vky, kterรฉ se lรญbily vaลกim pล™รกtelลฏm a lidem, kterรฉ sledujete." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Zaฤnฤ›te konverzaci a objevรญ se zde." msgid "Start a group chat" msgstr "Zaฤรญt skupinovou konverzaci" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Zahรกjit novou konverzaci" @@ -11682,17 +11689,17 @@ msgstr "Zaฤnฤ›te pล™idรกvat lidi" msgid "Start adding people!" msgstr "Zaฤnฤ›te pล™idรกvat lidi!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Zahรกjit konverzaci" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Zahรกjit konverzaci s uลพivatelem {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startovacรญ balรญฤek" @@ -11715,12 +11722,16 @@ msgstr "Startovacรญ balรญฤek od vรกs" msgid "Starter pack is invalid" msgstr "Startovacรญ balรญฤek je neplatnรฝ" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startovacรญ balรญฤky" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Startovacรญ balรญฤky vรกm umoลพลˆujรญ snadno sdรญlet vaลกe oblรญbenรฉ kanรกly a lidi s vaลกimi pล™รกteli." @@ -11728,7 +11739,7 @@ msgstr "Startovacรญ balรญฤky vรกm umoลพลˆujรญ snadno sdรญlet vaลกe oblรญbenรฉ k msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Startovacรญ balรญฤky vรกm umoลพลˆujรญ sdรญlet vaลกe oblรญbenรฉ kanรกly a lidi s vaลกimi pล™รกteli." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Startivacรก balรญฤky vรกm umoลพลˆujรญ sdรญlet vaลกe oblรญbenรฉ kanรกly a lidi s vaลกimi pล™รกteli." @@ -11742,7 +11753,7 @@ msgstr "Stavovรก strรกnka" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Krok {0} z {1}" @@ -11754,7 +11765,7 @@ msgstr "รšloลพiลกtฤ› bylo vymazรกno, nynรญ je nutnรฉ aplikaci restartovat." msgid "Stored as part of a secure code for matching with others" msgstr "Uloลพeno jako souฤรกst zabezpeฤenรฉho kรณdu pro porovnรกnรญ s ostatnรญmi" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11787,7 +11798,7 @@ msgstr "Odeslat odvolรกnรญ" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Odeslat zpฤ›tnou vazbu" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Odebรญrat {publicationTitle} na {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Pล™ihlaste se k odbฤ›ru @{0} pro pouลพitรญ tฤ›chto ลกtรญtkลฏ:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "รšspฤ›ลกnฤ› ovฤ›ล™eno" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Doporuฤenรฉ" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Doporuฤenรฉ รบฤty" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Doporuฤeno pro vรกs" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Zรกpad slunce" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Podpora tรฉto funkce ve vaลกรญ zemi zatรญm nebyla povolena! Zkuste to prosรญm pozdฤ›ji." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Pozastavenรฉ รบฤty se nemohou รบฤastnit skupinovรฉ konverzace." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Pozastavenรฉ รบฤty se nemohou รบฤastnit konverzace." @@ -11921,8 +11934,8 @@ msgstr "Pล™epnout na {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Systรฉmovรฉ" @@ -11945,7 +11958,7 @@ msgstr "Pล™esuลˆte konverzaci do soukromรญ." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Klepnutรญm nรญลพe povolรญte aplikaci Bluesky pล™รญstup k vaลกรญ GPS poloze. Tyto รบdaje pak pouลพijeme k pล™esnฤ›jลกรญmu urฤenรญ obsahu a funkcรญ dostupnรฝch ve vaลกem regionu." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Klepnutรญm zobrazรญte podrobnosti" @@ -11976,7 +11989,7 @@ msgstr "Klepnutรญm zavล™ete kontextovou nabรญdku" msgid "Tap to copy this invite link" msgstr "Klepnutรญm zkopรญrujete tento odkaz pozvรกnky" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Klepnutรญm zavล™ete" @@ -12003,7 +12016,7 @@ msgstr "Klepnutรญm odeberete svou reakci {0}" msgid "Tap to request access to join this group chat" msgstr "Klepnutรญm poลพรกdejte o pล™รญstup do tรฉto skupinovรฉ konverzace" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Klepnutรญm to zkuste znovu" @@ -12016,7 +12029,7 @@ msgstr "Klepnutรญm zobrazรญte reakce {0}" msgid "Tap to show all reactions" msgstr "Klepnutรญm zobrazรญte vลกechny reakce" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Klepnutรญm zobrazรญte reakce" @@ -12032,7 +12045,7 @@ msgstr "รškol splnฤ›n โ€“ 10 sledovanรฝch!" msgid "Task complete - 10 likes!" msgstr "รškol splnฤ›n โ€“ 10 lajkลฏ!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Nauฤte nรกลก algoritmus, co se vรกm lรญbรญ" @@ -12060,7 +12073,7 @@ msgstr "Podmรญnky" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Dฤ›kujeme za vaลกi zpฤ›tnou vazbu! Byla odeslรกna provozovateli kanรกlu. #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Dฤ›kujeme za vaลกi zpฤ›tnou vazbu." #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "Tento startovacรญ balรญฤek nebyl nalezen." msgid "That username is already taken" msgstr "Toto uลพivatelskรฉ jmรฉno je jiลพ obsazeno" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "A to je vลกe, pล™รกtelรฉ!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "To je vลกechno!" @@ -12216,7 +12229,7 @@ msgstr "Zdรก se, ลพe server mรก problรฉmy. Zkuste to prosรญm za chvรญli znovu." msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Startovacรญ balรญฤek, kterรฝ se snaลพรญte zobrazit, je neplatnรฝ. Mลฏลพete jej mรญsto toho smazat." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Pล™edmฤ›t kontextovรฉ nabรญdky" @@ -12238,7 +12251,7 @@ msgstr "Zadanรฝ ovฤ›ล™ovacรญ kรณd je neplatnรฝ. Ujistฤ›te se, ลพe jste pouลพili msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Poskytovateli ovฤ›ล™enรญ se nepodaล™ilo odeslat kรณd na vaลกe telefonnรญ ฤรญslo. Zkontrolujte prosรญm svรฉ telefonnรญ ฤรญslo a zkuste to znovu." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Motiv" @@ -12266,7 +12279,7 @@ msgstr "Pล™i naฤรญtรกnรญ GIFลฏ nastal problรฉm. Zkontrolujte pล™ipojenรญ a zkus msgid "There was a problem with your internet connection, please try again" msgstr "Doลกlo k problรฉmu s vaลกรญm internetovรฝm pล™ipojenรญm, zkuste to prosรญm znovu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Doลกlo k problรฉmu s vaลกรญm internetovรฝm pล™ipojenรญm, zkuste to pros msgid "There was an issue contacting the server" msgstr "Pล™i kontaktovรกnรญ serveru doลกlo k problรฉmu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Pล™i kontaktovรกnรญ serveru doลกlo k chybฤ›, zkontrolujte prosรญm pล™ipojenรญ k internetu a zkuste to znovu." @@ -12283,8 +12296,8 @@ msgstr "Pล™i kontaktovรกnรญ serveru doลกlo k chybฤ›, zkontrolujte prosรญm pล™ipo msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Pล™i naฤรญtรกnรญ oznรกmenรญ doลกlo k potรญลพรญm. Klepnutรญm to zkuste znovu." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Pล™i naฤรญtรกnรญ pล™รญspฤ›vkลฏ doลกlo k potรญลพรญm. Klepnฤ›te sem pro opฤ›tovnรฝ pokus." @@ -12309,7 +12322,7 @@ msgstr "Pล™i naฤรญtรกnรญ informacรญ o sluลพbฤ› doลกlo k potรญลพรญm" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Pล™i odebรญrรกnรญ tohoto kanรกlu doลกlo k chybฤ›. Zkontrolujte prosรญm pล™ipojenรญ k internetu a zkuste to znovu." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Tato nastavenรญ se vztahujรญ pouze na kanรกl Sledovanรญ." msgid "These URLs" msgstr "Tyto adresy URL" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Vlastnรญ tento chat" @@ -12392,7 +12405,7 @@ msgstr "Vlastnรญ tento chat" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "Nebudou se moci znovu pล™ipojit, pokud je znovu nepozvete." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Tento {screenDescription} byl oznaฤen:" @@ -12408,7 +12421,7 @@ msgstr "Tento รบฤet byl jeho vlastnรญkem oznaฤen jako automatizovanรฝ." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Tento รบฤet mรก jeden nebo vรญce pokusลฏ o ovฤ›ล™enรญ, ale momentรกlnฤ› nenรญ ovฤ›ล™enรฝ." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Tento รบฤet poลพaduje, aby se uลพivatelรฉ pro zobrazenรญ jeho profilu pล™ihlรกsili." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Tento kanรกl je prรกzdnรฝ! Moลพnรก budete muset sledovat vรญce uลพivatelลฏ nebo upravit nastavenรญ jazyka." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Tento kanรกl je prรกzdnรฝ." @@ -12554,7 +12567,7 @@ msgstr "Tato skupina je uzamฤena z dลฏvodu moderaฤnรญho zรกsahu vลฏฤi vlastn msgid "This handle is reserved. Please try a different one." msgstr "Toto uลพivatelskรฉ jmรฉno je rezervovรกno. Zkuste prosรญm jinรฉ." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Tento obrรกzek nelze pouลพรญt. Zkuste jinรฝ formรกt, napล™รญklad .jpg nebo .png." @@ -12596,7 +12609,7 @@ msgstr "Tento ลกtรญtek jste pouลพili vy." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Tento ลกtรญtek byl pouลพit na celรฝ uลพivatelskรฝ รบฤet a zobrazรญ se u vลกech pล™รญspฤ›vkลฏ." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Tento labeler neuvedl, jakรฉ ลกtรญtky vydรกvรก, a nemusรญ bรฝt aktivnรญ." @@ -12621,13 +12634,13 @@ msgstr "Tento seznam je prรกzdnรฝ." msgid "This message is hidden" msgstr "Tato zprรกva je skrytรก" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Tato zprรกva je skrytรก, protoลพe vรกs tento uลพivatel blokuje." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Tato zprรกva je skrytรก, protoลพe tohoto uลพivatele blokujete." @@ -12641,7 +12654,7 @@ msgstr "Tato osoba vรกs blokuje" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Tento pล™รญspฤ›vek tvrdรญ, ลพe byl vytvoล™en <0>{0}, ale Bluesky jej poprvรฉ zaznamenala <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Tento pล™รญspฤ›vek tvrdรญ, ลพe byl vytvoล™en <0>{0}, ale Bluesky jej msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Tento pล™รญspฤ›vek mรก neznรกmรฝ typ threadgate. Vaลกe aplikace mลฏลพe bรฝt zastaralรก." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Tento pล™รญspฤ›vek je viditelnรฝ pouze pro pล™ihlรกลกenรฉ uลพivatele." @@ -12661,7 +12674,7 @@ msgstr "Tento pล™รญspฤ›vek byl odstranฤ›n jeho autorem" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Tento pล™รญspฤ›vek bude skryt z kanรกlลฏ a vlรกken. Tuto akci nelze vrรกtit zpฤ›t." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Autor tohoto pล™รญspฤ›vku zakรกzal citovรกnรญ pล™รญspฤ›vkลฏ." @@ -12698,11 +12711,12 @@ msgstr "Mฤ›lo by to zabrat jen nฤ›kolik minut." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Tento uลพivatel nemรก zobrazovanรฉ jmรฉno, a proto nemลฏลพe bรฝt ovฤ›ล™en." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Tento uลพivatel nemรก ลพรกdnรฉ sledujรญcรญ." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Tento uลพivatel vรกs zablokoval a nelze mu zaslat zprรกvu." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Tento uลพivatel vรกs zablokoval. Nemลฏลพete zobrazit jeho obsah." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Tento uลพivatel zakรกzal konverzaci a nelze mu posรญlat zprรกvy." @@ -12733,11 +12748,11 @@ msgstr "Tento uลพivatel je zaล™azen v seznamu <0>{0}, kterรฝ jste ztlumili." msgid "This user is new here. Press for more info about when they joined." msgstr "Tento uลพivatel je tu novรฝ. Stisknฤ›te pro vรญce informacรญ o tom, kdy se pล™idal." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Tento uลพivatel nikoho nesleduje." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Toto video nelze pล™ehrรกt na vaลกem zaล™รญzenรญ. Ve vaลกem prohlรญลพeฤi nebo systรฉmu mohou chybฤ›t poลพadovanรฉ video kodeky (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Tรญmto nevratnฤ› smaลพete svลฏj รบฤet Bluesky <0>{currentHandle} a vลกechna souvisejรญcรญ data. Vezmฤ›te na vฤ›domรญ, ลพe to ovlivnรญ i dalลกรญ sluลพby <1>AT Protocol, kterรฉ s tรญmto รบฤtem pouลพรญvรกte." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Tรญmto odeberete @{0} ze seznamu rychlรฉho pล™รญstupu." @@ -12786,7 +12801,7 @@ msgstr "Pล™edvolby vlรกken" msgid "Threaded" msgstr "Vlรกknovรฉ" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Pล™edvolby vlรกken" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Pล™รญliลก mnoho kontaktลฏ โ€“ pล™ekroฤili jste poฤet kontaktลฏ, kterรฉ mลฏลพete importovat, abyste naลกli svรฉ pล™รกtele" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Nejlepลกรญ" @@ -12858,7 +12873,7 @@ msgstr "Nejlepลกรญ" msgid "Top replies first" msgstr "Nejlepลกรญ odpovฤ›di jako prvnรญ" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tรฉma" @@ -12893,7 +12908,9 @@ msgstr "Pล™eklad do stejnรฉho jazyka nenรญ na vaลกem zaล™รญzenรญ k dispozici." msgid "Tree view" msgstr "Stromovรฉ zobrazenรญ" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Populรกrnรญ" @@ -12902,13 +12919,15 @@ msgstr "Populรกrnรญ" msgid "Trending GIFs" msgstr "Populรกrnรญ GIFy" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Moลพnosti trendovรกnรญ" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Populรกrnรญ videa" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Dลฏvฤ›ra vznikรก ze vztahลฏ, komunit a sdรญlenรฉho kontextu, proto takรฉ zavรกdรญme <0>dลฏvฤ›ryhodnรฉ ovฤ›ล™ovatele: organizace, kterรฉ mohou pล™รญmo vydรกvat ovฤ›ล™enรญ." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Zkuste jinรฝ vyhledรกvacรญ vรฝraz nebo odstraลˆte nฤ›kterรฉ filtry." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Zkuste jinรฝ vyhledรกvacรญ vรฝraz." @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Nepodaล™ilo se naฤรญst poลพadavky na pล™idรกnรญ." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Vybranรฉho pล™รญjemce se nepodaล™ilo najรญt." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Vybranรฉho pล™รญjemce se nepodaล™ilo najรญt." @@ -13024,12 +13045,12 @@ msgstr "Nedostupnรฉ" msgid "Unavailable feed information" msgstr "Informace o kanรกlu nejsou k dispozici" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Odblokovat รบฤet?" msgid "Unblock list" msgstr "Odblokovat seznam" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Pล™estat sledovat {0}" msgid "Unfollow account" msgstr "Pล™estat sledovat รบฤet" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Pล™estane sledovat uลพivatele" @@ -13132,7 +13153,7 @@ msgstr "Neoznaฤenรฝ obsah pro dospฤ›lรฉ" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Neoznaฤenรฝ, urรกลพlivรฝ nebo nekonsensuรกlnรญ obsah pro dospฤ›lรฉ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Zruลกit lajk" @@ -13192,7 +13213,7 @@ msgstr "Zruลกit ztlumenรญ tรฉto skupinovรฉ konverzace" msgid "Unmute thread" msgstr "Zruลกit ztlumenรญ vlรกkna" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Zruลกit ztlumenรญ videa" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Odepnout" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Odepnout kanรกl" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Odepnout z domovskรฉ obrazovky" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Odepnout seznam moderovรกnรญ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} odepnuto z Domลฏ" @@ -13258,11 +13279,11 @@ msgstr "Zruลกit odbฤ›r tohoto labelera" msgid "Unsubscribed from list" msgstr "Odhlรกลกeno ze seznamu" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Nepodporovanรฝ obsah schrรกnky" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Nepodporovanรฝ typ videa: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Aktualizace viditelnosti odpovฤ›di se nezdaล™ila" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Nahrรกt mรญsto toho fotku" @@ -13355,7 +13376,7 @@ msgstr "Nahrรกt ze souboru" msgid "Upload from Library" msgstr "Nahrรกt z knihovny" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Nahrรกvรกnรญ GIF..." @@ -13369,7 +13390,7 @@ msgstr "Nahrรกvรกnรญ obrรกzkลฏ..." msgid "Uploading link thumbnail..." msgstr "Nahrรกvรกnรญ nรกhledu odkazu..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Nahrรกvรกnรญ videa..." @@ -13408,7 +13429,7 @@ msgstr "Toto pouลพijte k pล™ihlรกลกenรญ do jinรฉ aplikace spolu se svรฝm uลพivat msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Pouลพijte e-mailovou adresu svรฉho รบฤtu nebo jinou skuteฤnou e-mailovou adresu, kterou kontrolujete, pro pล™รญpad, ลพe vรกs bude potล™ebovat kontaktovat KWS nebo Bluesky." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "uลพivatel" @@ -13510,7 +13531,7 @@ msgstr "Ovฤ›ล™enรญ se nezdaล™ilo, zkuste to prosรญm znovu." msgid "Verification settings" msgstr "Nastavenรญ ovฤ›ล™enรญ" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Nastavenรญ ovฤ›ล™enรญ" @@ -13618,34 +13639,34 @@ msgstr "Video" msgid "Video failed to process" msgstr "Zpracovรกnรญ videa se nezdaล™ilo" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Video kanรกl" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Video od {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video od {0}. Klepnutรญm video pล™ehrajete nebo pozastavรญte" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videohry" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video je pozastaveno" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video se pล™ehrรกvรก" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video nenalezeno." @@ -13653,7 +13674,7 @@ msgstr "Video nenalezeno." msgid "Video settings" msgstr "Nastavenรญ videa" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video nahrรกno" @@ -13662,17 +13683,17 @@ msgstr "Video nahrรกno" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videa" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videa musรญ bรฝt kratลกรญ neลพ 3 minuty." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Zobrazit" @@ -13691,9 +13712,9 @@ msgstr "Zobrazit profilovรฝ obrรกzek uลพivatele {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Zobrazit profil uลพivatele {0}" @@ -13724,13 +13745,13 @@ msgstr "Zobrazit blogovรฝ pล™รญspฤ›vek pro vรญce informacรญ" msgid "View debug entry" msgstr "Zobrazit zรกznam ladฤ›nรญ" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Zobrazit podrobnosti" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Zobrazit celรฉ vlรกkno" @@ -13750,18 +13771,18 @@ msgstr "Zobrazit pล™รญchozรญ ลพรกdosti o pล™ipojenรญ k tรฉto skupinovรฉ konverza msgid "View information about these labels" msgstr "Zobrazit informace o tฤ›chto ลกtรญtcรญch" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Zobrazit vรญce" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Zobrazit dalลกรญ populรกrnรญ videa" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Zobrazit pล™รญspฤ›vek" @@ -13798,15 +13819,15 @@ msgstr "Zobrazit odkaz s pozvรกnkou do tรฉto skupinovรฉ konverzace" msgid "View the labeling service provided by @{0}" msgstr "Zobrazit sluลพbu oznaฤovรกnรญ poskytovanou uลพivatelem @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Zobrazit ovฤ›ล™enรญ tohoto uลพivatele" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Zobrazit uลพivatele, kteล™รญ majรญ rรกdi tento kanรกl" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Zobrazit video" @@ -13831,7 +13852,7 @@ msgstr "Zobrazit vaลกe seznamy moderovรกnรญ" msgid "View your muted accounts" msgstr "Zobrazit vaลกe ztlumenรฉ รบฤty" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Zobrazit vaลกe ovฤ›ล™enรญ" @@ -13840,7 +13861,7 @@ msgstr "Zobrazit vaลกe ovฤ›ล™enรญ" msgid "Views full image" msgstr "Zobrazรญ obrรกzek v plnรฉ velikosti" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Zobrazรญ video v reลพimu na celou obrazovku" @@ -14001,7 +14022,7 @@ msgstr "Aลพ najdeme vaลกe pล™รกtele, dรกme vรกm vฤ›dฤ›t." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "Weโ€™d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Rรกdi bychom se dozvฤ›dฤ›li o Vaลกich zkuลกenostech s testovรกnรญm funkcรญ beta verze!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Mรกme problรฉmy se sรญtรญ, zkuste to znovu" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Mรกme problรฉmy se sรญtรญ, zkuste to znovu" @@ -14043,7 +14064,7 @@ msgstr "Mรกme problรฉmy se sรญtรญ, zkuste to znovu" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Pล™edstavujeme novou vrstvu ovฤ›ล™enรญ na Bluesky โ€“ snadno viditelnou znaฤku zaลกkrtnutรญ." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Jsme moc rรกdi, ลพe se k nรกm pล™idรกvรกte!" @@ -14064,13 +14085,15 @@ msgstr "Je nรกm lรญto, ale tento seznam se nรกm nepodaล™ilo naฤรญst. Pokud prob msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Omlouvรกme se, ale momentรกlnฤ› se nepodaล™ilo naฤรญst vaลกe ztlumenรก slova. Zkuste to prosรญm znovu." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." -msgstr "" +msgstr "Omlouvรกme se, ale Vaลกe hledรกnรญ nelze dokonฤit." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Omlouvรกme se, ale vaลกe vyhledรกvรกnรญ nemohlo bรฝt dokonฤeno. Zkuste to prosรญm znovu za pรกr minut." @@ -14078,7 +14101,7 @@ msgstr "Omlouvรกme se, ale vaลกe vyhledรกvรกnรญ nemohlo bรฝt dokonฤeno. Zkuste msgid "We're sorry, you cannot access this screen at this time." msgstr "Omlouvรกme se, k tรฉto obrazovce nynรญ nemรกte pล™รญstup." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Omlouvรกme se! Pล™รญspฤ›vek, na kterรฝ odpovรญdรกte, byl smazรกn." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "co se dฤ›je" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Co se dฤ›je?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Kdo mลฏลพe ovฤ›ล™ovat?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Jejda!" @@ -14220,21 +14243,21 @@ msgstr "Chcete tohoto uลพivatele zablokovat a/nebo opustit tuto konverzaci?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Chcete tento pล™รญspฤ›vek uloลพit jako koncept pล™ed zobrazenรญm vaลกich konceptลฏ?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Chcete tento pล™รญspฤ›vek uloลพit jako koncept a upravit ho pozdฤ›ji?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Napsat pล™รญspฤ›vek" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Napsat pล™รญspฤ›vek" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Napiลกte svou odpovฤ›ฤ" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Pล™istupujete k Bluesky z regionu, kterรฝ nรกm zรกkonnฤ› uklรกdรก ovฤ›ล™it vรกลก vฤ›k, neลพ vรกm umoลพnรญme aplikaci pouลพรญvat." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Blokujete uลพivatele {0}" @@ -14342,7 +14365,7 @@ msgstr "Jiลพ nevysรญlรกte ลพivฤ›" msgid "You are not allowed to upload videos." msgstr "Nemรกte oprรกvnฤ›nรญ nahrรกvat videa." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Zatรญm nikoho nesledujete" @@ -14362,7 +14385,7 @@ msgstr "Jste ovฤ›ล™eni. Pokud zmฤ›nรญte svรฉ zobrazovanรฉ jmรฉno, ztratรญte stat msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Jste ovฤ›ล™eni. Pokud zmฤ›nรญte svoje uลพivatelskรฉ jmรฉno, ztratรญte status ovฤ›ล™enรญ. <0>Zjistit vรญce." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Svรฉ zรกjmy mลฏลพete kdykoli upravit v nastavenรญ โ€žObsah a mรฉdiaโ€œ." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Nynรญ se mลฏลพete pล™ihlรกsit pomocรญ svรฉho novรฉho hesla." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "K jednomu pล™รญspฤ›vku mลฏลพete pล™idat maximรกlnฤ› {MAX_GALLERY_IMAGES, plural, one {# obrรกzek} few {# obrรกzky} many {# obrรกzkลฏ} other {# obrรกzkลฏ}}" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Koncepty mลฏลพete uklรกdat pouze do dรฉlky 1000 znakลฏ." @@ -14439,9 +14462,11 @@ msgstr "Mลฏลพete ฤรญst historii konverzace, ale nemลฏลพete odesรญlat novรฉ zpr msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Celkem mลฏลพete vybrat aลพ {MAX_GALLERY_IMAGES, plural, one {# obrรกzek} few {# obrรกzky} many {# obrรกzkลฏ} other {# obrรกzkลฏ}}." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Toto mลฏลพete pozdฤ›ji zmฤ›nit v nastavenรญ." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Nemลฏลพete pล™idat vรญce neลพ {EMOJI_REACTION_LIMIT, plural, one {# emoji reakci} few {# emoji reakce} many {# emoji reakcรญ} other {# emoji reakcรญ}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Zatรญm nemลฏลพete vytvoล™it skupinovรฝ chat." @@ -14555,7 +14581,7 @@ msgstr "Vaลกe e-mailovรก adresa byla รบspฤ›ลกnฤ› ovฤ›ล™ena. Toto dialogovรฉ okno msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Doฤasnฤ› jste dosรกhli limitu pro nahrรกvรกnรญ videรญ. Zkuste to prosรญm pozdฤ›ji." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "V tomto konceptu mรกte neuloลพenรฉ zmฤ›ny, chcete je uloลพit?" @@ -14563,7 +14589,7 @@ msgstr "V tomto konceptu mรกte neuloลพenรฉ zmฤ›ny, chcete je uloลพit?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Mรกte neuloลพenรฉ zmฤ›ny. Chcete je uloลพit pล™ed zobrazenรญm vaลกich konceptลฏ?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Zatรญm jste nevytvoล™ili ลพรกdnรฝ startovacรญ balรญฤek!" @@ -14614,7 +14640,7 @@ msgstr "Mลฏลพete pล™idat maximรกlnฤ› {STARTER_PACK_MAX_SIZE, plural, one {{START msgid "You may only add up to 3 feeds" msgstr "Mลฏลพete pล™idat maximรกlnฤ› 3 kanรกly" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Pro odebrรกnรญ ฤlena musรญte bรฝt vlastnรญkem konverzace." @@ -14622,7 +14648,7 @@ msgstr "Pro odebrรกnรญ ฤlena musรญte bรฝt vlastnรญkem konverzace." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Pro pouลพรญvรกnรญ Bluesky musรญ bรฝt vรกm alespoลˆ 13 let. Vรญce informacรญ naleznete v naลกich <0>Podmรญnkรกch sluลพby." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "K vygenerovรกnรญ startovacรญho balรญฤku musรญte sledovat alespoลˆ sedm dalลกรญch lidรญ." @@ -14639,7 +14665,7 @@ msgstr "Musรญte povolit pล™รญstup ke svรฉ knihovnฤ› mรฉdiรญ." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Neลพ budete moci povolit e-mailovรฉ 2FA, musรญte ovฤ›ล™it svou e-mailovou adresu." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Tuto konverzaci vlastnรญte vy" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Pravdฤ›podobnฤ› budete chtรญt aplikaci nynรญ restartovat." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Reagovali jste {0}" @@ -14667,15 +14693,15 @@ msgstr "Reagovali jste {0} na {target}" msgid "You recently changed your birthdate" msgstr "Nedรกvno jste zmฤ›nili svรฉ datum narozenรญ" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Odpovฤ›dฤ›li jste" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Odpovฤ›dฤ›li jste uลพivateli {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Odpovฤ›dฤ›li jste sami sobฤ›" @@ -14715,11 +14741,11 @@ msgstr "Nebudete se moci znovu pล™ipojit, pokud nebudete pozvรกni." msgid "You: {message}" msgstr "Vy: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Jakmile dokonฤรญte vytvรกล™enรญ รบฤtu, zaฤnete sledovat doporuฤenรฉ uลพivatele a kanรกly!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Jakmile dokonฤรญte vytvรกล™enรญ รบฤtu, zaฤnete sledovat doporuฤenรฉ uลพivatele!" @@ -14791,7 +14817,7 @@ msgstr "Dosรกhli jste konce aktivnรญho obsahu." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Dostali jste se na konec svรฉho kanรกlu! Najdฤ›te si dalลกรญ รบฤty, kterรฉ mลฏลพete sledovat." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Dosรกhli jste maximรกlnรญho poฤtu konceptลฏ" @@ -14799,7 +14825,7 @@ msgstr "Dosรกhli jste maximรกlnรญho poฤtu konceptลฏ" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Dosรกhli jste maximรกlnรญho poฤtu povolenรฝch poลพadavkลฏ. Zkuste to prosรญm znovu pozdฤ›ji." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Dosรกhli jste maximรกlnรญho poฤtu {MAX_FILTERS, plural, one {# filtru} few {# filtrลฏ} many {# filtrลฏ} other {# filtrลฏ}}. Mรญsto vytvรกล™enรญ novรฝch pล™idejte dalลกรญ hodnoty do stรกvajรญcรญho filtru." @@ -14815,11 +14841,11 @@ msgstr "Dosรกhli jste svรฉho dennรญho limitu pro nahrรกvรกnรญ videรญ (pล™รญliลก msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Dosรกhli jste dennรญho limitu pro nahrรกvรกnรญ videรญ (pล™รญliลก mnoho videรญ)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Doลกla vรกm videa ke sledovรกnรญ. Moลพnรก je vhodnรฝ ฤas si dรกt pauzu?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Vรกลก รบฤet" @@ -14835,11 +14861,11 @@ msgstr "Vรกลก รบฤet byl pozastaven" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Vรกลก รบฤet jeลกtฤ› nenรญ dostateฤnฤ› starรฝ na nahrรกvรกnรญ videรญ. Zkuste to prosรญm pozdฤ›ji." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Vรกลก รบฤet je pล™รญliลก novรฝ" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Pro vytvoล™enรญ novรฉ skupinovรฉ konverzace musรญ bรฝt vรกลก รบฤet starรฝ alespoลˆ 7 dnรญ." @@ -14896,7 +14922,7 @@ msgstr "Vรกลก e-mail" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Vรกลก e-mail se zdรก bรฝt neplatnรฝ." @@ -14930,8 +14956,8 @@ msgstr "Vaลกeho poskytovatele hostingu nelze zjistit z e-mailovรฉ adresy, proto msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Poskytovatel hostingu je automaticky rozpoznรกn z uลพivatelskรฉho jmรฉna, kterรฉ zadรกte." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Vaลกe zรกjmy byly aktualizovรกny!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Vaลกe zรกjmy nรกm pomรกhajรญ najรญt to, co se vรกm lรญbรญ!" @@ -14967,11 +14993,11 @@ msgstr "Vaลกe heslo bylo รบspฤ›ลกnฤ› zmฤ›nฤ›no! Od tรฉto chvรญle pล™i pล™ihlaลกo msgid "Your password must be at least 8 characters long." msgstr "Vaลกe heslo musรญ mรญt alespoลˆ 8 znakลฏ." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Vรกลก pล™รญspฤ›vek byl odeslรกn" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Vaลกe pล™รญspฤ›vky byly odeslรกny" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Vรกลก preferovanรฝ jazyk" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Vรกลก profilovรฝ obrรกzek" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Vaลกe profilovรก fotka obklopenรก soustล™ednรฝmi kruhy profilovรฝch fotek ostatnรญch uลพivatelลฏ" @@ -14992,7 +15018,7 @@ msgstr "Vaลกe profilovรก fotka obklopenรก soustล™ednรฝmi kruhy profilovรฝch fote msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Vรกลก profil, pล™รญspฤ›vky, kanรกly a seznamy uลพ nebudou viditelnรฉ pro ostatnรญ uลพivatele Bluesky. รšฤet mลฏลพete kdykoli znovu aktivovat pล™ihlรกลกenรญm." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Vaลกe odpovฤ›ฤ byla odeslรกna" @@ -15005,7 +15031,7 @@ msgstr "Vaลกe hlรกลกenรญ bude odeslรกno na <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Vรกmi vybranรฉ zรกjmy nรกm pomรกhajรญ poskytovat vรกm obsah, kterรฝ vรกs zajรญmรก." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Vaลกe vlรกkno obsahuje prรกzdnรฉ pล™รญspฤ›vky, kterรฉ budou pล™eskoฤeny. Zbรฝvajรญcรญ pล™รญspฤ›vky budou zveล™ejnฤ›ny jako vlรกkno." diff --git a/src/locale/locales/cy/messages.po b/src/locale/locales/cy/messages.po index 843671517a..6b1d98aca1 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Welsh\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n == 3) ? 3 : ((n == 6) ? 4 : 5))));\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categori \"{interestsDisplayName}\" (gweithredol)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(neges wedi'i rhwystro wedi'i chuddio)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(yn cynnwys cynnwys wedi'i fewnosod)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(neges wedi'i dileu)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(dolen gwahodd i sgwrs annilys)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(neges wedi'i hanfon cyn i chi ymuno)" @@ -103,14 +103,14 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# awr} other {# awr}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" -msgstr "" +msgstr "{0, plural, one {# label wedi'i osod i'ch postiad} other {# label wedi'u gosod i'ch postiad}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" -msgstr "" +msgstr "{0, plural, zero {}one {# label wedi'i osod} two {# label wedi'u gosod} few {# label wedi'u gosod} many {# label wedi'u gosod} other {# label wedi'u gosod}}" #. placeholder {0}: likeCount ?? 0 #: src/screens/Post/PostLikedBy.tsx:34 @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# yn hoffi} other {# yn hoffi}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# aelod} other {# aelod}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, zero {}one {# cais i ymuno} two {# gais i ymuno} few {# cais #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, zero {}one {# person} two {# berson} few {# person} many {# person} other {# person}} reacted โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Cyfrif)" @@ -251,36 +252,13 @@ msgstr "Mae {0} wedi'i ychwangu i'r sgwrs" msgid "{0} and {1} added to chat" msgstr "Mae {0} a {1} wedi'u hychwangu i'r sgwrs" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "Yn dilyn {0}" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "Mae {0} yn eich rhwystro" @@ -324,14 +302,6 @@ msgstr "Mae {0} wedi gadael" msgid "{0} left the group" msgstr "Ymunodd {0} รข'r grลตp" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} allan 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "Ymatebodd {0} i {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "Mae {0}, {1} a {memberCount, plural, zero {}one {# arall} two {# arall} few {# arall} many {# arall} other {# arall}} wedi'u hychwanegu i'r sgwrs" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "Mae {firstAuthorName} wedi'ch gwirio" msgid "{following} following" msgstr "{following} yn dilyn" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "Dim modd ychwanegu {handle}" @@ -698,7 +660,7 @@ msgstr "Dim modd ychwanegu {handle}" msgid "{handle} can't be messaged" msgstr "Does dim modd anfon neges at {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "Does dim modd negesu {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# eitem heb ei darllen} other {# eitem msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# cysylltiad wedi'i ganfod} two {# cysylltiad wedi'u canfod} few {# cysylltiad wedi'u canfod} many {# cysylltiad wedi'u canfod} other {# cysylltiad wedi'u canfod}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "Ymunodd {profileName} รข Bluesky {timeAgoString} yn รดl" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "Ymunodd {profileName} รข Bluesky gan ddefnyddio pecyn cychwyn {timeAgoString} yn รดl" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, zero {}one {# nod yn weddill} two {# nod yn weddill} few {# nod yn weddill} many {# nod yn weddill} other {# nod yn weddill}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "Atebodd {replierDisplayName}" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "Atebodd {replierDisplayName} i {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "Atebodd {replierDisplayName} i chi" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, zero {}one {# cais} two {# gais} few {# cais} man msgid "{requestCount}+ requests" msgstr "{requestCount}+ cais" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} awr yn รดl" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "Mae {userName} yn ddilysydd dibynadwy" @@ -842,13 +795,13 @@ msgstr "Dilysiadau {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {yn dilyn} other {yn dilyn}}Crybwyll" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, zero {}one {yn dyfynnu} two {yn dyfynnu} few {yn dyfynnu} many {yn dyfynnu} other {yn dyfynnu}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, zero {}one {yn ailbostio} two {yn ailbostio} few {yn ailbostio} many {yn ailbostio} other {yn ailbostio}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, zero {}one {yn cadw} two {yn cadw} few {yn cadw} #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, zero {}one {hoffi} two {hoffi} few {hoffi} many {hoffi} other {hoffi}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "Mae <0>{displayName}<1/><2> wedi'ch ychwanegu" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Mewngofnodwch<1> neu <2>grรซwch cyfrif<3> <4>i chwilio am newyddion, chwaraeon, gwleidyddiaeth, a phopeth arall sy'n digwydd ar Bluesky." @@ -971,7 +924,7 @@ msgstr "30 diwrnod" msgid "7 days" msgstr "7 diwrnod" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Casgliad o ffrydiau poblogaidd sydd i'w cael ar Bluesky, gan gynnwys Newyddion, Booksky, Game Dev, Blacksky, a Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Digwyddodd gwall rhwydwith. Gwiriwch eich cysylltiad rhwydwaith" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Mae cod newydd wedi'i anfon" msgid "A new form of verification" msgstr "Math newydd o ddilysu" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Ateb i neges a anfonwyd cyn i chi ymuno" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Llun sgrin o'r cyfansoddwr postiadau gyda botymau newydd nesaf at y botwm postio sy'n dweud \"Drafftiau\", gydag effaith tรขn gwyllt enfys. Isod, mae testun yn y cyfansoddwr yn dweud \"Hei, glywest ti'r newyddion? Mae gan Bluesky drafftiau nawr." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Dyw'r derbynnydd penodol ddim yn cael ei ddilyn gan yr anfonwr." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Cais am fynediad! Bydd perchennog y grลตp yn adolygu eich cais." msgid "Accessibility" msgstr "Hygyrchedd" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Gosodiadau Hygyrchedd" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Cyfrif wedi'i Dewi gan y Rhestr" msgid "Account options" msgstr "Dewisiadau cyfrif" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Cyfrif wedi'i dynnu o fynediad cyflym" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Mae cyfrifon gyda marc siec glas cregynog <0><1/> yn gallu dilysu eraill. Mae'r dilyswyr dibynadwy hyn yn cael eu dewis gan Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Gweithgaredd gan eraill" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Hysbysiadau gweithgaredd" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Ychwanegu testun amgen (dewisol)" msgid "Add another account" msgstr "Ychwanegu cyfrif arall" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Ychwanegu postiad arall" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Ychwanegu postiad arall i edefyn" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Ychwanegu hidlydd chwilio arall" @@ -1253,7 +1213,7 @@ msgstr "Ychwanegu label awtomatiaeth i'r cyfrif" msgid "Add emoji reaction" msgstr "Ychwanegu adwaith emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Ychwanegu hidlydd" @@ -1338,7 +1298,7 @@ msgstr "Ychwanegu'r ffrwd hon at eich ffrydiau" msgid "Add to lists" msgstr "Ychwanegu at y rhestrau" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Ychwanegu i'r postiadau wedi'u cadw" @@ -1400,7 +1360,7 @@ msgstr "Oedolyn" msgid "Adult content" msgstr "Cynnwys oedolion" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Y Cyfan" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Pob ffrind yn cael eu dilyn!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Pob iaith" @@ -1491,11 +1447,6 @@ msgstr "Bydd yr holl ieithoedd yn cael eu dangos yn eich ffrydiau." msgid "All of these words" msgstr "Pob un o'r geiriau hyn" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "Pob postiad" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Yr holl ffrydiau rydych wedi'u cadw, mewn un lle." @@ -1560,7 +1511,7 @@ msgstr "Yn caniatรกu mynediad i negeseuon uniongyrchol" msgid "Already have a code?" msgstr "Oes gennych chi god yn barod?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Oes gennych chi gyfrif yn barod?" @@ -1614,7 +1565,7 @@ msgstr "Mae e-bost wedi'i anfon at {0}. Mae'n cynnwys cod cadarnhau y gallwch ei msgid "An error has occurred" msgstr "Digwyddodd gwall" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Digwyddodd gwall" @@ -1631,7 +1582,7 @@ msgstr "Digwyddodd gwall wrth estyn y cyfrifon hyn." msgid "An error occurred while fetching the feed." msgstr "Digwyddodd gwall wrth nรดl y ffrwd." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Digwyddodd gwall wrth gynhyrchu'ch pecyn cychwyn. Eisiau ceisio eto?" @@ -1640,11 +1591,11 @@ msgstr "Digwyddodd gwall wrth gynhyrchu'ch pecyn cychwyn. Eisiau ceisio eto?" msgid "An error occurred while hiding suggestion. {0}" msgstr "Digwyddodd gwall wrth guddio awgrym. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Digwyddodd gwall wrth lwytho'r fideo. Ceisiwch eto yn nes ymlaen." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Digwyddodd gwall wrth lwytho'r fideo. Ceisiwch eto." @@ -1684,7 +1635,7 @@ msgstr "Digwyddodd gwall.{0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Darlun yn dangos afatarau defnyddwyr yn llifo o lyfr cysylltiadau i'r ap Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Darlun o nifer o bostiadau Bluesky ynghyd ag eiconau ailbostio, hoffi a sylwadau" @@ -1705,17 +1656,15 @@ msgstr "Mae gwahoddiad yn caniatรกu i bobl ymuno รข'r grลตp sgwrsio hwn heb gael msgid "An issue not included in these options" msgstr "Mater nad yw wedi'i gynnwys yn yr opsiynau hyn" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Digwyddodd gwall wrth greu grลตp, ceisiwch eto." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Digwyddodd gwall wrth gychwyn sgwrs, ceisiwch eto." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Digwyddodd mater wrth geisio agor y sgwrs" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "Unrhyw ddyddiad" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Unrhyw un" @@ -1802,7 +1749,7 @@ msgstr "Unrhyw un sy'n fy nilyn" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Fydd neb sydd ganddo'n barod ddim yn gallu ymuno neu ofyn i ymuno. Gallwch bob amser greu un newydd." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Rhaid i enwau cyfrinair ap fod o leiaf 4 nod" msgid "App passwords" msgstr "Cyfrineiriau apiau" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Cyfrineiriau Apiau" @@ -1858,7 +1805,7 @@ msgstr "Apelio label \"{0}\"" #: src/components/moderation/ModerationDetailsDialog.tsx:159 msgid "Appeal label" -msgstr "" +msgstr "Apelio'r label" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 msgid "Appeal livestream suspension" @@ -1889,10 +1836,10 @@ msgstr "Apelio'r penderfyniad hwn" #: src/components/moderation/ModerationDetailsDialog.tsx:219 msgid "Appeal this label" -msgstr "" +msgstr "Apelio'r label hwn" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Gosod Cais Tynnu" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Wedi'i archifo o {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Post wedi'i archifo" @@ -1980,7 +1927,7 @@ msgstr "Ydych chi'n siลตr eich bod am dynnu hwn o'ch ffrydiau?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Ydych chi'n siลตr eich bod am dynnu'n รดl eich cais i ymuno รข {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Ydych chi'n siลตr yr hoffech chi gael gwared ar y postiad hwn?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Cyfrif Awtomataidd" @@ -2033,7 +1985,7 @@ msgstr "Awtomatig" msgid "Automation label" msgstr "Label awtomatiaeth" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Label Awtomatiaeth" @@ -2050,12 +2002,16 @@ msgstr "Awtochwarae fideos a GIFs" msgid "Available" msgstr "Ar gael" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Cyn creu postiad neu ateb, rhaid i chi ddilysu'ch e-bost yn gyntaf." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Cyn creu pecyn cychwyn, rhaid i chi wirio'ch e-bost yn gyntaf." @@ -2135,10 +2091,10 @@ msgstr "Cyn i chi dderbyn hysbysiadau am bostiadau {name}, rhaid i chi yn gyntaf #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2116,28 @@ msgstr "Cychwynnwch y broses sicrwydd oed drwy lanw'r meysydd isod." msgid "Beta Feature" msgstr "Nodwedd Beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" +msgstr "Nodweddion beta" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" msgstr "" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Gall nodweddion beta fod yn ansad. Efallai y bydd angen ail-lwytho'r ap ar gyfer rhai newidiadau." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Efallai y bydd nodweddion beta yn ansad. Efallai y bydd angen ailgychwyn yr ap ar gyfer rhai newidiadau." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2147,9 @@ msgstr "Dyddiad geni" msgid "Birthday" msgstr "Penblwydd" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Ddim ar gael" msgid "Blocked accounts" msgstr "Cyfrifon wedi'u rhwystro" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cyfrifon wedi'u Rhwystro" @@ -2282,7 +2244,7 @@ msgstr "Does dim modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Does dim modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, eich crybwylliadau, na rhyngweithio รข chi fel arall. Fyddwch chi ddim yn gweld eu cynnwys a byddan nhw'n cael eu hatal rhag gweld eich un chi." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Dyw rhwystro ddim yn atal y labelwr hwn rhag gosod labeli ar eich cyfrif." @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Dyw Bluesky ddim yn gallu cadarnhau dilysrwydd y dyddiad honedig." @@ -2330,7 +2293,7 @@ msgstr "Mae Bluesky yn rhwydwaith agored lle gallwch ddewis eich darparwr gweste msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Mae Bluesky yn rhwydwaith agored lle gallwch ddewis eich darparwr gwesteio. Os ydych chi'n newydd yma, rydym yn argymell cadw at y dewis Bluesky Social rhagosodedig." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Mae Bluesky yn well gyda ffrindiau!" @@ -2358,7 +2321,7 @@ msgstr "Telerau Gwasanaeth Cymdeithasol Bluesky" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Mae Bluesky yn cadw'ch cysylltiadau fel data wedi'i amgodio. Bydd tynnu'ch cysylltiadau yn dileu'r data hwn yn syth." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bydd Bluesky yn dewis set o gyfrifon wedi'u hargymhell gan bobl yn eich rhwydwaith." @@ -2403,20 +2366,20 @@ msgstr "Dewch รข hyd at 50 o ffrindiau ynghyd mewn un sgwrs." msgid "Browse custom feeds" msgstr "Pori'r ffrydiau cyfaddas" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Porwch ragor o gyfrifon" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Porwch ragor o ffrydiau ar y dudalen Archwilio" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Pori ragor o awgrymiadau" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Porwch ragor o awgrymiadau ar y dudalen Archwilio" @@ -2425,24 +2388,25 @@ msgstr "Porwch ragor o awgrymiadau ar y dudalen Archwilio" msgid "Browse other feeds" msgstr "Porwch ffrydiau eraill" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Porwch bostiadau am {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Porwch bostiadau sydd wedi'u tagio รข {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Porwch becyn cychwyn {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Porwi pwnc {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Porwch bwnc {displayName}" @@ -2461,8 +2425,8 @@ msgstr "Botwm i fynd nรดl i'r llinell amser cartref" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Gan {0}" @@ -2473,9 +2437,9 @@ msgstr "gan {0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Gan <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Trwy greu cyfrif rydych yn cytuno i'r <0>Telerau Gwasanaeth a'r <1>P msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Trwy greu cyfrif rydych yn cytuno i'r <0>Telerau Gwasanaeth." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Gennych chi" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Camera" @@ -2534,7 +2498,7 @@ msgstr "Mae angen mynediad i'r camera" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Mae angen mynediad i'r camera" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Diddymu'r ailweithredu ac allgofnodi" msgid "Cancel reply" msgstr "Diddymu'r ateb" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Diddymu'r chwilio" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Bydd newidiadau i'r pecyn cychwyn ddim yn cael eu hadlewyrchu i'r rhestr ar รดl eu creu. Bydd y rhestr yn gopi annibynnol." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Sgwrs wedi'i thewi" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Heb ganfod y sgwrs." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Dewisiadau sgwrsio" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Gall perchnogion sgwrs ddim gadael sgwrs grลตp." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Dyw derbynnydd y sgwrs ddim yn cael ei ddilyn gan yr anfonwr." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Dewch derbyn cais am sgwrs" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Ceisiadau am sgyrsiau" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Gosodiadau sgyrsiau" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Dad-dewi sgyrsiau" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Sgyrsiau" @@ -2810,7 +2775,7 @@ msgstr "Gwiriwch <0>{currentEmail} am e-bost gyda'r cod cadarnhau i'w roi is #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Dewch nรดl yn nes ymlaen!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2802,7 @@ msgstr "Dewiswch ddull dilysu parth" msgid "Choose Feeds" msgstr "Dewiswch Ffrydiau" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Dewiswch i mi" @@ -2854,7 +2819,7 @@ msgstr "Dewiswch Bobl" msgid "Choose post languages" msgstr "Dewis ieithoedd postiadau" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Dewiswch y lliw hwn fel eich afatar" @@ -2879,7 +2844,7 @@ msgstr "Dewiswch eich llinell amser eich hun! Mae ffrydiau adeiladwyd gan y gymu msgid "Choose your password" msgstr "Dewiswch eich cyfrinair" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Dewiswch eich enw defnyddiwr" @@ -2966,7 +2931,7 @@ msgstr "Cliciwch yma i weld y ddolen gwahodd ar gyfer y grลตp sgwrsio yma" msgid "Click to open tag menu for {0}" msgstr "Clicio i agor dewislen tagiau {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd" @@ -3003,7 +2968,7 @@ msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd" msgid "Close" msgstr "Cau" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Cau'r deialog gweithredol" @@ -3047,7 +3012,7 @@ msgstr "Cau'r faner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Cau'r darllenydd delweddau" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Caewch y ddewislen" @@ -3090,7 +3055,7 @@ msgstr "Cau'r faner ceisiadau sy'n dod i mewn" msgid "Close this dialog" msgstr "Cau'r ddeialog hon" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Cau'r modal croeso" @@ -3098,7 +3063,7 @@ msgstr "Cau'r modal croeso" msgid "Closes password update alert" msgstr "Yn cau'r rhybudd diweddaru cyfrinair" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Yn cau cyfansoddwr postiad ac yn dileu postiad drafft" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Lliw" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modd lliw" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Comics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Canllawiau Cymunedol" @@ -3141,7 +3106,7 @@ msgstr "Canllawiau Cymunedol" msgid "Complete onboarding and start using your account" msgstr "Cwblhewch y cyflwyniad a dechreuwch ddefnyddio'ch cyfrif" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Cwblhewch yr her" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Cyfansoddi postiad newydd" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Cyfansoddwch bostiadau hyd at {0, plural, zero {} one {# nod} two {# nod} few {# characters} many {# nod}other {# nod}}" @@ -3160,11 +3125,11 @@ msgstr "Cyfansoddwch bostiadau hyd at {0, plural, zero {} one {# nod} two {# nod msgid "Compose reply" msgstr "Ysgrifennu ateb" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Yn cywasgu GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Yn cywasgu fideo..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Cysylltwch รข'n tรฎm cefnogi" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Cysylltu รข'n chefnogaeth" @@ -3253,7 +3218,7 @@ msgstr "Cynnwys a Chyfryngau" msgid "Content and media" msgstr "Cynnwys a chyfryngau" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Cynnwys a Chyfryngau" @@ -3265,10 +3230,6 @@ msgstr "Cynnwys wedi'i Rhwystro" msgid "Content filters" msgstr "Hidlo cynnwys" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Cynnwys o bob rhan o'r rhwydwaith rydyn ni'n meddwl y gallech chi eu hoffi." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Ieithoedd cynnwys" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Cynnwys sy'n hyrwyddo neu'n dangos hunan niweidio" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Rhybudd Cynnwys" msgid "Content warnings" msgstr "Rhybuddion cynnwys" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Cefndir ddewislen cyd-destun, cliciwch i gau'r ddewislen." @@ -3302,7 +3263,7 @@ msgstr "Cefndir ddewislen cyd-destun, cliciwch i gau'r ddewislen." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Parhau รข'r trywydd..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Parhau i'r enw grลตp" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "Heb ganfod y sgwrs." msgid "Copied build version to clipboard" msgstr "Fersiwn adeiladu wedi'i gopรฏo i'r clipfwrdd" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Wedi copรฏo'r ddolen i'r clipfwrdd" @@ -3376,7 +3337,7 @@ msgstr "Wedi copรฏo'r ddolen i'r clipfwrdd" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Copรฏo Cyfrinair Ap" msgid "Copy at:// URI" msgstr "Copรฏwch yn: // URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copรฏo DID awdur" @@ -3449,10 +3410,10 @@ msgstr "Copรฏo Dolen" msgid "Copy link to list" msgstr "Copรฏo dolen i'r rhestr" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copรฏo dolen i'r postiad" @@ -3470,8 +3431,8 @@ msgstr "Copรฏo'r ddolen i'r pecyn cychwyn" msgid "Copy message text" msgstr "Copรฏo testun neges" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copรฏo postiad yn: // URI" @@ -3490,7 +3451,7 @@ msgstr "Copรฏo gwerth cofnod TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Polisi Hawlfraint" @@ -3540,11 +3501,11 @@ msgstr "Methu dilyn pob cyfatebiaeth. {0}" msgid "Could not leave chat" msgstr "Methu gadael y sgwrs" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Methwyd gadael y sgwrs." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Methu llwytho ffrwd" @@ -3562,7 +3523,7 @@ msgstr "Methwyd llwytho proffil" msgid "Could not mute chat" msgstr "Methu tewi sgwrs" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Methwyd tynnu aelod." @@ -3606,8 +3567,8 @@ msgstr "gwartheg moch" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Creu" @@ -3624,26 +3585,26 @@ msgstr "Crรซwch restr o'r pecyn cychwyn hwn" msgid "Create a QR code for a starter pack" msgstr "Creu cod QR ar gyfer pecyn cychwyn" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Creu pecyn cychwyn" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Crรซwch Becyn Cychwyn" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Creu pecyn cychwyn i mi" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Creu cyfrif" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Creu cyfrif" @@ -3666,15 +3627,15 @@ msgstr "Creu cyfrif" msgid "Create an account without using this starter pack" msgstr "Crรซwch gyfrif heb ddefnyddio'r pecyn cychwyn hwn" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Creu afatar yn lle hynny" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Creu un arall" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Creu grลตp sgwrsio" @@ -3741,9 +3702,9 @@ msgstr "Diwylliant" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Nodweddion beta cyfredol" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Y sgwrs gyfredol" @@ -3770,8 +3731,8 @@ msgstr "Sylweddau peryglus neu gamdriniaeth cyffuriau" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Tywyll" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Tywyll" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Thema dywyll" @@ -3814,7 +3775,7 @@ msgstr "Gwrthod awgrym yr iaith hon" msgid "Deepfake adult content" msgstr "Cynnwys ffugiol dwys oedolion" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Rhagosodiad" @@ -3894,7 +3855,7 @@ msgstr "Dileu fy ngyfrif" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Dileu postiad" @@ -3988,7 +3949,7 @@ msgstr "Deialog: addaswch pwy all ryngweithio รข'r postiad hwn" msgid "Dialog: Set search filters" msgstr "Deialog: Gosod hidlwyr chwilio" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Tywyllu" @@ -4002,7 +3963,7 @@ msgstr "Analluogi" msgid "Disable 2FA" msgstr "Analluogi 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Analluogi capsiynau" @@ -4045,9 +4006,9 @@ msgstr "Analluogwyd" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Dileu" msgid "Discard changes?" msgstr "Dileu'r newidiadau?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Dileu'r drafft?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Dileu'r postiad?" @@ -4079,6 +4040,10 @@ msgstr "Datgysylltwch Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Gofynnwch i apiau beidio dangos fy nghyfrif i ddefnyddwyr sydd wedi allgofnodi" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Gofynnwch i apiau beidio dangos fy nghyfrif i ddefnyddwyr sydd wedi allg msgid "Discover new custom feeds" msgstr "Darganfod ffrydiau cyfaddas newydd" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Darganfod ffrydiau newydd" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Darganfod Ffrydiau Newydd" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Cau" @@ -4103,28 +4064,28 @@ msgstr "Cau" msgid "Dismiss banner" msgstr "Cau'r faner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Cau'r gwall" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Cau'r canllaw cychwyn arni" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Diystyru diddordebau" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Cau baner digwyddiad byw" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Cau'r adran hon" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Cau'r awgrym hwn" @@ -4142,7 +4103,7 @@ msgstr "Dangos bathodynnau testun amgen mwy" msgid "Display name" msgstr "Enw dangos" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Rhowch y gorau i fwydro a physgota. Dewch o hyd i bobl go-iawn a sgyrsiau sy'n bwysig i chi." @@ -4205,8 +4166,8 @@ msgstr "Peidiwch รข phoeni! Mae'r holl negeseuon a gosodiadau wedi'u cadw a bydd #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Peidiwch รข phoeni! Mae'r holl negeseuon a gosodiadau wedi'u cadw a bydd msgid "Done" msgstr "Gorffen" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Tapio dwywaith neu bwyso'n hir i ychwanegu ymateb" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tapiwch ddwywaith i gau'r ddeialog" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Tapio dwywaith i'w hoffi" @@ -4328,6 +4289,7 @@ msgstr "Anhwylderau bwyta" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Golygu delwedd" msgid "Edit interaction settings" msgstr "Golygu gosodiadau rhyngweithio" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Golygu diddordebau" @@ -4397,7 +4359,7 @@ msgstr "Golygu statws byw" msgid "Edit moderation list" msgstr "Golygu rhestr cymedroli" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Golygu Fy Ffrydiau" @@ -4406,6 +4368,11 @@ msgstr "Golygu Fy Ffrydiau" msgid "Edit name" msgstr "Golygu enw" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Golygu hysbysiadau gan {0}" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Golygu Pobl" @@ -4444,7 +4411,7 @@ msgstr "Golygu rhestr defnyddwyr" msgid "Edit who can reply" msgstr "Golygu pwy all ateb" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Golygu eich pecyn cychwyn" @@ -4500,8 +4467,8 @@ msgstr "Mewnblannu cod HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Mewnblannu postiad" @@ -4509,7 +4476,7 @@ msgstr "Mewnblannu postiad" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Mewnblanwch y postiad hon yn eich gwefan. Copรฏwch y pwt canlynol a'i gludo i god HTML eich gwefan." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Chwaraewr fideo wedi'i fewnblannu" @@ -4531,9 +4498,9 @@ msgstr "Galluogi cynnwys oedolion" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Galluogi nodweddion beta" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Galluogi capsiynau" @@ -4550,12 +4517,13 @@ msgstr "Galluogi cyfryngau allanol" msgid "Enable media players for" msgstr "Galluogi chwaraewyr cyfryngau ar gyfer" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Galluogwch hysbysiadau am gyfrif drwy fynd i'w proffil a phwyso'r <0>eicon cloch <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Galluogi gwthio hysbysiadau" @@ -4581,7 +4549,7 @@ msgstr "Galluogi fideos sy'n trendio yn eich ffrwd Darganfod" msgid "Enabled" msgstr "Galluogwyd" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Diwedd y ffrwd" @@ -4608,7 +4576,7 @@ msgstr "Rhowch air neu dag" msgid "Enter code" msgstr "Rhowch y cod" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Mynd i'r sgrin lawn" @@ -4650,11 +4618,11 @@ msgstr "Rhowch eich enw defnyddiwr a chyfrinair" msgid "Enters full screen" msgstr "Yn mynd i'r sgrin lawn" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Adloniant" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Gwall" @@ -4684,7 +4652,7 @@ msgstr "Bu gwall wrth gadw ffeil" msgid "Error receiving captcha response." msgstr "Gwall wrth dderbyn ymateb captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Gwall: {error}" @@ -4696,8 +4664,8 @@ msgstr "Gall pawb ateb" msgid "Everybody can reply to this post." msgstr "Gall pawb ateb i'r postiad hwn." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Pawb" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Pawb" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Popeth arall" @@ -4728,7 +4696,7 @@ msgstr "Ydy popeth yn edrych yn iawn?" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:86 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:92 msgid "Exclude" -msgstr "" +msgstr "Eithrio" #: src/components/dialogs/MutedWords.tsx:320 msgid "Exclude users you follow" @@ -4738,7 +4706,7 @@ msgstr "Eithrio defnyddwyr rydych yn eu dilyn" msgid "Excludes users you follow" msgstr "Yn eithrio defnyddwyr rydych yn eu dilyn" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Gadael y sgrin lawn" @@ -4755,11 +4723,11 @@ msgstr "Ehangu rhestr o ddefnyddwyr" msgid "Expand or collapse the full post you are replying to" msgstr "Ehangu neu leihau'r postiad llawn rydych yn ateb iddo" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Estyn testun postiad" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Yn ehangu neu'n lleihau testun postiad" @@ -4802,15 +4770,15 @@ msgstr "Cyfryngau di-noethol neu a allai beri gofid." msgid "Explicit sexual images." msgstr "Delweddau di-noethol amlwg." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Darganfod" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Archwilio'r ap" @@ -4844,7 +4812,7 @@ msgstr "Cyfryngau Allanol" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Gall cyfryngau allanol ganiatรกu i wefannau gasglu gwybodaeth amdanoch chi a'ch dyfais. Does dim gwybodaeth yn cael ei anfon na gofyn amdano nes i chi bwyso'r botwm \"chwarae\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Dewisiadau Cyfryngau Allanol" @@ -4886,7 +4854,7 @@ msgstr "Wedi methu newid enw dangos. Ceisiwch eto." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Methu copรฏo dolen" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Wedi methu gadael grลตp sgwrsio" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Wedi methu llwytho sgyrsiau" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Wedi methu llwytho ffrydiau" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Wedi methu llwytho dewisiadau ffrydiau" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Wedi methu llwytho gosodiadau hysbysu." @@ -5012,14 +4981,14 @@ msgstr "Methu llwytho dewis." msgid "Failed to load profiles" msgstr "Wedi methu llwytho proffiliau" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Wedi methu llwytho'r ffrydiau awgrymwyd" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Wedi methu llwytho'r awgrymiadau dilyn" @@ -5027,12 +4996,12 @@ msgstr "Wedi methu llwytho'r awgrymiadau dilyn" msgid "Failed to lock group chat" msgstr "Wedi methu cloi grลตp sgwrsio" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Methwyd nodi pob sgwrs wedi'i darllen" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5053,7 +5022,7 @@ msgstr "Wedi methu datgysylltu Germ DM. Gwall: {0}" #: src/screens/Messages/JoinRequests.tsx:223 msgid "Failed to reject join request" -msgstr "" +msgstr "Methwyd รข gwrthod y cais i ymuno" #: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." @@ -5096,7 +5065,7 @@ msgstr "Methwyd diddymu eich cais. Ceisiwch eto." msgid "Failed to resolve location. Please try again." msgstr "Wedi methu canfod y lleoliad. Ceisiwch eto." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Wedi methu cadw drafft" @@ -5191,7 +5160,7 @@ msgstr "Cyfrif ffug neu fot" msgid "False information about elections" msgstr "Gwybodaeth ffug am etholiadau" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Ffrwd" @@ -5212,7 +5181,7 @@ msgstr "Crรซwr ffrwd" msgid "Feed identifier" msgstr "Dynodydd ffrwd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Dewislen ffrwd" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Adborth wedi'i anfon at weithredwr ffrwd" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Diweddarwyd y ffrydiau!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Ffrydiau rydyn ni'n meddwl y gallech chi eu hoffi." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Estyn diweddariad" @@ -5273,34 +5238,22 @@ msgstr "Estyn diweddariad" msgid "File saved successfully!" msgstr "Ffeil wedi'i chadw'n llwyddiannus!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Hidlo yn รดl awdur" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Hidlo yn รดl awdur ({currentLabel} - ar hyn o bryd)" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Hidlo yn รดl cyfryngau" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Hidlo yn รดl cyfryngau ({currentLabel} - ar hyn o bryd)" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Hidlo o ffrydiau" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Hidlo'r chwiliad yn รดl iaith" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Hidlo chwiliad yn รดl iaith ( {currentLanguageLabel} - ar hyn o bryd)" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "Hidlo'r chwilio hwn yn รดl {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Hidlo pwy all ddewis i dderbyn hysbysiadau am eich gweithgareddau" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Hidlo gan bwy rydych yn derbyn hysbysiadau" @@ -5318,7 +5271,7 @@ msgstr "Hidlo gan bwy rydych yn derbyn hysbysiadau" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 msgctxt "search" msgid "Filters" -msgstr "" +msgstr "Hidlau" #: src/screens/Onboarding/StepFinished/index.tsx:335 msgid "Finalizing" @@ -5352,8 +5305,8 @@ msgstr "Chwilio am gyfrifon i'w dilyn" msgid "Find and invite friends" msgstr "Dewch o hyd i ffrindiau a'u gwahodd" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Chwilio am Gysylltiadau" @@ -5387,7 +5340,7 @@ msgstr "Chwilio am eich ffrindiau" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Chwiliwch am eich ffrindiau ar Bluesky drwy wirio eich rif ffรดn a'u cyfateb รข'ch ffrindiau. Rydym yn diogelu eich manylion chi a chi sy'n rheoli beth sy'n digwydd nesaf. <0>Dysgu rhagor" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Chwiliwch am eich pobl chi" @@ -5429,7 +5382,7 @@ msgstr "Canolbwyntio'r maes chwilio" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Dilynwch {0}" msgid "Follow {displayName}" msgstr "Dilyn {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Dilynwch {handle}" @@ -5453,11 +5406,11 @@ msgstr "Dilynwch {handle}" msgid "Follow 10 accounts" msgstr "Dilynwch 10 cyfrif" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Dilynwch 10 person i gychwyn arni" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Dilynwch 7 cyfrif" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Gall dilynwyr ymuno" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Dilynwyr @{0} rydych chi'n eu hadnabod" @@ -5544,7 +5497,7 @@ msgstr "Dilynwyr rydych chi'n eu hadnabod" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Yn dilyn {0}" msgid "Following {displayName}" msgstr "Yn dilyn {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Yn dilyn {handle}" @@ -5578,21 +5531,21 @@ msgstr "Yn dilyn {handle}" msgid "Following feed preferences" msgstr "Dewisiadau ffrydio Yn dilyn" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Dewisiadau Ffrydio Yn Dilyn" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Yn eich dilyn chi" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Ffont" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Maint ffont" @@ -5612,13 +5565,13 @@ msgstr "Am resymau diogelwch, bydd angen i ni anfon cod cadarnhau i'ch cyfeiriad msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Am resymau diogelwch, fyddwch chi ddim yn gallu gweld hwn eto. Os byddwch chi'n colli cyfrinair yr ap hwn, bydd angen i chi gynhyrchu un newydd." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "I gael y profiad gorau, rydym yn argymell defnyddio ffont y thema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "I Chi" @@ -5628,7 +5581,7 @@ msgstr "I Chi" msgid "Forever" msgstr "Am Byth" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Anghofiwch y dwndwr" @@ -5647,18 +5600,18 @@ msgstr "Wedi anghofio'ch cyfrinair?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Pedwar swigen neges yn cynrychioli sgwrs grลตp. Neges gyntaf: \"Glywsoch chi'r newyddion? Mae gan Bluesky sgyrsiau grลตp nawr!\" Ail neges: \"na, wir\" Trydedd neges: \"Waw, 50 o bobl mewn un sgwrs!\" Pedwaredd neges: \"Gallwch anfon dolenni gwahodd hefyd!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Ryddhewch eich ffrwd" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Oddi wrth" #: src/screens/Hashtag.tsx:123 msgid "From {sanitizedAuthor}" -msgstr "" +msgstr "Gan {sanitizedAuthor}" #: src/screens/Hashtag.tsx:124 msgid "From @{sanitizedAuthor}" @@ -5672,9 +5625,9 @@ msgstr "Oddi wrth <0/>" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:30 msgid "From these people" -msgstr "" +msgstr "Gan y bobl yma" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Creu pecyn cychwyn" @@ -5712,65 +5665,65 @@ msgstr "Germ DM wedi'i ail gysylltu" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features weโ€™re testing." -msgstr "" +msgstr "Cael mynediad cynnar at nodweddion arbrofol rydym yn eu profi." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Cael cymorth" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Cael hysbysiadau ar gyfer paciau cychwyn, gwirio a gweithgareddau eraill." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Cael hysbysiadau pan fydd pobl yn eich dilyn." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Cael hysbysiadau pan fydd pobl yn hoffi'ch postiadau." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Cael hysbysiadau pan fydd pobl yn hoffi eich ailbostiadau." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Cael hysbysiadau pan fydd pobl yn eich crybwyll chi." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Cael hysbysiadau pan fydd pobl yn dyfynnu eich postiadau." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Cael hysbysiadau pan fydd pobl yn ateb i'ch postiadau." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Cael hysbysiadau pan fydd pobl yn ail bostio'ch postiadau chi." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Cael hysbysiadau pan mae pobl yn ailbostio eich alibostiadau." #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:33 msgid "Get notifications when people send you message requests." -msgstr "" +msgstr "Cael hysbysiadau pan fydd pobl yn anfon atoch chi geisiadau neges." #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:23 msgid "Get notifications when people send you messages." -msgstr "" - -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Cael hysbysiadau pan mae gweithgaredd ar bostiadau rydych wedi tanysgrifio iddyn nhw." +msgstr "Cael hysbysiadau pan fydd pobl yn anfon negeseuon atoch chi." #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Cael gwybod am bostiadau newydd" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Cael gwybod am bostiadau ac atebion o'r cyfrifon rydych chi'u eu dewis." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Cael gwybod am bostiadau newydd gan {name}" @@ -5799,11 +5752,11 @@ msgstr "Cychwyn arni" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF wedi'i lwytho i fyny" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Rhowch wyneb i'ch proffil" @@ -5813,20 +5766,20 @@ msgstr "Gogoneddu trais" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,9 +5829,9 @@ msgid "Go live for" msgstr "Ewch yn fyw am" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" -msgstr "" +msgstr "Mynd i broffil {0}" #: src/view/com/notifications/NotificationFeedItem.tsx:256 msgid "Go to {firstAuthorName}'s profile" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Diweddarwyd enw grลตp sgwrsio" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Gosodiadau grwpiau sgwrsio" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Gall sgyrsiau grลตp gael uchafswm o {0, plural, zero {# pobl} one {# person} two {# berson} few {# pherson} many {# pherson} other {# person}} yn unig." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Mae'r grลตp wedi'i gloi" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Enw grลตp" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Mae enw'r grลตp yn rhy hir. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, zero {Uchafswm nifer y nodau yw #.} one {Uchafswm nifer y nodau yw #.} two {Uchafswm nifer y nodau yw #.} few {Uchafswm nifer y nodau yw #.} many {Uchafswm nifer y nodau yw #.} other {Uchafswm nifer y nodau yw #.}}" @@ -6077,7 +6031,7 @@ msgstr "Gweithgareddau niweidiol neu risg uchel" msgid "Harming or endangering minors" msgstr "Niweidio neu beryglu plant dan oed" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashnod" @@ -6098,7 +6052,7 @@ msgstr "Oes gennych chi god? <0>Cliciwch yma." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Ydy eich lleoliad yn anghywir gennym ni? <0>Tapiwch yma i ddiweddaru eich lleoliad gyda GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Yn cael trafferth?" @@ -6114,7 +6068,7 @@ msgstr "Wedi ei gadw gan Bluesky am 7 diwrnod i osgoi camddefnydd, yna ei ddileu msgid "Help" msgstr "Cymorth" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Helpwch bobl i wybod nad ydych chi'n bot trwy lwytho llun neu greu afatar." @@ -6135,12 +6089,12 @@ msgstr "Helo 'na!" msgid "Hi there!" msgstr "Helo 'na!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Cuddiedig" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Wedi'i guddio gan eich gosodiadau cymedroli." @@ -6148,9 +6102,10 @@ msgstr "Wedi'i guddio gan eich gosodiadau cymedroli." msgid "Hidden list" msgstr "Rhestr gudd" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Rhestr gudd" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Cuddio" @@ -6181,7 +6137,7 @@ msgstr "Cuddio rhestrau" #: src/screens/Login/LoginForm.tsx:613 msgid "Hide password" -msgstr "" +msgstr "Cuddio cyfrinair" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 @@ -6198,7 +6154,7 @@ msgstr "Cuddio ateb i bawb" msgid "Hide reply for me" msgstr "Cuddio ateb i mi" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Cuddio'r cerdyn hwn" @@ -6218,16 +6174,18 @@ msgstr "Cuddio'r ateb hwn?" msgid "Hide translation" msgstr "Cuddio'r cyfieithiad" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Cuddio pynciau sy'n trendio" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Cuddio pynciau sy'n trendio?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Cuddio fideos sy'n trendio?" @@ -6240,7 +6198,7 @@ msgstr "Cuddio rhestr defnyddwyr" msgid "Hide verification badges" msgstr "Cuddio bathodynnau dilysu" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Yn cuddio'r cynnwys" @@ -6255,11 +6213,11 @@ msgstr "Hmm, mae'n edrych fel eich bod wedi mewngofnodi gyda <0>Chyfrinair ApSettings โ†’ Privacy and Security." msgstr "Os ydych chi eisiau cyfyngu ar bwy sy'n gallu derbyn hysbysiadau am weithgaredd eich cyfrif, gallwch ei newid yn <0>Gosodiadau โ†’ Preifatrwydd a Diogelwch." @@ -6548,7 +6503,7 @@ msgstr "O fewn yr ap, gwthio, pawb" msgid "In-app, push, people you follow" msgstr "O fewn yr ap, gwthio, pobl rydych yn eu dilyn" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Blwch derbyn gwag" @@ -6564,32 +6519,27 @@ msgstr "Dim yn y blwch derbyn!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" -msgstr "" +msgstr "Cynnwys" #. placeholder {0}: filter.mode === 'exclude' ? l({message: 'Exclude', comment: 'Advanced search filter'}) : l({message: 'Include', comment: 'Advanced search filter'}) #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:44 msgid "Include or exclude matching posts (currently: {0})" -msgstr "" +msgstr "Cynnwys neu beidio cynnwys postiadau tebyg: (cyfredol: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" -msgstr "" +msgstr "Cynnwys postiadau a/neu atebion (cyfredol: {currentLabel})" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:305 msgid "Include posts made since this date" -msgstr "" +msgstr "Cynnwys postiadau ers y dyddiad yma" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:329 msgid "Include posts made until this date" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" +msgstr "Cynnwys postiadau hyd y dyddiad yma" #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" @@ -6683,7 +6633,7 @@ msgstr "Gwahodd {name} i ymuno รข Bluesky" msgid "Invite code" msgstr "Cod gwahodd" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Heb dderbyn y cod gwahoddiad. Gwiriwch eich bod yn ei fewnbynnu'n gywir a cheisiwch eto." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Dim ond chi ar hyn o bryd! Ychwanegwch fwy o bobl at eich pecyn cychwyn trwy chwilio uchod." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID gwaith: {0}" @@ -6816,8 +6766,8 @@ msgstr "Ymunwch รข'r sgwrs" msgid "Journalism" msgstr "Newyddiaduraeth" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Cadwch i olygu" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "Gwefan KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Wedi'i labelu gan {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Wedi'i labelu gan yr awdur." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Labeli" @@ -6850,9 +6800,9 @@ msgstr "Labeli wedi'u hychwanegu" #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "Labels applied to this post" -msgstr "" +msgstr "Labeli wedi'u gosodi i'r postiad yma" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Anodiadau ar ddefnyddwyr a chynnwys yw labeli. Mae modd eu defnyddio i guddio, rhybuddio, a chategoreiddio'r rhwydwaith." @@ -6862,9 +6812,9 @@ msgstr "Labeli ar eich cyfrif" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:357 msgid "Language" -msgstr "" +msgstr "Iaith" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Gosodiadau Iaith" @@ -6874,7 +6824,7 @@ msgstr "Gosodiadau Iaith" msgid "Languages" msgstr "Ieithoedd" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Mwy" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Newydd ei gychwyn" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Diweddaraf" @@ -6904,14 +6854,14 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Dysgu rhagor" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Dysgu Rhagor" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." -msgstr "" +msgstr "Dysgu rhagor am <0>sut i ddefnyddio chwilio uwch." #: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 msgid "Learn more about age assurance" @@ -6937,8 +6887,8 @@ msgstr "Dysgu rhagor am fewnforio cysylltiadau" msgid "Learn more about self hosting your PDS." msgstr "Dysgu rhagor am hunan westeio eich PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Dysgu rhagor am y cymedroli wedi'i osod i'r cynnwys hwn" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Dysgwch ragor am y newidiadau yma a sut i rannu eich barn gyda ni drwy ddarllen ein cofnod blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Dysgwch ragor am y rhybudd hwn" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Mae rhagor o wybodaeth yn eich <0>gosodiadau cyfrif" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Dysgu rhagor." @@ -6993,8 +6943,8 @@ msgstr "Gadael" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Gadael Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Bydd gadael y sgwrs hon yn ei chloi'n barhaol a fyddwch chi ddim yn gallu ailymuno." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Wedi gadael y grลตp sgwrsio." @@ -7042,7 +6992,7 @@ msgstr "Wedi gadael y grลตp sgwrsio." msgid "left to go." msgstr "chwith i fynd." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Gadewch i mi ddewis" @@ -7057,7 +7007,7 @@ msgstr "Ffwrdd รข ni!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Golau" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Golau" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Hoffi" @@ -7076,7 +7026,7 @@ msgstr "Hoffi" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Yn hoffi ({0, plural, one {# yn hoffi} other {# yn hoffi}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Yn hoffi 10 postiad" @@ -7085,7 +7035,7 @@ msgstr "Yn hoffi 10 postiad" msgid "Like 10 posts to train the Discover feed" msgstr "Yn hoffi 10 postiad i hyfforddi'r ffrwd Darganfod" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Yn hoffi'r ffrwd hon" @@ -7093,8 +7043,8 @@ msgstr "Yn hoffi'r ffrwd hon" msgid "Like this labeler" msgstr "Yn hoffi'r labelwr hwn" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Wedi'i hoffi gan" @@ -7111,27 +7061,45 @@ msgstr "Wedi'i Hoffi Gan" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Wedi'i hoffi gan {0, plural, one {# defnyddiwr} other {# defnyddiwr}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Hoffwyd gan {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Hoffwyd gan {0} a {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Wedi'i hoffi gan {likeCount, plural, one {# defnyddiwr} other {# defnyddiwr}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Yn hoffi" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Yn hoffi eich ail bostiadau" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Yn hoffi'r postiad hwn" @@ -7144,7 +7112,7 @@ msgstr "Llinol" msgid "Link copied to clipboard" msgstr "Dolen wedi'i chopรฏo i'r clipfwrdd" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Rhestr" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Rhestr heb ei thewi" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "BYW" msgid "Live event happening now: {0}" msgstr "Digwyddiadau byw'n digwydd nawr: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Digwyddiad byw cudd" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Amlygu digwyddiad cudd" @@ -7279,12 +7247,12 @@ msgstr "Mae nodwedd byw yn y cyflwr beta" msgid "Live link" msgstr "Cyswllt byw" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Llwytho rhagor" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Llwytho rhagor o ffrydiau wedi'u hawgrymu" @@ -7292,8 +7260,8 @@ msgstr "Llwytho rhagor o ffrydiau wedi'u hawgrymu" msgid "Load new notifications" msgstr "Llwytho hysbysiadau newydd" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Cloi'r grลตp sgwrsio hwn" msgid "Locked" msgstr "Wedi cloi" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Cofnod" @@ -7387,7 +7355,7 @@ msgstr "GIF caru" msgid "Make adjustments to email settings for your account" msgstr "Gwnewch addasiadau i osodiadau e-bost eich cyfrif" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Gwnewch un i mi" @@ -7411,22 +7379,22 @@ msgstr "Rheoli eich geiriau a thagiau wedi'u tewi" #: src/screens/Login/components/HostingProviderDialog.tsx:173 #: src/screens/Login/components/HostingProviderDialog.tsx:174 msgid "Manual" -msgstr "" +msgstr "ร‚ llaw" #: src/screens/Messages/Inbox.tsx:312 #: src/screens/Messages/Inbox.tsx:318 msgid "Mark all as read" msgstr "Nodi'r cyfan fel wedi'u darllen" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Nodi'r holl sgyrsiau fel wedi'u darllen" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Marcio fel weedi darllen" msgid "Marked all as read" msgstr "Wedi marcio'r cyfan fel wedi'u darllen" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Nodi'r holl sgyrsiau fel wedi'u darllen" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Wedi nodi pob cais wedi'i ddarllen" @@ -7456,8 +7424,12 @@ msgstr "Wedi nodi pob cais wedi'i ddarllen" msgid "Maybe later" msgstr "Efallai yn nes ymlaen" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Cyfryngau" @@ -7475,7 +7447,7 @@ msgstr "Cyfryngau wedi'u cadw ar ddyfais arall" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Cyfryngau a all fod yn annymunol neu'n amhriodol i rai cynulleidfaoedd." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Aelod wedi'i dynnu o'r grลตp sgwrsio." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "defnyddwyr wedi'u crybwyll" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Crybwylliadau" @@ -7502,7 +7474,7 @@ msgstr "Crybwylliadau" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:37 msgid "Mentions of these people" -msgstr "" +msgstr "Crybwyll y bobl yma" #: src/components/Menu/index.tsx:119 msgid "Menu" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Neges wedi'i dileu" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Methodd y neges a mynd." @@ -7563,15 +7535,15 @@ msgstr "Neges yn rhy hir ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Dewisiadau negeseuon" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Negeseuon" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Mae negeseuon gan y person yma wedi'u cuddio tra'u bod nhw yn eich rhwystro." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Mae negeseuon gan y person yma wedi'u cuddio tra'ch bod chi'n eu rhwystro." @@ -7592,7 +7564,7 @@ msgstr "Camarweiniol" msgid "Missing media" msgstr "Cyfryngau coll" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Cymedroli" @@ -7636,7 +7608,7 @@ msgstr "Rhestr cymedroli wedi'i diweddaru" msgid "Moderation lists" msgstr "Rhestrau cymedroli" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Rhestrau Cymedroli" @@ -7645,7 +7617,7 @@ msgstr "Rhestrau Cymedroli" msgid "moderation settings" msgstr "gosodiadau cymedroli" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Cyflyrau cymedroli" @@ -7786,7 +7758,7 @@ msgstr "Wedi'i dewi" msgid "Muted accounts" msgstr "Cyfrifon wedi'u tewi" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cyfrifon Wedi'u Tewi" @@ -7867,7 +7839,6 @@ msgstr "Angen adrodd ar fater torri hawlfraint, cais cyfreithiol, neu gydymffurf msgid "Nevermind, create a handle for me" msgstr "Dim gwahaniaeth, crรซwch enw dangos i mi" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Newydd" @@ -7893,11 +7864,11 @@ msgstr "{postsCount, plural, one {postiad} other {postiad}} newydd gan {firstAut #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Sgwrs newydd" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Nodwedd Newydd" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Dilynwyr newydd" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Grลตp sgwrsio newydd" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Grลตp sgwrsio newydd" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Grลตp sgwrsio newydd gyda:" @@ -7966,15 +7937,15 @@ msgstr "Rhestr newydd" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" -msgstr "" +msgstr "Ceisiadau neges newydd" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" -msgstr "" +msgstr "Negeseuon newydd" #: src/screens/Login/SetNewPasswordForm.tsx:130 #: src/screens/Settings/components/ChangePasswordDialog.tsx:204 @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Cyfrinair newydd" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Postiad newydd" @@ -8011,7 +7982,7 @@ msgstr "Pecyn cychwyn newydd" #: src/screens/Login/LoginForm.tsx:569 msgid "New to Bluesky? <0>Sign up" -msgstr "" +msgstr "Newydd i Bluesky? <0>Cofrestrwch" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Atebion diweddaraf yn gyntaf" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Newyddion" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Delwedd nesaf" msgid "Night" msgstr "Nos" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Dim hysbysebion, dim tracio ymwthiol, dim maglau ymgysylltu. Mae Bluesky'n parchu'ch amser a'ch sylw." @@ -8065,9 +8036,14 @@ msgstr "Dim hysbysebion, dim tracio ymwthiol, dim maglau ymgysylltu. Mae Bluesky msgid "No app passwords yet" msgstr "Dim cyfrineiriau apiau eto" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "Dim nodweddion beta ar hyn o bryd." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8074,7 @@ msgstr "Dim dyddiad dod i ben wedi'i osod" msgid "No feeds found. Try searching for something else." msgstr "Heb ganfod unrhyw ffrydiau. Ceisiwch chwilio am rywbeth arall." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Dim dilynwyr eto" @@ -8116,9 +8092,15 @@ msgstr "Dim GIF i'w ddangos ar hyn o bryd. Ceisiwch eto." msgid "No image" msgstr "Dim delwedd" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Neb yn hoffi eto" @@ -8135,7 +8117,12 @@ msgstr "Dim rhestrau" msgid "No longer following {0}" msgstr "Dim yn dilyn {0} bellach" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Dim cyfryngau eto" @@ -8143,7 +8130,7 @@ msgstr "Dim cyfryngau eto" msgid "No messages yet" msgstr "Dim negeseuon eto" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Dim rhagor o algorithmau sgrolio gwae, ofer. Darganfyddwch ffrydiau sy'n gweithio drosoch chi, nid yn eich erbyn." @@ -8180,16 +8167,21 @@ msgstr "Gall neb ond yr awdur ddyfynnu'r postiad hon." msgid "No one can send messages" msgstr "Gall neb anfon negeseuon" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Dim postiadau yma" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Dim postiadau eto" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Dim dyfyniadau eto" @@ -8198,11 +8190,7 @@ msgstr "Dim dyfyniadau eto" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Dim GIFau diweddar eto. Dewiswch un i'w weld yma." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Dim atebion eto" @@ -8217,13 +8205,13 @@ msgstr "Dim canlyniad" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Dim canlyniadau" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Dim canlyniadau ar gyfer \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "Heb ganfod canlyniad" msgid "No results found for \"{query}\"" msgstr "Heb ganfod canlyniadau \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." -msgstr "" +msgstr "Heb ganfod unrhyw ganlyniadau ar gyfer โ€œ<0>{query}โ€ gyda'r hidlwyr chwilio uwch." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "Dim canlyniadau i \"<0>{query}\"." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." -msgstr "" +msgstr "Heb ganfod unrhyw ganlyniadau ar gyfer eich ymholiad gyda'r hidlwyr chwilio uwch." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Dim canlyniadau." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Dim Pecynnau Cychwyn eto" @@ -8265,7 +8253,7 @@ msgstr "Dim diolch" msgid "No translation received from your device." msgstr "Dim cyfieithiadau wedi'u derbyn o'ch dyfais." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Dim postiadau fideo eto" @@ -8278,7 +8266,7 @@ msgstr "Neb" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Does neb wedi hoffi hwn eto. Efallai y dylech chi fod y cyntaf!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Does neb wedi dyfynnu hwn eto. Efallai y dylech chi fod y cyntaf!" @@ -8298,10 +8286,14 @@ msgstr "Delweddau personol heb gydsyniad" msgid "Non-sexual Nudity" msgstr "Noethni nad yw'n rhywiol" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Dim" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" -msgstr "" +msgstr "Dim un o'r geiriau hyn" #: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 msgid "Not available on this platform" @@ -8316,8 +8308,8 @@ msgstr "Nid yw ar gael ar y platfform yma." msgid "Not followed by anyone youโ€™re following" msgstr "Ddim yn cael ei ddilyn gan neb rydych chi'n ei ddilyn" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Heb ei Ganfod" @@ -8333,7 +8325,7 @@ msgstr "Nodyn am rannu" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nodyn: Mae Bluesky yn rhwydwaith agored a chyhoeddus. Dim ond yn cyfyngu ar welededd eich cynnwys ar ap a gwefan Bluesky y mae'r gosodiad hwn yn ei wneud. Efallai na fydd apiau eraill yn parchu'r gosodiad hwn. Mae'n bosibl y bydd eich cynnwys yn dal i gael ei ddangos i ddefnyddwyr sydd wedi allgofnodi gan apiau a gwefannau eraill." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Sylw: Dim ond ar gyfer aelodau sydd wedi mewngofnodi mae'r postiad hwn yn weladwy." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Dim wedi'i gadw eto" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Gosodiadau hysbysu" @@ -8353,11 +8345,12 @@ msgstr "Gosodiadau hysbysu" msgid "Notification sounds" msgstr "Seiniau hysbysu" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "O na!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "Iawn" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Iawn" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Ailosod cyflwyno" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Dyw un o'ch derbynwyr chi ddim yn caniatรกu sgyrsiau grลตp." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Mae un o'ch derbynwyr chi wedi'ch rhwystro a does dim modd anfon neges ato." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Does dim testun amgen ar un neu fwy o GIFau." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Does dim testun amgen ar un neu fwy o fideos." @@ -8454,11 +8449,11 @@ msgstr "Dyw un neu fwy o'r ffeiliau hyn ddim yn cael eu cynnal." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "Mae un neu fwy o'r ffeiliau hyn yn rhy fawr. Uchafswm maint yw {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Mae un neu ragor o bostiadau'n rhy hir i gadw fel drafft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Uchafswm nifer y nodau yw #.} other {Uchafswm nifer y nodau yw #.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Does dim testun amgen ar un neu fwy o fideos." @@ -8471,7 +8466,7 @@ msgstr "Dim ond {0} all ateb." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Dim ond {0} o {1} {2, plural, zero {delweddau} one {ddelwedd} two {ddelwedd} few {delwedd} many {delwedd} other {delwedd}} wedi'i hychwanegu; y terfyn yw {MAX_GALLERY_IMAGES}" @@ -8507,19 +8502,23 @@ msgstr "Dim ond pobl mae {0} yn eu dilyn sy'n gallu ymuno." msgid "Only people the chat owner follows can join" msgstr "Dim ond pobl mae perchennog y sgwrs yn eu dilyn all ymuno" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" -msgstr "" +msgstr "Dim ond postiadau gyda chyfryngau" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:24 msgid "Only posts with videos" -msgstr "" +msgstr "Dim ond postiadau gyda fideos" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:24 msgid "Only replies" -msgstr "" +msgstr "Dim ond atebion" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Dim ond ffeiliau WebVTT (.vtt) sy'n cael eu cefnogi" @@ -8532,19 +8531,19 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Wps, dyw'r proffil hwn ddim yn bodoli. Rhowch gynnig ar sganio un arall." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Wps!" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:66 msgid "Open advanced search options" -msgstr "" +msgstr "Agor y dewisiadau chwilio uwch" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Agor y crรซwr avatar" @@ -8570,21 +8569,22 @@ msgstr "Agor dewisiadau sgyrsiau" msgid "Open draft" msgstr "Agor drafft" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Agor dewislen drรดr" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Agor y dewisydd emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Agor sgrin manylion ffrwd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Agor dewislen dewisiadau ffrwd" @@ -8627,7 +8627,7 @@ msgstr "Agor tudalen dadfygio cymedroli" msgid "Open muted words and tags settings" msgstr "Agor gosodiadau geiriau wedi'u tewi a thagiau" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Agor pecyn" @@ -8681,7 +8681,7 @@ msgstr "Yn agor deialog i ychwanegu rhybudd cynnwys at eich postiad" #: src/screens/Login/LoginForm.tsx:645 msgid "Opens a dialog to change the hosting provider you sign in to" -msgstr "" +msgstr "Yn agor deialog i newid y darparwr gwesteio rydych yn mewngofnodi iddo" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 msgid "Opens a dialog to choose who can interact with this post" @@ -8699,7 +8699,7 @@ msgstr "Yn agor manylion ychwanegol cofnod dadfygio" msgid "Opens alt text dialog" msgstr "Yn agor deialog testun amgen" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Yn agor camera ar ddyfais" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Yn agor llif i greu cyfrif Bluesky newydd" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Yn agor llif i fewngofnodi i'ch cyfrif Bluesky presennol" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Cyfrinair wedi'i ddiweddaru!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Oedi" @@ -8925,12 +8925,12 @@ msgstr "Oedi" msgid "Pause GIF" msgstr "Oedi GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Oedi fideo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Pobl" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Mae'r rhai mae {ownerName} yn eu dilyn yn gallu gofyn i ymuno" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Pobl yn cael eu dilyn gan @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Pobl yn dilyn @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Pobl rwy'n eu dilyn" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Mae'r rhai rwy'n eu dilyn yn gallu gofyn i gael ymuno" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Pobl rydych chi'n eu dilyn" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Lluniau ar gyfer oedolion." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Pinio'r frwd" @@ -9034,7 +9034,7 @@ msgstr "Pinio'r frwd" msgid "Pin to home" msgstr "Pinio i cartref" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Pinio i Cartref" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Piniwyd" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Wedi'i binio {0} i Cartref" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Wedi'i binio i'ch ffrydiau" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Chwarae" @@ -9076,8 +9076,8 @@ msgstr "Chwarae {0}" msgid "Play GIF" msgstr "Chwarae GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Chwarae fideo" @@ -9109,11 +9109,11 @@ msgstr "Ychwanegwch unrhyw labeli rhybudd cynnwys sy'n berthnasol i'r cyfryngau 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Dewiswch eich enw dangos." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Dewiswch eich cyfrinair." @@ -9122,7 +9122,7 @@ msgstr "Dewiswch eich cyfrinair." 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 "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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Cwblhewch y captcha dilysu." @@ -9179,7 +9179,7 @@ msgstr "Rhowch y cod rydych wedi'i dderbyn a'r cyfrinair hoffech chi ei ddefnydd msgid "Please enter the security code we sent to your previous email address." msgstr "Rhowch y cod diogelwch a anfonwyd gennym at eich cyfeiriad e-bost blaenorol." -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Rhowch eich e-bost." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Ysgrifennwch eich neges isod:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Gwleidyddiaeth" @@ -9269,7 +9269,7 @@ msgstr "Gwleidyddiaeth" msgid "Porn" msgstr "Pornograffi" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Postio" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Postio" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Postiwch lun" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Postiwch fideo" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Postio'r Cyfan" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Postio beth bynnag" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Postiad wedi'i rwystro" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Postiad gan @{0}" @@ -9340,7 +9340,7 @@ msgstr "Postiad Wedi'i Guddio Gennych Chi" msgid "Post interaction settings" msgstr "Gosodiadau rhyngweithio postiadau" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Gosodiadau Rhyngweithio Postiadau" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Postiad wedi'i binio" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Postiad wedi'i gadw" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Postiad wedi ei ddadbinio" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Postiadau" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Mae modd tewi postiadau ar sail eu testun, eu tagiau neu'r ddau. Rydym y msgid "Posts hidden" msgstr "Postiadau wedi'u cuddio" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Postiadau, Atebion" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Dolen camarweiniol posib" @@ -9449,20 +9451,21 @@ msgstr "Preifatrwydd" msgid "Privacy and security" msgstr "Preifatrwydd a diogelwch" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Preifatrwydd a Diogelwch" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Gosodiadau Preifatrwydd a Diogelwch" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Polisi Preifatwydd" msgid "Privacy violation of a minor" msgstr "Torri ar breifatrwydd plentyn dan oed" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Yn prosesu GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Yn prosesu fideo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Rhestrau cyhoeddus, y mae modd eu rhannu o ddefnyddwyr i'w tewi neu eu rhwystro'n lluosog." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Cyhoeddi postiad" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Cyhoeddi postiadau" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Cyhoeddi atebion" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Cyhoeddi ateb" @@ -9599,12 +9602,12 @@ msgstr "Analluogwyd postiadau dyfyniad" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Dyfyniadau" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Dyfyniadau'r postiad hwn" @@ -9647,21 +9650,21 @@ msgstr "Ail agorwch eich cyfrif" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Darllenwch{0, plural, zero {}one {# ateb arall} two {# ateb arall} few {# ateb arall} many {# ateb arall} other {# ateb arall}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" -msgstr "" +msgstr "Darllenwch am sut i ddefnyddio hidlyddion chwilio uwch" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Darllen postiad blog" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Darllen llai" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Darllen mwy" @@ -9687,11 +9690,11 @@ msgstr "Darllenwch Bolisi Preifatrwydd Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Darllenwch Delerau Gwasanaeth Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Sgyrsiau go-iawn." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Pobl go-iawn." @@ -9721,10 +9724,6 @@ msgstr "Chwilio diweddar" msgid "Recently used" msgstr "Defnyddiwyd yn ddiweddar" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Argymhellwyd" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Ailgysylltu" @@ -9748,7 +9747,7 @@ msgstr "Gwrthod cais am sgwrs" msgid "Reject join request" msgstr "Gwrthod cais i ymuno" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Ail-lwytho sgyrsiau" @@ -9766,7 +9765,7 @@ msgstr "Ail-lwytho sgyrsiau" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Tynnu" @@ -9790,10 +9789,10 @@ msgstr "Tynnu {displayName}?" #: src/screens/Search/components/SearchHistory.tsx:182 msgid "Remove {q}" -msgstr "" +msgstr "Tynnu {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Tynnu cyfrif" @@ -9839,21 +9838,21 @@ msgstr "Tynnu ffrwd?" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:143 msgid "Remove filter" -msgstr "" +msgstr "Tynnu hidlydd" #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Tynnu o'r sgwrs" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Tynnu o fy ffrydiau" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Tynnu o fynediad cyflym?" @@ -9862,7 +9861,7 @@ msgstr "Tynnu o fynediad cyflym?" msgid "Remove from saved feeds" msgstr "Tynnu o'r ffrydiau wedi'u cadw" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Tynnu o'r postiadau wedi'u cadw" @@ -9880,8 +9879,8 @@ msgstr "Tynnu delwedd" msgid "Remove live status" msgstr "Dileu statws byw" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Tynnu aelod" @@ -9943,7 +9942,7 @@ msgstr "Wedi'i dynnu o'r rhestr" msgid "Removed from saved feeds" msgstr "Wedi'i dynnu o'r ffrydiau sydd wedi'u cadw" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Wedi'i dynnu o'r postiadau wedi'u cadw" @@ -9952,7 +9951,7 @@ msgstr "Wedi'i dynnu o'r postiadau wedi'u cadw" msgid "Removed from starter pack" msgstr "Wedi ei dynnu o'r pecyn cychwyn" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Mewn ymateb i chi" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Neges a atebwyd gan {senderName}, tapiwch i sgrolio ati" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" -msgstr "" +msgstr "Anfonwyd y neges yr atebwyd iddi cyn i chi ymuno" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Neges a atebwyd, tapiwch i sgrolio ati" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Atebion" @@ -10037,7 +10037,7 @@ msgstr "Mae atebion i'r postiad hwn wedi'u hanalluogi." msgid "Reply" msgstr "Ateb" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Ateb" @@ -10098,8 +10098,8 @@ msgstr "Adrodd ar sgwrs" msgid "Report dialog" msgstr "Deialog adrodd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Adrodd ar ffrwd" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Wedi'i ail-bostio gennych chi" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Ail bostiadau" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Ail-bostiadau'r postiad hwn" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Ail bostiadau eich ail bostiadau" @@ -10253,7 +10253,7 @@ msgstr "Gofynnwyd" msgid "Requests" msgstr "Ceisiadau" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10333,7 +10333,7 @@ msgstr "Ailosod cyfrinair" #: src/screens/Login/LoginForm.tsx:422 msgid "Reset your password by sending a code to your email" -msgstr "" +msgstr "Ailosodwch eich cyfrinair drwy anfon cod i'ch e-bost" #: src/screens/Settings/FindContactsSettings.tsx:544 #: src/screens/Settings/FindContactsSettings.tsx:560 @@ -10358,10 +10358,10 @@ msgstr "Yn ceisio'r weithred olaf eto, oedd yn wallus" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Yn mynd nรดl i'r dudalen gartref" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Yn mynd nรดl i'r dudalen flaenorol" @@ -10406,7 +10406,7 @@ msgstr "Yn mynd nรดl i'r cam blaenorol" #: src/screens/Login/LoginForm.tsx:613 msgid "Reveal password" -msgstr "" +msgstr "Datgelu cyfrinair" #. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. #: src/features/gifPicker/components/GifCategoryPills.tsx:75 @@ -10446,27 +10446,27 @@ msgstr "Cadw dyddiad geni" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Cadw'r newidiadau" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Cadw newidiadau?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Cadw drafft" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Cadw drafft?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Cadw cod QR" msgid "Save these options for next time" msgstr "Cadw'r dewisiadau hyn ar gyfer y tro nesaf" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Cadw i fy ffrydiau" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Ffrydiau wedi'u Cadw" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Postiadau Wedi'u Cadw" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Wedi'i gadw i'ch ffrydiau" @@ -10520,8 +10520,8 @@ msgstr "Wedi'i gadw i'ch ffrydiau" msgid "Say hello!" msgstr "Dywedwch helo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Dywedwch helo wrth rywun" @@ -10535,7 +10535,7 @@ msgstr "Sganio" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Sganio cod QR" @@ -10543,15 +10543,15 @@ msgstr "Sganio cod QR" msgid "Science" msgstr "Gwyddoniaeth" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Sgrolio i'r chwith" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Sgrolio i'r dde" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Sgrolio i'r neges y mae hyn yn ateb iddi" @@ -10564,8 +10564,8 @@ msgstr "Sgrolio i'r brig" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Chwilio" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Chwilio postiadau @{0}" @@ -10602,21 +10602,21 @@ msgstr "Chwiliwch am \"{interestsDisplayName}\" (gweithredol)" #: src/screens/Search/components/AutocompleteResults.tsx:49 msgid "Search for โ€œ{searchText}โ€" -msgstr "" +msgstr "Chwilio am \"{searchText}\"" #: src/screens/Search/components/SearchHistory.tsx:136 msgid "Search for {q}" -msgstr "" +msgstr "Chwilio am {q}" #: src/screens/StarterPack/Wizard/index.tsx:541 msgid "Search for feeds that you want to suggest to others." msgstr "Chwiliwch am ffrydiau rydych chi am eu hawgrymu i eraill." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Chwilio am ragor o gyfrifon" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Chwilio am ragor o ffrydiau" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Chwilio GIFau" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Dyw chwilio ddim ar gael pan nad ydych wedi mewngofnodi" @@ -10661,7 +10661,7 @@ msgstr "Chwilio proffiliau" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 msgid "Search query" -msgstr "" +msgstr "Ymholiad chwilio" #: src/screens/Profile/ProfileSearch.tsx:38 msgid "Search..." @@ -10707,17 +10707,22 @@ msgstr "Gweld #{tag} postiad yn รดl defnyddiwr" msgid "See jobs at Bluesky" msgstr "Gweld swyddi yn Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Gweld rhagor" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Gweld rhagor o broffiliau diddorol" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Gweld cyfrifon sy'n cael eu hawgrymu" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Llithrydd chwilio. Defnyddiwch y bysellau saeth i chwilio ymlaen ac yn รดl, a lle i chwarae/oedi" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Dewiswch gategori \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Dewiswch {0}" msgid "Select {langName}" msgstr "Dewis {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Dewiswch liw" @@ -10764,11 +10769,11 @@ msgstr "Dewiswch gyfrif" msgid "Select an app language" msgstr "Dewiswch iaith ap" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Dewiswch afatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Dewiswch emoji" @@ -10780,12 +10785,13 @@ msgstr "Dewis opsiwn" msgid "Select app language" msgstr "Dewis iaith yr ap" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Dewis ffeil capsiynau (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Dewis sgwrs \"{name}\"" @@ -10801,7 +10807,7 @@ msgstr "Dewis hyd" #. placeholder {0}: labels[filter.field].title #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:102 msgid "Select filter type (currently: {0})" -msgstr "" +msgstr "Dewis y math o hidlydd (ar hyn o bryd: {0})" #: src/screens/Login/index.tsx:166 msgid "Select from an existing account" @@ -10826,7 +10832,7 @@ msgstr "Dewiswch GIF" msgid "Select GIF \"{0}\"" msgstr "Dewiswch GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Dewis aelodau o grลตp sgwrsio" @@ -10864,7 +10870,7 @@ msgstr "Dewis prif iaith" msgid "Select telephone code" msgstr "Dewis cod ffรดn" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Dewiswch yr emoji {emojiName} fel eich afatar" @@ -10945,7 +10951,8 @@ msgstr "Anfonwch neges" msgid "Send post to {name}" msgstr "Anfon postiad at {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Anfonwch bostiad i..." @@ -10963,12 +10970,12 @@ msgstr "Anfon y neges o'ch ffรดn" msgid "Send verification email" msgstr "Anfonwch e-bost dilysu" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Anfonwch trwy neges uniongyrchol" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11011,24 +11018,24 @@ msgstr "Rhowch eich dyddiad geni isod a byddwn yn eich cael yn รดl i bostio a da #: src/screens/Login/LoginForm.tsx:352 msgid "set your hosting provider manually" -msgstr "" +msgstr "gosod eich darparwr gwesteio รข llaw" #: src/screens/Login/LoginForm.tsx:486 msgid "Set your hosting provider manually" -msgstr "" +msgstr "Gosod eich darparwr gwesteio รข llaw" #: src/screens/Login/ForgotPasswordForm.tsx:104 msgid "Sets email for password reset" msgstr "Yn gosod e-bost ar gyfer ailosod cyfrinair" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Gosodiadau" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Gosodiadau gweithgareddau gan eraill" @@ -11036,49 +11043,49 @@ msgstr "Gosodiadau gweithgareddau gan eraill" msgid "Settings for allowing others to be notified of your posts" msgstr "Gosodiadau ar gyfer caniatรกu i eraill gael gwybod am eich postiadau" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Gosodiadau hysbysiadau hoffi" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Gosodiadau hysbysiadau crybwyll" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Gosodiadau hysbysiadau dilynwr newydd" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Gosodiadau hysbysiadau popeth arall" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Gosodiadau hysbysiadau hoffi eich ail bostiadau" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" -msgstr "" +msgstr "Gosodiadau ar gyfer hysbysiadau am geisiadau negeseuon newydd" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" -msgstr "" +msgstr "Gosodiadau hysbysiadau ar gyfer negeseuon newydd" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Gosodiadau hysbysiadau ail bostiadau eich ail bostiadau" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Gosodiadau hysbysiadau dyfynnu" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Gosodiadau hysbysiadau ateb" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Gosodiadau hysbysiadau ail bostio" @@ -11115,8 +11122,8 @@ msgstr "Rhannu ystod oed" msgid "Share anyway" msgstr "Rhannwch beth bynnag" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Rhanwch DID awdur" @@ -11125,9 +11132,9 @@ msgstr "Rhanwch DID awdur" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Rhannu adborth" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Deialog rhannu dolen" msgid "Share my profile" msgstr "Rhannu fy mhroffil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Rhannu postiad i:// URI" @@ -11169,14 +11176,14 @@ msgstr "Rhannu Proffil" msgid "Share QR code" msgstr "Rhannwch god QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Rhannwch y ffrwd hon" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" -msgstr "" +msgstr "Rhannu'r chwilio hwn" #: src/screens/StarterPack/StarterPackScreen.tsx:440 msgid "Share this starter pack" @@ -11186,8 +11193,8 @@ msgstr "Rhannwch y pecyn cychwyn hwn" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Rhannwch y pecyn cychwynnol hwn a helpwch bobl i ymuno รข'ch cymuned ar Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,23 +11210,23 @@ msgstr "Rhannwch eich cysylltiadau er mwyn darganfod ffrindiau" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughtsโ€ฆ" -msgstr "" +msgstr "Rhannu eich meddyliauโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Profwr Dewisiadau Rhannu" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 msgid "Sharing your age range reveals only the range associated with your Apple Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "Mae rhannu eich ystod oedran yn datgelu dim ond yr ystod sy'n gysylltiedig รข'ch Cyfrif Apple โ€“ er enghraifft, eich bod yn 18 oed o leiaf. <0>Nid yw eich union oedran a'ch pen-blwydd byth yn cael eu rhannu, ac nid yw'r data hwn byth yn gadael y ddyfais hon. Felly, mae'n galluogi mynediad ar y ddyfais hon yn unig. Fel arall, <1>gallwch ddefnyddio ein partner dibynadwy, KWS, i gwblhau eich dilysiad a galluogi mynediad ar bob llwyfan." #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "Mae rhannu eich ystod oedran yn datgelu dim ond yr ystod sy'n gysylltiedig รข'ch Cyfrif Google โ€“ er enghraifft, eich bod o leiaf 18 oed. <0>Nid yw eich union oedran a'ch pen-blwydd byth yn cael eu rhannu, ac nid yw'r data hwn byth yn gadael y ddyfais hon. Felly, mae'n galluogi mynediad ar y ddyfais hon yn unig. Fel arall, <1>gallwch ddefnyddio ein partner dibynadwy, KWS, i gwblhau eich dilysiad a galluogi mynediad ar bob llwyfan." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Dangos" msgid "Show alt text" msgstr "Dangos testun amgen" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Dangos beth bynnag" @@ -11274,9 +11281,9 @@ msgstr "Dangos rhestr beth bynnag" msgid "Show lists of users to select from" msgstr "Yn dangos rhestrau o ddefnyddwyr i ddews ohonyn nhw" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Dangos Rhagor" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "Dangos rhagor" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Dangos rhybudd a hidlo o ffrydiau" msgid "Show when youโ€™re live" msgstr "Dangos pan fyddwch yn fyw" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Yn dangos manylion pryd cafodd y postiad hwn ei chreu" @@ -11341,15 +11348,15 @@ msgstr "Yn dangos manylion pryd cafodd y postiad hwn ei chreu" msgid "Shows other accounts you can switch to" msgstr "Yn dangos cyfrifon eraill y gallwch newid iddyn nhw" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Yn dangos y cynnwys" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Yn dangos y cynnwys" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11379,7 +11386,7 @@ msgstr "Mewngofnodi fel {0}" #: src/screens/Login/ChooseAccountForm.tsx:84 msgid "Sign in asโ€ฆ" -msgstr "" +msgstr "Mewngofnodi felโ€ฆ" #: src/screens/Deactivated.tsx:195 #: src/screens/Deactivated.tsx:201 @@ -11434,9 +11441,9 @@ msgstr "Allgofnodi?" #: src/screens/Login/LoginForm.tsx:572 msgid "Sign up" -msgstr "" +msgstr "Cofrestru" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Mae Angen Mewngofnodi" @@ -11450,7 +11457,7 @@ msgstr "Wedi mewngofnodi fel @{0}" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:299 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:302 msgid "Since" -msgstr "" +msgstr "Ers" #: src/components/contacts/screens/PhoneInput.tsx:163 #: src/components/contacts/screens/VerifyNumber.tsx:205 @@ -11469,7 +11476,7 @@ msgstr "Hepgor" msgid "Skip contact sharing and continue to the app" msgstr "Hepgor rhannu cysylltiadau ac ymlaen i'r ap" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Hepgor postiadau gwag?" @@ -11487,7 +11494,7 @@ msgstr "Mynd i'r cam nesaf" msgid "slide" msgstr "sleid" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Llai" @@ -11499,14 +11506,14 @@ msgstr "Yn tewi'r nodyn atgoffa" msgid "So many thoughts, you should post one" msgstr "Gymaint o syniadau, dylech chi bostio un" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Y cyfrwng cymdeithasol rydych chi'n ei reoli." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Prawf cymdeithasol ar bostiadau" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11520,7 +11527,7 @@ msgstr "Dyw rhai gwasanaethau cymedroli sydd ar eich rhestr ddim ar gael bellach msgid "Some of your verifications are invalid." msgstr "Mae rhai o'ch dilysiadau'n annilys." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Rhai ffrydiau eraill efallai y byddwch yn eu hoffi" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Gadawodd rhywun y grลตp" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Ymateb rhywun oedd {0}" @@ -11554,9 +11561,9 @@ msgstr "Ymateb rhywun oedd {0}" msgid "Someone reacted {0} to {target}" msgstr "Ymateb rhywun {0} i {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" -msgstr "" +msgstr "Atebodd rhywun" #: src/components/dms/getSystemMessageInfo.ts:60 msgid "Someone was added" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Aeth rhywbeth o'i le, ceisiwch eto" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Aeth rhywbeth o'i le. Ceisiwch eto cyn bo hir." msgid "Something went wrong. Please try again." msgstr "Aeth rhywbeth o'i le. Ceisiwch eto." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Rhywbeth o'i le? Rhowch wybod i ni." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Sbam neu ymddygiad annilys neu dwyllodrus" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Chwaraeon" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Adnabod postiadau mae eich ffrindiau a'r bobl rydych yn eu dilyn wedi'u hoffi." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Dechreuwch sgwrs, a bydd yn ymddangos yma." msgid "Start a group chat" msgstr "Cychwyn sgwrs grลตp" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Cychwyn sgwrs newydd" @@ -11682,17 +11689,17 @@ msgstr "Dechreuwch ychwanegu pobl" msgid "Start adding people!" msgstr "Dechreuwch ychwanegu pobl!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Cychwyn sgwrsio" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Dechreuwch sgwrs gyda {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pecyn Cychwyn" @@ -11715,12 +11722,16 @@ msgstr "Pecyn cychwyn gennych chi" msgid "Starter pack is invalid" msgstr "Mae'r pecyn cychwyn yn annilys" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Pecynnau cychwyn" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pecynnau Cychwyn" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Mae pecynnau cychwyn yn caniatรกu i chi rannu gyda'ch ffrindiau eich hoff ffrydiau a phobl." @@ -11728,7 +11739,7 @@ msgstr "Mae pecynnau cychwyn yn caniatรกu i chi rannu gyda'ch ffrindiau eich hof msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Mae pecynnau cychwyn yn gadael i chi rannu eich hoff ffrydiau a phobl gyda'ch ffrindiau." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Mae Pecynnau Cychwyn yn gadael i chi rannu'ch hoff ffrydiau a phobl gyda'ch ffrindiau." @@ -11742,7 +11753,7 @@ msgstr "Tudalen Statws" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Cam {0} o {1}" @@ -11754,7 +11765,7 @@ msgstr "Storfa wedi'i chlirio, mae angen i chi ailgychwyn yr ap nawr." msgid "Stored as part of a secure code for matching with others" msgstr "Wedi'i gadw fel rhan o god diogel ar gyfer cyfatebu ag eraill" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Llyfr stori" @@ -11787,7 +11798,7 @@ msgstr "Cyflwyno Apรชl" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Cyflwyno adborth" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Tanysgrifiwch i {publicationTitle} ar {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Tanysgrifiwch i @{0} i ddefnyddio'r labeli hyn:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Wedi'i ddilysu'n llwyddiannus" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Awgrymwyd" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Cyfrifon wedi'u hawgrymu" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Awgrymiadau i chi" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Machlud Haul" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Dyw cynnal y nodwedd hon heb ei alluogi yn eich gwald chi eto! Dewch 'nรดl rhywbryd eto." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Does dim modd i gyfrifon wedi'u hatal cymryd rhan mewn sgyrsiau grลตp." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Does dim modd i gyfrifon wedi'u hatal cymryd rhan mewn sgyrsiau." @@ -11921,8 +11934,8 @@ msgstr "Newid i {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "System" @@ -11945,7 +11958,7 @@ msgstr "Cadwch y sgwrs yn breifat." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Tapiwch isod i ganiatรกu i Bluesky gael mynediad i'ch lleolaid. Byddwn yn defnyddio'r data hwnnw i bennu'n fwy cywir y cynnwys a'r nodweddion sydd ar gael yn eich ardal chi." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tapiwch am fanylion" @@ -11976,7 +11989,7 @@ msgstr "Tapiwch i gau'r ddewislen cyd-destun" msgid "Tap to copy this invite link" msgstr "Tapiwch i gopรฏo'r ddolen wahodd hon" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tapiwch i gau" @@ -12003,7 +12016,7 @@ msgstr "Tapio i dynnu eich {0} ymateb" msgid "Tap to request access to join this group chat" msgstr "Tapiwch i ofyn am fynediad i ymuno รข'r sgwrs grลตp hon" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tapio i geisio eto" @@ -12016,7 +12029,7 @@ msgstr "Tapio i ddangos {0} ymateb" msgid "Tap to show all reactions" msgstr "Tapio i ddangos pob ymateb" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tapio i weld ymatebion" @@ -12032,7 +12045,7 @@ msgstr "Tasg wedi'i chwblhau - 10 yn dilyn!" msgid "Task complete - 10 likes!" msgstr "Tasg wedi'i chwblhau - 10 yn hoffi!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Dysgwch ein algorithm yr hyn rydych yn ei hoffi" @@ -12060,7 +12073,7 @@ msgstr "Telerau" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Diolch am eich adborth! Mae wedi cael ei anfon at weithredwr y ffrwd.i" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Diolch am eich adborth!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "Doedd dim modd dod o hyd i'r pecyn cychwyn hwnnw." msgid "That username is already taken" msgstr "Mae'r enw defnyddiwr hwnnw eisoes wedi'i gymryd" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Dyna i gyd, bobl!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Dyna bopeth!" @@ -12171,7 +12184,7 @@ msgstr "Mae'r ffrwd wedi'i ddisodli gan Darganfod." #: src/components/moderation/LabelsOnMeDialog.tsx:64 msgid "The following labels were applied to this post." -msgstr "" +msgstr "Rhoddwyd y labeli canlynol ar y postiad hwn." #: src/components/moderation/LabelsOnMeDialog.tsx:63 msgid "The following labels were applied to your account." @@ -12216,7 +12229,7 @@ msgstr "Mae'n ymddangos bod y gweinydd yn cael problemau. Ceisiwch eto ymhen ych msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Mae'r pecyn cychwyn rydych chi'n ceisio ei weld yn annilys. Gallwch ddileu'r pecyn cychwyn hwn yn lle hynny." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Testun y ddewislen cyd-destun" @@ -12238,7 +12251,7 @@ msgstr "Mae'r cod dilysu darparwyd gennych yn annilys. Gwnewch yn siลตr eich bod msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Doedd y darparwr gwirio ddim yn gallu anfon cod i'ch rhif ffรดn. Gwiriwch eich rhif ffรดn a cheisiwch eto." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Thema" @@ -12266,7 +12279,7 @@ msgstr "Roedd problem llwytho GIFau. Gwiriwch eich cysylltiad รข cheisio eto." msgid "There was a problem with your internet connection, please try again" msgstr "Roedd anhawster gyda'ch cysylltiad rhyngrwyd, ceisiwch eto" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Roedd anhawster gyda'ch cysylltiad rhyngrwyd, ceisiwch eto" msgid "There was an issue contacting the server" msgstr "Bu anhawster wrth gysylltu รข'r gweinydd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Bu anhawster wrth gysylltu รข'r gweinydd, gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." @@ -12283,8 +12296,8 @@ msgstr "Bu anhawster wrth gysylltu รข'r gweinydd, gwiriwch eich cysylltiad rhyng msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bu anhawster wrth geisio cael hysbysiadau. Tapiwch yma i geisio eto." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Bu anhawster wrth nรดl postiadau. Tapiwch yma i geisio eto." @@ -12309,7 +12322,7 @@ msgstr "Bu anhawster wrth nรดl eich manylion gwasanaeth" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Bu anhawster wrth ddileu'r ffrwd hwn. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12368,12 +12381,12 @@ msgstr "Dymach gosodiadau rhagosodedig" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:51 msgid "These domains" -msgstr "" +msgstr "Y parthau hyn" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:44 msgid "These hashtags" -msgstr "" +msgstr "Yr hashnodau hyn" #: src/screens/Settings/FollowingFeedPreferences.tsx:66 msgid "These settings only apply to the Following feed." @@ -12382,9 +12395,9 @@ msgstr "Dim ond i'r ffrwd Dilyn mae'r gosodiadau hyn yn berthnasol." #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 msgid "These URLs" -msgstr "" +msgstr "Yr URLau hyn" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Nhw sy'n berchen ar y sgwrs hon" @@ -12392,7 +12405,7 @@ msgstr "Nhw sy'n berchen ar y sgwrs hon" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "Fyddan nhw ddim yn gallu ail ymuno oni bai i chi eu gwahodd nhw eto." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Mae {screenDescription} hwn wedi'i fflagio:" @@ -12408,7 +12421,7 @@ msgstr "Mae'r cyfrif yma wedi'i nodi fel un wedi'i awtomeiddio gan ei awdur." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Mae un neu fwy o geisiadau dilysu wedi'u gwneud ar gyfer y cyfrif hwn, ond heb ei ddilysu ar hyn o bryd." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Mae'r cyfrif hwn wedi gofyn i ddefnyddwyr fewngofnodi i weld eu proffil." @@ -12510,7 +12523,7 @@ msgstr "Mae'r cyfeiriad e-bost hwn eisoes wedi'i gysylltu รข'ch cyfrif." #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:280 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:283 msgid "This exact phrase" -msgstr "" +msgstr "Yr union ymadrodd hwn" #: src/screens/Settings/ActivityPrivacySettings.tsx:56 msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Mae'r ffrwd hon yn wag! Efallai y bydd angen i chi ddilyn mwy o ddefnyddwyr neu newid eich gosodiadau iaith." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Mae'r ffrwd hon yn wag." @@ -12554,7 +12567,7 @@ msgstr "Mae'r grลตp hwn wedi'i gloi gan weithred cymedroli ar y perchennog" msgid "This handle is reserved. Please try a different one." msgstr "Mae'r handlen hon wedi'i chadw. Rhowch gynnig ar un arall." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Doedd dim modd defnyddio'r ddelwedd hon. Rhowch gynnig ar fformar fel .jpg neu .png." @@ -12572,7 +12585,7 @@ msgstr "Mae'r ddolen wahodd hon yn annilys" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 msgid "This is just a one-time security check, since we haven't seen this account on this device before." -msgstr "" +msgstr "Dim ond gwiriad diogelwch untro yw hwn, gan nad ydym wedi gweld y cyfrif hwn ar y ddyfais hon o'r blaen." #: src/features/liveNow/components/EditLiveDialog.tsx:171 #: src/features/liveNow/components/GoLiveDialog.tsx:161 @@ -12594,9 +12607,9 @@ msgstr "Gosodwyd y label hwn gennych chi." #: src/components/moderation/LabelsOnMeDialog.tsx:156 #: src/components/moderation/ModerationDetailsDialog.tsx:231 msgid "This label was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "Gosodwyd y label hwn i'r cyfrif defnyddiwr cyfan a bydd yn ymddangos ym mhob postiad." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Dyw'r labelwr hwn ddim wedi datgan pa labeli y mae'n eu cyhoeddi, ac efallai na fydd yn weithredol." @@ -12621,13 +12634,13 @@ msgstr "Mae'r rhestr hon yn wag." msgid "This message is hidden" msgstr "Mae'r neges hon wedi'i chuddio" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Mae'r neges wedi'i chuddio gan fod y defnyddiwr yn eich rhwystro." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Mae'r neges wedi'i chuddio gan eich bod yn rhwystro'r defnyddiwr yma." @@ -12641,7 +12654,7 @@ msgstr "Mae'r person yma'n eich rhwystro" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Mae'r postiad hwn yn honni iddo gael ei greu ar <0>{0}, ond fe'i gwelwyd gyntaf gan Bluesky ar <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Mae'r postiad hwn yn honni iddo gael ei greu ar <0>{0}, ond fe'i gwe msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Mae gan y postiad hwn fath anhysbys o adwy edau arno. Mae'n bosibl bod eich ap yn rhy hen." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Dim ond ar gyfer aelodau sydd wedi mewngofnodi mae'r postiad hwn yn weladwy." @@ -12661,7 +12674,7 @@ msgstr "Cafodd y postiad hwn ei ddileu gan yr awdur" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Bydd y postiad hwn yn cael ei guddio rhag ffrydiau ac edafedd. Does dim modd dadwneud hyn." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Mae awdur y postiad hwn wedi analluogi postiadau dyfyniadau." @@ -12698,11 +12711,12 @@ msgstr "Dylai gymryd dim ond ychydig funudau." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Does gan y defnyddiwr hwn ddim enw dangos, ac felly does dim modd ei ddilysu." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Does gan y defnyddiwr hwn ddim dilynwyr." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Mae'r person yma'n eich rhwystro a does dim modd ei negesu." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Mae'r defnyddiwr hwn wedi eich rhwystro. Does dim modd i chi weld eu cynnwys." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Mae'r defnyddiwr wedi analluogi sgwrsio a does dim modd ei negesu." @@ -12733,17 +12748,17 @@ msgstr "Mae'r defnyddiwr hwn wedi'i gynnwys yn y rhestr <0>{0} rydych wedi'i msgid "This user is new here. Press for more info about when they joined." msgstr "Mae'r defnyddiwr hwn yn newydd yma. Pwyswch am ragor o wybodaeth ynghylch pryd y gwnaethon nhw ymuno." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Dyw'r defnyddiwr hwn ddim yn dilyn unrhyw un." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Does dim modd chwarae'r fideo ar eich dyfais. Efallai nad yw'r codec fideo angenrheidiol ar eich porwr neu system (H.264/AAC)." #: src/view/com/composer/videos/VideoPreview.web.tsx:65 msgid "This video canโ€™t be previewed in your browser. It will still be uploaded." -msgstr "" +msgstr "Does dim modd cael rhagolwg o'r fideo hwn yn eich porwr. Bydd yn dal i gael ei lwytho." #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 msgid "This will create a new list with the same name, description, and members as this starter pack." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Bydd hyn yn dileu eich cyfrif Bluesky <0>{currentHandle} ac unrhyw ddata cysylltiedig yn llwyr. Bydd hyn hefyd yn effeithio gwasanaethau <1> AT Protocol rydych yn eu defnyddio gyda'r cyfrif hwn." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Bydd hyn yn tynnu @{0} o'r rhestr mynediad cyflym." @@ -12786,7 +12801,7 @@ msgstr "Dewisiadau Edafedd" msgid "Threaded" msgstr "Edafwyd" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Dewisiadau Edafedd" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Gormod o gysylltiadau - mae gormod o gysylltiadau i'w mewnforio i chwilio am eich ffrindiau" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Brig" @@ -12858,7 +12873,7 @@ msgstr "Brig" msgid "Top replies first" msgstr "Prif atebion yn gyntaf" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Pwnc" @@ -12893,7 +12908,9 @@ msgstr "Dyw cyfieithu i'r un iaith ddim ar gael ar eich dyfais." msgid "Tree view" msgstr "Golwg coeden" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Yn Trendio" @@ -12902,13 +12919,15 @@ msgstr "Yn Trendio" msgid "Trending GIFs" msgstr "GIFau sy'n trendio" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Dewisiadau sy'n trendio" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Fideos yn Trendio" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,13 +12937,13 @@ msgstr "Trolio" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Mae ymddiriedaeth yn deillio o berthnasoedd, cymunedau, a chyd-destun sy'n cael eu rhannu, felly rydym hefyd yn galluogi <0>dilyswyr dibynadwy: sefydliadau sy'n gallu cyhoeddi dilysiad yn uniongyrchol." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." -msgstr "" +msgstr "Rhowch gynnig ar derm chwilio gwahanol neu tynnwch rai hidlau." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." -msgstr "" +msgstr "Rhowch gynnig ar derm chwilio gwahanol." #: src/features/inviteFriends/InviteScannerScreen.tsx:221 #: src/features/inviteFriends/InviteScannerScreen.tsx:226 @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Methu nรดl ceisiadau i ymuno." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Methu canfod derbynnydd rwyf wedi ei ddewis." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Methu canfod y derbynnydd rwyf wedi ei ddewis." @@ -13024,12 +13045,12 @@ msgstr "Dim ar gael" msgid "Unavailable feed information" msgstr "Manylion ffrwd anhysbys" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Dadrwystro Cyfrif?" msgid "Unblock list" msgstr "Rhestr ddadrwystro" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Dad-ddilyn {0}" msgid "Unfollow account" msgstr "Dad-ddilyn y cyfrif" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Dad-ddilyn defnyddiwr" @@ -13132,7 +13153,7 @@ msgstr "Cynnwys oedolion heb eu labeli" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Cynnwys oedolion heb gydsyniad neu fygythiol, heb ei labelu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Dad-hoffi" @@ -13192,7 +13213,7 @@ msgstr "Dad-dewi'r grลตp sgwrsio hwn" msgid "Unmute thread" msgstr "Dad-dewi'r edefyn" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Dad-dewi fideo" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Dad-binio" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Dad-binio ffrwd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Dad-bioio o'r cartref" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Dad-binio'r rhestr cymedroli" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Wedi'i ddad-binio {0} o'r Cartref" @@ -13258,18 +13279,18 @@ msgstr "Dad-danysgrifio o'r labelwr hwn" msgid "Unsubscribed from list" msgstr "Wedi dad-danysgrifio o'r rhestr" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Cynnwys clipfwrdd heb ei cefnogi" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Math o fideo sydd ddim yn cael ei gynnal: {mimeType}" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:323 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:326 msgid "Until" -msgstr "" +msgstr "Tan" #: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 msgid "Up to 50 people" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Wedi methu diweddaru gwelededd ateb" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Llwytho lun i fyny yn lle hynny" @@ -13355,7 +13376,7 @@ msgstr "Llwytho i fyny o'r Ffeiliau" msgid "Upload from Library" msgstr "Llwytho i fyny o'r Llyfrgell" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Yn llwytho'r GIF..." @@ -13369,7 +13390,7 @@ msgstr "Wrthi'n lwytho lluniau i fyny..." msgid "Uploading link thumbnail..." msgstr "Wrthi'n lwytho dolen llun bach i fyny..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Wrthi'n llwytho fideo i fyny..." @@ -13408,7 +13429,7 @@ msgstr "Defnyddio hwn i fewngofnodi i'r ap arall ynghyd รข'ch enw dangos." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Defnyddiwch gyfrif e-bost eich cyfrif, neu gyfrif e-bost arall rydych yn ei reoli, rhag ofn y bydd KWS neu Bluesky angen cysylltu รข chi." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "defnyddiwr" @@ -13482,7 +13503,7 @@ msgstr "Gall enw defnyddiwr gynnwys dim ond llythrennau (a-z), rifau a chyplysno #: src/screens/Login/LoginForm.tsx:305 msgid "Username or email" -msgstr "" +msgstr "Enw defnyddiwr neu e-bost" #: src/screens/Login/LoginForm.tsx:315 msgid "Username or email address" @@ -13510,7 +13531,7 @@ msgstr "Methodd y dilysu, ceisiwch eto." msgid "Verification settings" msgstr "Gosodiadau dilysu" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Gosodiadau Dilysu" @@ -13563,7 +13584,7 @@ msgstr "Dilysu nawr" #: src/ageAssurance/components/DeviceSignalsNotice.tsx:34 #: src/ageAssurance/components/DeviceSignalsNotice.tsx:52 msgid "Verify now using KWS" -msgstr "" +msgstr "Dilysu nawr gan ddefnyddio KWS" #: src/components/contacts/screens/PhoneInput.tsx:175 #: src/components/contacts/screens/VerifyNumber.tsx:217 @@ -13618,34 +13639,34 @@ msgstr "Fideo" msgid "Video failed to process" msgstr "Methodd y fideo รข phrosesu" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Ffrwd Fideo" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Fideo gan {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Fideo gan {0}. Tapio i chwarae neu oedi'r fideo" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Gemau Fideo" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Fideo wedi'i atal" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Fideo yn chwarae" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Fideo heb ei ganfod." @@ -13653,7 +13674,7 @@ msgstr "Fideo heb ei ganfod." msgid "Video settings" msgstr "Gosodiadau fideo" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Fideo wedi'i lwytho i fyny" @@ -13662,17 +13683,17 @@ msgstr "Fideo wedi'i lwytho i fyny" msgid "Video: {0}" msgstr "Fideo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Fideos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Rhaid i fideos fod yn llai na 3 munud o hyd." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Edrych" @@ -13691,9 +13712,9 @@ msgstr "Gweld afatar {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Gweld proffil {0}" @@ -13724,13 +13745,13 @@ msgstr "Gweld cofnod blog am fwy o fanylion" msgid "View debug entry" msgstr "Gweld cofnod dadfygio" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Manylion" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Gweld yr edefyn llawn" @@ -13750,18 +13771,18 @@ msgstr "Gweld ceisiadau sy'n dod i mewn i ymuno รข'r sgwrs grลตp hon" msgid "View information about these labels" msgstr "Gweld gwybodaeth am y labeli hyn" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Gweld mwy" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Edrychwch ar ragor o fideos sy'n trendio" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Edrych ar y postiad" @@ -13798,15 +13819,15 @@ msgstr "Gweld y ddolen gwahodd ar gyfer y grลตp sgwrsio hwn" msgid "View the labeling service provided by @{0}" msgstr "Gweld y gwasanaeth labelu sy'n cael ei ddarparu gan @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Gweld dilysiadau'r defnyddiwr hwn" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Gweld defnyddwyr sy'n hoffi'r ffrwd hon" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Gweld fideo" @@ -13831,7 +13852,7 @@ msgstr "Gweld eich rhestrau cymedroli" msgid "View your muted accounts" msgstr "Gweld eich cyfrifon wedi tewi" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Gweld eich dilysiadau" @@ -13840,7 +13861,7 @@ msgstr "Gweld eich dilysiadau" msgid "Views full image" msgstr "Yn gweld delwedd lawn" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Yn gweld fideo yn y modd trochi" @@ -13898,7 +13919,7 @@ msgstr "Doedd dim modd i ni ganfod y rhestr hon. Bosib ei bod wedi'i dileu." #: src/screens/Login/LoginForm.tsx:348 msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." -msgstr "" +msgstr "Doedd dim modd i ni ddod o hyd i gyfrif gyda'r enw defnyddiwr hwnnw. Gwiriwch eich bod wedi'i deipio'n gywir, neu <0>gosodwch eich darparwr gwesteio รข llaw." #: src/screens/Hashtag.tsx:260 msgid "We couldn't find any results for that tag." @@ -13922,7 +13943,7 @@ msgstr "Wedi methu lwytho gosodiadau'r sgwrs hon" #: src/screens/Login/LoginForm.tsx:482 msgid "We couldnโ€™t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." -msgstr "" +msgstr "Doedd dim modd i ni ddilysu eich darparwr gwesteio. Gwiriwch eich cysylltiad rhyngrwyd, neu <0>gosodwch eich darparwr gwesteio รข llaw." #: src/components/contacts/screens/GetContacts.tsx:244 msgid "We delete hashes after matches are made" @@ -14001,7 +14022,7 @@ msgstr "Byddwn yn gadael i chi wybod pan fyddwn yn dod o hyd i'ch ffrindiau." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "Weโ€™d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Byddem wrth ein bodd yn clywed am eich profiad yn profi nodweddion beta!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Rydym yn cael problemau rhwydwaith, ceisiwch eto" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Rydym yn cael anawsterau rhwydwaith, ceisiwch eto" @@ -14043,13 +14064,13 @@ msgstr "Rydym yn cael anawsterau rhwydwaith, ceisiwch eto" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Rydyn ni'n cyflwyno haen newydd o ddilysu ar Bluesky - marc gwirio hawdd ei weld." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Rydym yn falch iawn eich bod wedi ymuno รข ni!" #: src/ageAssurance/useVerificationFlow.ts:117 msgid "We're sorry, but based on the data shared by your device, you are not old enough to access Bluesky." -msgstr "" +msgstr "Ymddiheuriadau, ond yn seiliedig ar y data sy'n cael ei rannu gan eich dyfais, dydych chi ddim yn ddigon hen i gael mynediad i Bluesky." #: src/ageAssurance/components/NoAccessScreen.tsx:227 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:218 @@ -14064,13 +14085,15 @@ msgstr "Mae'n ddrwg gennym, ond nid oeddem yn gallu datrys y rhestr hon. Os bydd msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Mae'n ddrwg gennym, ond nid oeddem yn gallu llwytho eich geiriau wedi'u tewi ar hyn o bryd. Ceisiwch eto." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." -msgstr "" +msgstr "Ymddiheuriadau, does dim modd cwblhau eich chwilio." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Ymddiheuriadau, ond doedd dim modd cwblhau eich chwilio. Ceisiwch eto ymhen rhai munudau." @@ -14078,7 +14101,7 @@ msgstr "Ymddiheuriadau, ond doedd dim modd cwblhau eich chwilio. Ceisiwch eto ym msgid "We're sorry, you cannot access this screen at this time." msgstr "Ymddiheuriadau, does dim modd i chi fynd at y sgrin hon ar hyn o bryd." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Mae'n ddrwg gennym! Mae'r postiad rydych chi'n ymateb iddo wedi'i dileu." @@ -14131,10 +14154,10 @@ msgstr "Beth ydych chi am ei alw'ch pecyn cychwyn?" #. Advanced search: Example of an โ€œexact phraseโ€ search #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:285 msgid "whatโ€™s up" -msgstr "" +msgstr "beth sy'n digwydd" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Beth sy'n digwydd?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Pwy sy'n gallu dilysu?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Wps!" @@ -14220,21 +14243,21 @@ msgstr "Hoffech chi rwystro'r defnyddiwr yma a/neu adael y sgwrs yma?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Hoffech chi gadw hwn fel drafft cyn edrych ar eich drafftiau?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Hoffech chi gadw hwn fel drafft i'w olygu'n nes ymlaen?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Ysgrifennu postiad" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Ysgrifennwch bostiad" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Ysgrifennwch eich ateb" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Rydych yn cael mynediad at Bluesky mewn ardal sydd รข gofyniad cyfreithiol i ni wirio eich oed cyn caniatรกu i chi gael mynediad at yr ap." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Rydych yn rhwystro {0}" @@ -14342,7 +14365,7 @@ msgstr "Dydych chi ddim yn fyw mwyach" msgid "You are not allowed to upload videos." msgstr "Does dim caniatรขd i chi lwytho fideos i fyny." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Dydych chi ddim yn dilyn neb eto" @@ -14362,7 +14385,7 @@ msgstr "Rydych chi wedi'ch dilysu. Byddwch yn colli eich statws dilysu os byddwc msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Rydych chi wedi'ch dilysu. Byddwch yn colli eich statws dilysu os byddwch yn newid eich handlen. <0>Dysgu ragor." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Gallwch addasu eich diddordebau ar unrhyw adeg o osodiadau \"Cynnwys a chyfryngau\"." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Gallwch nawr fewngofnodi gyda'ch cyfrinair newydd." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Dim ond hyd at {MAX_GALLERY_IMAGES, plural, zero {# delweddau} one {# ddelwedd} two {# ddelwedd} few {# delwedd} many {# delwedd} other {# delwedd}} y gallwch eu hychwanegu i bob postiad" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Dim ond 1000 nod y mae modd eu cadw mewn drafft." @@ -14439,9 +14462,11 @@ msgstr "Gallwch ddarllen hanes sgwrs ond ddim anfon negeseuon newydd." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Gallwch ddewis hyd at {MAX_GALLERY_IMAGES, plural, zero {# delweddau} one {# ddelwedd} two {# ddelwedd} few {# delwedd} many {# delwedd} other {# delwedd}} i gyd." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Gallwch ddiweddaru hwn yn ddiweddarach o'ch gosodiadau." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Gallwch chi ddim ychwanegu mwy na {EMOJI_REACTION_LIMIT, plural, zero {# ymatebion emoji} one {# ymateb emoji} two {# ymateb emoji} few {# ymateb emoji} many {# ymateb emoji} other {# ymateb emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Does dim modd i chi greu sgwrs grลตp eto." @@ -14555,7 +14581,7 @@ msgstr "Diolch, rydych chi wedi dilysu'ch cyfeiriad e-bost yn llwyddiannus. Gall msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Rydych wedi cyrraedd y terfyn ar gyfer llwytho fideo i fyny dros dro. Ceisiwch eto yn nes ymlaen." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Mae gennych chi newidiadau heb eu cadw o'r drafft hwn, hoffech chi eu cadw?" @@ -14563,7 +14589,7 @@ msgstr "Mae gennych chi newidiadau heb eu cadw o'r drafft hwn, hoffech chi eu ca msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Mae gennych chi newidiadau heb eu cadw. Hoffech chi eu cadw cyn edrych ar eich drafftiau?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Dydych chi ddim wedi creu pecyn cychwyn eto!" @@ -14614,7 +14640,7 @@ msgstr "Dim ond hyd at {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_ msgid "You may only add up to 3 feeds" msgstr "Dim ond hyd at 3 ffrwd y gallwch chi eu hychwanegu" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Rhaid i chi fod yn berchennog sgwrs i ddileu aelod." @@ -14622,7 +14648,7 @@ msgstr "Rhaid i chi fod yn berchennog sgwrs i ddileu aelod." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Rhaid eich bod yn o leiaf 13 oed i ddefnyddio Bluesky. Darllenwch ein <0>Amodau Gwasanaeth am ragor o wybodaeth." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Rhaid i chi fod yn dilyn o leiaf saith o bobl eraill i gynhyrchu pecyn cychwyn." @@ -14639,7 +14665,7 @@ msgstr "Rhaid i chi ganiatรกu mynediad i'ch llyfrgell cyfryngau." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Mae angen i chi ddilysu'ch cyfeiriad e-bost cyn y gallwch alluogi 2FA e-bost." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Chi sy'n berchen ar y sgwrs hon" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Mae'n debyg eich bod chi eisiau ailgychwyn yr ap nawr." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Eich ymateb yw {0}" @@ -14667,15 +14693,15 @@ msgstr "Eich ymateb i {0} yw {target}" msgid "You recently changed your birthdate" msgstr "Rydych wedi newid eich dyddiad geni'n ddiweddar" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Rydych wedi ateb" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Rydych wedi ateb {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Rydych wedi ateb eich hun" @@ -14715,11 +14741,11 @@ msgstr "Bydd dim modd ichi ail ymuno oni bai i chi gael eich gwahodd." msgid "You: {message}" msgstr "Chi: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Byddwch yn dilyn y defnyddwyr a'r ffrwd sy'n cael ei awgrymu ar รดl i chi orffen creu eich cyfrif!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Byddwch yn dilyn y defnyddwyr sy'n cael ei awgrymu ar รดl i chi orffen creu'ch cyfrif!" @@ -14747,11 +14773,11 @@ msgstr "Byddwch yn derbyn y diweddaraf am y ffrydiau hyn" #: src/ageAssurance/useVerificationFlow.ts:133 msgid "You're all set!" -msgstr "" +msgstr "Rydych yn barod nawr!" #: src/ageAssurance/useVerificationFlow.ts:127 msgid "You're all set! However, certain features may still be restricted until you're able to verify you're an adult." -msgstr "" +msgstr "Rydych chi'n barod! Er hynny, gall rhai nodweddion barhau i fod wedi'u cyfyngu nes eich bod yn gallu dilysu eich bod yn oedolyn." #: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 msgid "Youโ€™re in control" @@ -14791,7 +14817,7 @@ msgstr "Rydych wedi dod i ddiwedd y cynnwys gweithredol." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Rydych wedi cyrraedd diwedd eich ffrwd! Dewch o hyd i ragor o gyfrifon i'w dilyn." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Rydych wedi cyrraedd uchafswm y nifer o ddrafftiau" @@ -14799,9 +14825,9 @@ msgstr "Rydych wedi cyrraedd uchafswm y nifer o ddrafftiau" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Rydych chi wedi cyrraedd y nifer uchaf o geisiadau sy'n cael eu caniatรกu. Rhowch gynnig arall arni yn nes ymlaen." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." -msgstr "" +msgstr "Rydych wedi cyrraedd yr uchafswm o {MAX_FILTERS, plural, zero {# hidlyddion} one {# hidlydd} two {# hidlydd} few {# hidlydd} many {# hidlydd} other {# hidlydd}}. Ychwanegwch fwy o werthoedd at hidlydd sy'n bodoli yn lle creu rhai newydd." #: src/components/FocusScope/index.tsx:88 msgid "You've reached the start of the active content." @@ -14815,11 +14841,11 @@ msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o feit msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o fideos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Rydych wedi rhedeg allan o fideos i'w gwylio. Efallai ei fod yn amser da i gael newid bach?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Eich cyfrif" @@ -14835,11 +14861,11 @@ msgstr "Mae eich cyfrif wedi'i atal" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Nid yw eich cyfrif yn ddigon hen eto i lwytho fideos i fyny. Ceisiwch eto yn nes ymlaen." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Mae eich cyfrif yn rhy newydd" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Rhaid i'ch cyfrif fod o leiaf 7 diwrnod oed i greu sgwrs grลตp newydd." @@ -14896,7 +14922,7 @@ msgstr "Eich e-bost" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Mae'n ymddangos bod eich e-bost yn annilys." @@ -14924,14 +14950,14 @@ msgstr "Eich enw dangos llawn fydd <0>@{0}" #: src/screens/Login/components/HostingProviderDialog.tsx:182 msgid "Your hosting provider canโ€™t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." -msgstr "" +msgstr "Does dim modd canfod eich darparwr gwesteia o gyfeiriad e-bost, felly bydd gwasanaeth rhagosodedig Bluesky yn cael ei ddefnyddio. Rhowch eich enw defnyddiwr yn lle hynny, neu gosodwch eich darparwr รข llaw." #: src/screens/Login/components/HostingProviderDialog.tsx:188 msgid "Your hosting provider is detected automatically from the username you enter." -msgstr "" +msgstr "Mae eich darparwr gwesteia yn cael ei ganfod yn awtomatig o'r enw defnyddiwr rydych yn ei nodi." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Mae eich diddordebau wedi'u diweddaru!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Mae eich diddordebau yn ein helpu ni i ddod o hyd i'r hyn rydych chi'n ei hoffi!" @@ -14967,11 +14993,11 @@ msgstr "Mae eich cyfrinair wedi'i newid yn llwyddiannus! Defnyddiwch eich cyfrin msgid "Your password must be at least 8 characters long." msgstr "Rhaid i'ch cyfrinair fod o leiaf 8 nod." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Mae eich postiad wedi'i anfon" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Mae eich postiadau wedi'u hanfon" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Eich dewis iaith" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Eich llun proffil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Eich llun proffil wedi ei amgylchynu gan gylchoedd consentrig o luniau proffil defnyddwyr eraill" @@ -14992,7 +15018,7 @@ msgstr "Eich llun proffil wedi ei amgylchynu gan gylchoedd consentrig o luniau p msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Ni fydd eich proffil, postiadau, ffrydiau a rhestrau bellach yn weladwy i ddefnyddwyr Bluesky eraill. Gallwch ail agor eich cyfrif unrhyw bryd trwy fewngofnodi." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Mae eich ateb wedi'i anfon" @@ -15005,13 +15031,13 @@ msgstr "Bydd eich adroddiad yn cael ei anfon at <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Mae'r diddordebau rydych wedi'u dewis yn ein helpu i ddarparu cynnwys sy'n bwysig i chi." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Mae gan eich ffrwd bostiadau gwag fydd yn cael eu hepgor. Bydd y postiadau sy'n weddill yn cael eu cyhoeddi fel ffrwd." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 msgid "Your username and password will be shared with <0>{host}. If you donโ€™t recognize this provider, double-check your username." -msgstr "" +msgstr "Bydd eich enw defnyddiwr a'ch cyfrinair yn cael eu rhannu gyda <0>{host}. Os nad ydych yn adnabod y darparwr hwn, gwiriwch eich enw defnyddiwr eto." #: src/components/verification/VerificationsDialog.tsx:67 msgid "Your verifications" diff --git a/src/locale/locales/da/messages.po b/src/locale/locales/da/messages.po index 26a883ec37..f9ba759a40 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Danish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorien \"{interestsDisplayName}\" (aktiv)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,9 +39,9 @@ msgid "(contains embedded content)" msgstr "(indeholder indlejret indhold)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" -msgstr "" +msgstr "(slettet besked)" #. A reply summary in chat #: src/components/dms/replyPreview.ts:68 @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -65,12 +65,12 @@ msgstr "(ingen e-mail)" #. A reply summary in chat #: src/components/dms/replyPreview.ts:107 msgid "(no text)" -msgstr "" +msgstr "(ingen tekst)" #. A reply summary in chat #: src/components/dms/replyPreview.ts:99 msgid "(quoted post)" -msgstr "" +msgstr "(citeret opslag)" #. placeholder {0}: labels.length #: src/components/moderation/LabelsOnMe.tsx:57 @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# time} other {# timer}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# like} other {# likes}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# medlem} other {# medlemmer}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# ny anmodning om deltagelse} other {# nye anmodninger #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {# person} other {# personer}} reagerede โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "kl. {0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Konto)" @@ -251,36 +252,13 @@ msgstr "{0} fรธjet til chat" msgid "{0} and {1} added to chat" msgstr "{0} og {1} fรธjet til chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} fรธlger" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} blokerer dig" @@ -324,14 +302,6 @@ msgstr "{0} meldte sig ud" msgid "{0} left the group" msgstr "{0} forlod gruppen" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} ud af 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reagerede med {1}" @@ -380,7 +350,7 @@ msgstr "{0} blev fjernet fra gruppen" #. placeholder {0}: link(lang) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:113 msgid "{0}, " -msgstr "" +msgstr "{0}, " #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} og {memberCount, plural, one {# other} other {# others}} fรธjet til chatten" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -455,13 +410,13 @@ msgstr "{0}/{imageCount}" #. placeholder {0}: UNREAD_REQUEST_CAP - 1 #: src/screens/Messages/components/InboxRequests.tsx:55 msgid "{0}+" -msgstr "" +msgstr "{0}+" #. Displayed when the number of requests exceeds the cap #. placeholder {0}: UNREAD_REQUEST_CAP - 1 #: src/screens/Messages/components/InboxRequests.tsx:30 msgid "{0}+ requests" -msgstr "" +msgstr "{0}+ anmodninger" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -531,7 +486,7 @@ msgstr "{estimatedTimeMins, plural, one {minut} other {minutter}}" #: src/screens/Search/components/SearchHistory.tsx:170 msgid "{filterCount, plural, one {+# filter} other {+# filters}}" -msgstr "" +msgstr "{filterCount, plural, one {+# filter} other {+# filtre}}" #: src/view/com/notifications/NotificationFeedItem.tsx:361 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} verificerede dig" msgid "{following} following" msgstr "{following} fรธlger" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, one {opslag} other {opslag}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} kan ikke tilfรธjes" @@ -698,7 +660,7 @@ msgstr "{handle} kan ikke tilfรธjes" msgid "{handle} can't be messaged" msgstr "{handle} kan ikke modtage beskeder" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "{handle} kan ikke modtage beskeder" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# ulรฆst besked} other {# ulรฆste beske msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# kontakt fundet} other {# kontakter fundet}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} oprettede sig pรฅ Bluesky for {timeAgoString} siden" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} oprettede sig pรฅ Bluesky via en startpakke for {timeAgoString} siden" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} svarede" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} svarede {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} svarede dig" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# anmodning} other {# anmodninger}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ anmodninger" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}t siden" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} er en autoriseret verifikator" @@ -842,13 +795,13 @@ msgstr "{userName}s verifikationer" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {fรธlger} other {fรธlger}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citat} other {citater}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {deling} other {delinger}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, one {gemt} other {gemte}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, one {like} other {likes}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> tilfรธjede dig" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Log ind<1> eller <2>opret en konto<3> <4>for at sรธge efter nyheder, sport, politik og alt andet, der sker pรฅ Bluesky." @@ -971,7 +924,7 @@ msgstr "30 dage" msgid "7 days" msgstr "7 dage" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "En samling af populรฆre feeds, du kan finde pรฅ Bluesky, herunder News, Book Sky, Game Dev, Blacksky og Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Der opstod en netvรฆrksfejl. Tjek din internetforbindelse" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "En ny kode blev sendt" msgid "A new form of verification" msgstr "En ny form for verifikation" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Et screenshot af skrivefeltet til opslag med en ny knap ved siden af โ€œSlรฅ opโ€ med teksten โ€œKladderโ€ men fyrvรฆrkerieffekt. I selve skrivefeltet er der indtastet โ€œHej, har du hรธrt det seneste nye? Bluesky understรธtter nu kladder!โ€" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "En valgt modtager fรธlges ikke af afsenderen." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Adgang anmodet! Gruppeejeren vil gennemgรฅ din anmodning." msgid "Accessibility" msgstr "Tilgรฆngelighed" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Tilgรฆngelighedsindstillinger" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Konto skjult af liste" msgid "Account options" msgstr "Kontoindstillinger" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Konto fjernet fra kvikadgang" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Konti med et amรธbeformet blรฅt flueben <0><1/> kan verificere andre. De autoriserede verifikatorer er udvalgt af Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Aktivitet fra andre" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Aktivitetsnotifikationer" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,17 +1183,17 @@ msgstr "Tilfรธj alt-tekst (valgfrit)" msgid "Add another account" msgstr "Tilfรธj endnu en konto" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Tilfรธj endnu et opslag" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Tilfรธj endnu et opslag til trรฅd" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" -msgstr "" +msgstr "Tilfรธj endnu et sรธgefilter" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 msgid "Add app password" @@ -1253,9 +1213,9 @@ msgstr "Tilfรธj botmรฆrkat til konto" msgid "Add emoji reaction" msgstr "Tilfรธj emojireaktion" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" -msgstr "" +msgstr "Tilfรธj filter" #: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" @@ -1338,7 +1298,7 @@ msgstr "Fรธj dette feed til dine feeds" msgid "Add to lists" msgstr "Fรธj til lister" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Fรธj til gemte opslag" @@ -1400,7 +1360,7 @@ msgstr "Porno" msgid "Adult content" msgstr "Voksenindhold" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "mette@eksempel.dk" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Alle" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Alle venner blev fulgt!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Alle sprog" @@ -1489,12 +1445,7 @@ msgstr "Alle sprog vil blive vist i dine feeds." #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:245 msgid "All of these words" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" +msgstr "Alle disse ord" #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." @@ -1560,7 +1511,7 @@ msgstr "Tillader adgang til direkte beskeder" msgid "Already have a code?" msgstr "Har du allerede modtaget en bekrรฆftelseskode?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Har du allerede en konto?" @@ -1614,7 +1565,7 @@ msgstr "En e-mail er sendt til {0}. Den indeholder en bekrรฆftelseskode, som du msgid "An error has occurred" msgstr "Der opstod en fejl" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Der opstod en fejl" @@ -1631,7 +1582,7 @@ msgstr "Der opstod en fejl under indlรฆsning af foreslรฅede konti." msgid "An error occurred while fetching the feed." msgstr "Der opstod en fejl under indlรฆsning af feedet." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Der opstod en fejl under generering af din startpakke. Vil du prรธve igen?" @@ -1640,11 +1591,11 @@ msgstr "Der opstod en fejl under generering af din startpakke. Vil du prรธve ige msgid "An error occurred while hiding suggestion. {0}" msgstr "Der opstod en fejl ved forsรธg pรฅ at skjule forslag. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Der opstod en fejl under indlรฆsning af videoen. Prรธv igen senere." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Der opstod en fejl under indlรฆsning af videoen. Prรธv igen senere." @@ -1684,7 +1635,7 @@ msgstr "Der opstod en fejl. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "En tegning af profilbilleder, der flyder fra en adressebog ind i Bluesky-appen" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "En illustration af adskillige Bluesky-opslag sammen med ikoner for videredeling, like og kommentar" @@ -1705,17 +1656,15 @@ msgstr "Et invitationslink lader folk deltage i denne gruppechat uden at blive t msgid "An issue not included in these options" msgstr "En anden รฅrsag, der ikke er omfattet af ovennรฆvnte" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Der opstod en fejl ved oprettelse af gruppechat, prรธv igen." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Der opstod en fejl ved start af chat, prรธv igen." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Der opstod en fejl ved รฅbning af chatten" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Alle" @@ -1802,7 +1749,7 @@ msgstr "Alle som fรธlger mig" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "De som har det vil ikke lรฆngere kunne deltage eller anmode om deltagelse. Du kan altid oprette et nyt." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Navne pรฅ appadgangskoder skal bestรฅ af mindst 4 tegn" msgid "App passwords" msgstr "Appadgangskoder" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Appadgangskoder" @@ -1891,8 +1838,8 @@ msgstr "Klag over afgรธrelse" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Anvend pull request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arkiveret fra {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Arkiveret opslag" @@ -1926,19 +1873,19 @@ msgstr "Er du helt, helt sikker?" #. placeholder {1}: link(languages[1]) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:100 msgid "Are you searching for posts in {0} or {1}?" -msgstr "" +msgstr "Sรธger du efter opslag pรฅ {0} eller {1}?" #. placeholder {0}: link(languages[0]) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:95 msgid "Are you searching for posts in {0}?" -msgstr "" +msgstr "Sรธger du efter opslag pรฅ {0}?" #. List formatting: {0}, {1}, or {2} #. placeholder {0}: head.map(lang => ( {link(lang)},{' '} )) #. placeholder {1}: link(last) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:110 msgid "Are you searching for posts in {0}or {1}?" -msgstr "" +msgstr "Sรธger du efter opslag pรฅ {0}eller {1}?" #. placeholder {0}: appPassword.name #: src/screens/Settings/AppPasswords.tsx:210 @@ -1980,7 +1927,7 @@ msgstr "Er du sikker pรฅ, du vil fjerne dette feed fra dine feeds?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Er du sikker pรฅ, at du vil trรฆkke din anmodning om at deltage i {0} tilbage?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Er du sikker pรฅ, du vil kassere dette opslag?" @@ -2018,22 +1965,27 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Nordlys" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Botkonto" #: src/screens/Login/components/HostingProviderDialog.tsx:165 #: src/screens/Login/components/HostingProviderDialog.tsx:167 msgid "Automatic" -msgstr "" +msgstr "Automatisk" #: src/screens/Settings/AccountSettings.tsx:155 #: src/screens/Settings/AccountSettings.tsx:158 msgid "Automation label" msgstr "Botmรฆrkat" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Botmรฆrkat" @@ -2050,12 +2002,16 @@ msgstr "Afspil videoer og GIF'er automatisk" msgid "Available" msgstr "Tilgรฆngelig" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Fรธr du opretter eller besvarer et opslag, skal du bekrรฆfte din e-mail." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Fรธr du opretter en startpakke, skal du bekrรฆfte din e-mail." @@ -2135,10 +2091,10 @@ msgstr "Fรธr du kan modtage notifikationer om opslag fra {name}, skal du fรธrst #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2116,28 @@ msgstr "Begynd alderstjek ved at udfylde felterne herunder." msgid "Beta Feature" msgstr "Betafunktion" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" -msgstr "" +msgstr "Betafunktioner" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Betafunktioner aktiveret" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Betafunktioner kan vรฆre ustabile. Nogle รฆndringer krรฆver, at du genindlรฆser appen." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Betafunktioner kan vรฆre ustabile. Nogle รฆndringer krรฆver, at du genstarter appen." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2147,9 @@ msgstr "Fรธdselsdato" msgid "Birthday" msgstr "Fรธdselsdato" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Blokeret" msgid "Blocked accounts" msgstr "Blokerede konti" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokerede konti" @@ -2282,7 +2244,7 @@ msgstr "Blokerede konti kan ikke svare i dine trรฅde, omtale dig eller pรฅ anden msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blokerede konti kan ikke svare i dine trรฅde, omtale dig eller pรฅ anden mรฅde interagere med dig. Du vil ikke se deres indhold, og de vil ikke se dit." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokering forhindrer ikke denne mรฆrkningstjeneste fra at sรฆtte mรฆrkater pรฅ din konto." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan ikke bekrรฆfte den anfรธrte datos gyldighed." @@ -2330,7 +2293,7 @@ msgstr "Bluesky er et รฅbent netvรฆrk, hvor du kan vรฆlge din egen udbyder. Hvis msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky er et รฅbent netvรฆrk, hvor du kan vรฆlge din egen udbyder. Hvis du er ny her, anbefaler vi at bruge standardvalget Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky virker bedre med venner!" @@ -2358,7 +2321,7 @@ msgstr "Bluesky Socials tjenestevilkรฅr" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky gemmer dine kontakter som krypteret data. Hvis du fjerner dine kontakter, sletter vi รธjeblikkeligt denne data." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky vil vรฆlge et antal anbefalede konti fra personer i dit netvรฆrk." @@ -2403,20 +2366,20 @@ msgstr "Saml op til 50 venner i รฉn chat." msgid "Browse custom feeds" msgstr "Se tilpassede feeds" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Se flere konti" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Se flere feeds under Udforsk" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Se flere forslag" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Se flere forslag under Udforsk" @@ -2425,24 +2388,25 @@ msgstr "Se flere forslag under Udforsk" msgid "Browse other feeds" msgstr "Se flere feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Se opslag om {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Se opslag tagget med {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Se startpakken {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Se emnet {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Se emnet {displayName}" @@ -2461,8 +2425,8 @@ msgstr "Knap, der gรฅr til din hjemmetidslinje" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Af {0}" @@ -2473,9 +2437,9 @@ msgstr "af @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Af <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Ved at oprette en konto accepterer du <0>tjenestevilkรฅrene og <1>pr msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Ved at oprette en konto accepterer du <0>tjenestevilkรฅrene." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Af dig" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2498,7 @@ msgstr "Kameraadgang krรฆvet" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Kameraadgang krรฆvet" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Annuller genaktivering og log ud" msgid "Cancel reply" msgstr "Annuller svar" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Annuller sรธgning" @@ -2620,7 +2584,7 @@ msgstr "Cashtag {tag}" #. Advanced search: Example of an โ€œall of these wordsโ€ search. Paired with โ€œcows pigsโ€. #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:250 msgid "cats dogs" -msgstr "" +msgstr "katte hunde" #: src/components/Post/Translated/index.tsx:439 #: src/screens/Settings/components/Email2FAToggle.tsx:31 @@ -2649,7 +2613,7 @@ msgstr "Skift handle" #: src/screens/Login/LoginForm.tsx:644 msgid "Change hosting provider" -msgstr "" +msgstr "Skift udbyder" #: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "ร†ndringer til startpakken vil ikke blive afspejlet i listen efter oprettelse. Listen vil blive en separat kopi." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat skjult" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Chat ikke fundet." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Chatejere kan ikke forlade en gruppechat." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Chatmodtager fรธlges ikke af afsenderen." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Indbakke for chatanmodninger" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Chatanmodninger" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chatindstillinger" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat ikke lรฆngere skjult" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2802,7 @@ msgstr "Vรฆlg metode til domรฆneverifikation" msgid "Choose Feeds" msgstr "Vรฆlg feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Vรฆlg for mig" @@ -2854,7 +2819,7 @@ msgstr "Vรฆlg konti" msgid "Choose post languages" msgstr "Vรฆlg sprog for opslag" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Vรฆlg farve til din avatar" @@ -2869,7 +2834,7 @@ msgstr "Vรฆlg, hvem du vil invitere" #: src/components/dialogs/ServerInput.tsx:134 #: src/screens/Login/components/HostingProviderDialog.tsx:155 msgid "Choose your hosting provider" -msgstr "" +msgstr "Vรฆlg din udbyder" #: src/view/screens/Feeds.tsx:726 msgid "Choose your own timeline! Feeds built by the community help you find content you love." @@ -2879,7 +2844,7 @@ msgstr "Vรฆlg din egen tidslinje! Specialbyggede feeds skabt af andre brugere hj msgid "Choose your password" msgstr "Husk din adgangskode" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Vรฆlg dit brugernavn" @@ -2887,7 +2852,7 @@ msgstr "Vรฆlg dit brugernavn" #: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.tsx:110 #: src/screens/Search/components/AdvancedSearchDialog/ClearableInput.tsx:59 msgid "Clear" -msgstr "" +msgstr "Ryd" #: src/screens/Settings/Settings.tsx:507 msgid "Clear all storage data" @@ -2966,7 +2931,7 @@ msgstr "Klik her for at se invitationslinket for denne gruppechat" msgid "Click to open tag menu for {0}" msgstr "Klik for at รฅbne tagmenuen for {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Klik for at prรธve at sende beskeden igen" @@ -3003,7 +2968,7 @@ msgstr "Klik for at prรธve at sende beskeden igen" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Klik for at prรธve at sende beskeden igen" msgid "Close" msgstr "Luk" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Luk aktiv dialog" @@ -3047,7 +3012,7 @@ msgstr "Luk banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Luk billedviser" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Luk menu" @@ -3090,7 +3055,7 @@ msgstr "Luk banner for indkommende anmodninger" msgid "Close this dialog" msgstr "Luk dialog" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Luk velkomstdialog" @@ -3098,7 +3063,7 @@ msgstr "Luk velkomstdialog" msgid "Closes password update alert" msgstr "Lukker besked om opdatering af adganskode" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Lukker skrivefelt og kasserer udkast til opslag" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Farve" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Farvetilstand" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Tegneserier" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Fรฆlleskabsregler" @@ -3141,7 +3106,7 @@ msgstr "Fรฆlleskabsregler" msgid "Complete onboarding and start using your account" msgstr "Afslut velkomst og kom i gang med at bruge din konto" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Lรธs opgaven" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Skriv nyt opslag" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Skriv opslag pรฅ op til {0, plural, one {}other {# tegn}}" @@ -3160,11 +3125,11 @@ msgstr "Skriv opslag pรฅ op til {0, plural, one {}other {# tegn}}" msgid "Compose reply" msgstr "Skriv svar" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Komprimerer GIF ..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Komprimerer video..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Kontakt vores supportteam" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Kontakt support" @@ -3253,7 +3218,7 @@ msgstr "Indhold og medier" msgid "Content and media" msgstr "Indhold og medier" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Indhold og medier" @@ -3265,10 +3230,6 @@ msgstr "Indhold blokeret" msgid "Content filters" msgstr "Indholdsfiltre" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Indhold fra hele netvรฆrket, som vi tror, du vil synes om." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Vรฆlg sprog" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Opfordring til eller afbildning af selvskade" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Indholdsadvarsel" msgid "Content warnings" msgstr "Indholdsadvarsel" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Baggrund for kontekstmenu, klik for at lukke menuen." @@ -3302,7 +3263,7 @@ msgstr "Baggrund for kontekstmenu, klik for at lukke menuen." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Fortsรฆt trรฅd..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Fortsรฆt til gruppenavn" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,15 +3329,15 @@ msgstr "Samtale ikke fundet." msgid "Copied build version to clipboard" msgstr "Kopieret versionsnummer til udklipsholder" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" -msgstr "" +msgstr "Kopier link til udklipsholder" #: src/components/dms/ChatInvite/Root.tsx:99 #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Kopier appadgangskode" msgid "Copy at:// URI" msgstr "Kopier at://-URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Kopier forfatter-DID" @@ -3449,10 +3410,10 @@ msgstr "Kopier link" msgid "Copy link to list" msgstr "Kopier link til liste" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopier link til opslag" @@ -3470,8 +3431,8 @@ msgstr "Kopier link til startpakke" msgid "Copy message text" msgstr "Kopier beskedtekst" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Kopier opslagets at://-URI" @@ -3490,7 +3451,7 @@ msgstr "Kopier TXT-record" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Ophavsretspolitik" @@ -3540,11 +3501,11 @@ msgstr "Kunne ikke fรธlge alle fundne venner. {0}" msgid "Could not leave chat" msgstr "Kunne ikke forlade chat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Kunne ikke forlade chat." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Kunne ikke indlรฆse feed" @@ -3562,7 +3523,7 @@ msgstr "Kunne ikke indlรฆse profil" msgid "Could not mute chat" msgstr "Kunne ikke skjule chat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Kunne ikke fjerne medlem." @@ -3600,14 +3561,14 @@ msgstr "Landekode" #. Advanced search: Example of a โ€œnone of these wordsโ€ search. Paired with โ€œcats dogsโ€. #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:268 msgid "cows pigs" -msgstr "" +msgstr "kรธer grise" #. Text on button to create a new starter pack #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Opret" @@ -3624,26 +3585,26 @@ msgstr "Opret en liste ud fra denne startpakke" msgid "Create a QR code for a starter pack" msgstr "Opret en QR-kode til en startpakke" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Opret en startpakke" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Opret en startpakke" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Opret en startpakke for mig" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Opret konto" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Opret en konto" @@ -3666,15 +3627,15 @@ msgstr "Opret en konto" msgid "Create an account without using this starter pack" msgstr "Opret en konto uden at bruge denne startpakke" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Opret en avatar i stedet" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Opret endnu en" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Opret gruppechat" @@ -3741,9 +3702,9 @@ msgstr "Kultur" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Aktuelle betafunktioner" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Aktuel chat" @@ -3770,8 +3731,8 @@ msgstr "Farlige stoffer eller stofmisbrug" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Mรธrk" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Mรธrk" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Mรธrk tilstand" @@ -3814,7 +3775,7 @@ msgstr "Afvis dette sprogforslag" msgid "Deepfake adult content" msgstr "Deepfake voksenindhold" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Standard" @@ -3894,7 +3855,7 @@ msgstr "Slet min konto" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Slet opslag" @@ -3988,7 +3949,7 @@ msgstr "Dialog: Tilpas, hvem der kan interagere med dette opslag." msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Dรฆmpet" @@ -4002,7 +3963,7 @@ msgstr "Deaktiver" msgid "Disable 2FA" msgstr "Deaktiver 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Deaktiver undertekster" @@ -4045,9 +4006,9 @@ msgstr "Deaktiveret" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Kasser" msgid "Discard changes?" msgstr "Deaktiver รฆndringer?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Kasser udkast?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Kasser opslag?" @@ -4079,6 +4040,10 @@ msgstr "Frakobl Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Anmod apps om ikke at vise min konto til udloggede brugere" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Anmod apps om ikke at vise min konto til udloggede brugere" msgid "Discover new custom feeds" msgstr "Find nye specialbyggede feeds" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Opdag nye feeds" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Find nye feeds" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Luk" @@ -4103,28 +4064,28 @@ msgstr "Luk" msgid "Dismiss banner" msgstr "Fjern banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Luk fejlbesked" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Luk velkomstforlรธb" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Luk interesser" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Fjern banner om livebegivenheder" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Luk denne sektion" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Fjern dette forslag" @@ -4142,7 +4103,7 @@ msgstr "Vis stรธrre alt-tekst-etiketter" msgid "Display name" msgstr "Profilnavn" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Glem alt om trolls og clickbait. Find rigtige mennesker og samtaler, der giver mening." @@ -4205,8 +4166,8 @@ msgstr "Bare rolig! Alle eksisterende beskeder og indstillinger er gemt og vi bl #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Bare rolig! Alle eksisterende beskeder og indstillinger er gemt og vi bl msgid "Done" msgstr "Udfรธrt" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Tryk dobbelt eller langt pรฅ beskeden for at tilfรธje en reaktion" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tryk dobbelt for at lukke dialogen" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Tryk dobbelt for at like" @@ -4288,7 +4249,7 @@ msgstr "Varighed:" #: src/features/inviteFriends/components/ThemePicker.tsx:31 msgid "Dusk" -msgstr "Aften" +msgstr "Skumring" #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" @@ -4328,6 +4289,7 @@ msgstr "Spiseforstyrrelser" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Rediger billede" msgid "Edit interaction settings" msgstr "Rediger interaktionsindstillinger" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Rediger interesser" @@ -4397,7 +4359,7 @@ msgstr "Rediger livetilstand" msgid "Edit moderation list" msgstr "Rediger moderationsliste" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Rediger mine feeds" @@ -4406,6 +4368,11 @@ msgstr "Rediger mine feeds" msgid "Edit name" msgstr "Rediger navn" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Rediger personer" @@ -4444,7 +4411,7 @@ msgstr "Rediger brugerliste" msgid "Edit who can reply" msgstr "Rediger, hvem der kan svare" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Rediger din startpakke" @@ -4500,8 +4467,8 @@ msgstr "HTML-kode til indlejring" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Indlejr opslag" @@ -4509,7 +4476,7 @@ msgstr "Indlejr opslag" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Indlejr dette opslag pรฅ dit website. Kopier blot fรธlgende kodestump og indsรฆt den i HTML-koden pรฅ dit website." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Indlejret videoafspiller" @@ -4531,9 +4498,9 @@ msgstr "Aktiver voksenindhold" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Aktiver betafunktioner" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Aktiver undertekster" @@ -4550,12 +4517,13 @@ msgstr "Aktiver eksterne medier" msgid "Enable media players for" msgstr "Aktiver medieafspillere for" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Aktiver notifikationer for en konto ved at besรธge dens profil og trykke pรฅ <0>klokkeikonet <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Aktiver push-notifikationer" @@ -4581,7 +4549,7 @@ msgstr "Aktiver populรฆre videoer i dit Discover-feed" msgid "Enabled" msgstr "Aktiveret" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Slut pรฅ feed" @@ -4608,7 +4576,7 @@ msgstr "Indtast et ord eller tag" msgid "Enter code" msgstr "Indtast kode" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "ร…bn i fuld skรฆrm" @@ -4650,11 +4618,11 @@ msgstr "Indtsat dit brugernavn og din adgangskode" msgid "Enters full screen" msgstr "ร…bner i fuld skรฆrm" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Underholdning" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Fejl" @@ -4684,7 +4652,7 @@ msgstr "En fejl opstod under lagring af fil" msgid "Error receiving captcha response." msgstr "En fejl opstod under modtagelse af opgavelรธsning" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Fejl: {error}" @@ -4696,8 +4664,8 @@ msgstr "Alle kan svare" msgid "Everybody can reply to this post." msgstr "Alle kan besvare dette opslag." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Alle" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Alle" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Alt andet" @@ -4728,7 +4696,7 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:86 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:92 msgid "Exclude" -msgstr "" +msgstr "Ekskluder" #: src/components/dialogs/MutedWords.tsx:320 msgid "Exclude users you follow" @@ -4738,7 +4706,7 @@ msgstr "Udelad brugere, du fรธlger" msgid "Excludes users you follow" msgstr "Anvendes ikke pรฅ brugere, du fรธlger" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Forlad fuld skรฆrm" @@ -4755,11 +4723,11 @@ msgstr "Udvid brugerliste" msgid "Expand or collapse the full post you are replying to" msgstr "Udvid eller sammenklap det fulde opslag, du besvarer" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Udvid opslagets tekst" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Udvider eller sammenklapper opslagets tekst" @@ -4802,15 +4770,15 @@ msgstr "Voldsomme eller stรธdende medier." msgid "Explicit sexual images." msgstr "Pornografiske billeder." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Udforsk" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Udforsk appen," @@ -4844,7 +4812,7 @@ msgstr "Eksterne medier" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Afspilning af medier fra eksterne websites muliggรธr indsamling af oplysninger om dig og din enhed. Der udveksles ingen oplysninger, fรธr du starter afspilningen." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Indstillinger for eksterne medier" @@ -4886,7 +4854,7 @@ msgstr "ร†ndring af handle fejlede. Prรธv igen." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Kunne ikke kopiere link" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Kunne ikke forlade gruppechat" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Kunne ikke indlรฆse samtaler" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Kunne ikke indlรฆse feeds" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Indlรฆsning af indstillinger for feeds fejlede" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Kunne ikke indlรฆse notifikationsindstillinger." @@ -5012,14 +4981,14 @@ msgstr "Kunne ikke indlรฆse indstilling." msgid "Failed to load profiles" msgstr "Kunne ikke indlรฆse profiler" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Indlรฆsning af foreslรฅede feeds fejlede" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Indlรฆsning af foreslรฅede konti fejlede" @@ -5027,12 +4996,12 @@ msgstr "Indlรฆsning af foreslรฅede konti fejlede" msgid "Failed to lock group chat" msgstr "Kunne ikke lรฅse gruppechat" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Kunne ikke markere alle chats som lรฆst" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "Kunne ikke trรฆkke din anmodning tilbage. Prรธv igen." msgid "Failed to resolve location. Please try again." msgstr "Kunne ikke bestemme din lokalitet. Prรธv igen senere." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Kunne ikke gemme kladde" @@ -5191,7 +5160,7 @@ msgstr "Falsk konto eller bot" msgid "False information about elections" msgstr "Misinformation om valg" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5181,7 @@ msgstr "Feedskaber" msgid "Feed identifier" msgstr "Feedidentifikator" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Feedmenu" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback blev sendt feedets ejer" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds opdateret!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds, du mรฅske kan lide." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Hent opdatering" @@ -5273,34 +5238,22 @@ msgstr "Hent opdatering" msgid "File saved successfully!" msgstr "Fil blev gemt!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtre fra feeds" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtrer efter sprog" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrer efter sprog (pt. {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Begrรฆns, hvem der kan modtage notifikationer om din aktivitet" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Begrรฆns, hvem du kan modtage notifikationer fra" @@ -5318,7 +5271,7 @@ msgstr "Begrรฆns, hvem du kan modtage notifikationer fra" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 msgctxt "search" msgid "Filters" -msgstr "" +msgstr "Filtre" #: src/screens/Onboarding/StepFinished/index.tsx:335 msgid "Finalizing" @@ -5352,8 +5305,8 @@ msgstr "Find konti, du kan fรธlge" msgid "Find and invite friends" msgstr "Find og inviter venner" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Find kontakter" @@ -5387,7 +5340,7 @@ msgstr "Find dine venner" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Find dine venner pรฅ Bluesky ved at bekrรฆfte dit telefonnummer og sammenligne med dine kontakter. Vi passer pรฅ dine oplysninger, og du har selv kontrol over dem. <0>Lรฆs mere" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Find de rigtige mennesker" @@ -5429,7 +5382,7 @@ msgstr "Fokuser sรธgefeltet" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Fรธlg {0}" msgid "Follow {displayName}" msgstr "Fรธlg {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Fรธlg {handle}" @@ -5453,11 +5406,11 @@ msgstr "Fรธlg {handle}" msgid "Follow 10 accounts" msgstr "Fรธlg 10 konti" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Fรธlg 10 personer for at komme i gang" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Fรธlg 7 konti" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Fรธlgere kan deltage" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Fรธlgere af @{0}, som du mรฅske kender" @@ -5544,7 +5497,7 @@ msgstr "Fรธlgere, du kender" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Fรธlger {0}" msgid "Following {displayName}" msgstr "Fรธlger {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Fรธlger {handle}" @@ -5578,21 +5531,21 @@ msgstr "Fรธlger {handle}" msgid "Following feed preferences" msgstr "Indstillinger for fรธlgerfeed" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Indstillinger for fรธlgerfeed" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Fรธlger dig" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Skrifttype" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tekststรธrrelse" @@ -5612,13 +5565,13 @@ msgstr "Af sikkerhedsgrunde sender vi dig en en bekrรฆftelseskode til din e-mail msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Af sikkerhedsgrunde vil du ikke fรฅ dette vist denne igen. Hvis du mister denne appadgangskode, bliver du nรธdt til at oprette en ny." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "For den bedste oplevelse anbefaler vi at bruge temaskrifttypen." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Til dig" @@ -5628,7 +5581,7 @@ msgstr "Til dig" msgid "Forever" msgstr "Indtil videre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Ikke mere stรธj" @@ -5647,18 +5600,18 @@ msgstr "Glemt adgangskode?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Fire beskedbobler i en gruppechat. Fรธrste besked: \"Har du hรธrt det sidste nye? Bluesky har nu gruppechats!\" Anden besked: \"Fedt!\" Tredje besked: \"Vildt, 50 personer i รฉn chat!\" Fjerde besked: \"Du kan ogsรฅ sende invitationslinks!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Slip dit feed fri" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Fra" #: src/screens/Hashtag.tsx:123 msgid "From {sanitizedAuthor}" -msgstr "" +msgstr "Fra {sanitizedAuthor}" #: src/screens/Hashtag.tsx:124 msgid "From @{sanitizedAuthor}" @@ -5672,9 +5625,9 @@ msgstr "Fra <0/>" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:30 msgid "From these people" -msgstr "" +msgstr "Fra disse personer" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generer en startpakke" @@ -5718,59 +5671,59 @@ msgstr "" msgid "Get help" msgstr "Fรฅ hjรฆlp" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Fรฅ notifikationer om startpakker, bekrรฆftelse og รธvrig aktivitet." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Fรฅ notifikationer, nรฅr nogen fรธlger dig." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Fรฅ notifikationer, nรฅr nogen liker dine opslag." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Fรฅ notifikationer, nรฅr nogen liker dine videredelinger." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Fรฅ notifikationer, nรฅr nogen nรฆvner dig." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Fรฅ notifikationer, nรฅr nogen citerer dine opslag." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Fรฅ notifikationer, nรฅr nogen besvarer dine opslag." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Fรฅ notifikationer, nรฅr nogen videredeler dine opslag." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Fรฅ notifikationer, nรฅr nogen deler dine videredelinger." #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:33 msgid "Get notifications when people send you message requests." -msgstr "" +msgstr "Fรฅ notifikationer, nรฅr nogen sender dig beskedanmodninger." #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:23 msgid "Get notifications when people send you messages." -msgstr "" - -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Fรฅ notifikationer, nรฅr der er aktivitet pรฅ de opslag, du abonnerer pรฅ." +msgstr "Fรฅ notifikationer, nรฅr nogen sender dig beskeder." #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Bliv notificeret om nye opslag" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Bliv notificeret om nye opslag fra {name}" @@ -5799,11 +5752,11 @@ msgstr "Kom i gang" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF uploadet" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Sรฆt ansigt pรฅ din profil" @@ -5813,20 +5766,20 @@ msgstr "Forherligelse af vold" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,9 +5829,9 @@ msgid "Go live for" msgstr "Gรฅ live i" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" -msgstr "" +msgstr "Gรฅ til {0}s profil" #: src/view/com/notifications/NotificationFeedItem.tsx:256 msgid "Go to {firstAuthorName}'s profile" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Gruppechatnavn opdateret" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Gruppechatindstillinger" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Gruppechats kan hรธjst have {0, plural, one {}other {# deltagere}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Gruppe er lรฅst" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Gruppenavn" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Gruppenavnet er for langt. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {}other {Den maksimale lรฆngde er # tegn.}}" @@ -6077,7 +6031,7 @@ msgstr "Skadelige eller risikable aktiviteter" msgid "Harming or endangering minors" msgstr "Udsรฆttelse af mindreรฅrige for skade eller fare" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6052,7 @@ msgstr "Har du en kode? <0>Klik her." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Er din lokalitet forkert? <0>Tryk her for at opdatere din lokalitet med GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Oplever du problemer?" @@ -6114,7 +6068,7 @@ msgstr "Gemmes af Bluesky i 7 dage for at forhindre misbrug og slettes herefter" msgid "Help" msgstr "Hjรฆlp" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Lad andre vide, at du ikke er en robot, ved at uploade et billede eller oprette en avatar" @@ -6135,12 +6089,12 @@ msgstr "Hallรธj!" msgid "Hi there!" msgstr "Hallรธj!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Skjult" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Skjult af dine moderationsindstillinger." @@ -6148,9 +6102,10 @@ msgstr "Skjult af dine moderationsindstillinger." msgid "Hidden list" msgstr "Skjult liste" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Skjult liste" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Skjul" @@ -6181,7 +6137,7 @@ msgstr "Skjul lister" #: src/screens/Login/LoginForm.tsx:613 msgid "Hide password" -msgstr "" +msgstr "Skjul adgangskode" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 @@ -6198,7 +6154,7 @@ msgstr "Skjul svar for alle" msgid "Hide reply for me" msgstr "Skjul svar for mig" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Skjul dette kort" @@ -6218,16 +6174,18 @@ msgstr "Skjul dette svar?" msgid "Hide translation" msgstr "Skjul oversรฆttelse" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Skjul populรฆre emner" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Skjul populรฆre emner?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Skjul populรฆre videoer?" @@ -6240,7 +6198,7 @@ msgstr "Skjul brugerliste" msgid "Hide verification badges" msgstr "Vis verifikationsskilte" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Skjuler indholdet" @@ -6293,8 +6251,8 @@ msgstr "Hmm, vi kunne ikke indlรฆse moderationstjenesten." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Vent lidt! Vi udruller gradvist adgang til video, og du er stadig i kรธ. Prรธv igen senere!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6315,15 +6273,11 @@ msgstr "Udbyder" #. placeholder {0}: toNiceHostingUrl(state.pdsUrl) #: src/screens/Login/LoginForm.tsx:655 msgid "Hosting provider: {0}" -msgstr "" +msgstr "Udbyder: {0}" #: src/screens/Login/LoginForm.tsx:657 msgid "Hosting provider: Bluesky" -msgstr "" - -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Hot" +msgstr "Udbyder: Bluesky" #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" @@ -6409,6 +6363,7 @@ msgstr "Hvis du opdaterer din e-mailadresse, vil 2FA via e-mail blive deaktivere msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Hvis du vil skifte din adgangskode, sender vi dig en kode til at bekrรฆfte, at dette er din konto." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Hvis du vil begrรฆnse, hvem der kan modtage notifikationer om din egen kontos aktivitet, kan du รฆndre dette under <0>Indstillinger โ†’ Privatliv og sikkerhed." @@ -6548,7 +6503,7 @@ msgstr "I appen, push, alle" msgid "In-app, push, people you follow" msgstr "I appen, push, personer du fรธlger" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Indbakke er tom" @@ -6564,32 +6519,27 @@ msgstr "Tom indbakke!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" -msgstr "" +msgstr "Inkluder" #. placeholder {0}: filter.mode === 'exclude' ? l({message: 'Exclude', comment: 'Advanced search filter'}) : l({message: 'Include', comment: 'Advanced search filter'}) #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:44 msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" -msgstr "" +msgstr "Inkluder opslag og/eller svar (pt.: {currentLabel})" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:305 msgid "Include posts made since this date" -msgstr "" +msgstr "Inkluder opslag oprettet siden denne dato" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:329 msgid "Include posts made until this date" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" +msgstr "Inkluder opslag oprettet indtil denne dato" #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" @@ -6683,7 +6633,7 @@ msgstr "Inviter {name} til at oprette sig pรฅ Bluesky" msgid "Invite code" msgstr "Invitationskode" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Invitationskode ikke accepteret. Tjek at du har indtastet den korrekt og prรธv igen." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Lige nu er der kun dig! Fรธj flere personer til din startpakke ved at sรธge herover." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Job-ID: {0}" @@ -6816,8 +6766,8 @@ msgstr "Deltag i samtalen" msgid "Journalism" msgstr "Journalistik" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Fortsรฆt med at redigere" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "KWS hjemmeside" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Mรฆrkat tilfรธjet af {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Mรฆrkat tilfรธjet af forfatteren." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Mรฆrkater" @@ -6852,7 +6802,7 @@ msgstr "Mรฆrkater tilfรธjet" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Mรฆrkater kan tilknyttes brugere og indhold. De kan bruges til at skjule, advare og kategorisere i netvรฆrket." @@ -6862,9 +6812,9 @@ msgstr "Mรฆrkater pรฅ din konto" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:357 msgid "Language" -msgstr "" +msgstr "Sprog" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Sprogindstillinger" @@ -6874,7 +6824,7 @@ msgstr "Sprogindstillinger" msgid "Languages" msgstr "Sprog" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Stรธrre" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Senest pรฅbegyndt netop nu" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Seneste" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Lรฆs mere" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Lรฆs mere" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "Lรฆs mere om at importere kontakter" msgid "Learn more about self hosting your PDS." msgstr "Lรฆs mere om at hoste din egen PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Lรฆs mere om den moderation, der er anvendt pรฅ dette indhold" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Lรฆs mere om disse รฆndringer og om, hvordan du kan give din mening til kende, i vores blogindlรฆg." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Lรฆs mere om denne advarsel" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Lรฆs mere under <0>kontoindstillinger." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Lรฆs mere." @@ -6993,8 +6943,8 @@ msgstr "Forlad" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Forlader Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Hvis du forlader denne chat, vil den blive lรฅst permanent, og du vil ikke kunne ikke deltage igen." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Forlod gruppechat." @@ -7042,7 +6992,7 @@ msgstr "Forlod gruppechat." msgid "left to go." msgstr "foran dig i kรธen." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lad mig vรฆlge" @@ -7057,7 +7007,7 @@ msgstr "Lad os komme i gang!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Lys" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Lys" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Like" @@ -7076,7 +7026,7 @@ msgstr "Like" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Like ({0, plural, one {# like} other {# likes}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Like 10 opslag" @@ -7085,7 +7035,7 @@ msgstr "Like 10 opslag" msgid "Like 10 posts to train the Discover feed" msgstr "Like 10 opslag for at trรฆne Discover-feedet" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Like dette feed" @@ -7093,8 +7043,8 @@ msgstr "Like dette feed" msgid "Like this labeler" msgstr "Like denne mรฆrkningstjeneste" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Liket af" @@ -7111,27 +7061,45 @@ msgstr "Liket af" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Liket af {0, plural, one {# bruger} other {# brugere}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Liket af {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Liket af {0} og {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Liket af {likeCount, plural, one {# bruger} other {# brugere}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Likes" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Likes af dine videredelinger" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Likes af dette opslag" @@ -7144,7 +7112,7 @@ msgstr "Lineรฆrt" msgid "Link copied to clipboard" msgstr "Link kopieret til udklipsholder" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Liste" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste ikke lรฆngere skjult" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "Livebegivenhed foregรฅr nu: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Livebegivenhed blev skjult" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Livebegivenhed ikke lรฆngere skjult" @@ -7279,12 +7247,12 @@ msgstr "Livefunktion er i beta" msgid "Live link" msgstr "Livelink" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Indlรฆs flere" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Indlรฆs flere foreslรฅede feeds" @@ -7292,8 +7260,8 @@ msgstr "Indlรฆs flere foreslรฅede feeds" msgid "Load new notifications" msgstr "Indlรฆs nye notifikationer" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Lรฅser denne gruppechat" msgid "Locked" msgstr "Lรฅst" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Log" @@ -7387,7 +7355,7 @@ msgstr "Kรฆrligheds-GIFโ€™er" msgid "Make adjustments to email settings for your account" msgstr "Tilpas e-mailindstillinger for din konto" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Opret en for mig" @@ -7411,22 +7379,22 @@ msgstr "Administrer dine skjulte ord og tags" #: src/screens/Login/components/HostingProviderDialog.tsx:173 #: src/screens/Login/components/HostingProviderDialog.tsx:174 msgid "Manual" -msgstr "" +msgstr "Manuelt" #: src/screens/Messages/Inbox.tsx:312 #: src/screens/Messages/Inbox.tsx:318 msgid "Mark all as read" msgstr "Marker alle lรฆst" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marker alle chats som lรฆst" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Marker som lรฆst" msgid "Marked all as read" msgstr "Marker alle som lรฆst" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Markerede alle chats som lรฆst" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Markerede alle anmodninger som lรฆst" @@ -7456,8 +7424,12 @@ msgstr "Markerede alle anmodninger som lรฆst" msgid "Maybe later" msgstr "Mรฅske senere" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Mig" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Medier" @@ -7475,7 +7447,7 @@ msgstr "Medier gemt pรฅ anden enhed" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Medier, der kan virke stรธdende eller upassende for visse personer." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Medlem fjernet fra gruppechat." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "omtalte brugere" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Omtaler" @@ -7502,7 +7474,7 @@ msgstr "Omtaler" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:37 msgid "Mentions of these people" -msgstr "" +msgstr "Omtaler af disse personer" #: src/components/Menu/index.tsx:119 msgid "Menu" @@ -7516,7 +7488,7 @@ msgstr "Send besked" #: src/screens/Messages/components/MessageComposer.tsx:255 msgctxt "description" msgid "Message" -msgstr "" +msgstr "Besked" #. placeholder {0}: profile.handle #: src/components/dms/MessageProfileButton.tsx:99 @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Besked slettet" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Besked kunne ikke sendes." @@ -7563,15 +7535,15 @@ msgstr "Besked for lang ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Beskedindstillinger" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Beskeder" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Beskeder fra denne person er skjult, fordi du er blokeret." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Beskeder fra denne person er skjult, fordi du har blokeret vedkommende." @@ -7592,7 +7564,7 @@ msgstr "Misvisende" msgid "Missing media" msgstr "Medier mangler" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderation" @@ -7636,7 +7608,7 @@ msgstr "Moderationsliste opdateret" msgid "Moderation lists" msgstr "Moderationslister" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderationslister" @@ -7645,7 +7617,7 @@ msgstr "Moderationslister" msgid "moderation settings" msgstr "moderationsindstillinger" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderationstilstande" @@ -7786,7 +7758,7 @@ msgstr "Skjult" msgid "Muted accounts" msgstr "Skjulte konti" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Skjulte konti" @@ -7867,7 +7839,6 @@ msgstr "Vil du kontakte os om en ophavsretskrรฆnkelse eller et juridisk eller re msgid "Nevermind, create a handle for me" msgstr "Glem det, opret et handle til mig" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nyt" @@ -7893,11 +7864,11 @@ msgstr "{postsCount, plural, one {Nyt} other {Nye}} opslag fra {firstAuthorName} #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Ny chat" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Ny feature" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nye fรธlgere" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Ny gruppechat" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Ny gruppechat" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Ny gruppechat med:" @@ -7966,15 +7937,15 @@ msgstr "Ny liste" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" -msgstr "" +msgstr "Nye beskedanmodninger" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" -msgstr "" +msgstr "Nye beskeder" #: src/screens/Login/SetNewPasswordForm.tsx:130 #: src/screens/Settings/components/ChangePasswordDialog.tsx:204 @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Ny adgangskode" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nyt opslag" @@ -8011,7 +7982,7 @@ msgstr "Ny startpakke" #: src/screens/Login/LoginForm.tsx:569 msgid "New to Bluesky? <0>Sign up" -msgstr "" +msgstr "Ny pรฅ Bluesky? <0>Opret konto" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Nyeste svar fรธrst" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Nyheder" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Nรฆste billede" msgid "Night" msgstr "Nat" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Ingen annoncer, ingen tracking, ingen manipulerende algoritme. Bluesky respekterer din tid og opmรฆrksomhed." @@ -8065,9 +8036,14 @@ msgstr "Ingen annoncer, ingen tracking, ingen manipulerende algoritme. Bluesky r msgid "No app passwords yet" msgstr "Ingen appadgangskoder endnu" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "Ingen betafunktioner i รธjeblikket." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8074,7 @@ msgstr "Intet udlรธbstidspunkt angivet" msgid "No feeds found. Try searching for something else." msgstr "Ingen feeds fundet. Prรธv at sรธge efter noget andet." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Ingen fรธlgere endnu" @@ -8116,9 +8092,15 @@ msgstr "Ingen GIFโ€™er at vise lige nu. Prรธv igen om lidt." msgid "No image" msgstr "Intet billede" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "Intet sprogfilter" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Ingen likes endnu." @@ -8135,7 +8117,12 @@ msgstr "Ingen lister" msgid "No longer following {0}" msgstr "Fรธlger ikke lรฆngere {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "Intet mediefilter" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Ingen medier endnu" @@ -8143,7 +8130,7 @@ msgstr "Ingen medier endnu" msgid "No messages yet" msgstr "Ingen beskeder endnu" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Ingen algoritmer, der prioriterer spam og belรธnner doomscrolling. Find feeds, der arbejder for dig, ikke imod dig." @@ -8180,16 +8167,21 @@ msgstr "Kun forfatteren selv kan citere dette opslag." msgid "No one can send messages" msgstr "Ingen kan skrive beskeder" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "Intet opslagsfilter" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Ingen opslag her" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Ingen opslag endnu" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Ingen citater endnu" @@ -8198,11 +8190,7 @@ msgstr "Ingen citater endnu" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Endnu ingen senest anvendte GIFโ€™er. Vรฆlg en for at se den her." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Ingen svar endnu" @@ -8217,13 +8205,13 @@ msgstr "Intet resultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Ingen resultater" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Ingen resultater for \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "Ingen resultater fundet" msgid "No results found for \"{query}\"" msgstr "Ingen resultater fundet for \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "Ingen resultater fundet for โ€œ<0>{query}โ€." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Ingen resultater." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Ingen startpakker endnu" @@ -8265,7 +8253,7 @@ msgstr "Nej tak" msgid "No translation received from your device." msgstr "Ingen oversรฆttelse modtaget fra din enhed." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Ingen videoopslag endnu" @@ -8278,7 +8266,7 @@ msgstr "Ingen" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ingen har liket dette endnu. Mรฅske skulle du vรฆre den fรธrste!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ingen har citeret dette endnu. Mรฅske skulle du vรฆre den fรธrste!" @@ -8298,10 +8286,14 @@ msgstr "Intime billeder uden samtykke" msgid "Non-sexual Nudity" msgstr "Ikkeseksuel nรธgenhed" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Ingen" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" -msgstr "" +msgstr "Ingen af disse ord" #: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 msgid "Not available on this platform" @@ -8316,8 +8308,8 @@ msgstr "Ikke tilgรฆngelig pรฅ denne pรฅ denne platform." msgid "Not followed by anyone youโ€™re following" msgstr "Fรธlges ikke af nogen du fรธlger" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Ikke fundet" @@ -8333,7 +8325,7 @@ msgstr "Note vedr. deling" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "OBS: Bluesky er et รฅbent og offentligt netvรฆrk. Denne indstilling begrรฆnser kun synligheden af dit indhold her pรฅ Bluesky. Andre apps og websites respekterer ikke nรธdvendigvis denne indstilling. Dit indhold kan stadig blive vist i andre apps og pรฅ andre websites til udloggede brugere." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "OBS: Dette opslag er kun synligt for indloggede brugere." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Endnu ingen gemte" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Notifikationindstillinger" @@ -8353,11 +8345,12 @@ msgstr "Notifikationindstillinger" msgid "Notification sounds" msgstr "Notifikationslyde" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "ร…h nej!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Okay" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Nulstil velkomst" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "En af de valgte modtagere tillader ikke gruppechats." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "En af de valgte modtagere har blokeret dig og kan ikke kontaktes." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "En eller flere GIF'er mangler alt-tekst." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "En eller flere billeder mangler alt-tekst." @@ -8454,11 +8449,11 @@ msgstr "En eller flere af de valgte filer er ikke understรธttet." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "En eller flere af dine valgte filer er for stor. Den maksimale stรธrrelse er {VIDEO_MAX_SIZE_MB}ย MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Et eller flere opslag er for lange til at blive gemt som kladde. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Kladder mรฅ vรฆre pรฅ hรธjst # tegn.} other {Kladder mรฅ vรฆre pรฅ hรธjst # tegn.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Et eller flere videoer mangler alt-tekst." @@ -8471,7 +8466,7 @@ msgstr "Kun {0} kan svare." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Kun {0} af {1} {2, plural, one {billede} other {billeder}} tilfรธjet; grรฆnsen er {MAX_GALLERY_IMAGES}" @@ -8507,19 +8502,23 @@ msgstr "Kun personer {0} fรธlger, som kan deltage." msgid "Only people the chat owner follows can join" msgstr "Kun personer chattens ejer fรธlger, kan deltage" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "Kun opslag" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" -msgstr "" +msgstr "Kun opslag med medier" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:24 msgid "Only posts with videos" -msgstr "" +msgstr "Kun opslag med video" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:24 msgid "Only replies" -msgstr "" +msgstr "Kun svar" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Kun WebVTT-filer (.vtt) er understรธttet" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ups, denne profil eksisterer ikke. Prรธv at skanne en anden." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ups!" @@ -8544,7 +8543,7 @@ msgstr "Ups!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "ร…bn avatarbygger" @@ -8570,21 +8569,22 @@ msgstr "ร…bn samtaleindstillinger" msgid "Open draft" msgstr "ร…bn kladde" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "ร…bn navigation" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "ร…bn emojivรฆlger" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "ร…bn feedinformation" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "ร…bn feedindstillingsmenu" @@ -8627,7 +8627,7 @@ msgstr "ร…bn moderationsfejlsรธgningsside" msgid "Open muted words and tags settings" msgstr "ร…bn indstillinger for skjulte ord og tags" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "ร…bn pakke" @@ -8699,7 +8699,7 @@ msgstr "ร…bner yderligere oplysninger om en loghรฆndelse" msgid "Opens alt text dialog" msgstr "ร…bner alt-tekstdialog" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "ร…bner enhedens kamera" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "ร…bner formular til oprettelse af en ny Bluesky-konto" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "ร…bner formular til at logge ind pรฅ din eksisterende Bluesky-konto" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Adgangskode opdateret!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pause" @@ -8925,12 +8925,12 @@ msgstr "Pause" msgid "Pause GIF" msgstr "Stop afspilning" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Stop afspilning" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personer" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Personer {ownerName} fรธlger, kan anmode om at deltage" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personer som fรธlges af @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personer som @{0} fรธlger" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Personer jeg fรธlger" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Brugere jeg fรธlger, kan anmode om at blive medlem ind" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Personer du fรธlger" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Billeder for voksne." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fastgรธr feed" @@ -9034,7 +9034,7 @@ msgstr "Fastgรธr feed" msgid "Pin to home" msgstr "Fastgรธr til forside" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fastgรธr til forside" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Fastgjort" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Fastgjorde {0} til forside" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Fastgjort til dine feeds" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Afspil" @@ -9076,8 +9076,8 @@ msgstr "Afspil {0}" msgid "Play GIF" msgstr "Afspil GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Afspil video" @@ -9109,11 +9109,11 @@ msgstr "Vรฆlg de mรฆrkater, der beskriver det indhold, du er ved at slรฅ op." 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Vรฆlg dit handle." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Vรฆlg din adgangskode." @@ -9122,7 +9122,7 @@ msgstr "Vรฆlg din adgangskode." 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 "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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Lรธs verifikationsopgaven" @@ -9179,7 +9179,7 @@ msgstr "Indtast den kode, du har modtaget, samt den nye adgangskode, du รธnsker msgid "Please enter the security code we sent to your previous email address." msgstr "Indtast den sikkerhedskode, vi har sendt til din gamle e-mailadresse." -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Indtast din e-mail." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Skriv din besked herunder:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politik" @@ -9269,7 +9269,7 @@ msgstr "Politik" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Slรฅ op" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Opslag" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Lav et fotoopslag" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Lav et videoopslag" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Slรฅ alle op" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Opret alligevel" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Opslag blokeret" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Opslag af @{0}" @@ -9340,7 +9340,7 @@ msgstr "Opslag skjult af dig" msgid "Post interaction settings" msgstr "Interaktionsindstillinger" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Interaktionsindstillinger" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Opslag blev fastgjort" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Opslag gemt" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "Opslagstype" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Opslag blev frigjort" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Opslag" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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 nรฆrmest bliver tomt." @@ -9398,6 +9396,10 @@ msgstr "Opslag kan skjules baseret pรฅ deres tekst, tags eller begge dele. Vi an msgid "Posts hidden" msgstr "Opslag er skjult" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Opslag, svar" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Potentielt misvisende link" @@ -9449,20 +9451,21 @@ msgstr "Privatliv" msgid "Privacy and security" msgstr "Privatliv og sikkerhed" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privatliv og sikkerhed" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Privatlivs- og sikkerhedsindstillinger" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Privatlivspolitik" msgid "Privacy violation of a minor" msgstr "Privatlivskrรฆnkelse af en mindreรฅrig" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Behandler GIF ..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Behandler video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Offentlige lister over brugere, der kan skjules eller blokeres pรฅ รฉn gang." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Udgiv opslag" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Udgiv opslag" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Udgiv svar" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Udgiv svar" @@ -9599,12 +9602,12 @@ msgstr "Citatopslag ikke tilladt" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citater" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citater af dette opslag" @@ -9647,7 +9650,7 @@ msgstr "Genaktiv din konto" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Lรฆs {0, plural, one {yderligere # svar} other {yderligere # svar}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Lรฆs blogindlรฆg" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Lรฆs mindre" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Lรฆs mere" @@ -9687,11 +9690,11 @@ msgstr "Lรฆs Blueskys privatlivspolitik" msgid "Read the Bluesky Terms of Service" msgstr "Lรฆs Blueskys tjenestevilkรฅr" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "ร†gte samtaler." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "ร†gte mennesker." @@ -9721,10 +9724,6 @@ msgstr "Seneste sรธgninger" msgid "Recently used" msgstr "Senest anvendte" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Anbefalet" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Forbind igen" @@ -9748,7 +9747,7 @@ msgstr "Afvis chatanmodning" msgid "Reject join request" msgstr "Afvis anmodning om deltagelse" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Genindlรฆs samtaler" @@ -9766,7 +9765,7 @@ msgstr "Genindlรฆs samtaler" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Fjern" @@ -9790,10 +9789,10 @@ msgstr "Fjern {displayName}?" #: src/screens/Search/components/SearchHistory.tsx:182 msgid "Remove {q}" -msgstr "" +msgstr "Fjern {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Fjern konto" @@ -9839,21 +9838,21 @@ msgstr "Fjern feed?" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:143 msgid "Remove filter" -msgstr "" +msgstr "Fjern filter" #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Fjern fra chat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Fjern fra mine feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Fjern fra kvikadgang?" @@ -9862,7 +9861,7 @@ msgstr "Fjern fra kvikadgang?" msgid "Remove from saved feeds" msgstr "Fjern fra gemte feeds" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Fjern fra gemte opslag" @@ -9880,10 +9879,10 @@ msgstr "Fjern billede" msgid "Remove live status" msgstr "Fjern livetilstand" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" -msgstr "" +msgstr "Fjern medlem" #: src/components/dialogs/MutedWords.tsx:613 msgid "Remove mute word from your list" @@ -9943,7 +9942,7 @@ msgstr "Fjernet fra liste" msgid "Removed from saved feeds" msgstr "Fjernet fra gemte feeds" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Fjernet fra gemte opslag" @@ -9952,7 +9951,7 @@ msgstr "Fjernet fra gemte opslag" msgid "Removed from starter pack" msgstr "Fjernet fra startpakke" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Svarede dig" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Besvaret besked fra {senderName}, tryk for at rulle til hen den" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Besvaret besked, tryk for at rulle hen til den" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Svar" @@ -10037,7 +10037,7 @@ msgstr "Svar til dette opslag er ikke tilladt." msgid "Reply" msgstr "Besvar" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Besvar" @@ -10098,8 +10098,8 @@ msgstr "Anmeld samtale" msgid "Report dialog" msgstr "Anmeld dialog" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Anmeld feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Videredelt af dig" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Videredelinger" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Videredelinger af dette opslag" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Videredeling af dine videredelinger" @@ -10237,7 +10237,7 @@ msgstr "Anmod om kode" #: src/screens/Messages/JoinRequests.tsx:215 msgid "Request rejected." -msgstr "" +msgstr "Anmodning afvist." #: src/components/dms/ChatInvite/Root.tsx:117 #: src/components/intents/GroupChatJoinDialog.tsx:295 @@ -10253,7 +10253,7 @@ msgstr "Anmodet" msgid "Requests" msgstr "Anmodninger" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Prรธver at gentage den seneste handling, der fejlede" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Vender tilbage til forsiden" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Gรฅr til forrige side" @@ -10406,7 +10406,7 @@ msgstr "Gรฅr tilbage til det forrige trin" #: src/screens/Login/LoginForm.tsx:613 msgid "Reveal password" -msgstr "" +msgstr "Vis adgangskode" #. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. #: src/features/gifPicker/components/GifCategoryPills.tsx:75 @@ -10446,27 +10446,27 @@ msgstr "Gem fรธdselsdato" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Gem รฆndringer" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Gem รฆndringer?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Gem kladde" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Gem kladde?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Gem QR-kode" msgid "Save these options for next time" msgstr "Gem disse indstillinger til nรฆste gang" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Fรธj til mine feeds" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Gemte feeds" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Gemte opslag" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Tilfรธjet dine feeds" @@ -10520,8 +10520,8 @@ msgstr "Tilfรธjet dine feeds" msgid "Say hello!" msgstr "Sig hej!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Sig hej til nogen" @@ -10535,7 +10535,7 @@ msgstr "Skan" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Skan QR-kode" @@ -10543,15 +10543,15 @@ msgstr "Skan QR-kode" msgid "Science" msgstr "Videnskab" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Rul til venstre" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Rul til hรธjre" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Rul til den besked, der svares pรฅ" @@ -10564,8 +10564,8 @@ msgstr "Rul til toppen" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Sรธg" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Sรธg i opslag fra @{0}" @@ -10602,21 +10602,21 @@ msgstr "Sรธgning efter \"{interestsDisplayName}\" (aktiv)" #: src/screens/Search/components/AutocompleteResults.tsx:49 msgid "Search for โ€œ{searchText}โ€" -msgstr "" +msgstr "Sรธg efter โ€œ{searchText}โ€" #: src/screens/Search/components/SearchHistory.tsx:136 msgid "Search for {q}" -msgstr "" +msgstr "Sรธg efter {q}" #: src/screens/StarterPack/Wizard/index.tsx:541 msgid "Search for feeds that you want to suggest to others." msgstr "Sรธg efter feeds, du vil foreslรฅ til andre." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Sรธg efter flere konti" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Sรธg efter flere feeds" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Sรธg efter GIF'er" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Sรธgning er i รธjeblikket kun tilgรฆngeligt for indloggede brugere" @@ -10707,17 +10707,22 @@ msgstr "Se #{tag}-indlรฆg af bruger" msgid "See jobs at Bluesky" msgstr "Se jobs hos Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Se flere" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Se flere foreslรฅede profiler" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "Se flere populรฆre emner" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Se foreslรฅede konti" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Spoleskyder. Brug piletaster for at spole frem og tilbage, og mellemrum til at starte/stoppe afspilning." #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Vรฆlg kategorien \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Vรฆlg {0}" msgid "Select {langName}" msgstr "Vรฆlg {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Vรฆlg en farve" @@ -10764,11 +10769,11 @@ msgstr "Vรฆlg konto" msgid "Select an app language" msgstr "Vรฆlg et appsprog" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Vรฆlg en avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Vรฆlg en emoji" @@ -10780,12 +10785,13 @@ msgstr "Vรฆlg en mulighed" msgid "Select app language" msgstr "Vรฆlg appsprog" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Vรฆlg undertekstfil (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Vรฆlg chatten \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Vรฆlg GIF" msgid "Select GIF \"{0}\"" msgstr "Vรฆlg GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Vรฆlg gruppechatmedlemmer" @@ -10864,7 +10870,7 @@ msgstr "Vรฆlg primรฆrt sprog" msgid "Select telephone code" msgstr "Vรฆlg landekode" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Vรฆlg emojien {emojiName} som din avatar" @@ -10945,7 +10951,8 @@ msgstr "Send besked" msgid "Send post to {name}" msgstr "Send opslag til {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Send opslag til..." @@ -10963,12 +10970,12 @@ msgstr "Send beskeden fra din telefon" msgid "Send verification email" msgstr "Send bekrรฆftelses-e-mail" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Send som direkte besked" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Send via chat" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11011,24 +11018,24 @@ msgstr "Angiv din fรธdselsdato herunder, sรฅ du kan fortsรฆtte med at bruge Blue #: src/screens/Login/LoginForm.tsx:352 msgid "set your hosting provider manually" -msgstr "" +msgstr "angiv din udbyder manuelt" #: src/screens/Login/LoginForm.tsx:486 msgid "Set your hosting provider manually" -msgstr "" +msgstr "Angiv din udbyder manuelt" #: src/screens/Login/ForgotPasswordForm.tsx:104 msgid "Sets email for password reset" msgstr "Angiver e-mail til nulstilling af adgangskode" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Indstillinger" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Indstillinger for aktivitet fra andre" @@ -11036,49 +11043,49 @@ msgstr "Indstillinger for aktivitet fra andre" msgid "Settings for allowing others to be notified of your posts" msgstr "Indstillinger for at tillade andre at blive notificeret om dine opslag" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Notifikationsindstillinger for likes" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Notifikationsindstillinger for omtaler" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Notifikationsindstillinger for nye fรธlgere" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Notifikationsindstillinger for alt andet" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Notifikationsindstillinger for likes af dine videredelinger" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Notifikationsindstillinger for videredeling af dine videredelinger" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Notifikationsindstillinger for citater" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Notifikationsindstillinger for svar" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Notifikationsindstillinger for videredelinger" @@ -11109,14 +11116,14 @@ msgstr "Del" #: src/ageAssurance/useVerificationFlow.ts:62 msgid "Share age range" -msgstr "" +msgstr "Del aldersgruppe" #: src/view/com/profile/ProfileMenu.tsx:549 msgid "Share anyway" msgstr "Del alligevel" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Del forfatter-DID" @@ -11125,9 +11132,9 @@ msgstr "Del forfatter-DID" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Del feedback" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,29 +11161,29 @@ msgstr "Del link-dialog" msgid "Share my profile" msgstr "Del min profil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Del opslagets at://-URI" #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:141 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:156 msgid "Share Profile" -msgstr "" +msgstr "Del profil" #: src/components/StarterPack/ShareDialog.tsx:129 #: src/components/StarterPack/ShareDialog.tsx:139 msgid "Share QR code" msgstr "Del QR-kode" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Del dette feed" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" -msgstr "" +msgstr "Del denne sรธgning" #: src/screens/StarterPack/StarterPackScreen.tsx:440 msgid "Share this starter pack" @@ -11186,8 +11193,8 @@ msgstr "Del denne startpakke" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Del denne startpakke og hjรฆlp andre med at blive en del af fรฆllesskabet pรฅ Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,9 +11210,9 @@ msgstr "Del dine kontakter for at finde venner" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughtsโ€ฆ" -msgstr "" +msgstr "Del dine tanker โ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Test af delte indstillinger" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Vis" msgid "Show alt text" msgstr "Vis alt-tekst" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Vis alligevel" @@ -11274,8 +11281,8 @@ msgstr "Vis liste alligevel" msgid "Show lists of users to select from" msgstr "Vis liste over brugere at vรฆlge fra" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Vis mere" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Vis advarsel og filtrer fra feeds" msgid "Show when youโ€™re live" msgstr "Vis, nรฅr nu er live" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Viser, hvornรฅr dette opslag blev oprettet" @@ -11341,15 +11348,15 @@ msgstr "Viser, hvornรฅr dette opslag blev oprettet" msgid "Shows other accounts you can switch to" msgstr "Viser andre konti, du kan skifte til" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Viser indholdet" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Viser indholdet" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11379,7 +11386,7 @@ msgstr "Log ind som {0}" #: src/screens/Login/ChooseAccountForm.tsx:84 msgid "Sign in asโ€ฆ" -msgstr "" +msgstr "Log ind som โ€ฆ" #: src/screens/Deactivated.tsx:195 #: src/screens/Deactivated.tsx:201 @@ -11434,9 +11441,9 @@ msgstr "Log ud?" #: src/screens/Login/LoginForm.tsx:572 msgid "Sign up" -msgstr "" +msgstr "Opret konto" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Indlogning krรฆvet" @@ -11450,7 +11457,7 @@ msgstr "Logget ind som @{0}" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:299 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:302 msgid "Since" -msgstr "" +msgstr "Siden" #: src/components/contacts/screens/PhoneInput.tsx:163 #: src/components/contacts/screens/VerifyNumber.tsx:205 @@ -11469,7 +11476,7 @@ msgstr "Spring over" msgid "Skip contact sharing and continue to the app" msgstr "Spring kontaktdeling over og fortsรฆt til appen" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Spring tomme opslag over?" @@ -11487,7 +11494,7 @@ msgstr "Spring til nรฆste trin" msgid "slide" msgstr "swipe" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Mindre" @@ -11499,7 +11506,7 @@ msgstr "Udsรฆtter pรฅmindelen" msgid "So many thoughts, you should post one" msgstr "Sรฅ mange idรฉer, du burde slippe fri" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Sociale medier pรฅ dine prรฆmisser." @@ -11520,7 +11527,7 @@ msgstr "Nogle af moderationstjenesterne i din liste er ikke lรฆngere tilgรฆngeli msgid "Some of your verifications are invalid." msgstr "Nogle af dine verifikationer er ugyldige." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Nogle andre feeds, du mรฅske kan lide" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Et medlem forlod gruppen" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Nogen reagerede med {0}" @@ -11554,9 +11561,9 @@ msgstr "Nogen reagerede med {0}" msgid "Someone reacted {0} to {target}" msgstr "Nogen reagerede med {0} pรฅ {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" -msgstr "" +msgstr "Nogen svarede" #: src/components/dms/getSystemMessageInfo.ts:60 msgid "Someone was added" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Noget gik galt, prรธv igen" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Noget gik galt. Prรธv igen om lidt." msgid "Something went wrong. Please try again." msgstr "Noget gik galt. Prรธv igen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Noget galt? Fortรฆl os om det." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam, snyd eller bedrag" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "Start en samtale, og den vil blive vist her." msgid "Start a group chat" msgstr "Start en gruppechat" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Start en ny chat" @@ -11682,17 +11689,17 @@ msgstr "Kom i gang med at tilfรธje personer" msgid "Start adding people!" msgstr "Kom i gang med at tilfรธje personer!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Start chat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Start chat med {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpakke" @@ -11715,12 +11722,16 @@ msgstr "Startpakke af dig" msgid "Starter pack is invalid" msgstr "Startpakke er ugyldig" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Startpakker" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startpakker" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Startpakker lader dig let dele dine foretrukne feeds og personer med dine venner." @@ -11728,7 +11739,7 @@ msgstr "Startpakker lader dig let dele dine foretrukne feeds og personer med din msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Startpakker lader dig dele dine foretrukne feeds og konto med dine venner." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Startpakker lader dig dele dine foretrukne feeds og konto med dine venner." @@ -11742,7 +11753,7 @@ msgstr "Statusside" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Trin {0} af {1}" @@ -11754,7 +11765,7 @@ msgstr "Lager tรธmt. Genstart appen nu." msgid "Stored as part of a secure code for matching with others" msgstr "Gemt som del af en tjeksum for match med andre" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11787,7 +11798,7 @@ msgstr "Afsend klage" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Indsend feedback" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Abonner pรฅ {publicationTitle} via {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonner pรฅ @{0} for at bruge disse labels:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Verificering lykkedes" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Foreslรฅet" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Foreslรฅede konti" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Foreslรฅet til dig" @@ -11871,7 +11882,7 @@ msgstr "Seksuelle undertoner" #: src/features/inviteFriends/components/ThemePicker.tsx:29 msgid "Sunlight" -msgstr "" +msgstr "Solskin" #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 msgctxt "Name of app icon variant" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Solnedgang" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Denne funktion er endnu ikke lanceret i dit land! Kom igen senere." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Spรฆrrede konti kan ikke deltage i en gruppechat." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Spรฆrrede konti kan ikke deltage i en chat." @@ -11921,8 +11934,8 @@ msgstr "Skift til {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "System" @@ -11945,7 +11958,7 @@ msgstr "Tag samtalen privat." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Tryk for at give Bluesky adgang til din GPS-lokalitet. Vi bruger denne oplysning til at styre, hvilket indhold og hvilke funktioner der er tilgรฆngelige i dit omrรฅde." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tryk for flere oplysninger" @@ -11976,7 +11989,7 @@ msgstr "Tryk for at lukke kontekstmenu" msgid "Tap to copy this invite link" msgstr "Tryk for at kopiere denne invitationslink" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tryk for lukke" @@ -12003,7 +12016,7 @@ msgstr "Tryk for at fjerne din reaktion med {0}" msgid "Tap to request access to join this group chat" msgstr "Tryk for at anmode om at deltage i denne gruppechat" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tryk for at prรธve igen" @@ -12016,7 +12029,7 @@ msgstr "Tryk for at vise reaktioner med {0}" msgid "Tap to show all reactions" msgstr "Tryk for at se alle reaktioner" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tryk for at se reaktioner" @@ -12032,7 +12045,7 @@ msgstr "Opgave fuldfรธrt โ€“ 10 fรธlger!" msgid "Task complete - 10 likes!" msgstr "Opgaven er lรธst - 10 likes!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Lรฆr vores algoritme, hvad du kan lide" @@ -12060,7 +12073,7 @@ msgstr "Tjenestevilkรฅr" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Tak for din feedback! Den er sendt videre til feedets ejer." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Tak for din feedback!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "Startpakke ikke fundet." msgid "That username is already taken" msgstr "Det brugernavn er allerede taget" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Det var alt, folkens!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Det var alt" @@ -12216,7 +12229,7 @@ msgstr "Der ser ud til at vรฆre problemer med serveren. Prรธv igen om lidt." msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Startpakken, du prรธver at รฅbne, er ugyldig. Du kan i stedet slette denne startpakke." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Kontekstmenuens emne" @@ -12238,7 +12251,7 @@ msgstr "Bekrรฆftelseskoden, du har oplyst, er ugyldig. Tjek, at du har brugt den msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Godkendelsestjenesten kunne ikke sende en kode til dit telefonnummer. Tjek dit telefonnummer og prรธv igenยท." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "Der opstod en fejl under indlรฆsning af GIFโ€™er. Tjek din forbindelse o msgid "There was a problem with your internet connection, please try again" msgstr "Der er problemer med din internetforbindelse, prรธv igen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Der er problemer med din internetforbindelse, prรธv igen" msgid "There was an issue contacting the server" msgstr "Der kunne ikke skabes forbindelse til serveren" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Der kunne ikke skabes forbindelse til serveren. Tjek din internetforbindelse og prรธv igen." @@ -12283,8 +12296,8 @@ msgstr "Der kunne ikke skabes forbindelse til serveren. Tjek din internetforbind msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Notifikationer kunne ikke indlรฆses. Tryk her for at prรธve igen." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Opslag kunne ikke indlรฆses. Tryk her for at prรธve igen." @@ -12309,7 +12322,7 @@ msgstr "Dine tjenesteindstillinger kunne ikke indlรฆses" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Feed kunne ikke fjernes. Tjek din internetforbindelse og prรธv igen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12368,12 +12381,12 @@ msgstr "Dette er dine standardindstillinger" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:51 msgid "These domains" -msgstr "" +msgstr "Disse domรฆner" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:44 msgid "These hashtags" -msgstr "" +msgstr "Disse hashtags" #: src/screens/Settings/FollowingFeedPreferences.tsx:66 msgid "These settings only apply to the Following feed." @@ -12382,9 +12395,9 @@ msgstr "Disse indstillinger gรฆlder kun dit fรธlgerfeed." #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 msgid "These URLs" -msgstr "" +msgstr "Disse URLโ€™er" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "De ejer denne chat" @@ -12392,7 +12405,7 @@ msgstr "De ejer denne chat" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "De ville ikke lรฆngere kunne deltage, medmindre du inviterer dem igen." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Denne {screenDescription} er blevet flaget:" @@ -12408,7 +12421,7 @@ msgstr "Denne konto er markeret som en bot af dens ejer." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Denne konto er forsรธgt verificeret en eller flere gange, men den er pt. ikke verificeret." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Denne konto har anmodet om, at brugere logger ind for at se profilen." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Dette feed er tomt! Prรธv at fรธlge flere brugere eller juster dine sprogindstillinger." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Dette feed er tomt." @@ -12554,7 +12567,7 @@ msgstr "Denne gruppe er lรฅst af en moderatorhandling vedrรธrende ejeren" msgid "This handle is reserved. Please try a different one." msgstr "Dette handle er reserveret. Prรธv et andet." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Dette billede kunne ikke bruges. Prรธv et andet format som .jpg eller .png." @@ -12596,7 +12609,7 @@ msgstr "Denne mรฆrkat blev sat pรฅ dig." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Denne mรฆrkningstjeneste har ikke oplyst, hvilken mรฆrkater den sรฆtter, og den er muligvis inaktiv." @@ -12621,13 +12634,13 @@ msgstr "Denne liste er tom." msgid "This message is hidden" msgstr "Denne besked er skjult" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Denne besked er skjult, fordi denne bruger blokerer dig." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Denne besked er skjult, fordi du blokerer denne bruger." @@ -12641,7 +12654,7 @@ msgstr "Denne person blokerer dig" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dette opslag er dateret <0>{0}, men det blev fรธrst oprettet pรฅ Bluesky <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Dette opslag er dateret <0>{0}, men det blev fรธrst oprettet pรฅ Blu msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Dette opslag har en ukendt interaktionsindstillinger. Din app trรฆnger mรฅske til at blive opdateret." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Dette opslag er kun synligt for indloggede brugere." @@ -12661,7 +12674,7 @@ msgstr "Dette opslag er blevet slettet af dets forfatter" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Dette opslag vil blive skjult fra feeds og trรฅde. Denne handling kan ikke fortrydes." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Dette opslags forfatter har ikke tilladt citatopslag." @@ -12698,11 +12711,12 @@ msgstr "Det tager normalt kun et รธjeblik." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Denne bruger har ikke et profilnavn og kan derfor ikke verificeres." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Denne bruger har ikke nogen fรธlgere." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Denne bruger har blokeret dig og kan ikke kontaktes." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Denne bruger har blokeret dig. Du kan ikke se kontoens indhold." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Denne bruger har deaktiveret chat og kan ikke kontaktes." @@ -12733,11 +12748,11 @@ msgstr "Denne bruger optrรฆder i listen <0>{0}, som du har skjult." msgid "This user is new here. Press for more info about when they joined." msgstr "Denne bruger er ny her. Tryk for at se, hvornรฅr kontoen blev oprettet." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Denne bruger fรธlger ikke nogen." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Denne video kan ikke afspilles pรฅ din enhed. Din browser eller dit operativsystem mangler muligvis de krรฆvede videocodecs (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Dette vil uigenkaldeligt slette din Bluesky-konto <0>{currentHandle} og alle tilknyttede data. Bemรฆrk at dette ogsรฅ vil pรฅvirke alle andre <1>AT Protocol-tjenester, du benytter med denne konto." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Dette vil fjerne @{0} fra din kvikadgangsliste." @@ -12786,7 +12801,7 @@ msgstr "Indstillinger for trรฅde" msgid "Threaded" msgstr "Trรฅdet" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Trรฅdindstillinger" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "For mange kontakter โ€“ du har overskredet antal kontakter, du kan importere for at finde venner" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Top" @@ -12858,7 +12873,7 @@ msgstr "Top" msgid "Top replies first" msgstr "Mest populรฆre svar fรธrst" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Emne" @@ -12893,7 +12908,9 @@ msgstr "Oversรฆttelse til det samme sprog er ikke tilgรฆngelig pรฅ din enhed." msgid "Tree view" msgstr "Trรฆvisning" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Populรฆre emner" @@ -12902,13 +12919,15 @@ msgstr "Populรฆre emner" msgid "Trending GIFs" msgstr "Populรฆre GIFโ€™er" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Indstillinger for populรฆre emner" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Populรฆre videoer" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,13 +12937,13 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Tillid opstรฅr gennem forbindelser, fรฆllesskaber og delt indhold, sรฅ vi รฅbner nu for <0>autoriserede verifikatorer, dvs. organisationer, som kan verificere brugerkonto." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." -msgstr "" +msgstr "Prรธv med et andet sรธgeord eller fjern nogle filtre." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." -msgstr "" +msgstr "Prรธv med et andet sรธgeord." #: src/features/inviteFriends/InviteScannerScreen.tsx:221 #: src/features/inviteFriends/InviteScannerScreen.tsx:226 @@ -12956,7 +12975,7 @@ msgstr "Tv" #: src/features/inviteFriends/components/ThemePicker.tsx:32 msgid "Twilight" -msgstr "" +msgstr "Tusmรธrke" #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 msgid "Two-factor authentication (2FA)" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Kunne ikke hente anmodninger om deltagelse." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Kunne ikke finde en valgt modtager." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Kunne ikke finde den valgte modtager." @@ -13024,12 +13045,12 @@ msgstr "Utilgรฆngelig" msgid "Unavailable feed information" msgstr "Utilgรฆngelig feedinformation" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Bloker ikke lรฆngere konto?" msgid "Unblock list" msgstr "Bloker ikke lรฆngere liste" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Fรธlg ikke lรฆnger {0}" msgid "Unfollow account" msgstr "Fรธlg ikke lรฆngere konto" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Ophรธrer med at fรธlge brugeren" @@ -13132,7 +13153,7 @@ msgstr "Umรฆrket voksenindhold" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Umรฆrket, krรฆnkende eller ikke-samtykkebaseret voksenindhold" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Fjern like" @@ -13192,7 +13213,7 @@ msgstr "Skjul ikke lรฆngere denne gruppechat" msgid "Unmute thread" msgstr "Skjul ikke lรฆngere trรฅd" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Skjul ikke lรฆngere video" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Frigรธr" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Frigรธr feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Frigรธr fra forside" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Frigรธr moderationsliste" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Frigjorde {0} fra forside" @@ -13258,18 +13279,18 @@ msgstr "Afmeld abonnement pรฅ denne mรฆrkningstjeneste" msgid "Unsubscribed from list" msgstr "Abonnement pรฅ liste afmeldt" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Ikkeunderstรธttet indhold i udklipsholder" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Ikkeunderstรธttet videotype: {mimeType}" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:323 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:326 msgid "Until" -msgstr "" +msgstr "Indtil" #: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 msgid "Up to 50 people" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Opdatering af synlighed for svar fejlede" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Upload et foto i stedet" @@ -13355,7 +13376,7 @@ msgstr "Upload fra filer" msgid "Upload from Library" msgstr "Upload fra bibliotek" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Uploader GIF ..." @@ -13369,7 +13390,7 @@ msgstr "Uploader billeder..." msgid "Uploading link thumbnail..." msgstr "Uploader forhรฅndsvisning af link..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Uploader video..." @@ -13408,7 +13429,7 @@ msgstr "Brug denne sammen med dit handle for at logge ind i en anden app." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Brug din kontos e-mailadresse eller en anden gyldig e-mailadresse, sรฅfremt KWS eller Bluesky har brug for at kontakte dig." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "bruger" @@ -13482,7 +13503,7 @@ msgstr "Brugernavn kan kun indeholde bogstaver (a-z), tal og bindestreger" #: src/screens/Login/LoginForm.tsx:305 msgid "Username or email" -msgstr "" +msgstr "Brugernavn eller e-mail" #: src/screens/Login/LoginForm.tsx:315 msgid "Username or email address" @@ -13510,7 +13531,7 @@ msgstr "Verificering fejlede, prรธv igen." msgid "Verification settings" msgstr "Verifikationsindstillinger" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Verifikationsindstillinger" @@ -13618,34 +13639,34 @@ msgstr "Video" msgid "Video failed to process" msgstr "Videobehandling fejlede" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Videofeed" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Videofeed fra {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video fra {0}. Tryk for at starte eller stoppe afspilning" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Computerspil" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video er sat pรฅ pause" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video afspiller" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video ikke fundet." @@ -13653,7 +13674,7 @@ msgstr "Video ikke fundet." msgid "Video settings" msgstr "Videoindstillinger" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video uploadet" @@ -13662,17 +13683,17 @@ msgstr "Video uploadet" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videoer" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videoer skal vรฆre hรธjst 3 minutter lange." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Vis" @@ -13691,9 +13712,9 @@ msgstr "{0}s profilbillede" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Se {0}s profil" @@ -13724,13 +13745,13 @@ msgstr "Se blogpost for mere information" msgid "View debug entry" msgstr "Se loghรฆndelse" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Lรฆs mere" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Vis hele trรฅden" @@ -13750,18 +13771,18 @@ msgstr "Vis indkommende anmodninger om at deltage i denne gruppechat" msgid "View information about these labels" msgstr "Vis information om disse mรฆrkater" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Se flere" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Se flere populรฆre videoer" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Vis opslag" @@ -13798,15 +13819,15 @@ msgstr "Vis invitationslink for denne gruppechat" msgid "View the labeling service provided by @{0}" msgstr "Vis mรฆrkningstjenesten drevet af @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Se denne brugers verifikationer" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Vis brugere, der likede dette feed" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Se video" @@ -13831,7 +13852,7 @@ msgstr "Vis moderationslister" msgid "View your muted accounts" msgstr "Vis dine skjulte konti" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Se dine verifikationer" @@ -13840,7 +13861,7 @@ msgstr "Se dine verifikationer" msgid "Views full image" msgstr "Viser hele billedet" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Viser videoen i fuldskรฆrmstilstand" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Vi har netvรฆrksproblemer, prรธv igen." #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Vi har netvรฆrksproblemer, prรธv igen" @@ -14043,7 +14064,7 @@ msgstr "Vi har netvรฆrksproblemer, prรธv igen" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Vi lancerer en nyt system til validering pรฅ Bluesky โ€” et tydeligt flueben." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Vi er sรฅ glade for at have dig med!" @@ -14064,13 +14085,15 @@ msgstr "Beklager, men vi kunne ikke indlรฆse denne liste. Hvis problemet varer v msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Beklager, men vi kunne ikke indlรฆse dine skjulte ord. Prรธv igen." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Beklager, men din sรธgning kunne ikke gennemfรธres. Prรธv igen om lidt." @@ -14078,7 +14101,7 @@ msgstr "Beklager, men din sรธgning kunne ikke gennemfรธres. Prรธv igen om lidt." msgid "We're sorry, you cannot access this screen at this time." msgstr "Beklager, men du kan ikke tilgรฅ dette skรฆrmbillede i รธjeblikket." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Beklager! Det opslag, du svarer pรฅ, er blevet slettet." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Hvad sker der?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Hvem kan verificere?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ups!" @@ -14220,21 +14243,21 @@ msgstr "Vil du blokere denne bruger og/eller forlade samtalen?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Vil du gemme dette opslag som kladde, fรธr du ser dine kladder?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Vil du gemme dette opslag som kladde, du kan redigere senere?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Skriv et opslag" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Skriv dit opslag" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Skriv dit svar" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Du tilgรฅr Bluesky fra et omrรฅde, der pรฅlรฆgger os at bekrรฆfte din alder, fรธr vi giver dig adgang til appen." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Du blokerer {0}" @@ -14342,7 +14365,7 @@ msgstr "Du er ikke lรฆngere live" msgid "You are not allowed to upload videos." msgstr "Du har ikke adgang til at uploade videoer." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Du fรธlger endnu ingen" @@ -14362,7 +14385,7 @@ msgstr "Du er verificeret. Du vil miste din verificering, hvis du รฆndrer dit pr msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Du er verificeret. Du vil miste din verifikation, hvis du รฆndrer dit handle. <0>Lรฆs mere." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Du kan รฆndre dine interesser nรฅr som helst under Indhold og medier-indstillinger." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Du kan nu logge ind med din nye adgangskode." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Du kan tilfรธje maks. {MAX_GALLERY_IMAGES, plural, one {}other {# billeder}} pr. opslag" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Du kan kun gemme kladder pรฅ maks. 1000 tegn." @@ -14439,9 +14462,11 @@ msgstr "Du kan lรฆse chathistorikken men ikke sende nye beskeder." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Du kan vรฆlge op til {MAX_GALLERY_IMAGES, plural, one {}other {# billeder}} i alt." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Du kan opdatere dette senere under Indstillinger." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Du kan ikke tilfรธje flere end {EMOJI_REACTION_LIMIT, plural, one {# emojireaktion} other {# emojireaktioner}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Du kan endnu oprette en gruppechat endnu." @@ -14555,7 +14581,7 @@ msgstr "Du har nu bekrรฆftet din e-mailadresse. Du kan lukke denne dialog." msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Du har midlertidigt nรฅet grรฆnsen for videouploads. Prรธv igen senere." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Du har ikke-gemte รฆndringer til denne kladde. Vil du gemme dem?" @@ -14563,7 +14589,7 @@ msgstr "Du har ikke-gemte รฆndringer til denne kladde. Vil du gemme dem?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Du har ikke-gemte รฆndringer. Vil du gemme, fรธr du ser dine kladder?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Du har endnu ikke oprettet en startpakke!" @@ -14614,7 +14640,7 @@ msgstr "Du kan tilfรธje hรธjst {STARTER_PACK_MAX_SIZE, plural, one {}other {{STA msgid "You may only add up to 3 feeds" msgstr "Du mรฅ tilfรธje hรธjst 3 feeds" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Du skal vรฆre chattens ejer for at fjerne et medlem." @@ -14622,7 +14648,7 @@ msgstr "Du skal vรฆre chattens ejer for at fjerne et medlem." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Du skal vรฆre mindst 13 รฅr gammel for at bruge Bluesky. Lรฆs mere i vores <0>tjenestevilkรฅr." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Du skal fรธlge mindst syv andre konti for at oprette en startpakke." @@ -14639,7 +14665,7 @@ msgstr "Du skal give adgang til dit mediebibliotek." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Du skal bekrรฆfte din e-mailadresse, fรธr du kan aktivere 2FA via e-mail." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Du ejer denne chat" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Du vil nok foretrรฆkke at genstarte appen nu." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Du reagerede med {0}" @@ -14667,15 +14693,15 @@ msgstr "Du reagerede med {0} pรฅ {target}" msgid "You recently changed your birthdate" msgstr "Du har for nylig opdateret din fรธdselsdato" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Du svarede" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Du svarede {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Du svarede dig selv" @@ -14715,11 +14741,11 @@ msgstr "Du kan melde dig ind igen uden vรฆre blive inviteret." msgid "You: {message}" msgstr "Dig: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Du kommer til at fรธlge de foreslรฅede brugere og feeds, nรฅr du har afsluttet oprettelsen af din konto!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Du kommer til at fรธlge de foreslรฅede brugere, nรฅr du har afsluttet oprettelsen af din konto!" @@ -14791,7 +14817,7 @@ msgstr "Du er nรฅet slutningen af det aktive indhold." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Du er nรฅet enden af dit feed! Find flere konti, du kan fรธge." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Du har nรฅet det maksimale antal kladder" @@ -14799,7 +14825,7 @@ msgstr "Du har nรฅet det maksimale antal kladder" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Du har nรฅet det maksimalt tilladte antal forespรธrgsler. Prรธv igen senere." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Du har nรฅet din daglige grรฆnse for videouploads (for mange bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Du har nรฅet din daglige grรฆnse for videouploads (for mange videoer)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Du er lรธbet tรธr for videoer at se. Mรฅske er det pรฅ tide at holde en pause?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Din konto" @@ -14835,11 +14861,11 @@ msgstr "Din konto er suspenderet" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Din konto er ikke gammel nok til videoupload. Prรธv igen senere." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Din konto er for ny" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Din konto skal vรฆre mindst 7 dage gammel for at kunne oprette en ny gruppechat." @@ -14896,7 +14922,7 @@ msgstr "Din e-mail" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Din e-mail ser ud til at vรฆre ugyldig." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Dine interesser blev opdateret!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Dine interesser hjรฆlper os med at finde noget, du kan lide!" @@ -14967,11 +14993,11 @@ msgstr "Din adgangskode er nu รฆndret! Fremover skal du bruge din nye adgangskod msgid "Your password must be at least 8 characters long." msgstr "Din adgangskode skal bestรฅ af mindst 8 tegn." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Dit opslag blev sendt" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Dine opslag blev sendt" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Dit foretrukne sprog" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Dit profilbillede" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Dit profilbillede omgivet af koncentriske cirkler af andre brugeres profilbilleder" @@ -14992,7 +15018,7 @@ msgstr "Dit profilbillede omgivet af koncentriske cirkler af andre brugeres prof msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Din profil, dine opslag, feeds og lister vil ikke lรฆngere kunne ses af andre Bluesky-brugere. Du kan genaktivere din konto nรฅr som helst ved at logge ind." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Dit svar blev sendt" @@ -15005,13 +15031,13 @@ msgstr "Din anmeldelse vil blive sendt til <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Dine valgte interesser hjรฆlper os med at vise dig relevant indhold." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Din trรฅd har tomme opslag, som vil blive sprunget over. De resterende opslag vil blive oprettet som en trรฅd." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 msgid "Your username and password will be shared with <0>{host}. If you donโ€™t recognize this provider, double-check your username." -msgstr "" +msgstr "Dit brugernavn og din adgangskode vil blive delt med <0>{host}. Hvis du ikke genkender denne udbyder, skal du dobbelttjek dit brugernavnet." #: src/components/verification/VerificationsDialog.tsx:67 msgid "Your verifications" diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index bcddbd9d86..4d5719bd92 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: German\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorie โ€ž{interestsDisplayName}โ€œ (aktiv)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(blockierte Nachricht ausgeblendet)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(enthรคlt eingebettete Inhalte)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(gelรถschte Nachricht)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(ungรผltiger Chat-Einladungslink)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(Nachricht wurde gesendet, bevor du beigetreten bist)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# Stunde} other {# Stunden}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# Kennzeichnung wurde auf deinen Post angewendet} other {# Kennzeichnungen wurden auf deinen Post angewendet}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# Kennzeichnung wurde angewendet} other {# Kennzeichnungen wurden angewendet}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# Gefรคllt mir} other {# Gefรคllt mir}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# Mitglied} other {# Mitglieder}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# neue Beitrittsanfrage} other {# neue Beitrittsanfrage #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {# Person hat reagiert} other {# Personen haben reagiert}} โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Account)" @@ -251,36 +252,13 @@ msgstr "{0} zum Chat hinzugefรผgt" msgid "{0} and {1} added to chat" msgstr "{0} und {1} zum Chat hinzugefรผgt" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} und {1} gefรคllt das" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} und {others, plural, one {{1} weiteren Person} other {{2} weiteren Personen}} gefรคllt das" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} und {othersLabel} gefรคllt das" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} Folge ich" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} blockiert dich" @@ -324,14 +302,6 @@ msgstr "{0} hat den Chat verlassen" msgid "{0} left the group" msgstr "{0} hat die Gruppe verlassen" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} gefรคllt das" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} von 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} hat mit {1} reagiert" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} und {memberCount, plural, one {# weitere Person} other {# weitere Personen}} wurden zum Chat hinzugefรผgt" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1} und {others, plural, one {{2} weiteren Person} other {{3} weiteren Personen}} gefรคllt das" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1} und {othersLabel} gefรคllt das" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} hat dich verifiziert" msgid "{following} following" msgstr "{following} Folge ich" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, one {Post} other {Posts}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} kann nicht hinzugefรผgt werden" @@ -698,7 +660,7 @@ msgstr "{handle} kann nicht hinzugefรผgt werden" msgid "{handle} can't be messaged" msgstr "{handle} kann nicht angeschrieben werden" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "{handle} kann nicht angeschrieben werden" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# ungelesenes Element} other {# ungeles msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# Kontakt gefunden} other {# Kontakte gefunden}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} weitere Person} other {{1} weitere Personen}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} ist Bluesky vor {timeAgoString} beigetreten" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} ist Bluesky vor {timeAgoString} mit einem Startpaket beigetreten" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {# Zeichen verbleibend} other {# Zeichen verbleibend}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} hat geantwortet" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} hat {originalName} geantwortet" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} hat dir geantwortet" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# Anfrage} other {# Anfragen}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ Anfragen" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "vor {type}h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} ist ein vertrauenswรผrdiger Verifizierer" @@ -842,13 +795,13 @@ msgstr "Verifizierungen von {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {Folge ich} other {Folge ich}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {Zitat} other {Zitate}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {Repost} other {Reposts}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {Speicherung} other {Speicherungen}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {Gefรคllt mir} other {Gefรคllt mir}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> hat dich hinzugefรผgt" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Einloggen<1> oder <2>einen Account erstellen<3> <4>um nach Nachrichten, Sport, Politik und allem anderen zu suchen, was auf Bluesky passiert." @@ -971,7 +924,7 @@ msgstr "30 Tage" msgid "7 days" msgstr "7 Tage" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Eine Sammlung beliebter Feeds, die du auf Bluesky finden kannst, einschlieรŸlich News, Booksky, Game Dev, Blacksky, und Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Ein Netzwerkfehler ist aufgetreten. Bitte รผberprรผfe deine Internetverb #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Ein neuer Code wurde gesendet" msgid "A new form of verification" msgstr "Eine neue Form der Verifizierung" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Eine Antwort auf eine Nachricht, die vor deinem Beitritt gesendet wurde" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Ein Screenshot des Post-Editors mit einem neuen Button โ€žEntwรผrfeโ€œ neben dem Posten-Button, begleitet von einem Feuerwerk in Regenbogenfarben. Darunter steht im Editor (aus dem Englischen รผbersetzt) der Text: โ€žHey, hast du schon gehรถrt? Bluesky hat jetzt Entwรผrfe!!!โ€œ." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Der Absender folgt einem ausgewรคhlten Empfรคnger nicht." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Zugang angefragt! Der Gruppeninhaber wird deine Anfrage prรผfen." msgid "Accessibility" msgstr "Barrierefreiheit" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Barrierefreiheitseinstellungen" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Account durch Liste stummgeschaltet" msgid "Account options" msgstr "Account-Optionen" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Account aus dem Schnellzugriff entfernt" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Accounts mit einem gewellten blauen Hรคkchen <0><1/> kรถnnen andere verifizieren. Diese vertrauenswรผrdigen Verifizierer werden von Bluesky ausgewรคhlt." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Aktivitรคt von anderen" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Aktivitรคtsmitteilungen" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Alt-Text hinzufรผgen (optional)" msgid "Add another account" msgstr "Weiteren Account hinzufรผgen" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Einen weiteren Post hinzufรผgen" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Einen weiteren Post zum Thread hinzufรผgen" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Weiteren Suchfilter hinzufรผgen" @@ -1253,7 +1213,7 @@ msgstr "Automatisierungskennzeichnung zum Account hinzufรผgen" msgid "Add emoji reaction" msgstr "Emoji-Reaktion hinzufรผgen" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Filter hinzufรผgen" @@ -1338,7 +1298,7 @@ msgstr "Fรผge diesen Feed zu deinen Feeds hinzu" msgid "Add to lists" msgstr "Zu Listen hinzufรผgen" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Zu gespeicherten Posts hinzufรผgen" @@ -1400,7 +1360,7 @@ msgstr "Fรผr Erwachsene" msgid "Adult content" msgstr "Inhalte fรผr Erwachsene" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Alle" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Allen Freunden gefolgt!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Alle Sprachen" @@ -1491,11 +1447,6 @@ msgstr "Alle Sprachen werden in deinen Feeds angezeigt." msgid "All of these words" msgstr "Alle diese Wรถrter" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "Alle Posts" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "All deine gespeicherten Feeds an einem Ort." @@ -1560,7 +1511,7 @@ msgstr "Ermรถglicht Zugriff auf Direktnachrichten" msgid "Already have a code?" msgstr "Hast du bereits einen Code?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Hast du bereits einen Account?" @@ -1614,7 +1565,7 @@ msgstr "Eine E-Mail wurde an {0} gesendet. Sie enthรคlt einen Bestรคtigungscode, msgid "An error has occurred" msgstr "Ein Fehler ist aufgetreten" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Ein Fehler ist aufgetreten" @@ -1631,7 +1582,7 @@ msgstr "Beim Abrufen der vorgeschlagenen Accounts ist ein Fehler aufgetreten." msgid "An error occurred while fetching the feed." msgstr "Beim Abrufen des Feeds ist ein Fehler aufgetreten." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Beim Generieren deines Startpakets ist ein Fehler aufgetreten. Mรถchtest du es erneut versuchen?" @@ -1640,11 +1591,11 @@ msgstr "Beim Generieren deines Startpakets ist ein Fehler aufgetreten. Mรถchtest msgid "An error occurred while hiding suggestion. {0}" msgstr "Beim Ausblenden des Vorschlags ist ein Fehler aufgetreten. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Beim Laden des Videos ist ein Fehler aufgetreten. Bitte versuche es spรคter erneut." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Beim Laden des Videos ist ein Fehler aufgetreten. Bitte versuche es erneut." @@ -1684,7 +1635,7 @@ msgstr "Ein Fehler ist aufgetreten. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Eine Illustration, die zeigt, wie Profilbilder von Nutzern aus einem Kontaktbuch in die Bluesky-App รผbertragen werden" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Eine Illustration mehrerer Bluesky-Posts mit Repost-, Gefรคllt-mir- und Kommentar-Symbolen" @@ -1705,17 +1656,15 @@ msgstr "รœber einen Einladungslink kรถnnen Personen diesem Gruppenchat beitreten msgid "An issue not included in these options" msgstr "Ein Problem, das hier nicht aufgelistet ist" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Beim Erstellen des Gruppenchats ist ein Problem aufgetreten. Bitte versuche es erneut." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Beim Starten des Chats ist ein Problem aufgetreten. Bitte versuche es erneut." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Beim ร–ffnen des Chats ist ein Problem aufgetreten" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "Beim Starten des Gruppenchats ist ein Fehler aufgetreten. Bitte versuche es erneut." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "Beliebiges Datum" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Jeder" @@ -1802,7 +1749,7 @@ msgstr "Jeden, der mir folgt" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Jeder, der ihn hat, kann damit nicht mehr beitreten oder eine Beitrittsanfrage stellen. Du kannst jederzeit einen neuen erstellen." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Namen von App-Passwรถrtern mรผssen mindestens 4 Zeichen enthalten" msgid "App passwords" msgstr "App-Passwรถrter" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App-Passwรถrter" @@ -1891,8 +1838,8 @@ msgstr "Einspruch gegen diese Entscheidung" msgid "Appeal this label" msgstr "Diese Kennzeichnung anfechten" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Pull Request anwenden" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archiviert von {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Archivierter Post" @@ -1980,7 +1927,7 @@ msgstr "Bist du sicher, dass du dies von deinen Feeds entfernen mรถchtest?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Mรถchtest du deine Beitrittsanfrage fรผr {0} wirklich zurรผckziehen?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Bist du sicher, dass du diesen Post verwerfen mรถchtest?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "Autor" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Automatisierter Account" @@ -2033,7 +1985,7 @@ msgstr "Automatisch" msgid "Automation label" msgstr "Automatisierungskennzeichnung" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatisierungskennzeichnung" @@ -2050,12 +2002,16 @@ msgstr "Videos und GIFs automatisch abspielen" msgid "Available" msgstr "Verfรผgbar" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "Profilbild-Generator" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Bevor du einen Post erstellen oder antworten kannst, musst du zuerst deine E-Mail verifizieren." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Bevor du ein Startpaket erstellen kannst, musst du zuerst deine E-Mail verifizieren." @@ -2135,10 +2091,10 @@ msgstr "Bevor du Mitteilungen zu den Posts von {name} erhalten kannst, musst du #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2158,24 +2114,30 @@ msgstr "Beginne den Altersverifikationsprozess, indem du die folgenden Felder au #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:99 msgid "Beta Feature" -msgstr "Beta-Feature" +msgstr "Beta-Funktion" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" -msgstr "" +msgstr "Beta-Funktionen" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Beta-Funktionen aktiviert" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Beta-Funktionen kรถnnen instabil sein. Einige ร„nderungen erfordern mรถglicherweise das Neuladen der App." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Beta-Funktionen kรถnnen instabil sein. Einige ร„nderungen erfordern mรถglicherweise einen Neustart der App." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2147,9 @@ msgstr "Geburtsdatum" msgid "Birthday" msgstr "Geburtstag" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Blockiert" msgid "Blocked accounts" msgstr "Blockierte Accounts" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blockierte Accounts" @@ -2282,7 +2244,7 @@ msgstr "Blockierte Accounts kรถnnen nicht in deinen Threads antworten, dich erw msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blockierte Accounts kรถnnen nicht in deinen Threads antworten, dich erwรคhnen oder anderweitig mit dir interagieren. Du wirst ihre Inhalte nicht sehen und sie werden daran gehindert, deine zu sehen." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blockieren hindert diesen Kennzeichnungsdienst nicht daran, Kennzeichnungen zu deinem Account hinzuzufรผgen." @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kann die Echtheit des angegebenen Datums nicht bestรคtigen." @@ -2330,7 +2293,7 @@ msgstr "Bluesky ist ein offenes Netzwerk, bei dem du deinen Hosting-Anbieter aus msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky ist ein offenes Netzwerk, bei dem du deinen eigenen Anbieter auswรคhlen kannst. Wenn du neu hier bist, empfehlen wir dir, bei der Standardoption Bluesky Social zu bleiben." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Mit Freunden ist Bluesky besser!" @@ -2358,7 +2321,7 @@ msgstr "Bluesky Social Nutzungsbedingungen" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky speichert deine Kontakte als verschlรผsselte Daten. Wenn du deine Kontakte entfernst, werden diese Daten sofort gelรถscht." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky wรคhlt eine Reihe von empfohlenen Accounts von Personen in deinem Netzwerk aus." @@ -2403,20 +2366,20 @@ msgstr "Bringe bis zu 50 Freunde in einem Chat zusammen." msgid "Browse custom feeds" msgstr "Benutzerdefinierte Feeds durchsuchen" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Weitere Accounts durchsuchen" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Stรถbere auf der Seite โ€žExploreโ€ in weiteren Feeds" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Weitere Vorschlรคge anzeigen" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Stรถbere auf der Seite โ€žExploreโ€ nach weiteren Vorschlรคgen" @@ -2425,24 +2388,25 @@ msgstr "Stรถbere auf der Seite โ€žExploreโ€ nach weiteren Vorschlรคgen" msgid "Browse other feeds" msgstr "Andere Feeds durchsuchen" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Posts รผber {displayName} durchsuchen" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Posts durchsuchen, die mit {displayName} getaggt sind" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Startpaket {displayName} durchsuchen" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Thema {0} durchsuchen" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Thema {displayName} durchsuchen" @@ -2461,8 +2425,8 @@ msgstr "Button, um zur Startseite zurรผckzukehren" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Von {0}" @@ -2473,9 +2437,9 @@ msgstr "von @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Von <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Mit der Erstellung eines Accounts stimmst du den <0>Nutzungsbedingungen< msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Mit der Erstellung eines Accounts stimmst du den <0>Nutzungsbedingungen zu." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Von dir" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2498,7 @@ msgstr "Kamerazugriff erforderlich" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Kamerazugriff erforderlich" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Reaktivierung abbrechen und ausloggen" msgid "Cancel reply" msgstr "Antwort abbrechen" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Suche abbrechen" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "ร„nderungen am Startpaket werden nach der Erstellung nicht in der Liste รผbernommen. Die Liste ist eine unabhรคngige Kopie." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat stummgeschaltet" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Chat nicht gefunden." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Chat-Optionen" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Chat-Inhaber kรถnnen einen Gruppenchat nicht verlassen." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Der Absender folgt dem Empfรคnger des Chats nicht." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Posteingang fรผr Chat-Anfragen" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Chat-Anfragen" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chat-Einstellungen" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat nicht mehr stummgeschaltet" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2810,7 +2775,7 @@ msgstr "Sieh in <0>{currentEmail} nach einer E-Mail mit dem Bestรคtigungscod #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Schau spรคter noch einmal vorbei!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2802,7 @@ msgstr "Wรคhle eine Methode zur Domain-Verifizierung" msgid "Choose Feeds" msgstr "Feeds wรคhlen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Wรคhle fรผr mich" @@ -2854,7 +2819,7 @@ msgstr "Personen auswรคhlen" msgid "Choose post languages" msgstr "Post-Sprachen auswรคhlen" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Diese Farbe als dein Profilbild verwenden" @@ -2879,7 +2844,7 @@ msgstr "Wรคhle deine eigene Zeitleiste! Feeds von der Community helfen dir, Inha msgid "Choose your password" msgstr "Wรคhle dein Passwort" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Wรคhle deinen Nutzernamen" @@ -2966,7 +2931,7 @@ msgstr "Klicke hier, um den Einladungslink fรผr diesen Gruppenchat anzuzeigen" msgid "Click to open tag menu for {0}" msgstr "Klicken, um das Tag-Menรผ fรผr {0} zu รถffnen" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden" @@ -3003,7 +2968,7 @@ msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden" msgid "Close" msgstr "SchlieรŸen" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Aktiven Dialog schlieรŸen" @@ -3047,7 +3012,7 @@ msgstr "Banner schlieรŸen" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Bildansicht schlieรŸen" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Menรผ schlieรŸen" @@ -3090,7 +3055,7 @@ msgstr "Banner mit eingehenden Anfragen schlieรŸen" msgid "Close this dialog" msgstr "Diesen Dialog schlieรŸen" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Willkommensfenster schlieรŸen" @@ -3098,7 +3063,7 @@ msgstr "Willkommensfenster schlieรŸen" msgid "Closes password update alert" msgstr "SchlieรŸt die Passwort-Update-Benachrichtigung" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "SchlieรŸt den Post-Editor und verwirft den Post-Entwurf" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Farbe" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Farbmodus" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Comics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Community-Richtlinien" @@ -3141,7 +3106,7 @@ msgstr "Community-Richtlinien" msgid "Complete onboarding and start using your account" msgstr "SchlieรŸe das Onboarding ab und nutze deinen Account" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "SchlieรŸe die Herausforderung ab" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Neuen Post verfassen" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Verfasse Posts mit einer Lรคnge von bis zu {0, plural, other {# Zeichen}}" @@ -3160,11 +3125,11 @@ msgstr "Verfasse Posts mit einer Lรคnge von bis zu {0, plural, other {# Zeichen} msgid "Compose reply" msgstr "Antwort verfassen" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIF wird komprimiert..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Video wird komprimiert..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Kontaktiere unser Support-Team" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Support kontaktieren" @@ -3253,7 +3218,7 @@ msgstr "Inhalte und Medien" msgid "Content and media" msgstr "Inhalte und Medien" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Inhalte und Medien" @@ -3265,10 +3230,6 @@ msgstr "Inhalt blockiert" msgid "Content filters" msgstr "Inhaltsfilterung" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Inhalte aus dem gesamten Netzwerk, von denen wir glauben, dass sie dir gefallen kรถnnten." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Inhaltssprachen" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Inhalte, die Selbstverletzung fรถrdern oder darstellen" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Inhaltswarnung" msgid "Content warnings" msgstr "Inhaltswarnungen" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Hintergrund des Kontextmenรผs; klicken, um das Menรผ zu schlieรŸen" @@ -3302,7 +3263,7 @@ msgstr "Hintergrund des Kontextmenรผs; klicken, um das Menรผ zu schlieรŸen" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Thread fortsetzenโ€ฆ" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Weiter zum Gruppennamen" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "Konversation nicht gefunden." msgid "Copied build version to clipboard" msgstr "Die Build-Version wurde in die Zwischenablage kopiert" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Link in die Zwischenablage kopiert" @@ -3376,7 +3337,7 @@ msgstr "Link in die Zwischenablage kopiert" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "App-Passwort kopieren" msgid "Copy at:// URI" msgstr "at://-URI kopieren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "DID des Autors kopieren" @@ -3449,10 +3410,10 @@ msgstr "Link kopieren" msgid "Copy link to list" msgstr "Link zur Liste kopieren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Link zum Post kopieren" @@ -3470,8 +3431,8 @@ msgstr "Link zum Startpaket kopieren" msgid "Copy message text" msgstr "Nachrichtentext kopieren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "at://-URI des Posts kopieren" @@ -3490,7 +3451,7 @@ msgstr "TXT-Eintragswert kopieren" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Urheberrechtsrichtlinie" @@ -3540,11 +3501,11 @@ msgstr "Nicht alle รœbereinstimmungen konnten gefolgt werden. {0}" msgid "Could not leave chat" msgstr "Du konntest den Chat nicht verlassen" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Chat konnte nicht verlassen werden." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Feed konnte nicht geladen werden" @@ -3562,7 +3523,7 @@ msgstr "Profil konnte nicht geladen werden" msgid "Could not mute chat" msgstr "Chat konnte nicht stummgeschaltet werden" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Mitglied konnte nicht entfernt werden." @@ -3606,8 +3567,8 @@ msgstr "Kรผhe Schweine" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Erstellen" @@ -3624,26 +3585,26 @@ msgstr "Eine Liste aus diesem Startpaket erstellen" msgid "Create a QR code for a starter pack" msgstr "QR-Code fรผr ein Startpaket erstellen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Ein Startpaket erstellen" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Startpaket erstellen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Ein Startpaket fรผr mich erstellen" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Account erstellen" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Einen Account erstellen" @@ -3666,15 +3627,15 @@ msgstr "Einen Account erstellen" msgid "Create an account without using this starter pack" msgstr "Stattdessen ohne dieses Startpaket einen Account erstellen" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Stattdessen ein Profilbild erstellen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Ein weiteres erstellen" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Gruppenchat erstellen" @@ -3741,9 +3702,9 @@ msgstr "Kultur" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Aktuelle Beta-Funktionen" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Aktueller Chat" @@ -3770,8 +3731,8 @@ msgstr "Gefรคhrliche Substanzen oder Drogenmissbrauch" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Dunkel" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Dunkel" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Dunkles Farbschema" @@ -3814,7 +3775,7 @@ msgstr "Diesen Sprachvorschlag ablehnen" msgid "Deepfake adult content" msgstr "Deepfake-Inhalte fรผr Erwachsene" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Standard" @@ -3894,7 +3855,7 @@ msgstr "Meinen Account lรถschen" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Post lรถschen" @@ -3988,7 +3949,7 @@ msgstr "Dialog: Anpassen, wer mit diesem Post interagieren kann" msgid "Dialog: Set search filters" msgstr "Dialog: Suchfilter festlegen" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Gedimmt" @@ -4002,7 +3963,7 @@ msgstr "Deaktivieren" msgid "Disable 2FA" msgstr "2FA deaktivieren" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Untertitel deaktivieren" @@ -4045,9 +4006,9 @@ msgstr "Deaktiviert" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Verwerfen" msgid "Discard changes?" msgstr "ร„nderungen verwerfen?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Entwurf verwerfen?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Post verwerfen?" @@ -4079,6 +4040,10 @@ msgstr "Germ DM trennen" msgid "Discourage apps from showing my account to logged-out users" msgstr "Apps daran hindern, ausgeloggten Nutzern meinen Account anzuzeigen" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Feeds entdecken" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Apps daran hindern, ausgeloggten Nutzern meinen Account anzuzeigen" msgid "Discover new custom feeds" msgstr "Entdecke neue benutzerdefinierte Feeds" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Neue Feeds entdecken" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Entdecke neue Feeds" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Verwerfen" @@ -4103,28 +4064,28 @@ msgstr "Verwerfen" msgid "Dismiss banner" msgstr "Banner schlieรŸen" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Fehler verwerfen" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Anleitung zum Einstieg schlieรŸen" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Interessen verwerfen" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Live-Event-Banner schlieรŸen" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Diesen Abschnitt verwerfen" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Diesen Vorschlag verwerfen" @@ -4135,14 +4096,14 @@ msgstr "SchlieรŸt den QR-Scanner" #: src/screens/Settings/AccessibilitySettings.tsx:70 #: src/screens/Settings/AccessibilitySettings.tsx:75 msgid "Display larger alt text badges" -msgstr "GrรถรŸere Alt-Text-Badges zeigen" +msgstr "GrรถรŸere Alternativtext-Kennzeichnungen anzeigen" #: src/screens/Profile/Header/EditProfileDialog.tsx:310 #: src/screens/Profile/Header/EditProfileDialog.tsx:316 msgid "Display name" msgstr "Anzeigename" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Schluss mit Trollen und Clickbait. Finde echte Menschen und Gesprรคche, die dir wichtig sind." @@ -4205,8 +4166,8 @@ msgstr "Keine Sorge! Alle vorhandenen Nachrichten und Einstellungen werden gespe #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Keine Sorge! Alle vorhandenen Nachrichten und Einstellungen werden gespe msgid "Done" msgstr "Fertig" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Doppeltippen oder lange auf die Nachricht drรผcken, um eine Reaktion hinzuzufรผgen" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Doppeltippen, um den Dialog zu schlieรŸen" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Doppelt tippen, um โ€žGefรคllt mirโ€œ zu geben" @@ -4328,6 +4289,7 @@ msgstr "Essstรถrungen" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Bild bearbeiten" msgid "Edit interaction settings" msgstr "Interaktionseinstellungen bearbeiten" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Interessen bearbeiten" @@ -4397,7 +4359,7 @@ msgstr "Live-Status bearbeiten" msgid "Edit moderation list" msgstr "Moderationsliste bearbeiten" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Meine Feeds bearbeiten" @@ -4406,6 +4368,11 @@ msgstr "Meine Feeds bearbeiten" msgid "Edit name" msgstr "Name bearbeiten" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Mitteilungen von {0} bearbeiten" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Personen bearbeiten" @@ -4444,7 +4411,7 @@ msgstr "Nutzerliste bearbeiten" msgid "Edit who can reply" msgstr "Bearbeiten, wer antworten kann" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Dein Startpaket bearbeiten" @@ -4500,8 +4467,8 @@ msgstr "HTML-Code einbetten" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Post einbetten" @@ -4509,7 +4476,7 @@ msgstr "Post einbetten" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Bette diesen Post in deine Website ein. Kopiere einfach den folgenden Code und fรผge ihn in den HTML-Code deiner Website ein." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Eingebetteter Video-Player" @@ -4531,9 +4498,9 @@ msgstr "Inhalte fรผr Erwachsene aktivieren" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Beta-Funktionen aktivieren" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Untertitel aktivieren" @@ -4550,12 +4517,13 @@ msgstr "Externe Medien aktivieren" msgid "Enable media players for" msgstr "Medienplayer aktivieren fรผr" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Aktiviere Mitteilungen fรผr einen Account, indem du dessen Profil aufrufst und auf das <0>Glocken-Symbol <1/> klickst." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Push-Mitteilungen aktivieren" @@ -4581,7 +4549,7 @@ msgstr "Aktiviere angesagte Videos in deinem Discover-Feed" msgid "Enabled" msgstr "Aktiviert" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Ende des Feeds" @@ -4608,7 +4576,7 @@ msgstr "Gib ein Wort oder einen Tag ein" msgid "Enter code" msgstr "Code eingeben" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "In den Vollbildmodus wechseln" @@ -4650,11 +4618,11 @@ msgstr "Gib deinen Nutzernamen und dein Passwort ein" msgid "Enters full screen" msgstr "Vollbildmodus aktivieren" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Unterhaltung" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Fehler" @@ -4684,7 +4652,7 @@ msgstr "Beim Speichern der Datei ist ein Fehler aufgetreten" msgid "Error receiving captcha response." msgstr "Fehler beim Empfang der Captcha-Antwort." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Fehler: {error}" @@ -4696,8 +4664,8 @@ msgstr "Jeder kann antworten" msgid "Everybody can reply to this post." msgstr "Jeder kann auf diesen Post antworten." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Jedem" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Jedem" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Alles andere" @@ -4738,7 +4706,7 @@ msgstr "Nutzer ausschlieรŸen, denen du folgst" msgid "Excludes users you follow" msgstr "Nutzer ausgeschlossen, denen du folgst" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Vollbildmodus beenden" @@ -4755,11 +4723,11 @@ msgstr "Liste der Nutzer erweitern" msgid "Expand or collapse the full post you are replying to" msgstr "Erweitere oder reduziere den gesamten Post, auf den du antwortest" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Text des Posts ausklappen" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Text des Posts erweitern oder einklappen" @@ -4802,15 +4770,15 @@ msgstr "Explizite oder potenziell verstรถrende Medien." msgid "Explicit sexual images." msgstr "Explizite sexuelle Bilder." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Entdecken" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Entdecke die App" @@ -4844,7 +4812,7 @@ msgstr "Externe Medien" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Externe Medien kรถnnen es Websites ermรถglichen, Informationen รผber dich und dein Gerรคt zu sammeln. Es werden keine Informationen gesendet oder angefordert, bis du die Schaltflรคche โ€žAbspielenโ€œ drรผckst." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Externe Medienprรคferenzen" @@ -4886,7 +4854,7 @@ msgstr "Fehler beim ร„ndern des Handles. Bitte versuche es erneut." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Link konnte nicht kopiert werden" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Gruppenchat konnte nicht verlassen werden" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Fehler beim Laden der Konversationen" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Feeds konnten nicht geladen werden" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Fehler beim Laden der Einstellungen fรผr Feeds" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Mitteilungseinstellungen konnten nicht geladen werden." @@ -5012,14 +4981,14 @@ msgstr "Einstellung konnte nicht geladen werden." msgid "Failed to load profiles" msgstr "Profile konnten nicht geladen werden" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Die vorgeschlagenen Feeds konnten nicht geladen werden." -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Die vorgeschlagenen Accounts, denen du folgen solltest, konnten nicht geladen werden" @@ -5027,12 +4996,12 @@ msgstr "Die vorgeschlagenen Accounts, denen du folgen solltest, konnten nicht ge msgid "Failed to lock group chat" msgstr "Gruppenchat konnte nicht gesperrt werden" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Alle Chats konnten nicht als gelesen markiert werden" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "Deine Anfrage konnte nicht zurรผckgezogen werden. Bitte versuche es erne msgid "Failed to resolve location. Please try again." msgstr "Standort konnte nicht ermittelt werden. Bitte versuche es erneut." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Fehler beim Speichern des Entwurfs" @@ -5191,7 +5160,7 @@ msgstr "Fake-Account oder Bot" msgid "False information about elections" msgstr "Falsche Informationen รผber Wahlen" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5181,7 @@ msgstr "Feed-Ersteller" msgid "Feed identifier" msgstr "Feed-Kennzeichen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Feed-Menรผ" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback an Feed-Betreiber gesendet" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds aktualisiert!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds, die dir gefallen kรถnnten." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Update abrufen" @@ -5273,34 +5238,22 @@ msgstr "Update abrufen" msgid "File saved successfully!" msgstr "Datei erfolgreich gespeichert!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Nach Autor filtern" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Nach Autor filtern (aktuell: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Nach Medien filtern" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Nach Medien filtern (aktuell: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Aus Feeds filtern" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Suche nach Sprache filtern" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Suche nach Sprache filtern (derzeit: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "Suche nach Medien filtern (aktuell: {currentLabel})" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "Diese Suche nach {0} filtern" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtere, wer Mitteilungen zu deiner Aktivitรคt erhalten kann" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtere, von wem du Mitteilungen erhalten mรถchtest" @@ -5352,8 +5305,8 @@ msgstr "Accounts zum Folgen finden" msgid "Find and invite friends" msgstr "Freunde finden und einladen" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Kontakte finden" @@ -5387,7 +5340,7 @@ msgstr "Finde deine Freunde" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Finde deine Freunde auf Bluesky, indem du deine Telefonnummer verifizierst und mit deinen Kontakten abgleichst. Wir schรผtzen deine Daten und du entscheidest, wie es weitergeht. <0>Mehr erfahren (auf Englisch)" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Finde deine Leute" @@ -5429,7 +5382,7 @@ msgstr "Suchfeld fokussieren" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "{0} folgen" msgid "Follow {displayName}" msgstr "{displayName} folgen" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle} folgen" @@ -5453,11 +5406,11 @@ msgstr "{handle} folgen" msgid "Follow 10 accounts" msgstr "Folge 10 Accounts" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Folge 10 Personen, um loszulegen" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Folge 7 Accounts" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Follower kรถnnen beitreten" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Follower von @{0}, die du kennst" @@ -5544,7 +5497,7 @@ msgstr "Follower, die du kennst" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,30 +5522,30 @@ msgstr "Du folgst jetzt {0}" msgid "Following {displayName}" msgstr "{displayName} Folge ich" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "{handle} Folge ich" #: src/screens/Settings/ContentAndMediaSettings.tsx:78 #: src/screens/Settings/ContentAndMediaSettings.tsx:81 msgid "Following feed preferences" -msgstr "Following-Feed-Einstellungen" +msgstr "โ€žFolge ichโ€œ-Feed-Einstellungen" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" -msgstr "Following-Feed-Einstellungen" +msgstr "โ€žFolge ichโ€œ-Feed-Einstellungen" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Folgt dir" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Schriftart" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "SchriftgrรถรŸe" @@ -5612,13 +5565,13 @@ msgstr "Aus Sicherheitsgrรผnden mรผssen wir einen Bestรคtigungscode an deine E-M msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Aus Sicherheitsgrรผnden kannst du dies nicht erneut ansehen. Falls du dieses App-Passwort verlierst, musst du ein neues generieren." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Fรผr das beste Erlebnis empfehlen wir, die Schriftart des Themes zu verwenden." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Fรผr dich" @@ -5628,7 +5581,7 @@ msgstr "Fรผr dich" msgid "Forever" msgstr "Dauerhaft" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Vergiss den Lรคrm" @@ -5647,11 +5600,11 @@ msgstr "Passwort vergessen?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Vier Sprechblasen, die einen Gruppenchat darstellen. Erste Nachricht: โ€žHast du schon das Neueste gehรถrt? Bluesky hat jetzt Gruppenchats!โ€œ Zweite Nachricht: โ€žOMG, niemalsโ€œ Dritte Nachricht: โ€žWow, 50 Personen in einem Chat!โ€œ Vierte Nachricht: โ€žDu kannst sogar Einladungslinks versenden!โ€œ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Befreie deinen Feed" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Von" @@ -5674,7 +5627,7 @@ msgstr "Von <0/>" msgid "From these people" msgstr "Von diesen Personen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Ein Startpaket generieren" @@ -5712,45 +5665,45 @@ msgstr "Germ DM wieder verbunden" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features weโ€™re testing." -msgstr "" +msgstr "Erhalte frรผhzeitig Zugriff auf experimentelle Funktionen, die wir derzeit testen." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Hilfe erhalten" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Erhalte Mitteilungen รผber Startpaket-Beitritte, Verifizierungen und andere Aktivitรคten." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Mitteilungen erhalten, wenn dir jemand folgt." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Mitteilungen erhalten, wenn Personen deine Posts mit โ€žGefรคllt mirโ€œ markieren." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Erhalte Mitteilungen, wenn Personen deine Reposts mit โ€žGefรคllt mirโ€œ markieren." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Mitteilungen erhalten, wenn dich jemand erwรคhnt." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Mitteilungen erhalten, wenn jemand deine Posts zitiert." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Mitteilungen erhalten, wenn jemand auf deine Posts antwortet." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Mitteilungen erhalten, wenn jemand deine Posts repostet." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Erhalte Mitteilungen, wenn Personen deine Reposts reposten." @@ -5762,15 +5715,15 @@ msgstr "Erhalte Mitteilungen, wenn dir Personen Nachrichtenanfragen senden." msgid "Get notifications when people send you messages." msgstr "Erhalte Mitteilungen, wenn dir Personen Nachrichten senden." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Erhalte Mitteilungen รผber Aktivitรคten zu Posts, die du abonniert hast." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Erhalte Mitteilungen รผber neue Posts" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Erhalte Mitteilungen รผber Posts und Antworten von Accounts deiner Wahl." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Erhalte Mitteilungen รผber neue Posts von {name}" @@ -5799,11 +5752,11 @@ msgstr "Los geht's" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF hochgeladen" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Gib deinem Profil ein Gesicht" @@ -5813,20 +5766,20 @@ msgstr "Verherrlichung von Gewalt" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Live gehen fรผr" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Zum Profil von {0} gehen" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Name des Gruppenchats aktualisiert" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Gruppenchat-Einstellungen" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Gruppenchats kรถnnen maximal {0, plural, other {# Personen}} umfassen." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Gruppe ist gesperrt" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Gruppenname" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Gruppenname ist zu lang. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {Die maximale Anzahl an Zeichen betrรคgt #.}}" @@ -6077,7 +6031,7 @@ msgstr "Schรคdliche oder riskante Aktivitรคten" msgid "Harming or endangering minors" msgstr "Schรคdigung oder Gefรคhrdung von Minderjรคhrigen" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6052,7 @@ msgstr "Du hast einen Code? <0>Hier klicken." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Haben wir deinen Standort falsch erkannt? <0>Tippe hier, um deinen Standort mit GPS zu aktualisieren." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Hast du Probleme?" @@ -6114,7 +6068,7 @@ msgstr "Von Bluesky 7 Tage lang gespeichert, um Missbrauch zu verhindern, anschl msgid "Help" msgstr "Hilfe" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Hilf anderen zu erkennen, dass du kein Bot bist, indem du ein Bild hochlรคdst oder ein Profilbild erstellst." @@ -6135,12 +6089,12 @@ msgstr "Hey!" msgid "Hi there!" msgstr "Hi!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Ausgeblendet" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Ausgeblendet durch deine Moderationseinstellungen." @@ -6148,9 +6102,10 @@ msgstr "Ausgeblendet durch deine Moderationseinstellungen." msgid "Hidden list" msgstr "Ausgeblendete Liste" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Ausgeblendete Liste" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Ausblenden" @@ -6198,7 +6154,7 @@ msgstr "Antwort fรผr alle ausblenden" msgid "Hide reply for me" msgstr "Antwort fรผr mich ausblenden" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Diese Karte ausblenden" @@ -6218,16 +6174,18 @@ msgstr "Diese Antwort ausblenden?" msgid "Hide translation" msgstr "รœbersetzung ausblenden" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Angesagte Themen ausblenden" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Angesagte Themen ausblenden?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Angesagte Videos ausblenden?" @@ -6240,7 +6198,7 @@ msgstr "Nutzerliste ausblenden" msgid "Hide verification badges" msgstr "Verifizierungsabzeichen ausblenden" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Blendet den Inhalt aus" @@ -6293,8 +6251,8 @@ msgstr "Hm, wir konnten diesen Moderationsdienst nicht laden." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Einen Moment! Wir gewรคhren nach und nach Zugriff auf dieses Video und du bist noch in der Warteschlange. Versuche es in Kรผrze erneut!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "Hosting-Anbieter: {0}" msgid "Hosting provider: Bluesky" msgstr "Hosting-Anbieter: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Beliebt" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "So funktioniert es:" @@ -6409,6 +6363,7 @@ msgstr "Wenn du deine E-Mail aktualisierst, wird E-Mail-2FA (Zwei-Faktor-Authent msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Wenn du dein Passwort รคndern mรถchtest, senden wir dir einen Code, um zu verifizieren, dass dies dein Account ist." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Wenn du einschrรคnken mรถchtest, wer Mitteilungen รผber die Aktivitรคten deines Accounts erhalten kann, kannst du das unter <0>Einstellungen โ†’ Datenschutz und Sicherheit รคndern." @@ -6548,7 +6503,7 @@ msgstr "In-App, Push, alle" msgid "In-app, push, people you follow" msgstr "In-App, Push, Personen, denen du folgst" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Posteingang leer" @@ -6564,7 +6519,6 @@ msgstr "Posteingang leer!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "EinschlieรŸen" @@ -6573,7 +6527,7 @@ msgstr "EinschlieรŸen" msgid "Include or exclude matching posts (currently: {0})" msgstr "Passende Posts einschlieรŸen oder ausschlieรŸen (aktuell: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Posts und/oder Antworten einschlieรŸen (aktuell: {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "Posts ab diesem Datum einschlieรŸen" msgid "Include posts made until this date" msgstr "Posts bis zu diesem Datum einschlieรŸen" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Diese Ergebnisse einschlieรŸen" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Ungรผltiger Nutzername oder Passwort" @@ -6683,7 +6633,7 @@ msgstr "Lade {name} ein, Bluesky beizutreten" msgid "Invite code" msgstr "Einladungscode" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Einladungscode nicht akzeptiert. รœberprรผfe, ob du ihn richtig eingegeben hast und versuche es erneut." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Hier bist gerade nur du! Fรผge mehr Leute zu deinem Startpaket hinzu, indem du oben nach ihnen suchst." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Job-ID: {0}" @@ -6816,8 +6766,8 @@ msgstr "An der Konversation teilnehmen" msgid "Journalism" msgstr "Journalismus" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Weiter bearbeiten" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "KWS-Website" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Von {0} gekennzeichnet." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Vom Autor gekennzeichnet." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Kennzeichnungen" @@ -6852,7 +6802,7 @@ msgstr "Kennzeichnungen hinzugefรผgt" msgid "Labels applied to this post" msgstr "Auf diesen Post angewendete Kennzeichnungen" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Kennzeichnungen sind Anmerkungen zu Nutzern und Inhalten. Sie kรถnnen verwendet werden, um Inhalte auszublenden, zu warnen oder zu kategorisieren." @@ -6864,7 +6814,7 @@ msgstr "Kennzeichnungen auf deinem Account" msgid "Language" msgstr "Sprache" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Spracheinstellungen" @@ -6874,7 +6824,7 @@ msgstr "Spracheinstellungen" msgid "Languages" msgstr "Sprachen" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "GrรถรŸer" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Zuletzt gestartet gerade eben" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Neuste" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Mehr erfahren (auf Englisch)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Mehr erfahren" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Erfahre mehr darรผber, <0>wie du die erweiterte Suche verwendest." @@ -6937,8 +6887,8 @@ msgstr "Erfahre mehr รผber das Importieren von Kontakten (auf Englisch)" msgid "Learn more about self hosting your PDS." msgstr "Erfahre mehr รผber das Selbst-Hosting deiner PDS (auf Englisch)." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Erfahre mehr รผber die Moderation, die auf diesen Inhalt angewendet wurde" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Erfahre mehr รผber diese ร„nderungen und wie du uns deine Meinung mitteilen kannst, indem du unseren Blogpost liest (auf Englisch)." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Erfahre mehr รผber diese Warnung" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Mehr dazu in deinen <0>Account-Einstellungen" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Mehr erfahren." @@ -6993,8 +6943,8 @@ msgstr "Verlassen" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Bluesky verlassen" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Wenn du diesen Chat verlรคsst, wird er dauerhaft gesperrt und du kannst ihm nicht erneut beitreten." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Gruppenchat verlassen." @@ -7042,7 +6992,7 @@ msgstr "Gruppenchat verlassen." msgid "left to go." msgstr "verbleibend." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lass mich wรคhlen" @@ -7057,7 +7007,7 @@ msgstr "Los geht's!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Hell" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Hell" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Gefรคllt mir" @@ -7076,7 +7026,7 @@ msgstr "Gefรคllt mir" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gefรคllt mir ({0, plural, one {# Gefรคllt mir} other {# Gefรคllt mir}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10 Posts mit โ€žGefรคllt mirโ€œ markieren" @@ -7085,7 +7035,7 @@ msgstr "10 Posts mit โ€žGefรคllt mirโ€œ markieren" msgid "Like 10 posts to train the Discover feed" msgstr "Markiere 10 Posts mit โ€žGefรคllt mirโ€œ, um den Discover-Feed zu trainieren" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Diesen Feed mit โ€žGefรคllt mirโ€œ markieren" @@ -7093,8 +7043,8 @@ msgstr "Diesen Feed mit โ€žGefรคllt mirโ€œ markieren" msgid "Like this labeler" msgstr "Diesen Kennzeichner mit โ€žGefรคllt mirโ€œ markieren" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Mit โ€žGefรคllt mirโ€œ markiert von" @@ -7111,27 +7061,45 @@ msgstr "Mit โ€žGefรคllt mirโ€œ markiert von" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Gefรคllt {0, plural, one {# Nutzer} other {# Nutzern}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Mit โ€žGefรคllt mirโ€œ markiert von {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Mit โ€žGefรคllt mirโ€œ markiert von {0} und {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Gefรคllt {likeCount, plural, one {# Nutzer} other {# Nutzern}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Gefรคllt mir" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "โ€žGefรคllt mirโ€œ fรผr deine Reposts" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "โ€žGefรคllt mirโ€œ-Angaben fรผr diesen Post" @@ -7144,7 +7112,7 @@ msgstr "Linear" msgid "Link copied to clipboard" msgstr "Link in die Zwischenablage kopiert" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Liste" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste nicht mehr stummgeschaltet" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "Live-Event findet gerade statt: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Live-Event ausgeblendet" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Live-Event wieder eingeblendet" @@ -7279,12 +7247,12 @@ msgstr "Die Live-Funktion befindet sich in der Beta-Phase" msgid "Live link" msgstr "Live-Link" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Mehr laden" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Weitere empfohlene Feeds laden" @@ -7292,8 +7260,8 @@ msgstr "Weitere empfohlene Feeds laden" msgid "Load new notifications" msgstr "Neue Mitteilungen laden" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Diesen Gruppenchat sperren" msgid "Locked" msgstr "Gesperrt" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Log" @@ -7376,7 +7344,7 @@ msgstr "Sieht aus, als hรคttest du alle deine Feeds abgelรถst. Aber keine Sorge, #: src/screens/Feeds/NoFollowingFeed.tsx:36 msgid "Looks like you're missing a following feed. <0>Click here to add one." -msgstr "Es sieht so aus, als ob du einen Following-Feed vermisst. <0>Klicke hier, um einen hinzuzufรผgen." +msgstr "Es sieht so aus, als hรคttest du keinen โ€žFolge ichโ€œ-Feed. <0>Klicke hier, um einen hinzuzufรผgen." #. Accessibility label for the icon-only pill that filters the GIF picker to GIFs about love/affection. #: src/features/gifPicker/components/GifCategoryPills.tsx:55 @@ -7387,7 +7355,7 @@ msgstr "Liebes-GIFs" msgid "Make adjustments to email settings for your account" msgstr "E-Mail-Einstellungen fรผr deinen Account anpassen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Erstelle eins fรผr mich" @@ -7418,15 +7386,15 @@ msgstr "Manuell" msgid "Mark all as read" msgstr "Alle als gelesen markieren" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Alle Chats als gelesen markieren" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Als gelesen markieren" msgid "Marked all as read" msgstr "Alle als gelesen markiert" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Alle Chats als gelesen markiert" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Alle Anfragen als gelesen markiert" @@ -7456,8 +7424,12 @@ msgstr "Alle Anfragen als gelesen markiert" msgid "Maybe later" msgstr "Vielleicht spรคter" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Ich" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Medien" @@ -7475,7 +7447,7 @@ msgstr "Auf einem anderen Gerรคt gespeicherte Medien" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Medien, die fรผr einige Zielgruppen verstรถrend oder unangemessen sein kรถnnten." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Mitglied aus dem Gruppenchat entfernt." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "erwรคhnte Nutzer" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Erwรคhnungen" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Nachricht gelรถscht" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Nachricht konnte nicht gesendet werden." @@ -7563,15 +7535,15 @@ msgstr "Nachricht ist zu lang ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Nachrichtenoptionen" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Nachrichten" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Nachrichten dieser Person sind ausgeblendet, solange sie dich blockiert." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Nachrichten dieser Person sind ausgeblendet, solange du sie blockierst." @@ -7592,7 +7564,7 @@ msgstr "Irrefรผhrend" msgid "Missing media" msgstr "Fehlende Medien" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderation" @@ -7636,7 +7608,7 @@ msgstr "Moderationsliste aktualisiert" msgid "Moderation lists" msgstr "Moderationslisten" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderationslisten" @@ -7645,7 +7617,7 @@ msgstr "Moderationslisten" msgid "moderation settings" msgstr "Moderationseinstellungen" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderationsstatus" @@ -7786,7 +7758,7 @@ msgstr "Stummgeschaltet" msgid "Muted accounts" msgstr "Stummgeschaltete Accounts" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Stummgeschaltete Accounts" @@ -7867,7 +7839,6 @@ msgstr "Mรถchtest du eine Urheberrechtsverletzung, eine rechtliche Anfrage oder msgid "Nevermind, create a handle for me" msgstr "Egal, erstelle einen Handle fรผr mich" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Neu" @@ -7893,11 +7864,11 @@ msgstr "{postsCount, plural, one {Neuer Post} other {Neue Posts}} von {firstAuth #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Neuer Chat" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Neue Funktion" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Neue Follower" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Neuer Gruppenchat" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Neuer Gruppenchat" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Neuer Gruppenchat mit:" @@ -7966,13 +7937,13 @@ msgstr "Neue Liste" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Neue Nachrichtenanfragen" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Neue Nachrichten" @@ -7982,12 +7953,12 @@ msgstr "Neue Nachrichten" msgid "New password" msgstr "Neues Passwort" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Neuer Post" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Neueste Antworten zuerst" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Aktuelles" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Nรคchstes Bild" msgid "Night" msgstr "Nacht" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Keine Werbung, kein aufdringliches Tracking, keine Engagement-Fallen. Bluesky respektiert deine Zeit und Aufmerksamkeit." @@ -8065,9 +8036,14 @@ msgstr "Keine Werbung, kein aufdringliches Tracking, keine Engagement-Fallen. Bl msgid "No app passwords yet" msgstr "Noch keine App-Passwรถrter" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "Kein Autorenfilter" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "Derzeit sind keine Beta-Funktionen verfรผgbar." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8074,7 @@ msgstr "Kein Ablaufdatum festgelegt" msgid "No feeds found. Try searching for something else." msgstr "Keine Feeds gefunden. Versuche, nach etwas anderem zu suchen." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Noch keine Follower" @@ -8116,9 +8092,15 @@ msgstr "Derzeit gibt es keine GIFs zum Anzeigen. Versuche es gleich noch einmal. msgid "No image" msgstr "Kein Bild" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "Kein Sprachfilter" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Noch keine โ€žGefรคllt mirโ€œ-Angaben" @@ -8135,7 +8117,12 @@ msgstr "Keine Listen" msgid "No longer following {0}" msgstr "Du folgst {0} nicht mehr" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "Kein Medienfilter" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Noch keine Medien" @@ -8143,7 +8130,7 @@ msgstr "Noch keine Medien" msgid "No messages yet" msgstr "Noch keine Nachrichten" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Schluss mit endlosem Doomscrolling und nutzlosen Algorithmen. Entdecke Feeds, die fรผr dich arbeiten, nicht gegen dich." @@ -8180,16 +8167,21 @@ msgstr "Niemand auรŸer dem Autor kann diesen Post zitieren." msgid "No one can send messages" msgstr "Niemand kann Nachrichten senden" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "Kein Post-Filter" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Keine Posts vorhanden" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Noch keine Posts" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Noch keine Zitate" @@ -8198,11 +8190,7 @@ msgstr "Noch keine Zitate" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Noch keine kรผrzlich verwendeten GIFs. Wรคhle eines aus, damit es hier angezeigt wird." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "Keine Antworten" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Noch keine Antworten" @@ -8217,13 +8205,13 @@ msgstr "Kein Ergebnis" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Keine Ergebnisse" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Keine Ergebnisse fรผr โ€ž{0}โ€œ." @@ -8236,23 +8224,23 @@ msgstr "Keine Ergebnisse gefunden" msgid "No results found for \"{query}\"" msgstr "Keine Ergebnisse fรผr โ€ž{query}โ€œ gefunden" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "Keine Ergebnisse fรผr โ€ž<0>{query}โ€œ mit den ausgewรคhlten erweiterten Suchfiltern gefunden." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "Keine Ergebnisse fรผr โ€ž<0>{query}โ€œ gefunden." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Keine Ergebnisse fรผr deine Suchanfrage mit den ausgewรคhlten erweiterten Suchfiltern gefunden." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Keine Ergebnisse." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Noch keine Startpakete" @@ -8265,7 +8253,7 @@ msgstr "Nein danke" msgid "No translation received from your device." msgstr "Keine รœbersetzung vom Gerรคt erhalten." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Noch keine Video-Posts" @@ -8278,7 +8266,7 @@ msgstr "Niemand" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Bisher gefรคllt das niemandem. Vielleicht solltest du der Erste sein!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Niemand hat das bisher zitiert. Vielleicht solltest du der Erste sein!" @@ -8298,6 +8286,10 @@ msgstr "Intime Bilder ohne Einwilligung" msgid "Non-sexual Nudity" msgstr "Nicht-sexuelle Nacktheit" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Keine" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Auf dieser Plattform nicht verfรผgbar." msgid "Not followed by anyone youโ€™re following" msgstr "Gefolgt von niemandem, dem du folgst" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Nicht gefunden" @@ -8333,7 +8325,7 @@ msgstr "Hinweis รผber das Teilen" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Hinweis: Bluesky ist ein offenes und รถffentliches Netzwerk. Diese Einstellung schrรคnkt lediglich die Sichtbarkeit deiner Inhalte in der Bluesky-App und auf der Website ein. Andere Apps respektieren diese Einstellung mรถglicherweise nicht. Deine Inhalte werden ausgeloggten Nutzern mรถglicherweise weiterhin von anderen Apps und Websites angezeigt." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Hinweis: Dieser Post ist nur fรผr eingeloggte Nutzer sichtbar." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Noch nichts gespeichert" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Mitteilungseinstellungen" @@ -8353,11 +8345,12 @@ msgstr "Mitteilungseinstellungen" msgid "Notification sounds" msgstr "Mitteilungstรถne" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Oh nein!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Okay" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Onboarding zurรผcksetzen" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Einer der ausgewรคhlten Empfรคnger erlaubt keine Gruppenchats." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Einer der ausgewรคhlten Empfรคnger hat dich blockiert und kann nicht angeschrieben werden." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Bei einem oder mehreren GIFs fehlen Alt-Texte." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Bei einem oder mehreren Bildern fehlen Alt-Texte." @@ -8454,11 +8449,11 @@ msgstr "Eine oder mehrere deiner ausgewรคhlten Dateien werden nicht unterstรผtzt msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "Eine oder mehrere deiner ausgewรคhlten Dateien sind zu groรŸ. Die maximale GrรถรŸe betrรคgt {VIDEO_MAX_SIZE_MB}ย MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Ein oder mehrere Posts sind zu lang, um als Entwurf gespeichert zu werden. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Die maximale Zeichenzahl betrรคgt # Zeichen.} other {Die maximale Zeichenzahl betrรคgt # Zeichen.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Bei einem oder mehreren Videos fehlen Alt-Texte." @@ -8471,7 +8466,7 @@ msgstr "Nur {0} kann antworten." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Nur {0} von {1} {2, plural, one {Bild} other {Bilder}} hinzugefรผgt; das Limit liegt bei {MAX_GALLERY_IMAGES}" @@ -8507,6 +8502,10 @@ msgstr "Nur Personen, denen {0} folgt, kรถnnen beitreten." msgid "Only people the chat owner follows can join" msgstr "Nur Personen, denen der Chat-Inhaber folgt, kรถnnen beitreten" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "Nur Posts" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "Nur Posts mit Medien" @@ -8519,7 +8518,7 @@ msgstr "Nur Posts mit Videos" msgid "Only replies" msgstr "Nur Antworten" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Es werden nur WebVTT-Dateien (.vtt) unterstรผtzt" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ups, dieses Profil existiert nicht. Versuche, ein anderes zu scannen." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Huch!" @@ -8544,7 +8543,7 @@ msgstr "Huch!" msgid "Open advanced search options" msgstr "Erweiterte Suchoptionen รถffnen" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Profilbild-Editor รถffnen" @@ -8570,21 +8569,22 @@ msgstr "Konversationsoptionen รถffnen" msgid "Open draft" msgstr "Entwurf รถffnen" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Seitenmenรผ รถffnen" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Emoji-Picker รถffnen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Feed-Infobildschirm รถffnen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Feed-Optionsmenรผ รถffnen" @@ -8627,7 +8627,7 @@ msgstr "Moderations-Debugseite รถffnen" msgid "Open muted words and tags settings" msgstr "Einstellungen fรผr stummgeschaltete Wรถrter und Tags รถffnen" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Paket รถffnen" @@ -8699,7 +8699,7 @@ msgstr "ร–ffnet zusรคtzliche Details fรผr einen Debug-Eintrag" msgid "Opens alt text dialog" msgstr "ร–ffnet den Alt-Text-Dialog" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "ร–ffnet die Kamera auf dem Gerรคt" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "ร–ffnet den Ablauf, um einen neuen Bluesky-Account zu erstellen" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "ร–ffnet den Ablauf zum Einloggen bei deinem bestehenden Bluesky-Account" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Passwort aktualisiert!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausieren" @@ -8925,12 +8925,12 @@ msgstr "Pausieren" msgid "Pause GIF" msgstr "GIF pausieren" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Video pausieren" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personen" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Personen, denen {ownerName} folgt, kรถnnen eine Beitrittsanfrage stellen" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personen gefolgt von @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personen, die @{0} folgen" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Personen, denen ich folge" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Personen, denen ich folge, kรถnnen eine Beitrittsanfrage stellen" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Personen, denen du folgst" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Bilder fรผr Erwachsene." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Feed anheften" @@ -9034,7 +9034,7 @@ msgstr "Feed anheften" msgid "Pin to home" msgstr "An die Startseite anheften" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "An Startbildschirm anheften" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Angeheftet" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} an Startseite angepinnt" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "An deine Feeds angepinnt" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Abspielen" @@ -9076,8 +9076,8 @@ msgstr "{0} abspielen" msgid "Play GIF" msgstr "GIF abspielen" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Video abspielen" @@ -9109,11 +9109,11 @@ msgstr "Bitte fรผge alle zutreffenden Inhaltswarnungen fรผr die Medien hinzu, di 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Bitte wรคhle deinen Handle." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Bitte wรคhle dein Passwort." @@ -9122,7 +9122,7 @@ msgstr "Bitte wรคhle dein Passwort." 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 "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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Bitte vervollstรคndige das Verifizierungs-Captcha." @@ -9179,7 +9179,7 @@ msgstr "Bitte gib den erhaltenen Code und das neue Passwort ein, das du verwende msgid "Please enter the security code we sent to your previous email address." msgstr "Bitte gib den Sicherheitscode ein, den wir an deine vorherige E-Mail-Adresse gesendet haben." -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Bitte gib deine E-Mail ein." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Bitte schreibe deine Nachricht unten:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politik" @@ -9269,7 +9269,7 @@ msgstr "Politik" msgid "Porn" msgstr "Pornografie" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Posten" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Foto posten" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Video posten" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Alle posten" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Trotzdem posten" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Post blockiert" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Post von @{0}" @@ -9340,7 +9340,7 @@ msgstr "Post von dir ausgeblendet" msgid "Post interaction settings" msgstr "Post-Interaktionseinstellungen" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Post-Interaktionseinstellungen" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Post angeheftet" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Post gespeichert" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "Post-Typ" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Post gelรถst" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Posts" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "Posts und Antworten" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Posts kรถnnen basierend auf ihrem Text, ihren Tags oder beidem stummgesc msgid "Posts hidden" msgstr "Posts ausgeblendet" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Posts, Antworten" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Mรถglicherweise irrefรผhrender Link" @@ -9449,20 +9451,21 @@ msgstr "Datenschutz" msgid "Privacy and security" msgstr "Datenschutz und Sicherheit" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Datenschutz und Sicherheit" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Datenschutz- und Sicherheitseinstellungen" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Datenschutzerklรคrung" msgid "Privacy violation of a minor" msgstr "Verletzung der Privatsphรคre eines Minderjรคhrigen" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "GIF wird verarbeitet..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Video wird verarbeitet..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "ร–ffentliche, teilbare Listen von Nutzern, die zum Stummschalten oder Blockieren verwendet werden kรถnnen." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Post verรถffentlichen" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Posts verรถffentlichen" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Antworten verรถffentlichen" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Antwort verรถffentlichen" @@ -9599,12 +9602,12 @@ msgstr "Zitieren deaktiviert" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Zitate" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Zitate dieses Posts" @@ -9647,7 +9650,7 @@ msgstr "Reaktiviere deinen Account" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "{0, plural, one {# weitere Antwort} other {# weitere Antworten}} lesen" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Mehr รผber die Verwendung erweiterter Suchfilter lesen" @@ -9657,11 +9660,11 @@ msgstr "Mehr รผber die Verwendung erweiterter Suchfilter lesen" msgid "Read blog post" msgstr "Blogpost lesen (auf Englisch)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Weniger lesen" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Mehr lesen" @@ -9687,11 +9690,11 @@ msgstr "Bluesky-Datenschutzerklรคrung lesen" msgid "Read the Bluesky Terms of Service" msgstr "Bluesky-Nutzungsbedingungen lesen" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Echte Konversationen." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Echte Personen." @@ -9721,10 +9724,6 @@ msgstr "Letzte Suchen" msgid "Recently used" msgstr "Zuletzt verwendet" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Empfohlen" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Erneut verbinden" @@ -9748,7 +9747,7 @@ msgstr "Chat-Anfrage ablehnen" msgid "Reject join request" msgstr "Beitrittsanfrage ablehnen" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Konversationen neu laden" @@ -9766,7 +9765,7 @@ msgstr "Konversationen neu laden" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Entfernen" @@ -9792,8 +9791,8 @@ msgstr "{displayName} entfernen?" msgid "Remove {q}" msgstr "{q} entfernen" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Account entfernen" @@ -9845,15 +9844,15 @@ msgstr "Filter entfernen" msgid "Remove from chat" msgstr "Aus dem Chat entfernen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Aus meinen Feeds entfernen" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Aus Schnellzugriff entfernen?" @@ -9862,7 +9861,7 @@ msgstr "Aus Schnellzugriff entfernen?" msgid "Remove from saved feeds" msgstr "Aus gespeicherten Feeds entfernen" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Aus gespeicherten Posts entfernen" @@ -9880,8 +9879,8 @@ msgstr "Bild entfernen" msgid "Remove live status" msgstr "Live-Status entfernen" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Mitglied entfernen" @@ -9943,7 +9942,7 @@ msgstr "Aus der Liste entfernt" msgid "Removed from saved feeds" msgstr "Aus gespeicherten Feeds entfernt" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Aus gespeicherten Posts entfernt" @@ -9952,7 +9951,7 @@ msgstr "Aus gespeicherten Posts entfernt" msgid "Removed from starter pack" msgstr "Aus dem Startpaket entfernt" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Antwort auf deinen Post" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Nachricht von {senderName}, auf die geantwortet wurde. Tippe, um dorthin zu scrollen" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Die Nachricht, auf die geantwortet wurde, wurde vor deinem Beitritt gesendet" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Nachricht, auf die geantwortet wurde. Tippe, um dorthin zu scrollen" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Antworten" @@ -10037,7 +10037,7 @@ msgstr "Antworten zu diesem Post sind deaktiviert." msgid "Reply" msgstr "Antworten" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Antworten" @@ -10098,8 +10098,8 @@ msgstr "Konversation melden" msgid "Report dialog" msgstr "Melde-Dialog" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Feed melden" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Repostet von dir" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Reposts" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Reposts von diesem Post" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Reposts deiner Reposts" @@ -10253,7 +10253,7 @@ msgstr "Angefragt" msgid "Requests" msgstr "Anfragen" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Wiederholt die letzte Aktion, bei der ein Fehler aufgetreten ist" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Zurรผck zur Startseite" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Zurรผck zur vorherigen Seite" @@ -10446,27 +10446,27 @@ msgstr "Geburtsdatum speichern" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "ร„nderungen speichern" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "ร„nderungen speichern?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Entwurf speichern" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Entwurf speichern?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR-Code speichern" msgid "Save these options for next time" msgstr "Diese Optionen fรผr das nรคchste Mal speichern" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "In meinen Feeds speichern" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Gespeicherte Feeds" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Gespeicherte Posts" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "In deinen Feeds gespeichert" @@ -10520,8 +10520,8 @@ msgstr "In deinen Feeds gespeichert" msgid "Say hello!" msgstr "Sag Hallo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Sag jemandem Hallo" @@ -10535,7 +10535,7 @@ msgstr "Scannen" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "QR-Code scannen" @@ -10543,15 +10543,15 @@ msgstr "QR-Code scannen" msgid "Science" msgstr "Wissenschaft" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Nach links scrollen" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Nach rechts scrollen" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Zur Nachricht scrollen, auf die geantwortet wird" @@ -10564,8 +10564,8 @@ msgstr "Nach oben scrollen" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Suche" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Posts von @{0} durchsuchen" @@ -10612,11 +10612,11 @@ msgstr "Nach {q} suchen" msgid "Search for feeds that you want to suggest to others." msgstr "Suche nach Feeds, die du anderen vorschlagen mรถchtest." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Nach weiteren Accounts suchen" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Nach weiteren Feeds suchen" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Suche nach GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Suche ist derzeit nicht verfรผgbar, wenn du ausgeloggt bist" @@ -10707,17 +10707,22 @@ msgstr "#{tag}-Posts des Nutzers ansehen" msgid "See jobs at Bluesky" msgstr "Sieh dir Jobs bei Bluesky an" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Mehr sehen" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Weitere vorgeschlagene Profile ansehen" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "Weitere angesagte Themen ansehen" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Vorgeschlagene Accounts ansehen" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Such-Slider. Verwende die Pfeiltasten, um vorwรคrts oder rรผckwรคrts zu suchen und Leertaste zum Abspielen/Pausieren" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Kategorie โ€ž{interestsDisplayName}โ€œ auswรคhlen" @@ -10748,7 +10753,7 @@ msgstr "{0} auswรคhlen" msgid "Select {langName}" msgstr "{langName} auswรคhlen" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Wรคhle eine Farbe" @@ -10764,11 +10769,11 @@ msgstr "Account auswรคhlen" msgid "Select an app language" msgstr "Wรคhle eine App-Sprache aus" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Ein Profilbild auswรคhlen" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Ein Emoji auswรคhlen" @@ -10780,12 +10785,13 @@ msgstr "Wรคhle eine Option aus" msgid "Select app language" msgstr "App-Sprache auswรคhlen" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Untertiteldatei auswรคhlen (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Chat โ€ž{name}โ€œ auswรคhlen" @@ -10826,7 +10832,7 @@ msgstr "GIF auswรคhlen" msgid "Select GIF \"{0}\"" msgstr "GIF โ€ž{0}โ€œ auswรคhlen" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Mitglieder fรผr den Gruppenchat auswรคhlen" @@ -10864,7 +10870,7 @@ msgstr "Primรคre Sprache auswรคhlen" msgid "Select telephone code" msgstr "Landesvorwahl auswรคhlen" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Das Emoji {emojiName} als dein Profilbild auswรคhlen" @@ -10945,7 +10951,8 @@ msgstr "Nachricht senden" msgid "Send post to {name}" msgstr "Post an {name} senden" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Post senden an..." @@ -10963,12 +10970,12 @@ msgstr "Sende die Nachricht von deinem Handy aus" msgid "Send verification email" msgstr "Verifizierungs-E-Mail senden" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Per Direktnachricht senden" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Per Chat senden" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Hosting-Anbieter manuell festlegen" msgid "Sets email for password reset" msgstr "Legt die E-Mail fรผr das Zurรผcksetzen des Passworts fest" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Einstellungen" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Einstellungen fรผr Aktivitรคten von anderen" @@ -11036,49 +11043,49 @@ msgstr "Einstellungen fรผr Aktivitรคten von anderen" msgid "Settings for allowing others to be notified of your posts" msgstr "Einstellungen, um anderen zu erlauben, Mitteilungen รผber deine Posts zu erhalten" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Einstellungen fรผr Mitteilungen zu โ€žGefรคllt mirโ€œ-Angaben" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Einstellungen fรผr Erwรคhnungsmitteilungen" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Einstellungen fรผr Mitteilungen รผber neue Follower" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Einstellungen fรผr Mitteilungen fรผr alles andere" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Einstellungen fรผr Mitteilungen zu โ€žGefรคllt mirโ€œ-Angaben fรผr deine Reposts" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Einstellungen fรผr Mitteilungen bei neuen Nachrichtenanfragen" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Einstellungen fรผr Mitteilungen bei neuen Nachrichten" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Einstellungen fรผr Mitteilungen zu Reposts deiner Reposts" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Einstellungen fรผr Mitteilungen zu Zitaten" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Einstellungen fรผr Mitteilungen zu Antworten" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Einstellungen fรผr Mitteilungen zu Reposts" @@ -11115,8 +11122,8 @@ msgstr "Altersbereich teilen" msgid "Share anyway" msgstr "Trotzdem teilen" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Autor-DID teilen" @@ -11125,9 +11132,9 @@ msgstr "Autor-DID teilen" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Feedback teilen" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Link teilen Dialog" msgid "Share my profile" msgstr "Mein Profil teilen" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Post รผber at:// URI teilen" @@ -11169,12 +11176,12 @@ msgstr "Profil teilen" msgid "Share QR code" msgstr "QR-Code teilen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Diesen Feed teilen" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Diese Suche teilen" @@ -11186,8 +11193,8 @@ msgstr "Dieses Startpaket teilen" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Teile dieses Startpaket und hilf Menschen, deiner Community auf Bluesky beizutreten." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,9 +11210,9 @@ msgstr "Teile deine Kontakte, um Freunde finden zu kรถnnen" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughtsโ€ฆ" -msgstr "" +msgstr "Teile deine Gedankenโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Tester fรผr gemeinsame Einstellungen" @@ -11219,7 +11226,7 @@ msgstr "Beim Teilen deines Altersbereichs wird nur der mit deinem Apple Account msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Beim Teilen deines Altersbereichs wird nur der mit deinem Google Account verknรผpfte Bereich offengelegt โ€“ zum Beispiel, dass du mindestens 18 Jahre alt bist. <0>Dein genaues Alter und dein Geburtsdatum werden niemals weitergegeben und diese Daten verlassen dieses Gerรคt niemals. Daher wird der Zugriff nur auf diesem Gerรคt ermรถglicht. Alternativ <1>kannst du unseren vertrauenswรผrdigen Partner KWS nutzen, um deine Verifizierung abzuschlieรŸen und den Zugriff auf allen Plattformen freizuschalten." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Anzeigen" msgid "Show alt text" msgstr "Alt-Text anzeigen" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Trotzdem anzeigen" @@ -11274,8 +11281,8 @@ msgstr "Liste trotzdem anzeigen" msgid "Show lists of users to select from" msgstr "Listen von Nutzern anzeigen, aus denen du auswรคhlen kannst" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Mehr anzeigen" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11318,7 +11325,7 @@ msgstr "Reposts anzeigen" #: src/screens/Settings/FollowingFeedPreferences.tsx:133 #: src/screens/Settings/FollowingFeedPreferences.tsx:143 msgid "Show samples of your saved feeds in your Following feed" -msgstr "Zeige Beispiele deiner gespeicherten Feeds in deinem Following-Feed" +msgstr "Beispiele aus deinen gespeicherten Feeds in deinem โ€žFolge ichโ€œ-Feed anzeigen" #: src/lib/moderation/useLabelBehaviorDescription.ts:61 msgid "Show warning" @@ -11333,7 +11340,7 @@ msgstr "Warnung anzeigen und aus Feeds filtern" msgid "Show when youโ€™re live" msgstr "Anzeigen, wenn du live bist" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Zeigt Informationen darรผber an, wann dieser Post erstellt wurde" @@ -11341,15 +11348,15 @@ msgstr "Zeigt Informationen darรผber an, wann dieser Post erstellt wurde" msgid "Shows other accounts you can switch to" msgstr "Zeigt andere Accounts an, zu denen du wechseln kannst" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Zeigt den Inhalt an" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Zeigt den Inhalt an" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Ausloggen?" msgid "Sign up" msgstr "Registrieren" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Einloggen erforderlich" @@ -11469,7 +11476,7 @@ msgstr "รœberspringen" msgid "Skip contact sharing and continue to the app" msgstr "Kontakte nicht teilen und mit der App fortfahren" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Leere Posts รผberspringen?" @@ -11487,7 +11494,7 @@ msgstr "Zum nรคchsten Schritt springen" msgid "slide" msgstr "Bild" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Kleiner" @@ -11499,14 +11506,14 @@ msgstr "Erinnerung vorรผbergehend ausblenden" msgid "So many thoughts, you should post one" msgstr "So viele Gedanken, du solltest einen davon posten" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Soziale Medien, die du kontrollierst." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Soziale Bestรคtigung bei Posts" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11520,7 +11527,7 @@ msgstr "Einige Moderationsdienste in deiner Liste sind nicht mehr verfรผgbar." msgid "Some of your verifications are invalid." msgstr "Einige deiner Verifizierungen sind ungรผltig." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Einige andere Feeds, die dir gefallen kรถnnten" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Jemand hat die Gruppe verlassen" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Jemand hat mit {0} reagiert" @@ -11554,7 +11561,7 @@ msgstr "Jemand hat mit {0} reagiert" msgid "Someone reacted {0} to {target}" msgstr "Jemand hat mit {0} auf {target} reagiert" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Jemand hat geantwortet" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Etwas ist schiefgelaufen, bitte versuche es erneut" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Etwas ist schiefgelaufen. Bitte versuche es in Kรผrze noch einmal." msgid "Something went wrong. Please try again." msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Etwas stimmt nicht? Lass es uns wissen." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam oder sonstiges unechtes Verhalten bzw. Tรคuschung" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sport" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Sieh, welche Posts deinen Freunden und Personen, denen du folgst, gefallen." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Starte eine Konversation, und sie wird hier angezeigt." msgid "Start a group chat" msgstr "Einen Gruppenchat starten" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Starte einen neuen Chat" @@ -11682,17 +11689,17 @@ msgstr "Beginne, Personen hinzuzufรผgen" msgid "Start adding people!" msgstr "Beginne, Personen hinzuzufรผgen!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Chat starten" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Chat mit {displayName} starten" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpaket" @@ -11715,12 +11722,16 @@ msgstr "Dein Startpaket" msgid "Starter pack is invalid" msgstr "Startpaket ist ungรผltig" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Startpakete" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startpakete" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Startpakete ermรถglichen es dir, deine liebsten Feeds und Personen ganz einfach mit deinen Freunden zu teilen." @@ -11728,7 +11739,7 @@ msgstr "Startpakete ermรถglichen es dir, deine liebsten Feeds und Personen ganz msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Startpakete ermรถglichen es dir, deine liebsten Feeds und Personen mit deinen Freunden zu teilen." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Startpakete ermรถglichen es dir, deine liebsten Feeds und Personen mit deinen Freunden zu teilen." @@ -11742,7 +11753,7 @@ msgstr "Status-Seite" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Schritt {0} von {1}" @@ -11754,7 +11765,7 @@ msgstr "Der Speicher wurde gelรถscht, du musst die App jetzt neu starten." msgid "Stored as part of a secure code for matching with others" msgstr "Als Teil eines sicheren Codes gespeichert, um Abgleiche mit anderen durchfรผhren zu kรถnnen" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11787,7 +11798,7 @@ msgstr "Einspruch einlegen" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Feedback senden" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "{publicationTitle} auf {0} abonnieren" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonniere @{0}, um diese Kennzeichnungen zu verwenden:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Erfolgreich verifiziert" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Vorgeschlagen" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Vorgeschlagene Accounts" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Vorgeschlagen fรผr dich" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sonnenuntergang" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Die Unterstรผtzung fรผr diese Funktion in deinem Land ist noch nicht aktiviert! Bitte versuche es spรคter erneut." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Gesperrte Accounts kรถnnen nicht an Gruppenchats teilnehmen." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Gesperrte Accounts kรถnnen nicht am Chat teilnehmen." @@ -11921,8 +11934,8 @@ msgstr "Zu {0} wechseln" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "System" @@ -11945,7 +11958,7 @@ msgstr "Die Konversation privat fortsetzen." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Klicke unten, um Bluesky den Zugriff auf deinen GPS-Standort zu erlauben. Wir verwenden diese Daten, um genauer bestimmen zu kรถnnen, welche Inhalte und Funktionen in deiner Region verfรผgbar sind." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Fรผr Details tippen" @@ -11976,7 +11989,7 @@ msgstr "Tippen, um das Kontextmenรผ zu schlieรŸen" msgid "Tap to copy this invite link" msgstr "Tippe hier, um diesen Einladungslink zu kopieren" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tippe, um zu schlieรŸen" @@ -12003,7 +12016,7 @@ msgstr "Tippen, um deine {0} Reaktion zu entfernen" msgid "Tap to request access to join this group chat" msgstr "Tippe hier, um Zugang zu diesem Gruppenchat anzufragen" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tippen, um es erneut zu versuchen" @@ -12016,7 +12029,7 @@ msgstr "Tippen, um {0} Reaktionen anzuzeigen" msgid "Tap to show all reactions" msgstr "Tippen, um alle Reaktionen anzuzeigen" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tippen, um Reaktionen anzuzeigen" @@ -12032,7 +12045,7 @@ msgstr "Aufgabe abgeschlossen โ€“ 10 Accounts gefolgt!" msgid "Task complete - 10 likes!" msgstr "Aufgabe abgeschlossen โ€“ 10 Gefรคllt mir!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Bring unserem Algorithmus bei, was dir gefรคllt" @@ -12060,7 +12073,7 @@ msgstr "Bedingungen" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Danke fรผr dein Feedback! Es wurde an den Feed-Betreiber gesendet." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Danke fรผr dein Feedback!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "Dieses Startpaket konnte nicht gefunden werden." msgid "That username is already taken" msgstr "Dieser Nutzername ist bereits vergeben" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Das ist alles, Leute!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Das ist alles!" @@ -12216,7 +12229,7 @@ msgstr "Der Server scheint Probleme zu haben. Bitte versuche es in ein paar Minu msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Das Startpaket, das du ansehen mรถchtest, ist ungรผltig. Du kannst dieses Startpaket stattdessen lรถschen." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Das Thema des Kontextmenรผs" @@ -12238,7 +12251,7 @@ msgstr "Der von dir eingegebene Verifizierungscode ist ungรผltig. Bitte stelle s msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Der Verifizierungsanbieter konnte keinen Code an deine Telefonnummer senden. Bitte รผberprรผfe deine Telefonnummer und versuche es erneut." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Theme" @@ -12266,7 +12279,7 @@ msgstr "Beim Laden der GIFs ist ein Problem aufgetreten. รœberprรผfe deine Verbi msgid "There was a problem with your internet connection, please try again" msgstr "Es gab ein Problem mit deiner Internetverbindung. Bitte versuche es erneut" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Es gab ein Problem mit deiner Internetverbindung. Bitte versuche es erne msgid "There was an issue contacting the server" msgstr "Beim Kontaktieren des Servers ist ein Problem aufgetreten" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Beim Kontaktieren des Servers ist ein Problem aufgetreten. Bitte รผberprรผfe deine Internetverbindung und versuche es erneut." @@ -12283,8 +12296,8 @@ msgstr "Beim Kontaktieren des Servers ist ein Problem aufgetreten. Bitte รผberpr msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Beim Abrufen von Mitteilung ist ein Problem aufgetreten. Tippe hier, um es erneut zu versuchen." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Beim Abrufen von Posts ist ein Problem aufgetreten. Tippe hier, um es erneut zu versuchen." @@ -12309,7 +12322,7 @@ msgstr "Es gab ein Problem beim Abrufen deiner Service-Informationen" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Beim Entfernen dieses Feeds ist ein Problem aufgetreten. Bitte รผberprรผfe deine Internetverbindung und versuche es erneut." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12377,14 +12390,14 @@ msgstr "Diese Hashtags" #: src/screens/Settings/FollowingFeedPreferences.tsx:66 msgid "These settings only apply to the Following feed." -msgstr "Diese Einstellungen gelten nur fรผr den Following-Feed." +msgstr "Diese Einstellungen gelten nur fรผr den โ€žFolge ichโ€œ-Feed." #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 msgid "These URLs" msgstr "Diese URLs" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Du besitzt diesen Chat" @@ -12392,7 +12405,7 @@ msgstr "Du besitzt diesen Chat" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "Sie kรถnnen nicht erneut beitreten, es sei denn, du lรคdst sie erneut ein." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Diese {screenDescription} wurde gekennzeichnet:" @@ -12408,7 +12421,7 @@ msgstr "Dieser Account wurde vom Inhaber als automatisiert gekennzeichnet." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Fรผr diesen Account gibt es einen oder mehrere Verifizierungsversuche, ist aber derzeit nicht verifiziert." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Dieser Account verlangt, dass Nutzer eingeloggt sind, um das Profil ansehen zu kรถnnen." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Dieser Feed ist leer! Mรถglicherweise musst du mehr Nutzer folgen oder deine Spracheinstellungen anpassen." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Dieser Feed ist leer." @@ -12554,7 +12567,7 @@ msgstr "Diese Gruppe wurde aufgrund einer ModerationsmaรŸnahme gegen den Inhaber msgid "This handle is reserved. Please try a different one." msgstr "Dieser Handle ist reserviert. Bitte versuche einen anderen." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Dieses Bild konnte nicht verwendet werden. Bitte versuche es mit einem anderen Format wie .jpg oder .png." @@ -12596,7 +12609,7 @@ msgstr "Diese Kennzeichnung wurde von dir angewendet." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Diese Kennzeichnung wurde auf den gesamten Account angewendet und wird bei allen Posts angezeigt." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Dieser Kennzeichner hat nicht angegeben, welche Kennzeichnungen er verรถffentlicht und ist mรถglicherweise nicht aktiv." @@ -12621,13 +12634,13 @@ msgstr "Diese Liste ist leer." msgid "This message is hidden" msgstr "Diese Nachricht ist ausgeblendet" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Diese Nachricht ist ausgeblendet, weil dieser Nutzer dich blockiert." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Diese Nachricht ist ausgeblendet, weil du diesen Nutzer blockierst." @@ -12641,7 +12654,7 @@ msgstr "Diese Person blockiert dich" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dieser Post soll am <0>{0} erstellt worden sein, wurde aber erstmals von Bluesky am <1>{1} gesehen." @@ -12649,7 +12662,7 @@ msgstr "Dieser Post soll am <0>{0} erstellt worden sein, wurde aber erstmals msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Dieser Post hat einen unbekannten Threadgate-Typ. Deine App ist mรถglicherweise veraltet." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Dieser Post ist nur fรผr eingeloggte Nutzer sichtbar." @@ -12661,7 +12674,7 @@ msgstr "Dieser Post wurde vom Autor gelรถscht" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Dieser Post wird aus Feeds und Threads ausgeblendet. Dies kann nicht rรผckgรคngig gemacht werden." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Der Autor dieses Posts hat das Zitieren dieses Posts deaktiviert." @@ -12698,11 +12711,12 @@ msgstr "Das sollte nur ein paar Minuten dauern." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Dieser Nutzer hat keinen Anzeigenamen und kann daher nicht verifiziert werden." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Dieser Nutzer hat keine Follower." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Dieser Nutzer hat dich blockiert und kann nicht angeschrieben werden." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Dieser Nutzer hat dich blockiert. Du kannst seinen Inhalt nicht sehen." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Dieser Nutzer hat den Chat deaktiviert und kann nicht angeschrieben werden." @@ -12733,11 +12748,11 @@ msgstr "Dieser Nutzer ist in der Liste <0>{0} enthalten, die du stummgeschal msgid "This user is new here. Press for more info about when they joined." msgstr "Dieser Nutzer ist neu hier. Klicke hier, um weitere Informationen darรผber zu erhalten, wann er beigetreten ist." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Dieser Nutzer folgt niemandem." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Dieses Video kann auf deinem Gerรคt nicht abgespielt werden. Deinem Browser oder System fehlen mรถglicherweise die erforderlichen Video-Codecs (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Dadurch wird dein Bluesky-Account <0>{currentHandle} und alle damit verbundenen Daten unwiderruflich gelรถscht. Beachte, dass dies auch alle anderen <1>AT Protocol-Dienste betrifft, die du mit diesem Account nutzt." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Dadurch wird @{0} aus der Schnellzugriffsliste entfernt." @@ -12786,7 +12801,7 @@ msgstr "Thread-Einstellungen" msgid "Threaded" msgstr "Thread" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Thread-Einstellungen" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Zu viele Kontakte - du hast die maximale Anzahl an Kontakten รผberschritten, die du importieren kannst, um deine Freunde finden zu kรถnnen" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Top" @@ -12858,7 +12873,7 @@ msgstr "Top" msgid "Top replies first" msgstr "Beliebte Antworten zuerst" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Thema" @@ -12893,7 +12908,9 @@ msgstr "Die รœbersetzung in dieselbe Sprache ist auf deinem Gerรคt nicht verfรผg msgid "Tree view" msgstr "Baumansicht" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Angesagt" @@ -12902,12 +12919,14 @@ msgstr "Angesagt" msgid "Trending GIFs" msgstr "Angesagte GIFs" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Optionen fรผr angesagte Themen" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "Angesagte Videos" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Vertrauen entsteht durch Beziehungen, Communitys und einem gemeinsamen Kontext. Deshalb ermรถglichen wir auch <0>vertrauenswรผrdige Verifizierer: Organisationen, die Verifizierungen direkt ausstellen kรถnnen." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Versuche es mit einem anderen Suchbegriff oder entferne einige Filter." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Versuche es mit einem anderen Suchbegriff." @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Beitrittsanfragen konnten nicht geladen werden." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Ein ausgewรคhlter Empfรคnger konnte nicht gefunden werden." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Der ausgewรคhlte Empfรคnger konnte nicht gefunden werden." @@ -13024,12 +13045,12 @@ msgstr "Nicht verfรผgbar" msgid "Unavailable feed information" msgstr "Feed-Information nicht verfรผgbar" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Account entblocken?" msgid "Unblock list" msgstr "Liste entsperren" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "{0} entfolgen" msgid "Unfollow account" msgstr "Account entfolgen" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Entfolgt dem Nutzer" @@ -13132,7 +13153,7 @@ msgstr "Nicht gekennzeichnete Inhalte fรผr Erwachsene" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Nicht gekennzeichnete, missbrรคuchliche oder nicht einvernehmliche Inhalte fรผr Erwachsene" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Gefรคllt mir nicht mehr" @@ -13192,7 +13213,7 @@ msgstr "Stummschaltung fรผr diesen Gruppenchat aufheben" msgid "Unmute thread" msgstr "Stummschaltung des Threads aufheben" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Stummschaltung von Video aufheben" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Lรถsen" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Feed lรถsen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Von Startseite lรถsen" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Moderationsliste lรถsen" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} von der Startseite gelรถst" @@ -13258,11 +13279,11 @@ msgstr "Von diesem Kennzeichner abmelden" msgid "Unsubscribed from list" msgstr "Von der Liste abgemeldet" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Inhalt der Zwischenablage wird nicht unterstรผtzt" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Nicht unterstรผtzter Videotyp: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Aktualisieren der Antwort-Sichtbarkeit ist fehlgeschlagen" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Stattdessen ein Foto hochladen" @@ -13355,7 +13376,7 @@ msgstr "Von Dateien hochladen" msgid "Upload from Library" msgstr "Aus der Bibliothek hochladen" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "GIF wird hochgeladen..." @@ -13369,7 +13390,7 @@ msgstr "Bilder werden hochgeladen..." msgid "Uploading link thumbnail..." msgstr "Link-Vorschaubild wird hochgeladen..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Video wird hochgeladen..." @@ -13408,7 +13429,7 @@ msgstr "Verwende dies, um dich mit deinem Handle bei der anderen App einzuloggen msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Verwende die E-Mail-Adresse deines Accounts oder eine andere echte E-Mail-Adresse, auf die du Zugriff hast, falls KWS oder Bluesky dich kontaktieren muss." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "Nutzer" @@ -13510,7 +13531,7 @@ msgstr "Verifizierung fehlgeschlagen. Bitte versuche es erneut." msgid "Verification settings" msgstr "Verifizierungseinstellungen" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Verifizierungseinstellungen" @@ -13618,34 +13639,34 @@ msgstr "Video" msgid "Video failed to process" msgstr "Video konnte nicht verarbeitet werden" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Video-Feed" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Video von {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video von {0}. Tippe, um das Video abzuspielen oder zu pausieren" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videospiele" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video ist pausiert" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video wird abgespielt" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video nicht gefunden." @@ -13653,7 +13674,7 @@ msgstr "Video nicht gefunden." msgid "Video settings" msgstr "Video-Einstellungen" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video hochgeladen" @@ -13662,17 +13683,17 @@ msgstr "Video hochgeladen" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videos dรผrfen nicht lรคnger als 3 Minuten sein." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Ansehen" @@ -13691,9 +13712,9 @@ msgstr "Profilbild von {0} ansehen" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Profil von {0} ansehen" @@ -13724,13 +13745,13 @@ msgstr "Blogpost fรผr weitere Details ansehen" msgid "View debug entry" msgstr "Debug-Eintrag anzeigen" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Details ansehen" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Vollstรคndigen Thread ansehen" @@ -13750,18 +13771,18 @@ msgstr "Eingehende Beitrittsanfragen fรผr diesen Gruppenchat ansehen" msgid "View information about these labels" msgstr "Informationen zu diesen Kennzeichnungen anzeigen" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Mehr ansehen" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Mehr angesagte Videos ansehen" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Post ansehen" @@ -13798,15 +13819,15 @@ msgstr "Einladungslink fรผr diesen Gruppenchat anzeigen" msgid "View the labeling service provided by @{0}" msgstr "Sieh dir den von @{0} bereitgestellten Kennzeichnungsdienst an" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Verifizierungen dieses Nutzers ansehen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Nutzer ansehen, denen dieser Feed gefรคllt" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Video ansehen" @@ -13831,7 +13852,7 @@ msgstr "Sieh dir deine Moderationslisten an" msgid "View your muted accounts" msgstr "Sieh dir deine stummgeschalteten Accounts an" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Deine Verifizierungen ansehen" @@ -13840,7 +13861,7 @@ msgstr "Deine Verifizierungen ansehen" msgid "Views full image" msgstr "Vollstรคndiges Bild ansehen" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Zeigt Video im immersiven Modus" @@ -14001,7 +14022,7 @@ msgstr "Wir benachrichtigen dich, sobald wir deine Freunde gefunden haben." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "Weโ€™d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Wir wรผrden gerne hรถren, wie deine Erfahrungen beim Testen der Beta-Funktionen waren!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Wir haben Netzwerkprobleme, versuche es erneut" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Wir haben Netzwerkprobleme. Bitte versuche es erneut" @@ -14043,7 +14064,7 @@ msgstr "Wir haben Netzwerkprobleme. Bitte versuche es erneut" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Wir fรผhren eine neue Ebene der Verifizierung auf Bluesky ein โ€” ein leicht erkennbares Hรคkchen." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Wir freuen uns sehr, dass du dabei bist!" @@ -14064,13 +14085,15 @@ msgstr "Es tut uns leid, aber wir konnten diese Liste nicht auflรถsen. Wenn das msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Es tut uns leid, aber wir konnten deine stummgeschalteten Wรถrter gerade nicht laden. Bitte versuche es erneut." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." -msgstr "" +msgstr "Es tut uns leid, aber deine Suche konnte nicht abgeschlossen werden." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Es tut uns leid, aber deine Suche konnte nicht abgeschlossen werden. Bitte versuche es in ein paar Minuten erneut." @@ -14078,7 +14101,7 @@ msgstr "Es tut uns leid, aber deine Suche konnte nicht abgeschlossen werden. Bit msgid "We're sorry, you cannot access this screen at this time." msgstr "Leider kannst du derzeit nicht auf diesen Bildschirm zugreifen." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Es tut uns leid! Der Post, auf den du antwortest, wurde gelรถscht." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "was gibtโ€™s" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Was gibt's?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Wer kann verifizieren?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ups!" @@ -14220,21 +14243,21 @@ msgstr "Mรถchtest du diesen Nutzer blockieren und/oder diese Konversation verlas msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Mรถchtest du das als Entwurf speichern, bevor du deine Entwรผrfe ansiehst?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Mรถchtest du das als Entwurf speichern, um es spรคter zu bearbeiten?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Post verfassen" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Post verfassen" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Antwort schreiben" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Du greifst aus einer Region auf Bluesky zu, in der wir gesetzlich verpflichtet sind, dein Alter zu verifizieren, bevor wir dir Zugriff auf die App gewรคhren dรผrfen." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Du blockierst {0}" @@ -14342,7 +14365,7 @@ msgstr "Du bist nicht mehr live" msgid "You are not allowed to upload videos." msgstr "Du darfst keine Videos hochladen." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Du folgst noch niemandem" @@ -14362,7 +14385,7 @@ msgstr "Du bist verifiziert. Du verlierst deinen Verifizierungsstatus, wenn du d msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Du bist verifiziert. Du verlierst deinen Verifizierungsstatus, wenn du deinen Handle รคnderst. <0>Mehr erfahren (auf Englisch)." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Du kannst deine Interessen jederzeit in den Einstellungen unter โ€žInhalte und Medienโ€œ anpassen." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Du kannst dich jetzt mit deinem neuen Passwort einloggen." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Du kannst pro Post maximal {MAX_GALLERY_IMAGES, plural, other {# Bilder}} hinzufรผgen" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Du kannst Entwรผrfe nur mit bis zu 1000 Zeichen speichern." @@ -14439,9 +14462,11 @@ msgstr "Du kannst den Chatverlauf lesen, aber keine neuen Nachrichten senden." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Du kannst insgesamt maximal {MAX_GALLERY_IMAGES, plural, other {# Bilder}} auswรคhlen." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Du kannst dies spรคter in deinen Einstellungen aktualisieren." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Du kannst maximal {EMOJI_REACTION_LIMIT, plural, one {# Emoji-Reaktion} other {# Emoji-Reaktionen}} hinzufรผgen" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Du kannst noch keinen Gruppenchat erstellen." @@ -14555,7 +14581,7 @@ msgstr "Du hast deine E-Mail-Adresse erfolgreich verifiziert. Du kannst dieses F msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Du hast vorรผbergehend das Limit fรผr Video-Uploads erreicht. Bitte versuche es spรคter erneut." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Du hast ungespeicherte ร„nderungen an diesem Entwurf. Mรถchtest du sie speichern?" @@ -14563,7 +14589,7 @@ msgstr "Du hast ungespeicherte ร„nderungen an diesem Entwurf. Mรถchtest du sie s msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Du hast ungespeicherte ร„nderungen. Mรถchtest du sie speichern, bevor du deine Entwรผrfe ansiehst?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Du hast noch kein Startpaket erstellt!" @@ -14614,7 +14640,7 @@ msgstr "Du darfst nur bis zu {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PAC msgid "You may only add up to 3 feeds" msgstr "Du kannst nur bis zu 3 Feeds hinzufรผgen" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Du musst Inhaber dieses Chats sein, um ein Mitglied entfernen zu kรถnnen." @@ -14622,7 +14648,7 @@ msgstr "Du musst Inhaber dieses Chats sein, um ein Mitglied entfernen zu kรถnnen msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Du musst mindestens 13 Jahre alt sein, um Bluesky nutzen zu kรถnnen. Lies unsere <0>Nutzungsbedingungen, um mehr zu erfahren." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Du musst mindestens sieben anderen Personen folgen, um ein Startpaket erstellen zu kรถnnen." @@ -14639,7 +14665,7 @@ msgstr "Du musst den Zugriff auf deine Galerie erlauben." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Du musst deine E-Mail-Adresse verifizieren, bevor du die Zwei-Faktor-Authentisierung (2FA) per E-Mail aktivieren kannst." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Du besitzt diesen Chat" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Du solltest die App jetzt wahrscheinlich neu starten." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Du hast mit {0} reagiert" @@ -14667,15 +14693,15 @@ msgstr "Du hast mit {0} auf {target} reagiert" msgid "You recently changed your birthdate" msgstr "Du hast kรผrzlich dein Geburtsdatum geรคndert" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Du hast geantwortet" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Du hast {originalName} geantwortet" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Du hast dir selbst geantwortet" @@ -14715,11 +14741,11 @@ msgstr "Du kannst erst wieder beitreten, wenn du eingeladen wirst." msgid "You: {message}" msgstr "Du: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Du folgst den vorgeschlagenen Nutzern und Feeds, sobald du mit der Erstellung deines Accounts fertig bist!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Du folgst den vorgeschlagenen Nutzern, sobald du mit der Erstellung deines Accounts fertig bist!" @@ -14791,7 +14817,7 @@ msgstr "Du hast das Ende des aktiven Inhalts erreicht." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Du hast das Ende deines Feeds erreicht! Finde weitere Accounts, denen du folgen kannst." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Du hast die maximale Anzahl an Entwรผrfen erreicht" @@ -14799,7 +14825,7 @@ msgstr "Du hast die maximale Anzahl an Entwรผrfen erreicht" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Du hast die maximale Anzahl an Anfragen erreicht. Bitte versuche es spรคter erneut." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Du hast die maximale Anzahl von {MAX_FILTERS, plural, one {# Filter} other {# Filtern}} erreicht. Fรผge einem bestehenden Filter weitere Werte hinzu, anstatt neue Filter zu erstellen." @@ -14815,11 +14841,11 @@ msgstr "Du hast dein tรคgliches Limit fรผr Video-Uploads erreicht (zu viele Byte msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Du hast dein tรคgliches Limit fรผr Video-Uploads erreicht (zu viele Videos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Du hast keine Videos mehr zum Anschauen. Vielleicht ist es ein guter Zeitpunkt, eine Pause zu machen?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Dein Account" @@ -14835,11 +14861,11 @@ msgstr "Dein Account wurde gesperrt" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Dein Account ist noch nicht alt genug, um Videos hochzuladen. Bitte versuche es spรคter erneut." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Dein Account ist zu neu" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Dein Account muss mindestens 7 Tage alt sein, um einen neuen Gruppenchat erstellen zu kรถnnen." @@ -14896,7 +14922,7 @@ msgstr "Deine E-Mail" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Deine E-Mail scheint ungรผltig zu sein." @@ -14915,7 +14941,7 @@ msgstr "Deine Follower" #: src/view/com/posts/FollowingEmptyState.tsx:41 msgid "Your following feed is empty! Follow more users to see what's happening." -msgstr "Dein Following-Feed ist leer! Folge mehr Nutzern, um zu sehen, was passiert." +msgstr "Dein โ€žFolge ichโ€œ-Feed ist leer! Folge weiteren Nutzern, um zu sehen, was gerade passiert." #. placeholder {0}: createFullHandle(subdomain, host) #: src/screens/Settings/components/ChangeHandleDialog.tsx:247 @@ -14930,8 +14956,8 @@ msgstr "Dein Hosting-Anbieter kann anhand einer E-Mail-Adresse nicht erkannt wer msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Dein Hosting-Anbieter wird automatisch anhand des eingegebenen Nutzernamens erkannt." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Deine Interessen wurden aktualisiert!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Deine Interessen helfen uns dabei, das zu finden, was dir gefรคllt!" @@ -14967,11 +14993,11 @@ msgstr "Dein Passwort wurde erfolgreich geรคndert! Bitte verwende ab sofort dein msgid "Your password must be at least 8 characters long." msgstr "Dein Passwort muss mindestens 8 Zeichen lang sein." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Dein Post wurde gesendet" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Deine Posts wurden gesendet" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Deine bevorzugte Sprache" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Dein Profilbild" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Dein Profilbild, umgeben von konzentrischen Kreisen mit den Profilbildern anderer Nutzer" @@ -14992,7 +15018,7 @@ msgstr "Dein Profilbild, umgeben von konzentrischen Kreisen mit den Profilbilder msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Dein Profil, deine Posts, deine Feeds und Listen werden nicht mehr fรผr andere Bluesky-Nutzer sichtbar sein. Du kannst deinen Account jederzeit reaktivieren, indem du dich einloggst." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Deine Antwort wurde gesendet" @@ -15005,7 +15031,7 @@ msgstr "Deine Meldung wird an <0>{0} gesendet." msgid "Your selected interests help us serve you content you care about." msgstr "Deine ausgewรคhlten Interessen helfen uns dabei, dir Inhalte anzuzeigen, die dich interessieren." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Dein Thread enthรคlt leere Posts, die รผbersprungen werden. Die รผbrigen Posts werden als Thread verรถffentlicht." diff --git a/src/locale/locales/el/messages.po b/src/locale/locales/el/messages.po index e6777a3739..820c6189a6 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Greek\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" ฮบฮฑฯ„ฮทฮณฮฟฯฮฏฮฑ (ฮตฮฝฮตฯฮณฯŒ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(ฯ€ฮตฯฮนฮญฯ‡ฮตฮน ฮตฮฝฯƒฯ‰ฮผฮฑฯ„ฯ‰ฮผฮญฮฝฮฟ ฯ€ฮตฯฮนฮตฯ‡ฯŒฮผฮตฮฝฮฟ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# ฯŽฯฮฑ} other {# ฯŽฯฮตฯ‚}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน} other {ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (ฮ›ฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒฯ‚)" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} ฮฑฮบฮฟฮปฮฟฯ…ฮธฮตฮฏ" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} ฮฑฯ€ฯŒ 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ฮฑฮฝฯ„ฮญฮดฯฮฑฯƒฮต {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "ฮŸ/ฮ— {firstAuthorName} ฯƒฮฑฯ‚ ฮตฯ€ฮฑฮปฮฎฮธฮตฯ…ฯƒฮต" msgid "{following} following" msgstr "{following} ฮฑฮบฯŒฮปฮฟฯ…ฮธฮฟฮน" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "ฮ”ฮตฮฝ ฮตฮฏฮฝฮฑฮน ฮดฯ…ฮฝฮฑฯ„ฯŒฮฝ ฮฝฮฑ ฯƒฯ„ฮตฮฏฮปฮตฯ„ฮต ฮผฮฎฮฝฯ…ฮผฮฑ ฯƒฯ„ฮฟฮฝ/ฮทฮฝ {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# ฮฑฮดฮนฮฌฮฒฮฑฯƒฯ„ฮฟ} other {# ฮฑฮดฮนฮฌ msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# ฮตฯ€ฮฑฯ†ฮฎ ฮฒฯฮญฮธฮทฮบฮต} other {# ฮตฯ€ฮฑฯ†ฮญฯ‚ ฮฒฯฮญฮธฮทฮบฮฑฮฝ}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "ฮŸ/ฮ— {profileName} ฮญฮณฮนฮฝฮต ฮผฮญฮปฮฟฯ‚ ฯƒฯ„ฮฟ Bluesky ฯ€ฯฮนฮฝ ฮฑฯ€ฯŒ {timeAgoString}" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "ฮŸ/ฮ— {profileName} ฮณฯฮฌฯ†ฯ„ฮทฮบฮต ฯƒฯ„ฮฟ Bluesky ฮผฮต ฯ€ฮฑฮบฮญฯ„ฮฟ ฮฝฮญฯ‰ฮฝ ฯ€ฯฮนฮฝ ฮฑฯ€ฯŒ {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}ฯŽ ฯ€ฯฮนฮฝ" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "ฮŸ/ฮ— {userName} ฮตฮฏฮฝฮฑฮน ฮญฮฝฮฑฯ‚ ฮญฮผฯ€ฮนฯƒฯ„ฮฟฯ‚ ฮตฯ€ฮฑฮปฮทฮธฮตฯ…ฯ„ฮฎฯ‚" @@ -842,13 +795,13 @@ msgstr "ฮŸฮน ฮตฯ€ฮฑฮปฮทฮธฮตฯฯƒฮตฮนฯ‚ ฯ„ฮฟฯ…/ฯ„ฮทฯ‚ {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {ฮฑฮบฯŒฮปฮฟฯ…ฮธฮฟฯ‚} other {ฮฑฮบฯŒฮปฮฟฯ…ฮธฮฟ #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {ฯ€ฮฑฯฮฌฮธฮตฯƒฮท} other {ฯ€ฮฑฯฮฑฮธฮญฯƒฮตฮนฯ‚}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {ฮฑฮฝฮฑฮดฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท} other {ฮฑฮฝฮฑฮดฮทฮผฮฟฯƒฮนฮตฯฯƒฮตฮนฯ‚}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {ฮฑฯ€ฮฟฮธฮฎฮบฮตฯ…ฯƒฮท} other {ฮฑฯ€ฮฟฮธฮทฮบฮต #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>ฮฃฯ…ฮฝฮดฮตฮธฮตฮฏฯ„ฮต<1> ฮฎ <2>ฮดฮทฮผฮนฮฟฯ…ฯฮณฮฎฯƒฯ„ฮต ฮญฮฝฮฑฮฝ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒ<3> <4>ฮณฮนฮฑ ฮฝฮฑ ฮฑฮฝฮฑฮถฮทฯ„ฮฎฯƒฮตฯ„ฮต ฮตฮนฮดฮฎฯƒฮตฮนฯ‚, ฮฑฮธฮปฮทฯ„ฮนฮบฮฌ, ฯ€ฮฟฮปฮนฯ„ฮนฮบฮฌ ฮบฮฑฮน ฮฟฯ„ฮนฮดฮฎฯ€ฮฟฯ„ฮต ฮฌฮปฮปฮฟ ฯƒฯ…ฮผฮฒฮฑฮฏฮฝฮตฮน ฯƒฯ„ฮฟ Bluesky." @@ -971,7 +924,7 @@ msgstr "30 ฮทฮผฮญฯฮตฯ‚" msgid "7 days" msgstr "7 ฮทฮผฮญฯฮตฯ‚" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "ฮœฮนฮฑ ฯƒฯ…ฮปฮปฮฟฮณฮฎ ฮฑฯ€ฯŒ ฮดฮทฮผฮฟฯ†ฮนฮปฮตฮฏฯ‚ ฯฮฟฮญฯ‚ ฯ€ฮฟฯ… ฮผฯ€ฮฟฯฮตฮฏฯ„ฮต ฮฝฮฑ ฮฒฯฮตฮฏฯ„ฮต ฯƒฯ„ฮฟ Bluesky, ฯƒฯ…ฮผฯ€ฮตฯฮนฮปฮฑฮผฮฒฮฑฮฝฮฟฮผฮญฮฝฮฟฯ… News, Booksky, Game Dev, Blacksky, ฮบฮฑฮน Fountain Pens" @@ -988,9 +941,11 @@ msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯƒฯ†ฮฌฮปฮผฮฑ ฮดฮนฮบฯ„ฯฮฟฯ…. ฮ ฮฑฯฮฑฮบฮฑฮปฮฟ #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "ฮˆฮฝฮฑฯ‚ ฮฝฮญฮฟฯ‚ ฮบฯ‰ฮดฮนฮบฯŒฯ‚ ฮญฯ‡ฮตฮน ฯƒฯ„ฮฑฮปฮตฮฏ" msgid "A new form of verification" msgstr "ฮœฮนฮฑ ฮฝฮญฮฑ ฮผฮฟฯฯ†ฮฎ ฮตฯ€ฮฑฮปฮฎฮธฮตฯ…ฯƒฮทฯ‚" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "ฮ ฯฮฟฯƒฮฒฮฑฯƒฮนฮผฯŒฯ„ฮทฯ„ฮฑ" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "ฮกฯ…ฮธฮผฮฏฯƒฮตฮนฯ‚ ฮ ฯฮฟฯƒฮฒฮฑฯƒฮนฮผฯŒฯ„ฮทฯ„ฮฑฯ‚" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "ฮ›ฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒฯ‚ ฯƒฮต ฯƒฮฏฮณฮฑฯƒฮท ฮฑฯ€ฯŒ ฮปฮฏฯƒฯ„ฮฑ" msgid "Account options" msgstr "ฮ•ฯ€ฮนฮปฮฟฮณฮญฯ‚ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯ" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "ฮ›ฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒฯ‚ ฮฑฯ†ฮฑฮนฯฮญฮธฮทฮบฮต ฮฑฯ€ฯŒ ฯ„ฮทฮฝ ฮณฯฮฎฮณฮฟฯฮท ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮท" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "ฮ›ฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฮฏ ฮผฮต ฮญฮฝฮฑ ฮผฯ€ฮปฮต ฮบฯ…ฮผฮฑฯ„ฮฟฮตฮนฮดฮญฯ‚ ฯ„ฮนฮบ <0><1/> ฮผฯ€ฮฟฯฮฟฯฮฝ ฮฝฮฑ ฮตฯ€ฮฑฮปฮทฮธฮตฯฯƒฮฟฯ…ฮฝ ฮฌฮปฮปฮฟฯ…ฯ‚. ฮ‘ฯ…ฯ„ฮฟฮฏ ฮฟฮน ฮฑฮพฮนฯŒฯ€ฮนฯƒฯ„ฮฟฮน ฮตฯ€ฮฑฮปฮทฮธฮตฯ…ฯ„ฮญฯ‚ ฮตฯ€ฮนฮปฮญฮณฮฟฮฝฯ„ฮฑฮน ฮฑฯ€ฯŒ ฯ„ฮฟ Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "ฮ”ฯฮฑฯƒฯ„ฮทฯฮนฯŒฯ„ฮทฯ„ฮฑ ฮฑฯ€ฯŒ ฮฌฮปฮปฮฟฯ…ฯ‚" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "ฮ ฯฮฟฯƒฮธฮฎฮบฮท ฮตฮฝฮฑฮปฮปฮฑฮบฯ„ฮนฮบฮฟฯ ฮบฮตฮนฮผฮญฮฝฮฟฯ… (ฯ€ฯฮฟฮฑฮนฯ msgid "Add another account" msgstr "ฮ ฯฮฟฯƒฮธฮฎฮบฮท ฮฌฮปฮปฮฟฯ… ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯ" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "ฮ ฯฮฟฯƒฮธฮฎฮบฮท ฮฌฮปฮปฮทฯ‚ ฮฑฮฝฮฌฯฯ„ฮทฯƒฮทฯ‚" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "ฮ ฯฮฟฯƒฮธฮฎฮบฮท ฮฌฮปฮปฮทฯ‚ ฮดฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮทฯ‚ ฯƒฯ„ฮฟ ฮฝฮฎฮผฮฑ" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "ฮ ฯฮฟฯƒฮธฮฎฮบฮท ฮฑฮฝฯ„ฮฏฮดฯฮฑฯƒฮทฯ‚ emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "ฮ ฯฮฟฯƒฮธฮฎฮบฮท ฮฑฯ…ฯ„ฮฟฯ ฯ„ฮทฯ‚ ฯฮฟฮฎฯ‚ ฯƒฯ„ฮนฯ‚ ฯฮฟฮญฯ‚ ฯƒฮฑฯ‚" msgid "Add to lists" msgstr "ฮ ฯฮฟฯƒฮธฮฎฮบฮท ฯƒฮต ฮปฮฏฯƒฯ„ฮตฯ‚" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "ฮ ฯฮฟฯƒฮธฮฎฮบฮท ฯƒฯ„ฮนฯ‚ ฮฑฯ€ฮฟฮธฮทฮบฮตฯ…ฮผฮญฮฝฮตฯ‚ ฮดฮทฮผฮฟฯƒฮนฮตฯฯƒฮตฮนฯ‚" @@ -1400,7 +1360,7 @@ msgstr "ฮ•ฮฝฮฎฮปฮนฮบฮตฯ‚" msgid "Adult content" msgstr "ฮ ฮตฯฮนฮตฯ‡ฯŒฮผฮตฮฝฮฟ ฮณฮนฮฑ ฮตฮฝฮฎฮปฮนฮบฮตฯ‚" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "ฮŒฮปฮฑ" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "ฮŒฮปฮฟฮน ฮฟฮน ฯ†ฮฏฮปฮฟฮน ฮฑฮบฮฟฮปฮฟฯ…ฮธฮฎฮธฮทฮบฮฑฮฝ!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "ฮŒฮปฮตฯ‚ ฮฟฮน ฮณฮปฯŽฯƒฯƒฮตฯ‚" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "ฮŒฮปฮตฯ‚ ฮฟฮน ฯฮฟฮญฯ‚ ฯ€ฮฟฯ… ฮญฯ‡ฮตฯ„ฮต ฮฑฯ€ฮฟฮธฮทฮบฮตฯฯƒฮตฮน, ฯƒฮต ฮญฮฝฮฑ ฮผฮญฯฮฟฯ‚." @@ -1560,7 +1511,7 @@ msgstr "ฮ•ฯ€ฮนฯ„ฯฮญฯ€ฮตฮน ฯ„ฮทฮฝ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮท ฯƒฮต ฯ€ฯฮฟฯƒฯ‰ฯ€ฮนฮบฮฌ ฮผฮท msgid "Already have a code?" msgstr "ฮˆฯ‡ฮตฯ„ฮต ฮฎฮดฮท ฮบฯ‰ฮดฮนฮบฯŒ;" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "ฮˆฯ‡ฮตฯ„ฮต ฮฎฮดฮท ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒ;" @@ -1614,7 +1565,7 @@ msgstr "ฮˆฮฝฮฑ email ฮญฯ‡ฮตฮน ฯƒฯ„ฮฑฮปฮตฮฏ ฯƒฯ„ฮฟ {0}. ฮ ฮตฯฮนฮปฮฑฮผฮฒฮฌฮฝฮตฮน msgid "An error has occurred" msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯƒฯ†ฮฌฮปฮผฮฑ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯƒฯ†ฮฌฮปฮผฮฑ" @@ -1631,7 +1582,7 @@ msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯƒฯ†ฮฌฮปฮผฮฑ ฮบฮฑฯ„ฮฌ ฯ„ฮท ฮปฮฎฯˆฮท ฯ€ฯฮฟฯ„ msgid "An error occurred while fetching the feed." msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯƒฯ†ฮฌฮปฮผฮฑ ฮบฮฑฯ„ฮฌ ฯ„ฮทฮฝ ฮปฮฎฯˆฮท ฯ„ฮทฯ‚ ฯฮฟฮฎฯ‚." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯƒฯ†ฮฌฮปฮผฮฑ ฮบฮฑฯ„ฮฌ ฯ„ฮท ฮดฮทฮผฮนฮฟฯ…ฯฮณฮฏฮฑ ฯ„ฮฟฯ… ฯ€ฮฑฮบฮญฯ„ฮฟฯ… ฮญฮฝฮฑฯฮพฮฎฯ‚ ฯƒฮฑฯ‚. ฮ˜ฮญฮปฮตฯ„ฮต ฮฝฮฑ ฮดฮฟฮบฮนฮผฮฌฯƒฮตฯ„ฮต ฮพฮฑฮฝฮฌ;" @@ -1640,11 +1591,11 @@ msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯƒฯ†ฮฌฮปฮผฮฑ ฮบฮฑฯ„ฮฌ ฯ„ฮท ฮดฮทฮผฮนฮฟฯ…ฯฮณฮฏ msgid "An error occurred while hiding suggestion. {0}" msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯƒฯ†ฮฌฮปฮผฮฑ ฮบฮฑฯ„ฮฌ ฯ„ฮทฮฝ ฮฑฯ€ฯŒฮบฯฯ…ฯˆฮท ฯ„ฮทฯ‚ ฯ€ฯฯŒฯ„ฮฑฯƒฮทฯ‚. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯƒฯ†ฮฌฮปฮผฮฑ ฮบฮฑฯ„ฮฌ ฯ„ฮท ฯ†ฯŒฯฯ„ฯ‰ฯƒฮท ฯ„ฮฟฯ… ฮฒฮฏฮฝฯ„ฮตฮฟ. ฮ ฮฑฯฮฑฮบฮฑฮปฯŽ ฮดฮฟฮบฮนฮผฮฌฯƒฯ„ฮต ฮพฮฑฮฝฮฌ ฮฑฯฮณฯŒฯ„ฮตฯฮฑ." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯƒฯ†ฮฌฮปฮผฮฑ ฮบฮฑฯ„ฮฌ ฯ„ฮท ฯ†ฯŒฯฯ„ฯ‰ฯƒฮท ฯ„ฮฟฯ… ฮฒฮฏฮฝฯ„ฮตฮฟ. ฮ ฮฑฯฮฑฮบฮฑฮปฯŽ ฮดฮฟฮบฮนฮผฮฌฯƒฯ„ฮต ฮพฮฑฮฝฮฌ." @@ -1684,7 +1635,7 @@ msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯƒฯ†ฮฌฮปฮผฮฑ. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "ฮˆฮฝฮฑ ฮธฮญฮผฮฑ ฯ€ฮฟฯ… ฮดฮตฮฝ ฯ€ฮตฯฮนฮปฮฑฮผฮฒฮฌฮฝฮตฯ„ฮฑฮน ฯƒฮต ฮฑฯ…ฯ„ฮญฯ‚ ฯ„ฮนฯ‚ ฮตฯ€ฮนฮปฮฟฮณฮญฯ‚" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯ€ฯฯŒฮฒฮปฮทฮผฮฑ ฮบฮฑฯ„ฮฌ ฯ„ฮทฮฝ ฯ€ฯฮฟฯƒฯ€ฮฌฮธฮตฮนฮฑ ฮฑฮฝฮฟฮฏฮณฮผฮฑฯ„ฮฟฯ‚ ฯ„ฮทฯ‚ ฯƒฯ…ฮฝฮฟฮผฮนฮปฮฏฮฑฯ‚" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "ฮŸฯ€ฮฟฮนฮฟฯƒฮดฮฎฯ€ฮฟฯ„ฮต" @@ -1802,7 +1749,7 @@ msgstr "ฮŸฯ€ฮฟฮนฮฟฯƒฮดฮฎฯ€ฮฟฯ„ฮต ฮผฮต ฮฑฮบฮฟฮปฮฟฯ…ฮธฮตฮฏ" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "ฮคฮฑ ฮฟฮฝฯŒฮผฮฑฯ„ฮฑ ฮบฯ‰ฮดฮนฮบฯŽฮฝ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚ ฮตฯ†ฮฑฯฮผฮฟฮณฮฎฯ‚ msgid "App passwords" msgstr "ฮšฯ‰ฮดฮนฮบฮฟฮฏ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚ ฮตฯ†ฮฑฯฮผฮฟฮณฮฎฯ‚" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "ฮšฯ‰ฮดฮนฮบฮฟฮฏ ฮ ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚ ฮ•ฯ†ฮฑฯฮผฮฟฮณฮฎฯ‚" @@ -1891,8 +1838,8 @@ msgstr "ฮ•ฯ†ฮตฯƒฮท ฯƒฮต ฮฑฯ…ฯ„ฮฎฮฝ ฯ„ฮทฮฝ ฮฑฯ€ฯŒฯ†ฮฑฯƒฮท" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "ฮ‘ฯฯ‡ฮตฮนฮฟฮธฮตฯ„ฮฎฮธฮทฮบฮต ฮฑฯ€ฯŒ {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "ฮ‘ฯฯ‡ฮตฮนฮฟฮธฮตฯ„ฮทฮผฮญฮฝฮท ฮฑฮฝฮฌฯฯ„ฮทฯƒฮท" @@ -1980,7 +1927,7 @@ msgstr "ฮ•ฮฏฯƒฯ„ฮต ฯƒฮฏฮณฮฟฯ…ฯฮฟฮน ฯŒฯ„ฮน ฮธฮญฮปฮตฯ„ฮต ฮฝฮฑ ฮฑฯ†ฮฑฮนฯฮญฯƒฮตฯ„ msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "ฮ•ฮฏฯƒฯ„ฮต ฯƒฮฏฮณฮฟฯ…ฯฮฟฮน ฯŒฯ„ฮน ฮธฮญฮปฮตฯ„ฮต ฮฝฮฑ ฮฑฯ€ฮฟฯฯฮฏฯˆฮตฯ„ฮต ฮฑฯ…ฯ„ฮฎฮฝ ฯ„ฮทฮฝ ฮฑฮฝฮฌฯฯ„ฮทฯƒฮท;" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "ฮ‘ฯ…ฯ„ฯŒฮผฮฑฯ„ฮท ฮฑฮฝฮฑฯ€ฮฑฯฮฑฮณฯ‰ฮณฮฎ ฮฒฮฏฮฝฯ„ฮตฮฟ ฮบฮฑฮน GIF" msgid "Available" msgstr "ฮ”ฮนฮฑฮธฮญฯƒฮนฮผฮฟ" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "ฮ ฯฮนฮฝ ฮดฮทฮผฮนฮฟฯ…ฯฮณฮฎฯƒฮตฯ„ฮต ฮผฮนฮฑ ฮดฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท ฮฎ ฮฑฯ€ฮฑฮฝฯ„ฮฎฯƒฮตฯ„ฮต, ฯ€ฯฮญฯ€ฮตฮน ฯ€ฯฯŽฯ„ฮฑ ฮฝฮฑ ฮตฯ€ฮฑฮปฮทฮธฮตฯฯƒฮตฯ„ฮต ฯ„ฮฟ email ฯƒฮฑฯ‚." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "ฮ ฯฮนฮฝ ฮดฮทฮผฮนฮฟฯ…ฯฮณฮฎฯƒฮตฯ„ฮต ฮญฮฝฮฑ Starter Pack, ฯ€ฯฮญฯ€ฮตฮน ฯ€ฯฯŽฯ„ฮฑ ฮฝฮฑ ฮตฯ€ฮฑฮปฮทฮธฮตฯฯƒฮตฯ„ฮต ฯ„ฮฟ email ฯƒฮฑฯ‚." @@ -2135,10 +2091,10 @@ msgstr "ฮ ฯฮนฮฝ ฮผฯ€ฮฟฯฮญฯƒฮตฯ„ฮต ฮฝฮฑ ฮปฮฌฮฒฮตฯ„ฮต ฮตฮนฮดฮฟฯ€ฮฟฮนฮฎฯƒฮตฮนฯ‚ #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "ฮžฮตฮบฮนฮฝฮฎฯƒฯ„ฮต ฯ„ฮท ฮดฮนฮฑฮดฮนฮบฮฑฯƒฮฏฮฑ ฮดฮนฮฑฯƒฯ†ฮฌฮปฮนฯƒฮทฯ‚ ฮทฮป msgid "Beta Feature" msgstr "Beta ฮ›ฮตฮนฯ„ฮฟฯ…ฯฮณฮฏฮฑ" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "ฮ—ฮผฮตฯฮฟฮผฮทฮฝฮฏฮฑ ฮ“ฮญฮฝฮฝฮทฯƒฮทฯ‚" msgid "Birthday" msgstr "ฮ—ฮผฮตฯฮฟฮผฮทฮฝฮฏฮฑ ฮณฮญฮฝฮฝฮทฯƒฮทฯ‚" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "ฮ‘ฯ€ฮฟฮบฮปฮตฮนฯƒฮผฮญฮฝฮฟฯ‚" msgid "Blocked accounts" msgstr "ฮ‘ฯ€ฮฟฮบฮปฮตฮนฯƒฮผฮญฮฝฮฟฮน ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฮฏ" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "ฮ‘ฯ€ฮฟฮบฮปฮตฮนฯƒฮผฮญฮฝฮฟฮน ฮ›ฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฮฏ" @@ -2282,7 +2244,7 @@ msgstr "ฮŸฮน ฮฑฯ€ฮฟฮบฮปฮตฮนฯƒฮผฮญฮฝฮฟฮน ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฮฏ ฮดฮตฮฝ ฮผฯ€ฮฟฯฮฟ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "ฮŸฮน ฮฑฯ€ฮฟฮบฮปฮตฮนฯƒฮผฮญฮฝฮฟฮน ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฮฏ ฮดฮตฮฝ ฮผฯ€ฮฟฯฮฟฯฮฝ ฮฝฮฑ ฮฑฯ€ฮฑฮฝฯ„ฮฎฯƒฮฟฯ…ฮฝ ฯƒฯ„ฮนฯ‚ ฯƒฯ…ฮถฮทฯ„ฮฎฯƒฮตฮนฯ‚ ฯƒฮฑฯ‚, ฮฝฮฑ ฯƒฮฑฯ‚ ฮฑฮฝฮฑฯ†ฮญฯฮฟฯ…ฮฝ ฮฎ ฮฝฮฑ ฮฑฮปฮปฮทฮปฮตฯ€ฮนฮดฯฮฌฯƒฮฟฯ…ฮฝ ฮผฮต ฮฌฮปฮปฮฟ ฯ„ฯฯŒฯ€ฮฟ ฮผฮฑฮถฮฏ ฯƒฮฑฯ‚. ฮ”ฮต ฮธฮฑ ฮฒฮปฮญฯ€ฮตฯ„ฮต ฯ„ฮฟ ฯ€ฮตฯฮนฮตฯ‡ฯŒฮผฮตฮฝฯŒ ฯ„ฮฟฯ…ฯ‚ ฮบฮฑฮน ฮธฮฑ ฯ„ฮฟฯ…ฯ‚ ฮตฮผฯ€ฮฟฮดฮฏฮถฮตฯ„ฮต ฮฝฮฑ ฮดฮฟฯ…ฮฝ ฯ„ฮฟ ฮดฮนฮบฯŒ ฯƒฮฑฯ‚." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ฮŸ ฮฑฯ€ฮฟฮบฮปฮตฮนฯƒฮผฯŒฯ‚ ฮดฮตฮฝ ฮตฮผฯ€ฮฟฮดฮฏฮถฮตฮน ฮฑฯ…ฯ„ฯŒฮฝ ฯ„ฮฟฮฝ ฮตฯ„ฮนฮบฮตฯ„ฮฟฯ€ฮฟฮนฮทฯ„ฮฎ ฮฑฯ€ฯŒ ฯ„ฮฟ ฮฝฮฑ ฯ„ฮฟฯ€ฮฟฮธฮตฯ„ฮตฮฏ ฮตฯ„ฮนฮบฮญฯ„ฮตฯ‚ ฯƒฯ„ฮฟฮฝ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒ ฯƒฮฑฯ‚." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "ฮคฮฟ Bluesky ฮดฮตฮฝ ฮผฯ€ฮฟฯฮตฮฏ ฮฝฮฑ ฮตฯ€ฮนฮฒฮตฮฒฮฑฮนฯŽฯƒฮตฮน ฯ„ฮทฮฝ ฮฑฯ…ฮธฮตฮฝฯ„ฮนฮบฯŒฯ„ฮทฯ„ฮฑ ฯ„ฮทฯ‚ ฮทฮผฮตฯฮฟฮผฮทฮฝฮฏฮฑฯ‚ ฯ€ฮฟฯ… ฮดฮทฮปฯŽฮธฮทฮบฮต." @@ -2330,7 +2293,7 @@ msgstr "ฮคฮฟ Bluesky ฮตฮฏฮฝฮฑฮน ฮญฮฝฮฑ ฮฑฮฝฮฟฮนฯ‡ฯ„ฯŒ ฮดฮฏฮบฯ„ฯ…ฮฟ ฯŒฯ€ฮฟฯ… ฮผฯ€ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky ฮตฮฏฮฝฮฑฮน ฮญฮฝฮฑ ฮฑฮฝฮฟฮนฮบฯ„ฯŒ ฮดฮฏฮบฯ„ฯ…ฮฟ ฯŒฯ€ฮฟฯ… ฮผฯ€ฮฟฯฮตฮฏฯ„ฮต ฮฝฮฑ ฮตฯ€ฮนฮปฮญฮพฮตฯ„ฮต ฯ„ฮฟ ฮดฮนฮบฯŒ ฯƒฮฑฯ‚ ฯ€ฮฌฯฮฟฯ‡ฮฟ. ฮ‘ฮฝ ฮตฮฏฯƒฯ„ฮต ฮฝฮญฮฟฮน ฮตฮดฯŽ, ฯƒฮฑฯ‚ ฯƒฯ…ฮฝฮนฯƒฯ„ฮฟฯฮผฮต ฮฝฮฑ ฮผฮตฮฏฮฝฮตฯ„ฮต ฮผฮต ฯ„ฮทฮฝ ฯ€ฯฮฟฮตฯ€ฮนฮปฮตฮณฮผฮญฮฝฮท ฮตฯ€ฮนฮปฮฟฮณฮฎ Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "ฮคฮฟ Bluesky ฮตฮฏฮฝฮฑฮน ฮบฮฑฮปฯฯ„ฮตฯฮฟ ฮผฮต ฯ†ฮฏฮปฮฟฯ…ฯ‚!" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "ฮคฮฟ Bluesky ฮฑฯ€ฮฟฮธฮทฮบฮตฯฮตฮน ฯ„ฮนฯ‚ ฮตฯ€ฮฑฯ†ฮญฯ‚ ฯƒฮฑฯ‚ ฯ‰ฯ‚ ฮบฯ‰ฮดฮนฮบฮฟฯ€ฮฟฮนฮทฮผฮญฮฝฮฑ ฮดฮตฮดฮฟฮผฮญฮฝฮฑ. ฮ— ฮฑฯ†ฮฑฮฏฯฮตฯƒฮท ฯ„ฯ‰ฮฝ ฮตฯ€ฮฑฯ†ฯŽฮฝ ฯƒฮฑฯ‚ ฮธฮฑ ฮดฮนฮฑฮณฯฮฌฯˆฮตฮน ฮฑฮผฮญฯƒฯ‰ฯ‚ ฮฑฯ…ฯ„ฮฌ ฯ„ฮฑ ฮดฮตฮดฮฟฮผฮญฮฝฮฑ." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "ฮคฮฟ Bluesky ฮธฮฑ ฮตฯ€ฮนฮปฮญฮพฮตฮน ฮผฮนฮฑ ฯƒฮตฮนฯฮฌ ฮฑฯ€ฯŒ ฯ€ฯฮฟฯ„ฮตฮนฮฝฯŒฮผฮตฮฝฮฟฯ…ฯ‚ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯฯ‚ ฮฑฯ€ฯŒ ฮฌฯ„ฮฟฮผฮฑ ฯƒฯ„ฮฟ ฮดฮฏฮบฯ„ฯ…ฯŒ ฯƒฮฑฯ‚." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "ฮ ฮตฯฮนฮฎฮณฮทฯƒฮท ฯƒฯ„ฮนฯ‚ ฯ€ฯฮฟฯƒฮฑฯฮผฮฟฯƒฮผฮญฮฝฮตฯ‚ ฯฮฟฮญฯ‚" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "ฮ ฮตฯฮนฮฎฮณฮทฯƒฮท ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฯ‰ฮฝ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŽฮฝ" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "ฮ ฮตฯฮนฮทฮณฮทฮธฮตฮฏฯ„ฮต ฯƒฮต ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮตฯ‚ ฯฮฟฮญฯ‚ ฯƒฯ„ฮทฮฝ ฯƒฮตฮปฮฏฮดฮฑ ฮ•ฮพฮตฯฮตฯฮฝฮทฯƒฮทฯ‚" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "ฮ ฮตฯฮนฮทฮณฮทฮธฮตฮฏฯ„ฮต ฯƒฮต ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮตฯ‚ ฯ€ฯฮฟฯ„ฮฌฯƒฮตฮนฯ‚" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "ฮ ฮตฯฮนฮทฮณฮทฮธฮตฮฏฯ„ฮต ฯƒฮต ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮตฯ‚ ฯ€ฯฮฟฯ„ฮฌฯƒฮตฮนฯ‚ ฯƒฯ„ฮทฮฝ ฯƒฮตฮปฮฏฮดฮฑ ฮ•ฮพฮตฯฮตฯฮฝฮทฯƒฮทฯ‚" @@ -2425,24 +2388,25 @@ msgstr "ฮ ฮตฯฮนฮทฮณฮทฮธฮตฮฏฯ„ฮต ฯƒฮต ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮตฯ‚ ฯ€ฯฮฟฯ„ฮฌฯƒฮตฮน msgid "Browse other feeds" msgstr "ฮ ฮตฯฮนฮทฮณฮทฮธฮตฮฏฯ„ฮต ฯƒฮต ฮฌฮปฮปฮตฯ‚ ฯฮฟฮญฯ‚" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "ฮ ฮตฯฮนฮทฮณฮทฮธฮตฮฏฯ„ฮต ฯƒฮต ฮดฮทฮผฮฟฯƒฮนฮตฯฯƒฮตฮนฯ‚ ฯƒฯ‡ฮตฯ„ฮนฮบฮฌ ฮผฮต ฯ„ฮฟ {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "ฮ ฮตฯฮนฮทฮณฮทฮธฮตฮฏฯ„ฮต ฯƒฮต ฮดฮทฮผฮฟฯƒฮนฮตฯฯƒฮตฮนฯ‚ ฮผฮต ฮตฯ„ฮนฮบฮญฯ„ฮฑ {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "ฮ ฮตฯฮนฮฎฮณฮทฯƒฮท ฯ€ฮฑฮบฮญฯ„ฮฟฯ… ฮฝฮญฯ‰ฮฝ {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "ฮ ฮตฯฮนฮฎฮณฮทฯƒฮท ฮธฮญฮผฮฑฯ„ฮฟฯ‚ {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "ฮ ฮตฯฮนฮฎฮณฮทฯƒฮท ฮธฮญฮผฮฑฯ„ฮฟฯ‚ {displayName}" @@ -2461,8 +2425,8 @@ msgstr "ฮšฮฟฯ…ฮผฯ€ฮฏ ฮณฮนฮฑ ฮฝฮฑ ฮตฯ€ฮนฯƒฯ„ฯฮญฯˆฮตฯ„ฮต ฯƒฯ„ฮฟ ฮฑฯฯ‡ฮนฮบฯŒ ฯ‡ฯ #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "ฮ‘ฯ€ฯŒ {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "ฮ‘ฯ€ฯŒ <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "ฮ”ฮทฮผฮนฮฟฯ…ฯฮณฯŽฮฝฯ„ฮฑฯ‚ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒ ฯƒฯ…ฮผฯ†ฯ‰ฮฝฮตฮฏฯ„ฮต ฮผ msgid "By creating an account you agree to the <0>Terms of Service." msgstr "ฮ”ฮทฮผฮนฮฟฯ…ฯฮณฯŽฮฝฯ„ฮฑฯ‚ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒ ฯƒฯ…ฮผฯ†ฯ‰ฮฝฮตฮฏฯ„ฮต ฮผฮต ฯ„ฮฟฯ…ฯ‚ <0>ฮŒฯฮฟฯ…ฯ‚ ฮงฯฮฎฯƒฮทฯ‚." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "ฮ‘ฯ€ฯŒ ฮตฯƒฮฌฯ‚" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "ฮšฮฌฮผฮตฯฮฑ" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "ฮ‘ฮบฯฯฯ‰ฯƒฮท ฮตฯ€ฮฑฮฝฮตฮฝฮตฯฮณฮฟฯ€ฮฟฮฏฮทฯƒฮทฯ‚ ฮบฮฑฮน ฮญฮพฮฟฮดฮฟฯ‚" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "ฮ‘ฮบฯฯฯ‰ฯƒฮท ฮฑฮฝฮฑฮถฮฎฯ„ฮทฯƒฮทฯ‚" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "ฮฃฮฏฮณฮฑฯƒฮท ฯƒฯ…ฮฝฮฟฮผฮนฮปฮฏฮฑฯ‚" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "ฮ•ฮนฯƒฮตฯฯ‡ฯŒฮผฮตฮฝฮฑ ฮฑฮนฯ„ฮฎฮผฮฑฯ„ฮฟฯ‚ ฯƒฯ…ฮฝฮฟฮผฮนฮปฮฏฮฑฯ‚" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "ฮ‘ฮนฯ„ฮฎฮผฮฑฯ„ฮฑ ฯƒฯ…ฮฝฮฟฮผฮนฮปฮฏฮฑฯ‚" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "ฮกฯ…ฮธฮผฮฏฯƒฮตฮนฯ‚ ฯƒฯ…ฮฝฮฟฮผฮนฮปฮฏฮฑฯ‚" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "ฮ‘ฯ†ฮฑฮฏฯฮตฯƒฮท ฯƒฮฏฮณฮฑฯƒฮทฯ‚ ฯƒฯ…ฮฝฮฟฮผฮนฮปฮฏฮฑฯ‚" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "ฮฃฯ…ฮฝฮฟฮผฮนฮปฮฏฮตฯ‚" @@ -2837,7 +2802,7 @@ msgstr "ฮ•ฯ€ฮนฮปฮญฮพฯ„ฮต ฮผฮญฮธฮฟฮดฮฟ ฮตฯ€ฮฑฮปฮฎฮธฮตฯ…ฯƒฮทฯ‚ domain" msgid "Choose Feeds" msgstr "ฮ•ฯ€ฮนฮปฮญฮพฯ„ฮต ฮกฮฟฮญฯ‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "ฮ•ฯ€ฮนฮปฮญฮพฯ„ฮต ฮณฮนฮฑ ฮผฮญฮฝฮฑ" @@ -2854,7 +2819,7 @@ msgstr "ฮ•ฯ€ฮนฮปฮญฮพฯ„ฮต ฮ†ฯ„ฮฟฮผฮฑ" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "ฮ•ฯ€ฮนฮปฮญฮพฯ„ฮต ฮฑฯ…ฯ„ฯŒ ฯ„ฮฟ ฯ‡ฯฯŽฮผฮฑ ฯ‰ฯ‚ ฮตฮนฮบฯŒฮฝฮฑ ฯ€ฯฮฟฯ†ฮฏฮป ฯƒฮฑฯ‚" @@ -2879,7 +2844,7 @@ msgstr "ฮ•ฯ€ฮนฮปฮญฮพฯ„ฮต ฯ„ฮฟ ฮดฮนฮบฯŒ ฯƒฮฑฯ‚ ฯ‡ฯฮฟฮฝฮฟฮปฯŒฮณฮนฮฟ! ฮŸฮน ฯฮฟฮญ msgid "Choose your password" msgstr "ฮ•ฯ€ฮนฮปฮญฮพฯ„ฮต ฯ„ฮฟฮฝ ฮบฯ‰ฮดฮนฮบฯŒ ฯƒฮฑฯ‚" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "ฮ•ฯ€ฮนฮปฮฟฮณฮฎ ฯ„ฮฟฯ… ฮฟฮฝฯŒฮผฮฑฯ„ฮฟฯ‚ ฯ‡ฯฮฎฯƒฯ„ฮท ฯƒฮฑฯ‚" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "ฮ ฮฑฯ„ฮฎฯƒฯ„ฮต ฮณฮนฮฑ ฮฌฮฝฮฟฮนฮณฮผฮฑ ฯ„ฮฟฯ… ฮผฮตฮฝฮฟฯ ฮตฯ„ฮนฮบฮญฯ„ฮฑฯ‚ ฮณฮนฮฑ {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "ฮšฮฌฮฝฯ„ฮต ฮบฮปฮนฮบ ฮณฮนฮฑ ฮฝฮฑ ฮตฯ€ฮฑฮฝฮฑฮปฮฌฮฒฮตฯ„ฮต ฯ„ฮฟ ฮฑฯ€ฮฟฯ„ฯ…ฯ‡ฮทฮผฮญฮฝฮฟ ฮผฮฎฮฝฯ…ฮผฮฑ" @@ -3003,7 +2968,7 @@ msgstr "ฮšฮฌฮฝฯ„ฮต ฮบฮปฮนฮบ ฮณฮนฮฑ ฮฝฮฑ ฮตฯ€ฮฑฮฝฮฑฮปฮฌฮฒฮตฯ„ฮต ฯ„ฮฟ ฮฑฯ€ฮฟฯ„ฯ…ฯ‡ #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "ฮšฮฌฮฝฯ„ฮต ฮบฮปฮนฮบ ฮณฮนฮฑ ฮฝฮฑ ฮตฯ€ฮฑฮฝฮฑฮปฮฌฮฒฮตฯ„ฮต ฯ„ฮฟ ฮฑฯ€ฮฟฯ„ฯ…ฯ‡ msgid "Close" msgstr "ฮšฮปฮตฮฏฯƒฮนฮผฮฟ" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "ฮšฮปฮตฮฏฯƒฮนฮผฮฟ ฮตฮฝฮตฯฮณฮฟฯ ฮดฮนฮฑฮปฯŒฮณฮฟฯ…" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "ฮšฮปฮตฮฏฯƒฮนฮผฮฟ ฯ€ฯฮฟฮฒฮฟฮปฮฎฯ‚ ฮตฮนฮบฯŒฮฝฯ‰ฮฝ" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "ฮšฮปฮตฮฏฯƒฮนฮผฮฟ ฮผฮตฮฝฮฟฯ" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "ฮšฮปฮตฮฏฯƒฮนฮผฮฟ ฮฑฯ…ฯ„ฮฟฯ ฯ„ฮฟฯ… ฮดฮนฮฑฮปฯŒฮณฮฟฯ…" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "ฮšฮปฮตฮฏฮฝฮตฮน ฯ„ฮทฮฝ ฮตฮนฮดฮฟฯ€ฮฟฮฏฮทฯƒฮท ฮตฮฝฮทฮผฮญฯฯ‰ฯƒฮทฯ‚ ฮบฯ‰ฮดฮนฮบฮฟฯ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "ฮ›ฮตฮนฯ„ฮฟฯ…ฯฮณฮฏฮฑ ฯ‡ฯฯŽฮผฮฑฯ„ฮฟฯ‚" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "ฮšฯŒฮผฮนฮบฯ‚" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "ฮŸฮดฮทฮณฮฏฮตฯ‚ ฮšฮฟฮนฮฝฯŒฯ„ฮทฯ„ฮฑฯ‚" @@ -3141,7 +3106,7 @@ msgstr "ฮŸฮดฮทฮณฮฏฮตฯ‚ ฮšฮฟฮนฮฝฯŒฯ„ฮทฯ„ฮฑฯ‚" msgid "Complete onboarding and start using your account" msgstr "ฮŸฮปฮฟฮบฮปฮทฯฯŽฯƒฯ„ฮต ฯ„ฮทฮฝ ฮตฮนฯƒฮฑฮณฯ‰ฮณฮฎ ฮบฮฑฮน ฮพฮตฮบฮนฮฝฮฎฯƒฯ„ฮต ฮฝฮฑ ฯ‡ฯฮทฯƒฮนฮผฮฟฯ€ฮฟฮนฮตฮฏฯ„ฮต ฯ„ฮฟฮฝ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒ ฯƒฮฑฯ‚" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "ฮŸฮปฮฟฮบฮปฮฎฯฯ‰ฯƒฮท ฯ„ฮทฯ‚ ฯ€ฯฯŒฮบฮปฮทฯƒฮทฯ‚" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "ฮฃฯฮฝฯ„ฮฑฮพฮท ฮฝฮญฮฑฯ‚ ฮฑฮฝฮฌฯฯ„ฮทฯƒฮทฯ‚" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "ฮฃฯฮฝฯ„ฮฑฮพฮท ฮฑฮฝฮฑฯฯ„ฮฎฯƒฮตฯ‰ฮฝ ฮญฯ‰ฯ‚ {0, plural, other {# ฯ‡ฮฑฯฮฑฮบฯ„ฮฎฯฮตฯ‚}}" @@ -3160,11 +3125,11 @@ msgstr "ฮฃฯฮฝฯ„ฮฑฮพฮท ฮฑฮฝฮฑฯฯ„ฮฎฯƒฮตฯ‰ฮฝ ฮญฯ‰ฯ‚ {0, plural, other {# ฯ‡ฮฑฯฮฑ msgid "Compose reply" msgstr "ฮฃฯฮฝฯ„ฮฑฮพฮท ฮฑฯ€ฮฌฮฝฯ„ฮทฯƒฮทฯ‚" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "ฮฃฯ…ฮผฯ€ฮฏฮตฯƒฮท ฮฒฮฏฮฝฯ„ฮตฮฟ..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "ฮ•ฯ€ฮนฮบฮฟฮนฮฝฯ‰ฮฝฮฏฮฑ ฮผฮต ฯ„ฮทฮฝ ฯ…ฯ€ฮฟฯƒฯ„ฮฎฯฮนฮพฮท" @@ -3253,7 +3218,7 @@ msgstr "ฮ ฮตฯฮนฮตฯ‡ฯŒฮผฮตฮฝฮฟ ฮบฮฑฮน ฮœฮญฯƒฮฑ" msgid "Content and media" msgstr "ฮ ฮตฯฮนฮตฯ‡ฯŒฮผฮตฮฝฮฟ ฮบฮฑฮน ฮผฮญฯƒฮฑ" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "ฮ ฮตฯฮนฮตฯ‡ฯŒฮผฮตฮฝฮฟ ฮบฮฑฮน ฮœฮญฯƒฮฑ" @@ -3265,10 +3230,6 @@ msgstr "ฮ‘ฯ€ฮฟฮบฮปฮตฮนฯƒฮผฮญฮฝฮฟ ฮ ฮตฯฮนฮตฯ‡ฯŒฮผฮตฮฝฮฟ" msgid "Content filters" msgstr "ฮฆฮฏฮปฯ„ฯฮฑ ฯ€ฮตฯฮนฮตฯ‡ฮฟฮผฮญฮฝฮฟฯ…" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "ฮ ฮตฯฮนฮตฯ‡ฯŒฮผฮตฮฝฮฟ ฮฑฯ€ฯŒ ฯŒฮปฮฟ ฯ„ฮฟ ฮดฮฏฮบฯ„ฯ…ฮฟ ฯ„ฮฟ ฮฟฯ€ฮฟฮฏฮฟ ฯ€ฮนฯƒฯ„ฮตฯฮฟฯ…ฮผฮต ฯŒฯ„ฮน ฮผฯ€ฮฟฯฮตฮฏ ฮฝฮฑ ฯƒฮฑฯ‚ ฮฑฯฮญฯƒฮตฮน." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "ฮ ฮตฯฮนฮตฯ‡ฯŒฮผฮตฮฝฮฟ ฯ€ฮฟฯ… ฯ€ฯฮฟฯ‰ฮธฮตฮฏ ฮฎ ฮฑฯ€ฮตฮนฮบฮฟฮฝฮฏฮถฮตฮน ฮฑฯ…ฯ„ฮฟฯ„ฯฮฑฯ…ฮผฮฑฯ„ฮนฯƒฮผฯŒ" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "ฮ ฯฮฟฮตฮนฮดฮฟฯ€ฮฟฮฏฮทฯƒฮท ฮ ฮตฯฮนฮตฯ‡ฮฟฮผฮญฮฝฮฟฯ…" msgid "Content warnings" msgstr "ฮ ฯฮฟฮตฮนฮดฮฟฯ€ฮฟฮนฮฎฯƒฮตฮนฯ‚ ฯ€ฮตฯฮนฮตฯ‡ฮฟฮผฮญฮฝฮฟฯ…" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "ฮฆฯŒฮฝฯ„ฮฟ ฮผฮตฮฝฮฟฯ ฯ€ฮตฯฮนฮฒฮฌฮปฮปฮฟฮฝฯ„ฮฟฯ‚, ฮบฮฌฮฝฯ„ฮต ฮบฮปฮนฮบ ฮณฮนฮฑ ฮฝฮฑ ฮบฮปฮตฮฏฯƒฮตฯ„ฮต ฯ„ฮฟ ฮผฮตฮฝฮฟฯ." @@ -3302,7 +3263,7 @@ msgstr "ฮฆฯŒฮฝฯ„ฮฟ ฮผฮตฮฝฮฟฯ ฯ€ฮตฯฮนฮฒฮฌฮปฮปฮฟฮฝฯ„ฮฟฯ‚, ฮบฮฌฮฝฯ„ฮต ฮบฮปฮนฮบ ฮณ #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "ฮฃฯ…ฮฝฮญฯ‡ฮตฮนฮฑ ฯƒฯ…ฮถฮฎฯ„ฮทฯƒฮทฯ‚..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "ฮ— ฮญฮบฮดฮฟฯƒฮท build ฮฑฮฝฯ„ฮนฮณฯฮฌฯ†ฮทฮบฮต ฯƒฯ„ฮฟ ฯ€ฯฯŒฯ‡ฮตฮนฯฮฟ" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "ฮ‘ฮฝฯ„ฮนฮณฯฮฑฯ†ฮฎ ฮบฯ‰ฮดฮนฮบฮฟฯ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚ ฮตฯ†ฮฑฯฮผฮฟฮณฮฎฯ‚" msgid "Copy at:// URI" msgstr "ฮ‘ฮฝฯ„ฮนฮณฯฮฑฯ†ฮฎ at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "ฮ‘ฮฝฯ„ฮนฮณฯฮฑฯ†ฮฎ ฮฃฯ…ฮฝฮดฮญฯƒฮผฮฟฯ…" msgid "Copy link to list" msgstr "ฮ‘ฮฝฯ„ฮนฮณฯฮฑฯ†ฮฎ ฯƒฯ…ฮฝฮดฮญฯƒฮผฮฟฯ… ฯƒฯ„ฮท ฮปฮฏฯƒฯ„ฮฑ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "ฮ‘ฮฝฯ„ฮนฮณฯฮฑฯ†ฮฎ ฯƒฯ…ฮฝฮดฮญฯƒฮผฮฟฯ… ฯƒฯ„ฮทฮฝ ฮฑฮฝฮฌฯฯ„ฮทฯƒฮท" @@ -3470,8 +3431,8 @@ msgstr "ฮ‘ฮฝฯ„ฮนฮณฯฮฑฯ†ฮฎ ฯƒฯ…ฮฝฮดฮญฯƒฮผฮฟฯ… ฯƒฯ„ฮฟ ฯ€ฮฑฮบฮญฯ„ฮฟ ฮฝฮญฯ‰ฮฝ" msgid "Copy message text" msgstr "ฮ‘ฮฝฯ„ฮนฮณฯฮฑฯ†ฮฎ ฮบฮตฮนฮผฮญฮฝฮฟฯ… ฮผฮทฮฝฯฮผฮฑฯ„ฮฟฯ‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "ฮ‘ฮฝฯ„ฮนฮณฯฮฑฯ†ฮฎ ฮฑฮฝฮฌฯฯ„ฮทฯƒฮทฯ‚ at:// URI" @@ -3490,7 +3451,7 @@ msgstr "ฮ‘ฮฝฯ„ฮนฮณฯฮฑฯ†ฮฎ ฯ„ฮนฮผฮฎฯ‚ ฮตฮณฮณฯฮฑฯ†ฮฎฯ‚ TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "ฮ ฮฟฮปฮนฯ„ฮนฮบฮฎ ฮ ฮฝฮตฯ…ฮผฮฑฯ„ฮนฮบฯŽฮฝ ฮ”ฮนฮบฮฑฮนฯ‰ฮผฮฌฯ„ฯ‰ฮฝ" @@ -3540,11 +3501,11 @@ msgstr "ฮ‘ฮดฯ…ฮฝฮฑฮผฮฏฮฑ ฮฑฮบฮฟฮปฮฟฯฮธฮทฯƒฮทฯ‚ ฯŒฮปฯ‰ฮฝ ฯ„ฯ‰ฮฝ ฮฑฮฝฯ„ฮนฯƒฯ„ฮฟฮน msgid "Could not leave chat" msgstr "ฮ”ฮตฮฝ ฮฎฯ„ฮฑฮฝ ฮดฯ…ฮฝฮฑฯ„ฮฎ ฮท ฮฑฯ€ฮฟฯ‡ฯŽฯฮทฯƒฮท ฮฑฯ€ฯŒ ฯ„ฮท ฯƒฯ…ฮฝฮฟฮผฮนฮปฮฏฮฑ" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "ฮ”ฮตฮฝ ฮฎฯ„ฮฑฮฝ ฮดฯ…ฮฝฮฑฯ„ฮฎ ฮท ฯ†ฯŒฯฯ„ฯ‰ฯƒฮท ฯ„ฮทฯ‚ ฯฮฟฮฎฯ‚" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "ฮ”ฮตฮฝ ฮฎฯ„ฮฑฮฝ ฮดฯ…ฮฝฮฑฯ„ฮฎ ฮท ฯƒฮฏฮณฮฑฯƒฮท ฯ„ฮทฯ‚ ฯƒฯ…ฮฝฮฟฮผฮนฮปฮฏฮฑฯ‚" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "ฮ”ฮทฮผฮนฮฟฯ…ฯฮณฮฏฮฑ" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "ฮ”ฮทฮผฮนฮฟฯ…ฯฮณฮฏฮฑ QR ฮบฯŽฮดฮนฮบฮฑ ฮณฮนฮฑ ฮญฮฝฮฑ starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "ฮ”ฮทฮผฮนฮฟฯ…ฯฮณฮฏฮฑ starter pack" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "ฮ”ฮทฮผฮนฮฟฯ…ฯฮณฮฏฮฑ starter pack ฮณฮนฮฑ ฮผฮญฮฝฮฑ" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "ฮ•ฮณฮณฯฮฑฯ†ฮฎ" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "ฮ”ฮทฮผฮนฮฟฯ…ฯฮณฮฏฮฑ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯ" @@ -3666,15 +3627,15 @@ msgstr "ฮ”ฮทฮผฮนฮฟฯ…ฯฮณฮฏฮฑ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯ" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "ฮ”ฮทฮผฮนฮฟฯ…ฯฮณฮฎฯƒฯ„ฮต ฮผฮนฮฑ ฮตฮนฮบฯŒฮฝฮฑ ฯ€ฯฮฟฯ†ฮฏฮป ฮตฯ‰ฮฑฮปฮปฮฑฮบฯ„ฮนฮบฮฌ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "ฮ”ฮทฮผฮนฮฟฯ…ฯฮณฮฏฮฑ ฮฌฮปฮปฮฟฯ…" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "ฮ ฮฟฮปฮนฯ„ฮนฯƒฮผฯŒฯ‚" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "ฮฃฮบฮฟฯ„ฮตฮนฮฝฯŒ" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "ฮฃฮบฮฟฯ„ฮตฮนฮฝฯŒ" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "ฮฃฮบฮฟฯ„ฮตฮนฮฝฯŒ ฮธฮญฮผฮฑ" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "ฮ ฯฮฟฮตฯ€ฮนฮปฮฟฮณฮฎ" @@ -3894,7 +3855,7 @@ msgstr "ฮ”ฮนฮฑฮณฯฮฑฯ†ฮฎ ฯ„ฮฟฯ… ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯ ฮผฮฟฯ…" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "ฮ”ฮนฮฑฮณฯฮฑฯ†ฮฎ ฮฑฮฝฮฌฯฯ„ฮทฯƒฮทฯ‚" @@ -3988,7 +3949,7 @@ msgstr "ฮ”ฮนฮฌฮปฮฟฮณฮฟฯ‚: ฯฯ…ฮธฮผฮฏฯƒฯ„ฮต ฯ€ฮฟฮนฮฟฮน ฮผฯ€ฮฟฯฮฟฯฮฝ ฮฝฮฑ ฮฑฮปฮป msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "ฮฯ„ฮนฮผฮฑฯฮนฯƒฮผฮญฮฝฮฟ" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "ฮ‘ฯ€ฮตฮฝฮตฯฮณฮฟฯ€ฮฟฮนฮทฮผฮญฮฝฮฟ" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "ฮ‘ฯ€ฯŒฯฯฮนฯˆฮท" msgid "Discard changes?" msgstr "ฮ‘ฯ€ฯŒฯฯฮนฯˆฮท ฮฑฮปฮปฮฑฮณฯŽฮฝ;" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "ฮ‘ฯ€ฯŒฯฯฮนฯˆฮท ฯ€ฯฮฟฯƒฯ‡ฮตฮดฮฏฮฟฯ…;" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "ฮ‘ฯ€ฯŒฯฯฮนฯˆฮท ฮฑฮฝฮฌฯฯ„ฮทฯƒฮทฯ‚;" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "ฮ‘ฯ€ฮฟฮธฮฌฯฯฯ…ฮฝฯƒฮท ฯ„ฯ‰ฮฝ ฮตฯ†ฮฑฯฮผฮฟฮณฯŽฮฝ ฮฑฯ€ฯŒ ฯ„ฮทฮฝ ฮตฮผฯ†ฮฌฮฝฮนฯƒฮท ฯ„ฮฟฯ… ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯ ฮผฮฟฯ… ฯƒฮต ฯ‡ฯฮฎฯƒฯ„ฮตฯ‚ ฯ€ฮฟฯ… ฮดฮตฮฝ ฮญฯ‡ฮฟฯ…ฮฝ ฯƒฯ…ฮฝฮดฮตฮธฮตฮฏ" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "ฮ‘ฯ€ฮฟฮธฮฌฯฯฯ…ฮฝฯƒฮท ฯ„ฯ‰ฮฝ ฮตฯ†ฮฑฯฮผฮฟฮณฯŽฮฝ ฮฑฯ€ฯŒ ฯ„ฮทฮฝ ฮตฮผฯ†ฮฌ msgid "Discover new custom feeds" msgstr "ฮ‘ฮฝฮฑฮบฮฑฮปฯฯˆฯ„ฮต ฮฝฮญฮตฯ‚ ฯ€ฯฮฟฯƒฮฑฯฮผฮฟฯƒฮผฮญฮฝฮตฯ‚ ฯฮฟฮญฯ‚" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "ฮ‘ฮฝฮฑฮบฮฑฮปฯฯˆฯ„ฮต ฮฮญฮตฯ‚ ฮกฮฟฮญฯ‚" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "ฮ‘ฯ€ฯŒฯฯฮนฯˆฮท" @@ -4103,28 +4064,28 @@ msgstr "ฮ‘ฯ€ฯŒฯฯฮนฯˆฮท" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "ฮ‘ฯ€ฯŒฯฯฮนฯˆฮท ฯƒฯ†ฮฌฮปฮผฮฑฯ„ฮฟฯ‚" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "ฮ‘ฯ€ฯŒฯฯฮนฯˆฮท ฮฟฮดฮทฮณฮฟฯ Starter Pack" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "ฮ•ฮผฯ†ฮฌฮฝฮนฯƒฮท ฮผฮตฮณฮฑฮปฯฯ„ฮตฯฯ‰ฮฝ ฮตฯ„ฮนฮบฮตฯ„ฯŽฮฝ ฮตฮฝฮฑฮปฮปฮฑฮบ msgid "Display name" msgstr "ฮ•ฮผฯ†ฮฑฮฝฮนฮถฯŒฮผฮตฮฝฮฟ ฯŒฮฝฮฟฮผฮฑ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "ฮŸฮปฮฟฮบฮปฮทฯฯŽฮธฮทฮบฮต" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "ฮ ฮฑฯ„ฮฎฯƒฯ„ฮต ฮดฯฮฟ ฯ†ฮฟฯฮญฯ‚ ฮณฮนฮฑ ฮฝฮฑ ฮบฮปฮตฮฏฯƒฮตฯ„ฮต ฯ„ฮฟ ฯ€ฮฑฯฮฌฮธฯ…ฯฮฟ ฮดฮนฮฑฮปฯŒฮณฮฟฯ…" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "ฮ•ฯ€ฮตฮพฮตฯฮณฮฑฯƒฮฏฮฑ ฮตฮนฮบฯŒฮฝฮฑฯ‚" msgid "Edit interaction settings" msgstr "ฮ•ฯ€ฮตฮพฮตฯฮณฮฑฯƒฮฏฮฑ ฯฯ…ฮธฮผฮฏฯƒฮตฯ‰ฮฝ ฮฑฮปฮปฮทฮปฮตฯ€ฮฏฮดฯฮฑฯƒฮทฯ‚" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "ฮ•ฯ€ฮตฮพฮตฯฮณฮฑฯƒฮฏฮฑ ฯ„ฯ‰ฮฝ ฯฮฟฯŽฮฝ ฮผฮฟฯ…" @@ -4406,6 +4368,11 @@ msgstr "ฮ•ฯ€ฮตฮพฮตฯฮณฮฑฯƒฮฏฮฑ ฯ„ฯ‰ฮฝ ฯฮฟฯŽฮฝ ฮผฮฟฯ…" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "ฮ•ฯ€ฮตฮพฮตฯฮณฮฑฯƒฮฏฮฑ ฮฑฯ„ฯŒฮผฯ‰ฮฝ" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "ฮ•ฯ€ฮตฮพฮตฯฮณฮฑฯƒฮฏฮฑ ฯ„ฮฟฯ… ฯ€ฮฟฮนฮฟฯ‚ ฮผฯ€ฮฟฯฮตฮฏ ฮฝฮฑ ฮฑฯ€ฮฑฮฝฯ„ฮฎฯƒฮตฮน" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "ฮ•ฯ€ฮตฮพฮตฯฮณฮฑฯƒฮฏฮฑ ฯ„ฮฟฯ… starter pack ฯƒฮฑฯ‚" @@ -4500,8 +4467,8 @@ msgstr "ฮ•ฮฝฯƒฯ‰ฮผฮฑฯ„ฯŽฯƒฯ„ฮต ฮบฯŽฮดฮนฮบฮฑ HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "ฮ•ฮฝฯƒฯ‰ฮผฮฌฯ„ฯ‰ฯƒฮท ฮฑฮฝฮฌฯฯ„ฮทฯƒฮทฯ‚" @@ -4509,7 +4476,7 @@ msgstr "ฮ•ฮฝฯƒฯ‰ฮผฮฌฯ„ฯ‰ฯƒฮท ฮฑฮฝฮฌฯฯ„ฮทฯƒฮทฯ‚" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "ฮ•ฮฝฯƒฯ‰ฮผฮฑฯ„ฯŽฯƒฯ„ฮต ฮฑฯ…ฯ„ฮฎฮฝ ฯ„ฮทฮฝ ฮฑฮฝฮฌฯฯ„ฮทฯƒฮท ฯƒฯ„ฮฟฮฝ ฮนฯƒฯ„ฯŒฯ„ฮฟฯ€ฯŒ ฯƒฮฑฯ‚. ฮ‘ฯ€ฮปฯŽฯ‚ ฮฑฮฝฯ„ฮนฮณฯฮฌฯˆฯ„ฮต ฯ„ฮฟ ฯ€ฮฑฯฮฑฮบฮฌฯ„ฯ‰ ฯ„ฮผฮฎฮผฮฑ ฮบฮฑฮน ฮตฯ€ฮนฮบฮฟฮปฮปฮฎฯƒฯ„ฮต ฯ„ฮฟ ฯƒฯ„ฮฟฮฝ ฮบฯŽฮดฮนฮบฮฑ HTML ฯ„ฮฟฯ… ฮนฯƒฯ„ฯŒฯ„ฮฟฯ€ฮฟฯ ฯƒฮฑฯ‚." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4500,7 @@ msgstr "ฮ•ฮฝฮตฯฮณฮฟฯ€ฮฟฮฏฮทฯƒฮท ฯ€ฮตฯฮนฮตฯ‡ฮฟฮผฮญฮฝฮฟฯ… ฮตฮฝฮทฮปฮฏฮบฯ‰ฮฝ" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "ฮ•ฮฝฮตฯฮณฮฟฯ€ฮฟฮฏฮทฯƒฮท ฮตฮพฯ‰ฯ„ฮตฯฮนฮบฮฟฯ ฮผฮญฯƒฮฟฯ…" msgid "Enable media players for" msgstr "ฮ•ฮฝฮตฯฮณฮฟฯ€ฮฟฮฏฮทฯƒฮท media players ฮณฮนฮฑ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "ฮ•ฮฝฮตฯฮณฮฟฯ€ฮฟฮนฮทฮผฮญฮฝฮฟ" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "ฮคฮญฮปฮฟฯ‚ ฯฮฟฮฎฯ‚" @@ -4608,7 +4576,7 @@ msgstr "ฮ•ฮนฯƒฮฌฮณฮตฯ„ฮต ฮผฮนฮฑ ฮปฮญฮพฮท ฮฎ ฮตฯ„ฮนฮบฮญฯ„ฮฑ" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4618,11 @@ msgstr "ฮ•ฮนฯƒฮฌฮณฮตฯ„ฮต ฯ„ฮฟ ฯŒฮฝฮฟฮผฮฑ ฯ‡ฯฮฎฯƒฯ„ฮท ฮบฮฑฮน ฯ„ฮฟฮฝ ฮบฯ‰ฮดฮนฮบฯŒ msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "ฮฃฯ†ฮฌฮปฮผฮฑ" @@ -4684,7 +4652,7 @@ msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯƒฯ†ฮฌฮปฮผฮฑ ฮบฮฑฯ„ฮฌ ฯ„ฮทฮฝ ฮฑฯ€ฮฟฮธฮฎฮบฮตฯ… msgid "Error receiving captcha response." msgstr "ฮฃฯ†ฮฌฮปฮผฮฑ ฮปฮฎฯˆฮทฯ‚ ฮฑฯ€ฮฌฮฝฯ„ฮทฯƒฮทฯ‚ captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "ฮŒฮปฮฟฮน ฮผฯ€ฮฟฯฮฟฯฮฝ ฮฝฮฑ ฮฑฯ€ฮฑฮฝฯ„ฮฎฯƒฮฟฯ…ฮฝ" msgid "Everybody can reply to this post." msgstr "ฮŒฮปฮฟฮน ฮผฯ€ฮฟฯฮฟฯฮฝ ฮฝฮฑ ฮฑฯ€ฮฑฮฝฯ„ฮฎฯƒฮฟฯ…ฮฝ ฯƒฮต ฮฑฯ…ฯ„ฮฎฮฝ ฯ„ฮทฮฝ ฮฑฮฝฮฌฯฯ„ฮทฯƒฮท." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "ฮŒฮปฮฟฮน" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "ฮŒฮปฮฟฮน" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "ฮ‘ฯ€ฮฟฮบฮปฮตฮนฯƒฮผฯŒฯ‚ ฯ‡ฯฮทฯƒฯ„ฯŽฮฝ ฯ€ฮฟฯ… ฮฑฮบฮฟฮปฮฟฯ…ฮธฮตฮฏฯ„ฮต" msgid "Excludes users you follow" msgstr "ฮ‘ฯ€ฮฟฮบฮปฮตฮฏฮตฮน ฯ„ฮฟฯ…ฯ‚ ฯ‡ฯฮฎฯƒฯ„ฮตฯ‚ ฯ€ฮฟฯ… ฮฑฮบฮฟฮปฮฟฯ…ฮธฮตฮฏฯ„ฮต" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "ฮˆฮพฮฟฮดฮฟฯ‚ ฮฑฯ€ฯŒ ฯ„ฮทฮฝ ฯ€ฮปฮฎฯฮท ฮฟฮธฯŒฮฝฮท" @@ -4755,11 +4723,11 @@ msgstr "ฮ‘ฮฝฮฌฯ€ฯ„ฯ…ฮพฮท ฮปฮฏฯƒฯ„ฮฑฯ‚ ฯ‡ฯฮทฯƒฯ„ฯŽฮฝ" msgid "Expand or collapse the full post you are replying to" msgstr "ฮ‘ฮฝฮฌฯ€ฯ„ฯ…ฮพฮท ฮฎ ฯƒฯ…ฮผฯ€ฮฏฮตฯƒฮท ฯ„ฮทฯ‚ ฯ€ฮปฮฎฯฮฟฯ…ฯ‚ ฮฑฮฝฮฌฯฯ„ฮทฯƒฮทฯ‚ ฯƒฯ„ฮทฮฝ ฮฟฯ€ฮฟฮฏฮฑ ฮฑฯ€ฮฑฮฝฯ„ฮฌฯ„ฮต" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "ฮ“ฯ…ฮผฮฝฯŒ ฮฎ ฮตฮฝฮดฮตฯ‡ฮฟฮผฮญฮฝฯ‰ฯ‚ ฮตฮฝฮฟฯ‡ฮปฮทฯ„ฮนฮบฯŒ ฮผฮญฯƒฮฟ." msgid "Explicit sexual images." msgstr "ฮ“ฯ…ฮผฮฝฮญฯ‚ ฯƒฮตฮพฮฟฯ…ฮฑฮปฮนฮบฮญฯ‚ ฮตฮนฮบฯŒฮฝฮตฯ‚." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "ฮ•ฮพฯ‰ฯ„ฮตฯฮนฮบฯŒ ฮผฮญฯƒฮฟ" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ฮคฮฑ ฮตฮพฯ‰ฯ„ฮตฯฮนฮบฮฌ ฮผฮญฯƒฮฑ ฮตฮฝฮดฮญฯ‡ฮตฯ„ฮฑฮน ฮฝฮฑ ฮตฯ€ฮนฯ„ฯฮญฯ€ฮฟฯ…ฮฝ ฯƒฮต ฮนฯƒฯ„ฮฟฯƒฮตฮปฮฏฮดฮตฯ‚ ฮฝฮฑ ฯƒฯ…ฮปฮปฮญฮณฮฟฯ…ฮฝ ฯ€ฮปฮทฯฮฟฯ†ฮฟฯฮฏฮตฯ‚ ฮณฮนฮฑ ฮตฯƒฮฌฯ‚ ฮบฮฑฮน ฯ„ฮท ฯƒฯ…ฯƒฮบฮตฯ…ฮฎ ฯƒฮฑฯ‚. ฮšฮฑฮผฮฏฮฑ ฯ€ฮปฮทฯฮฟฯ†ฮฟฯฮฏฮฑ ฮดฮตฮฝ ฮฑฯ€ฮฟฯƒฯ„ฮญฮปฮปฮตฯ„ฮฑฮน ฮฎ ฮถฮทฯ„ฮตฮฏฯ„ฮฑฮน ฮผฮญฯ‡ฯฮน ฮฝฮฑ ฯ€ฮฑฯ„ฮฎฯƒฮตฯ„ฮต ฯ„ฮฟ ฮบฮฟฯ…ฮผฯ€ฮฏ \"ฮฑฮฝฮฑฯ€ฮฑฯฮฑฮณฯ‰ฮณฮฎ\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "ฮ ฯฮฟฯ„ฮนฮผฮฎฯƒฮตฮนฯ‚ ฮตฮพฯ‰ฯ„ฮตฯฮนฮบฮฟฯ ฮผฮญฯƒฮฟฯ…" @@ -4886,7 +4854,7 @@ msgstr "ฮ‘ฯ€ฮญฯ„ฯ…ฯ‡ฮต ฮท ฮฑฮปฮปฮฑฮณฮฎ ฯ„ฮฟฯ… ฮฟฮฝฯŒฮผฮฑฯ„ฮฟฯ‚ ฯ‡ฯฮฎฯƒฯ„ฮท. ฮ  #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "ฮ‘ฯ€ฮญฯ„ฯ…ฯ‡ฮต ฮท ฯ†ฯŒฯฯ„ฯ‰ฯƒฮท ฯ€ฯฮฟฯ„ฮนฮผฮฎฯƒฮตฯ‰ฮฝ ฯฮฟฯŽฮฝ" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "ฮ‘ฯ€ฮญฯ„ฯ…ฯ‡ฮต ฮท ฯ†ฯŒฯฯ„ฯ‰ฯƒฮท ฯ€ฯฮฟฯ„ฮตฮนฮฝฯŒฮผฮตฮฝฯ‰ฮฝ ฯฮฟฯŽฮฝ" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "ฮ‘ฯ€ฮญฯ„ฯ…ฯ‡ฮต ฮท ฯ†ฯŒฯฯ„ฯ‰ฯƒฮท ฯ€ฯฮฟฯ„ฮตฮนฮฝฯŒฮผฮตฮฝฯ‰ฮฝ ฮฑฮบฮฟฮปฮฟฯ…ฮธฮนฯŽฮฝ" @@ -5027,12 +4996,12 @@ msgstr "ฮ‘ฯ€ฮญฯ„ฯ…ฯ‡ฮต ฮท ฯ†ฯŒฯฯ„ฯ‰ฯƒฮท ฯ€ฯฮฟฯ„ฮตฮนฮฝฯŒฮผฮตฮฝฯ‰ฮฝ ฮฑฮบฮฟฮปฮฟฯ… msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "ฮกฮฟฮฎ" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "ฮŸฮน ฯฮฟฮญฯ‚ ฮตฮฝฮทฮผฮตฯฯŽฮธฮทฮบฮฑฮฝ!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "ฮคฮฟ ฮฑฯฯ‡ฮตฮฏฮฟ ฮฑฯ€ฮฟฮธฮทฮบฮตฯฯ„ฮทฮบฮต ฮผฮต ฮตฯ€ฮนฯ„ฯ…ฯ‡ฮฏฮฑ!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "ฮฆฮฏฮปฯ„ฯฮฟ ฮฑฯ€ฯŒ ฯฮฟฮญฯ‚" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "ฮ’ฯฮตฮฏฯ„ฮต ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯฯ‚ ฮณฮนฮฑ ฮฝฮฑ ฮฑฮบฮฟฮปฮฟฯ…ฮธฮฎฯƒฮตฯ„ msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "ฮ‘ฮบฮฟฮปฮฟฯ…ฮธฮฎฯƒฯ„ฮต {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "ฮ‘ฮบฮฟฮปฮฟฯ…ฮธฮฎฯƒฯ„ฮต 7 ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯฯ‚" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "ฮ‘ฮบฮฟฮปฮฟฯฮธฮฟฮน ฯ„ฮฟฯ…/ฯ„ฮทฯ‚ @{0} ฯ€ฮฟฯ… ฮณฮฝฯ‰ฯฮฏฮถฮตฯ„ฮต" @@ -5544,7 +5497,7 @@ msgstr "ฮ‘ฮบฮฟฮปฮฟฯฮธฮฟฮน ฯ€ฮฟฯ… ฮณฮฝฯ‰ฯฮฏฮถฮตฯ„ฮต" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "ฮ‘ฮบฮฟฮปฮฟฯ…ฮธฮตฮฏฯ„ฮต {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "ฮ ฯฮฟฯ„ฮนฮผฮฎฯƒฮตฮนฯ‚ ฯ„ฮทฯ‚ ฯฮฟฮฎฯ‚ ฮ‘ฮบฮฟฮปฮฟฯ…ฮธฮตฮฏฯ„ฮต" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "ฮ ฯฮฟฯ„ฮนฮผฮฎฯƒฮตฮนฯ‚ ฯ„ฮทฯ‚ ฯฮฟฮฎฯ‚ ฮ‘ฮบฮฟฮปฮฟฯ…ฮธฮตฮฏฯ„ฮต" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "ฮฃฮฑฯ‚ ฮฑฮบฮฟฮปฮฟฯ…ฮธฮตฮฏ" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "ฮ“ฯฮฑฮผฮผฮฑฯ„ฮฟฯƒฮตฮนฯฮฌ" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "ฮœฮญฮณฮตฮธฮฟฯ‚ ฮณฯฮฑฮผฮผฮฑฯ„ฮฟฯƒฮตฮนฯฮฌฯ‚" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "ฮ“ฮนฮฑ ฮปฯŒฮณฮฟฯ…ฯ‚ ฮฑฯƒฯ†ฮฑฮปฮตฮฏฮฑฯ‚, ฮดฮตฮฝ ฮธฮฑ ฮผฯ€ฮฟฯฮตฮฏฯ„ฮต ฮฝฮฑ ฯ„ฮฟ ฮดฮตฮฏฯ„ฮต ฮพฮฑฮฝฮฌ. ฮ‘ฮฝ ฯ‡ฮฌฯƒฮตฯ„ฮต ฮฑฯ…ฯ„ฯŒฮฝ ฯ„ฮฟฮฝ ฮบฯ‰ฮดฮนฮบฯŒ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚ ฮตฯ†ฮฑฯฮผฮฟฮณฮฎฯ‚, ฮธฮฑ ฯ‡ฯฮตฮนฮฑฯƒฯ„ฮตฮฏ ฮฝฮฑ ฮดฮทฮผฮนฮฟฯ…ฯฮณฮฎฯƒฮตฯ„ฮต ฮญฮฝฮฑฮฝ ฮฝฮญฮฟ." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "ฮ“ฮนฮฑ ฯ„ฮทฮฝ ฮบฮฑฮปฯฯ„ฮตฯฮท ฮตฮผฯ€ฮตฮนฯฮฏฮฑ, ฯƒฮฑฯ‚ ฯ€ฯฮฟฯ„ฮตฮฏฮฝฮฟฯ…ฮผฮต ฮฝฮฑ ฯ‡ฯฮทฯƒฮนฮผฮฟฯ€ฮฟฮนฮฎฯƒฮตฯ„ฮต ฯ„ฮท ฮณฯฮฑฮผฮผฮฑฯ„ฮฟฯƒฮตฮนฯฮฌ ฯ„ฮฟฯ… ฮธฮญฮผฮฑฯ„ฮฟฯ‚." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "ฮ“ฮนฮฑ ฯ€ฮฌฮฝฯ„ฮฑ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "ฮžฮตฯ‡ฮฌฯƒฮฑฯ„ฮต ฯ„ฮฟฮฝ ฮบฯ‰ฮดฮนฮบฯŒ ฯƒฮฑฯ‚;" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "ฮ‘ฯ€ฯŒ <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "ฮ”ฮทฮผฮนฮฟฯ…ฯฮณฮฎฯƒฯ„ฮต ฮญฮฝฮฑ starter pack" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "ฮ›ฮฌฮฒฮตฯ„ฮต ฮฒฮฟฮฎฮธฮตฮนฮฑ" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "ฮ”ฯŽฯƒฯ„ฮต ฯƒฯ„ฮฟ ฯ€ฯฮฟฯ†ฮฏฮป ฯƒฮฑฯ‚ ฮญฮฝฮฑ ฯ€ฯฯŒฯƒฯ‰ฯ€ฮฟ" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "ฮˆฯ‡ฮตฯ„ฮต ฯ€ฯฯŒฮฒฮปฮทฮผฮฑ;" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "ฮ’ฮฟฮฎฮธฮตฮนฮฑ" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "ฮ’ฮฟฮทฮธฮฎฯƒฯ„ฮต ฯ„ฮฟฯ…ฯ‚ ฮฑฮฝฮธฯฯŽฯ€ฮฟฯ…ฯ‚ ฮฝฮฑ ฮบฮฑฯ„ฮฑฮปฮฌฮฒฮฟฯ…ฮฝ ฯŒฯ„ฮน ฮดฮตฮฝ ฮตฮฏฯƒฯ„ฮต bot ฮฑฮฝฮตฮฒฮฌฮถฮฟฮฝฯ„ฮฑฯ‚ ฮผฮนฮฑ ฮตฮนฮบฯŒฮฝฮฑ ฮฎ ฮดฮทฮผฮนฮฟฯ…ฯฮณฯŽฮฝฯ„ฮฑฯ‚ ฮผฮนฮฑ ฮตฮนฮบฯŒฮฝฮฑ ฯ€ฯฮฟฯ†ฮฏฮป." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "ฮšฯฯ…ฯ†ฮฎ ฮปฮฏฯƒฯ„ฮฑ" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "ฮšฯฯ…ฯ†ฮฎ ฮปฮฏฯƒฯ„ฮฑ" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "ฮ‘ฯ€ฯŒฮบฯฯ…ฯˆฮท" @@ -6198,7 +6154,7 @@ msgstr "ฮ‘ฯ€ฯŒฮบฯฯ…ฯˆฮท ฮฑฯ€ฮฌฮฝฯ„ฮทฯƒฮทฯ‚ ฮณฮนฮฑ ฯŒฮปฮฟฯ…ฯ‚" msgid "Hide reply for me" msgstr "ฮ‘ฯ€ฯŒฮบฯฯ…ฯˆฮท ฮฑฯ€ฮฌฮฝฯ„ฮทฯƒฮทฯ‚ ฮณฮนฮฑ ฮผฮญฮฝฮฑ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "ฮ‘ฯ€ฯŒฮบฯฯ…ฯˆฮท ฮฑฯ…ฯ„ฮฎฯ‚ ฯ„ฮทฯ‚ ฮฑฯ€ฮฌฮฝฯ„ฮทฯƒฮทฯ‚;" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "ฮ‘ฯ€ฯŒฮบฯฯ…ฯˆฮท ฮปฮฏฯƒฯ„ฮฑฯ‚ ฯ‡ฯฮทฯƒฯ„ฯŽฮฝ" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "ฮงฮผฮผฮผ, ฮดฮตฮฝ ฮบฮฑฯ„ฮฑฯ†ฮญฯฮฑฮผฮต ฮฝฮฑ ฯ†ฮฟฯฯ„ฯŽฯƒฮฟฯ…ฮผฮต ฮฑฯ…ฯ„ฮฎ msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "ฮ ฮตฯฮนฮผฮญฮฝฮตฯ„ฮต! ฮ”ฮฏฮฝฮฟฯ…ฮผฮต ฯƒฯ„ฮฑฮดฮนฮฑฮบฮฌ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮท ฯƒฯ„ฮฟ ฮฒฮฏฮฝฯ„ฮตฮฟ ฮบฮฑฮน ฮตฯƒฮตฮฏฯ‚ ฯ€ฮตฯฮนฮผฮญฮฝฮตฯ„ฮต ฯƒฯ„ฮทฮฝ ฮฟฯ…ฯฮฌ. ฮ•ฮปฮญฮณฮพฯ„ฮต ฮพฮฑฮฝฮฌ ฯƒฯฮฝฯ„ฮฟฮผฮฑ!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "ฮ•ฮฌฮฝ ฮธฮญฮปฮตฯ„ฮต ฮฝฮฑ ฮฑฮปฮปฮฌฮพฮตฯ„ฮต ฯ„ฮฟฮฝ ฮบฯ‰ฮดฮนฮบฯŒ ฯƒฮฑฯ‚, ฮธฮฑ ฯƒฮฑฯ‚ ฯƒฯ„ฮตฮฏฮปฮฟฯ…ฮผฮต ฮญฮฝฮฑฮฝ ฮบฯ‰ฮดฮนฮบฯŒ ฮณฮนฮฑ ฮฝฮฑ ฮตฯ€ฮฑฮปฮทฮธฮตฯฯƒฮฟฯ…ฮผฮต ฯŒฯ„ฮน ฮฑฯ…ฯ„ฯŒฯ‚ ฮตฮฏฮฝฮฑฮน ฮฟ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒฯ‚ ฯƒฮฑฯ‚." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "ฮœฮท ฮญฮณฮบฯ…ฯฮฟ ฯŒฮฝฮฟฮผฮฑ ฯ‡ฯฮฎฯƒฯ„ฮท ฮฎ ฮบฯ‰ฮดฮนฮบฯŒฯ‚ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "ฮšฯ‰ฮดฮนฮบฯŒฯ‚ ฯ€ฯฯŒฯƒฮบฮปฮทฯƒฮทฯ‚" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "ฮŸ ฮบฯ‰ฮดฮนฮบฯŒฯ‚ ฯ€ฯฯŒฯƒฮบฮปฮทฯƒฮทฯ‚ ฮดฮตฮฝ ฮญฮณฮนฮฝฮต ฮดฮตฮบฯ„ฯŒฯ‚. ฮ’ฮตฮฒฮฑฮนฯ‰ฮธฮตฮฏฯ„ฮต ฯŒฯ„ฮน ฯ„ฮฟฮฝ ฮตฮนฯƒฮฌฮณฮฑฯ„ฮต ฯƒฯ‰ฯƒฯ„ฮฌ ฮบฮฑฮน ฮดฮฟฮบฮนฮผฮฌฯƒฯ„ฮต ฮพฮฑฮฝฮฌ." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "ฮ•ฮฏฯƒฯ„ฮต ฮผฯŒฮฝฮฟฮน ฯƒฮฑฯ‚ ฮฑฯ…ฯ„ฮฎ ฯ„ฮท ฯƒฯ„ฮนฮณฮผฮฎ! ฮ ฯฮฟฯƒฮธฮญฯƒฯ„ฮต ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮฟฯ…ฯ‚ ฮฑฮฝฮธฯฯŽฯ€ฮฟฯ…ฯ‚ ฯƒฯ„ฮฟ starter pack ฯƒฮฑฯ‚ ฮบฮฌฮฝฮฟฮฝฯ„ฮฑฯ‚ ฮฑฮฝฮฑฮถฮฎฯ„ฮทฯƒฮท ฯ€ฮฑฯฮฑฯ€ฮฌฮฝฯ‰." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID ฮตฯฮณฮฑฯƒฮฏฮฑฯ‚: {0}" @@ -6816,8 +6766,8 @@ msgstr "ฮฃฯ…ฮผฮผฮตฯ„ฮฌฯƒฯ‡ฮตฯ„ฮต ฯƒฯ„ฮท ฯƒฯ…ฮถฮฎฯ„ฮทฯƒฮท" msgid "Journalism" msgstr "ฮ”ฮทฮผฮฟฯƒฮนฮฟฮณฯฮฑฯ†ฮฏฮฑ" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "ฮ•ฯ€ฮนฯƒฮทฮผฮฑฯƒฮผฮญฮฝฮฟ ฮฑฯ€ฯŒ {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "ฮ•ฯ€ฮนฯƒฮทฮผฮฑฯƒฮผฮญฮฝฮฟ ฮฑฯ€ฯŒ ฯ„ฮฟฮฝ/ฯ„ฮทฮฝ ฯƒฯ…ฮณฮณฯฮฑฯ†ฮญฮฑ." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "ฮ•ฯ„ฮนฮบฮญฯ„ฮตฯ‚" @@ -6852,7 +6802,7 @@ msgstr "ฮŸฮน ฮ•ฯ„ฮนฮบฮญฯ„ฮตฯ‚ ฯ€ฯฮฟฯƒฯ„ฮญฮธฮทฮบฮฑฮฝ" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ฮŸฮน ฮตฯ„ฮนฮบฮญฯ„ฮตฯ‚ ฮตฮฏฮฝฮฑฮน ฯƒฮทฮผฮตฮนฯŽฯƒฮตฮนฯ‚ ฯƒฮต ฯ‡ฯฮฎฯƒฯ„ฮตฯ‚ ฮบฮฑฮน ฯ€ฮตฯฮนฮตฯ‡ฯŒฮผฮตฮฝฮฟ. ฮœฯ€ฮฟฯฮฟฯฮฝ ฮฝฮฑ ฯ‡ฯฮทฯƒฮนฮผฮฟฯ€ฮฟฮนฮทฮธฮฟฯฮฝ ฮณฮนฮฑ ฮฝฮฑ ฮฑฯ€ฮฟฮบฯฯฯˆฮฟฯ…ฮฝ, ฮฝฮฑ ฯ€ฯฮฟฮตฮนฮดฮฟฯ€ฮฟฮนฮฎฯƒฮฟฯ…ฮฝ ฮบฮฑฮน ฮฝฮฑ ฮบฮฑฯ„ฮทฮณฮฟฯฮนฮฟฯ€ฮฟฮนฮฎฯƒฮฟฯ…ฮฝ ฯ„ฮฟ ฮดฮฏฮบฯ„ฯ…ฮฟ." @@ -6864,7 +6814,7 @@ msgstr "ฮŸฮน ฮ•ฯ„ฮนฮบฮญฯ„ฮตฯ‚ ฯƒฯ„ฮฟฮฝ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒ ฯƒฮฑฯ‚" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "ฮกฯ…ฮธฮผฮฏฯƒฮตฮนฯ‚ ฮณฮปฯŽฯƒฯƒฮฑฯ‚" @@ -6874,7 +6824,7 @@ msgstr "ฮกฯ…ฮธฮผฮฏฯƒฮตฮนฯ‚ ฮณฮปฯŽฯƒฯƒฮฑฯ‚" msgid "Languages" msgstr "ฮ“ฮปฯŽฯƒฯƒฮตฯ‚" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "ฮœฮตฮณฮฑฮปฯฯ„ฮตฯฮฟ" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "ฮ ฮนฮฟ ฯ€ฯฯŒฯƒฯ†ฮฑฯ„ฮฑ" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "ฮœฮฌฮธฮตฯ„ฮต ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮฑ" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "ฮœฮฌฮธฮตฯ„ฮต ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮฑ ฮณฮนฮฑ ฯ„ฮทฮฝ ฮฑฯ…ฯ„ฯŒฮฝฮฟฮผฮท ฯ†ฮนฮปฮฟฮพฮตฮฝฮฏฮฑ ฯ„ฮฟฯ… PDS ฯƒฮฑฯ‚." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "ฮœฮฌฮธฮตฯ„ฮต ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮฑ ฮณฮนฮฑ ฮฑฯ…ฯ„ฮฎฮฝ ฯ„ฮทฮฝ ฯ€ฯฮฟฮตฮนฮดฮฟฯ€ฮฟฮฏฮทฯƒฮท" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "ฮœฮฌฮธฮตฯ„ฮต ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮฑ." @@ -6993,8 +6943,8 @@ msgstr "ฮ‘ฯ€ฮฟฯ‡ฯŽฯฮทฯƒฮท" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "ฮ‘ฯ€ฮฟฯ‡ฯŽฯฮทฯƒฮท ฮฑฯ€ฯŒ ฯ„ฮฟ Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "ฮฑฯ€ฮฟฮผฮญฮฝฮฟฯ…ฮฝ." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "ฮ‘ฯ†ฮฎฯƒฯ„ฮต ฮผฮต ฮฝฮฑ ฮดฮนฮฑฮปฮญฮพฯ‰" @@ -7057,7 +7007,7 @@ msgstr "ฮ ฮฌฮผฮต!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "ฮฆฯ‰ฯ„ฮตฮนฮฝฯŒ" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "ฮฆฯ‰ฯ„ฮตฮนฮฝฯŒ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7026,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "\"ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน\" ฯƒฮต 10 ฮฑฮฝฮฑฯฯ„ฮฎฯƒฮตฮนฯ‚" @@ -7085,7 +7035,7 @@ msgstr "\"ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน\" ฯƒฮต 10 ฮฑฮฝฮฑฯฯ„ฮฎฯƒฮตฮนฯ‚" msgid "Like 10 posts to train the Discover feed" msgstr "\"ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน\" ฯƒฮต 10 ฮฑฮฝฮฑฯฯ„ฮฎฯƒฮตฮนฯ‚ ฮณฮนฮฑ ฮฝฮฑ ฮตฮบฯ€ฮฑฮนฮดฮตฯฯƒฮตฯ„ฮต ฯ„ฮทฮฝ ฯฮฟฮฎฯ‚ ฮ‘ฮฝฮฑฮบฮฑฮปฯฯˆฯ„ฮต" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "ฮ ฮฑฯ„ฮฎฯƒฯ„ฮต \"ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน\" ฯƒฮต ฮฑฯ…ฯ„ฮฎฮฝ ฯ„ฮทฮฝ ฯฮฟฮฎ" @@ -7093,8 +7043,8 @@ msgstr "ฮ ฮฑฯ„ฮฎฯƒฯ„ฮต \"ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน\" ฯƒฮต ฮฑฯ…ฯ„ฮฎฮฝ ฯ„ฮทฮฝ ฯฮฟฮฎ" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "\"ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน\" ฮฑฯ€ฯŒ" @@ -7111,27 +7061,45 @@ msgstr "\"ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน\" ฮฑฯ€ฯŒ" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "\"ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน\"" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "\"ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน\" ฯƒฮต ฮฑฯ…ฯ„ฮฎฮฝ ฯ„ฮทฮฝ ฮฑฮฝฮฌฯฯ„ฮทฯƒฮท" @@ -7144,7 +7112,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "ฮ›ฮฏฯƒฯ„ฮฑ" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "ฮ›ฮฏฯƒฯ„ฮฑ ฮฑฯ†ฮฑฮฏฯฮตฯƒฮท ฯƒฮฏฮณฮฑฯƒฮทฯ‚" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "ฮฆฯŒฯฯ„ฯ‰ฯƒฮท ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฯ‰ฮฝ" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "ฮฆฯŒฯฯ„ฯ‰ฯƒฮท ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฯ‰ฮฝ ฯ€ฯฮฟฯ„ฮตฮนฮฝฯŒฮผฮตฮฝฯ‰ฮฝ ฯฮฟฯŽฮฝ" @@ -7292,8 +7260,8 @@ msgstr "ฮฆฯŒฯฯ„ฯ‰ฯƒฮท ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฯ‰ฮฝ ฯ€ฯฮฟฯ„ฮตฮนฮฝฯŒฮผฮตฮฝฯ‰ฮฝ ฯฮฟ msgid "Load new notifications" msgstr "ฮฆฯŒฯฯ„ฯ‰ฯƒฮท ฮฝฮญฯ‰ฮฝ ฮตฮนฮดฮฟฯ€ฮฟฮนฮฎฯƒฮตฯ‰ฮฝ" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "ฮ—ฮผฮตฯฮฟฮปฯŒฮณฮนฮฟ" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "ฮฆฯ„ฮนฮฌฮพฮต ฮญฮฝฮฑ ฮณฮนฮฑ ฮผฮญฮฝฮฑ" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "ฮฃฮทฮผฮตฮฏฯ‰ฯƒฮท ฯ‰ฯ‚ ฮฑฮฝฮฌฮณฮฝฯ‰ฯƒฮท" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "ฮœฮญฯƒฮฑ" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "ฮœฮญฯƒฮฑ ฯ€ฮฟฯ… ฮผฯ€ฮฟฯฮตฮฏ ฮฝฮฑ ฮตฮฏฮฝฮฑฮน ฮตฮฝฮฟฯ‡ฮปฮทฯ„ฮนฮบฮฌ ฮฎ ฮฑฮบฮฑฯ„ฮฌฮปฮปฮทฮปฮฑ ฮณฮนฮฑ ฮฟฯฮนฯƒฮผฮญฮฝฮฑ ฮฑฮบฯฮฟฮฑฯ„ฮฎฯฮนฮฑ." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "ฮฑฮฝฮฑฯ†ฮตฯฯŒฮผฮตฮฝฮฟฮน ฯ‡ฯฮฎฯƒฯ„ฮตฯ‚" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "ฮคฮฟ ฮผฮฎฮฝฯ…ฮผฮฑ ฮดฮนฮฑฮณฯฮฌฯ†ฮทฮบฮต" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "ฮœฮทฮฝฯฮผฮฑฯ„ฮฑ" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "ฮ”ฮนฮฑฯ‡ฮตฮฏฯฮนฯƒฮท" @@ -7636,7 +7608,7 @@ msgstr "ฮ— ฮ›ฮฏฯƒฯ„ฮฑ ฮดฮนฮฑฯ‡ฮตฮฏฯฮนฯƒฮทฯ‚ ฮตฮฝฮทฮผฮตฯฯŽฮธฮทฮบฮต" msgid "Moderation lists" msgstr "ฮ›ฮฏฯƒฯ„ฮตฯ‚ ฮดฮนฮฑฯ‡ฮตฮฏฯฮนฯƒฮทฯ‚" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "ฮ›ฮฏฯƒฯ„ฮตฯ‚ ฮ”ฮนฮฑฯ‡ฮตฮฏฯฮนฯƒฮทฯ‚" @@ -7645,7 +7617,7 @@ msgstr "ฮ›ฮฏฯƒฯ„ฮตฯ‚ ฮ”ฮนฮฑฯ‡ฮตฮฏฯฮนฯƒฮทฯ‚" msgid "moderation settings" msgstr "ฯฯ…ฮธฮผฮฏฯƒฮตฮนฯ‚ ฮดฮนฮฑฯ‡ฮตฮฏฯฮนฯƒฮทฯ‚" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "ฮšฮฑฯ„ฮฑฯƒฯ„ฮฌฯƒฮตฮนฯ‚ ฮดฮนฮฑฯ‡ฮตฮฏฯฮนฯƒฮทฯ‚" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "ฮ›ฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฮฏ ฯƒฮต ฯƒฮฏฮณฮฑฯƒฮท" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "ฮ›ฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฮฏ ฯƒฮต ฯƒฮฏฮณฮฑฯƒฮท" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "ฮ”ฮตฮฝ ฯ€ฮตฮนฯฮฌฮถฮตฮน, ฮดฮทฮผฮนฮฟฯ…ฯฮณฮฎฯƒฯ„ฮต ฮญฮฝฮฑ ฯŒฮฝฮฟฮผฮฑ ฯ‡ฯฮฎฯƒฯ„ฮท ฮณฮนฮฑ ฮผฮญฮฝฮฑ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "ฮฮญฮฟ" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "ฮฮญฮฑ ฯƒฯ…ฮฝฮฟฮผฮนฮปฮฏฮฑ" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "ฮฮญฮฟฯ‚ ฮบฯ‰ฮดฮนฮบฯŒฯ‚ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "ฮฮญฮฑ ฮดฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "ฮ ฮนฮฟ ฯ€ฯฯŒฯƒฯ†ฮฑฯ„ฮตฯ‚ ฮฑฯ€ฮฑฮฝฯ„ฮฎฯƒฮตฮนฯ‚ ฯ€ฯฯŽฯ„ฮฑ" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "ฮ•ฮนฮดฮฎฯƒฮตฮนฯ‚" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "ฮ•ฯ€ฯŒฮผฮตฮฝฮท ฮตฮนฮบฯŒฮฝฮฑ" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "ฮ”ฮตฮฝ ฯ…ฯ€ฮฌฯฯ‡ฮฟฯ…ฮฝ ฮฑฮบฯŒฮผฮท ฮบฯ‰ฮดฮนฮบฮฟฮฏ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚ ฮตฯ†ฮฑฯฮผฮฟฮณฮฎฯ‚" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "ฮ”ฮตฮฝ ฮฒฯฮญฮธฮทฮบฮฑฮฝ ฯฮฟฮญฯ‚. ฮ”ฮฟฮบฮนฮผฮฌฯƒฯ„ฮต ฮฝฮฑ ฮฑฮฝฮฑฮถฮทฯ„ฮฎฯƒฮตฯ„ฮต ฮบฮฌฯ„ฮน ฮฌฮปฮปฮฟ." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "ฮ”ฮตฮฝ ฯ…ฯ€ฮฌฯฯ‡ฮฟฯ…ฮฝ ฮฑฮบฯŒฮผฮท \"ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน\"" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "ฮ”ฮตฮฝ ฮฑฮบฮฟฮปฮฟฯ…ฮธฯŽ ฯ€ฮปฮญฮฟฮฝ ฯ„ฮฟฮฝ {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "ฮ”ฮตฮฝ ฯ…ฯ€ฮฌฯฯ‡ฮฟฯ…ฮฝ ฮฑฮบฯŒฮผฮท ฮผฮทฮฝฯฮผฮฑฯ„ฮฑ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "ฮœฯŒฮฝฮฟ ฮฟ ฯƒฯ…ฮณฮณฯฮฑฯ†ฮญฮฑฯ‚ ฮผฯ€ฮฟฯฮตฮฏ ฮฝฮฑ ฯ€ฮฑฯฮฑฮธฮญฯƒฮตฮน ฮฑ msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "ฮ”ฮตฮฝ ฯ…ฯ€ฮฌฯฯ‡ฮฟฯ…ฮฝ ฮฑฮบฯŒฮผฮท ฯ€ฮฑฯฮฑฮธฮญฯƒฮตฮนฯ‚" @@ -8198,11 +8190,7 @@ msgstr "ฮ”ฮตฮฝ ฯ…ฯ€ฮฌฯฯ‡ฮฟฯ…ฮฝ ฮฑฮบฯŒฮผฮท ฯ€ฮฑฯฮฑฮธฮญฯƒฮตฮนฯ‚" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "ฮงฯ‰ฯฮฏฯ‚ ฮฑฯ€ฮฟฯ„ฮญฮปฮตฯƒฮผฮฑ" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "ฮงฯ‰ฯฮฏฯ‚ ฮฑฯ€ฮฟฯ„ฮตฮปฮญฯƒฮผฮฑฯ„ฮฑ" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "ฮ”ฮตฮฝ ฮฒฯฮญฮธฮทฮบฮฑฮฝ ฮฑฯ€ฮฟฯ„ฮตฮปฮญฯƒฮผฮฑฯ„ฮฑ" msgid "No results found for \"{query}\"" msgstr "ฮ”ฮตฮฝ ฮฒฯฮญฮธฮทฮบฮฑฮฝ ฮฑฯ€ฮฟฯ„ฮตฮปฮญฯƒฮผฮฑฯ„ฮฑ ฮณฮนฮฑ โ€œ{query}โ€" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "ฮŒฯ‡ฮน ฮตฯ…ฯ‡ฮฑฯฮนฯƒฯ„ฯŽ" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "ฮšฮฑฮฝฮตฮฏฯ‚" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "ฮšฮฑฮฝฮตฮฏฯ‚ ฮดฮตฮฝ ฯ„ฮฟ ฮญฯ‡ฮตฮน ฮบฮฌฮฝฮตฮน \"ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน\" ฮฑฮบฯŒฮผฮท. ฮŠฯƒฯ‰ฯ‚ ฮธฮฑ ฮญฯ€ฯฮตฯ€ฮต ฮฝฮฑ ฮตฮฏฯƒฯ„ฮต ฮฟ ฯ€ฯฯŽฯ„ฮฟฯ‚!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "ฮšฮฑฮฝฮตฮฏฯ‚ ฮดฮตฮฝ ฯ„ฮฟ ฮญฯ‡ฮตฮน ฯ€ฮฑฯฮฑฮธฮญฯƒฮตฮน ฮฑฮบฯŒฮผฮท. ฮŠฯƒฯ‰ฯ‚ ฮธฮฑ ฮญฯ€ฯฮตฯ€ฮต ฮฝฮฑ ฮตฮฏฯƒฯ„ฮต ฮฟ ฯ€ฯฯŽฯ„ฮฟฯ‚!" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "ฮœฮท ฯƒฮตฮพฮฟฯ…ฮฑฮปฮนฮบฯŒ ฮณฯ…ฮผฮฝฯŒ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "ฮ”ฮตฮฝ ฮ’ฯฮญฮธฮทฮบฮต" @@ -8333,7 +8325,7 @@ msgstr "ฮฃฮทฮผฮตฮฏฯ‰ฯƒฮท ฯƒฯ‡ฮตฯ„ฮนฮบฮฌ ฮผฮต ฯ„ฮทฮฝ ฮบฮฟฮนฮฝฮฎ ฯ‡ฯฮฎฯƒฮท" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "ฮฃฮทฮผฮตฮฏฯ‰ฯƒฮท: ฮคฮฟ Bluesky ฮตฮฏฮฝฮฑฮน ฮญฮฝฮฑ ฮฑฮฝฮฟฮนฯ‡ฯ„ฯŒ ฮบฮฑฮน ฮดฮทฮผฯŒฯƒฮนฮฟ ฮดฮฏฮบฯ„ฯ…ฮฟ. ฮ‘ฯ…ฯ„ฮฎ ฮท ฯฯฮธฮผฮนฯƒฮท ฯ€ฮตฯฮนฮฟฯฮฏฮถฮตฮน ฮผฯŒฮฝฮฟ ฯ„ฮทฮฝ ฮฟฯฮฑฯ„ฯŒฯ„ฮทฯ„ฮฑ ฯ„ฮฟฯ… ฯ€ฮตฯฮนฮตฯ‡ฮฟฮผฮญฮฝฮฟฯ… ฯƒฮฑฯ‚ ฯƒฯ„ฮทฮฝ ฮตฯ†ฮฑฯฮผฮฟฮณฮฎ ฮบฮฑฮน ฯ„ฮฟฮฝ ฮนฯƒฯ„ฯŒฯ„ฮฟฯ€ฮฟ Bluesky, ฮบฮฑฮน ฮฌฮปฮปฮตฯ‚ ฮตฯ†ฮฑฯฮผฮฟฮณฮญฯ‚ ฮตฮฝฮดฮญฯ‡ฮตฯ„ฮฑฮน ฮฝฮฑ ฮผฮทฮฝ ฯƒฮตฮฒฮฑฯƒฯ„ฮฟฯฮฝ ฮฑฯ…ฯ„ฮฎฮฝ ฯ„ฮท ฯฯฮธฮผฮนฯƒฮท. ฮคฮฟ ฯ€ฮตฯฮนฮตฯ‡ฯŒฮผฮตฮฝฯŒ ฯƒฮฑฯ‚ ฮผฯ€ฮฟฯฮตฮฏ ฮฝฮฑ ฮตฮพฮฑฮบฮฟฮปฮฟฯ…ฮธฮตฮฏ ฮฝฮฑ ฮตฮผฯ†ฮฑฮฝฮฏฮถฮตฯ„ฮฑฮน ฯƒฮต ฯ‡ฯฮฎฯƒฯ„ฮตฯ‚ ฯ€ฮฟฯ… ฮดฮตฮฝ ฮญฯ‡ฮฟฯ…ฮฝ ฯƒฯ…ฮฝฮดฮตฮธฮตฮฏ ฮฑฯ€ฯŒ ฮฌฮปฮปฮตฯ‚ ฮตฯ†ฮฑฯฮผฮฟฮณฮญฯ‚ ฮบฮฑฮน ฮนฯƒฯ„ฯŒฯ„ฮฟฯ€ฮฟฯ…ฯ‚." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "ฮกฯ…ฮธฮผฮฏฯƒฮตฮนฯ‚ ฮตฮนฮดฮฟฯ€ฮฟฮนฮฎฯƒฮตฯ‰ฮฝ" @@ -8353,11 +8345,12 @@ msgstr "ฮกฯ…ฮธฮผฮฏฯƒฮตฮนฯ‚ ฮตฮนฮดฮฟฯ€ฮฟฮนฮฎฯƒฮตฯ‰ฮฝ" msgid "Notification sounds" msgstr "ฮ‰ฯ‡ฮฟฮน ฮตฮนฮดฮฟฯ€ฮฟฮนฮฎฯƒฮตฯ‰ฮฝ" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "ฮฉฯ‡ ฯŒฯ‡ฮน!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "ฮ•ฮฝฯ„ฮฌฮพฮตฮน" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "ฮ•ฯ€ฮฑฮฝฮฑฯ†ฮฟฯฮฌ onboardin" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "ฮˆฮฝฮฑ ฮฎ ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮฑ GIF ฮปฮตฮฏฯ€ฮฟฯ…ฮฝ ฯ„ฮฟ ฮตฮฝฮฑฮปฮปฮฑฮบฯ„ฮนฮบฯŒ ฮบฮตฮฏฮผฮตฮฝฮฟ." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "ฮœฮฏฮฑ ฮฎ ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮตฯ‚ ฮตฮนฮบฯŒฮฝฮตฯ‚ ฮปฮตฮฏฯ€ฮฟฯ…ฮฝ ฯ„ฮฟ ฮตฮฝฮฑฮปฮปฮฑฮบฯ„ฮนฮบฯŒ ฮบฮตฮฏฮผฮตฮฝฮฟ." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "ฮˆฮฝฮฑ ฮฎ ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮฑ ฮฒฮฏฮฝฯ„ฮตฮฟ ฮปฮตฮฏฯ€ฮฟฯ…ฮฝ ฯ„ฮฟ ฮตฮฝฮฑฮปฮปฮฑฮบฯ„ฮนฮบฯŒ ฮบฮตฮฏฮผฮตฮฝฮฟ." @@ -8471,7 +8466,7 @@ msgstr "ฮœฯŒฮฝฮฟ ฮฟ/ฮท {0} ฮผฯ€ฮฟฯฮตฮฏ ฮฝฮฑ ฮฑฯ€ฮฑฮฝฯ„ฮฎฯƒฮตฮน." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "ฮฅฯ€ฮฟฯƒฯ„ฮทฯฮฏฮถฮฟฮฝฯ„ฮฑฮน ฮผฯŒฮฝฮฟ ฮฑฯฯ‡ฮตฮฏฮฑ WebVTT (.vtt)" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "ฮŸฯ…ฯ€ฯ‚!" @@ -8544,7 +8543,7 @@ msgstr "ฮŸฯ…ฯ€ฯ‚!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "ฮ†ฮฝฮฟฮนฮณฮผฮฑ ฮดฮทฮผฮนฮฟฯ…ฯฮณฮฟฯ ฮตฮนฮบฯŒฮฝฮฑฯ‚ ฯ€ฯฮฟฯ†ฮฏฮป" @@ -8570,21 +8569,22 @@ msgstr "ฮ†ฮฝฮฟฮนฮณฮผฮฑ ฮตฯ€ฮนฮปฮฟฮณฯŽฮฝ ฯƒฯ…ฮฝฮฟฮผฮนฮปฮฏฮฑฯ‚" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "ฮ†ฮฝฮฟฮนฮณฮผฮฑ ฮตฯ€ฮนฮปฮฟฮณฮญฮฑ emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "ฮ†ฮฝฮฟฮนฮณฮผฮฑ ฮผฮตฮฝฮฟฯ ฮตฯ€ฮนฮปฮฟฮณฯŽฮฝ ฯฮฟฯŽฮฝ" @@ -8627,7 +8627,7 @@ msgstr "ฮ†ฮฝฮฟฮนฮณฮผฮฑ ฯƒฮตฮปฮฏฮดฮฑฯ‚ ฮตฮฝฯ„ฮฟฯ€ฮนฯƒฮผฮฟฯ ฯƒฯ†ฮฑฮปฮผฮฌฯ„ฯ‰ฮฝ ฮด msgid "Open muted words and tags settings" msgstr "ฮ†ฮฝฮฟฮนฮณฮผฮฑ ฯฯ…ฮธฮผฮฏฯƒฮตฯ‰ฮฝ ฮปฮญฮพฮตฯ‰ฮฝ ฮบฮฑฮน ฮตฯ„ฮนฮบฮตฯ„ฯŽฮฝ ฯƒฮต ฯƒฮฏฮณฮฑฯƒฮท" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "ฮ‘ฮฝฮฟฮฏฮณฮตฮน ฯ€ฯฯŒฯƒฮธฮตฯ„ฮตฯ‚ ฮปฮตฯ€ฯ„ฮฟฮผฮญฯฮตฮนฮตฯ‚ ฮณฮนฮฑ ฮผฮนฮฑ msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "ฮ‘ฮฝฮฟฮฏฮณฮตฮน ฯ„ฮทฮฝ ฮบฮฌฮผฮตฯฮฑ ฯƒฯ„ฮท ฯƒฯ…ฯƒฮบฮตฯ…ฮฎ" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "ฮ‘ฮฝฮฟฮฏฮณฮตฮน ฯ„ฮท ฮดฮนฮฑฮดฮนฮบฮฑฯƒฮฏฮฑ ฮณฮนฮฑ ฮฝฮฑ ฮดฮทฮผฮนฮฟฯ…ฯฮณฮฎฯƒฮตฯ„ฮต ฮญฮฝฮฑ ฮฝฮญฮฟ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒ Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "ฮŸ ฮบฯ‰ฮดฮนฮบฯŒฯ‚ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚ ฮตฮฝฮทฮผฮตฯฯŽฮธฮทฮบฮต!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "ฮ ฮฑฯฯƒฮท" @@ -8925,12 +8925,12 @@ msgstr "ฮ ฮฑฯฯƒฮท" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "ฮ ฮฑฯฯƒฮท ฮฒฮฏฮฝฯ„ฮตฮฟ" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "ฮ†ฯ„ฮฟฮผฮฑ" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "ฮ†ฯ„ฮฟฮผฮฑ ฯ€ฮฟฯ… ฮฑฮบฮฟฮปฮฟฯ…ฮธฮฟฯฮฝ ฯ„ฮฟฮฝ/ฯ„ฮทฮฝ @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "ฮ†ฯ„ฮฟฮผฮฑ ฯ€ฮฟฯ… ฮฑฮบฮฟฮปฮฟฯ…ฮธฮฟฯฮฝฯ„ฮฑฮน ฮฑฯ€ฯŒ ฯ„ฮฟฮฝ/ฯ„ฮทฮฝ @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "ฮ•ฮนฮบฯŒฮฝฮตฯ‚ ฮณฮนฮฑ ฮตฮฝฮฎฮปฮนฮบฮตฯ‚." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "ฮšฮฑฯฯ†ฮฏฯ„ฯƒฯ‰ฮผฮฑ ฯƒฯ„ฮทฮฝ ฮฑฯฯ‡ฮนฮบฮฎ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "ฮšฮฑฯฯ†ฮฏฯ„ฯƒฯ‰ฮผฮฑ ฯƒฯ„ฮทฮฝ ฮ‘ฯฯ‡ฮนฮบฮฎ" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "ฮšฮฑฯฯ†ฮนฯ„ฯƒฯ‰ฮผฮญฮฝฮฟ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "ฮšฮฑฯฯ†ฮนฯ„ฯƒฯ‰ฮผฮญฮฝฮฟ ฯƒฯ„ฮนฯ‚ ฯฮฟฮญฯ‚ ฯƒฮฑฯ‚" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "ฮ‘ฮฝฮฑฯ€ฮฑฯฮฑฮณฯ‰ฮณฮฎ" @@ -9076,8 +9076,8 @@ msgstr "ฮ‘ฮฝฮฑฯ€ฮฑฯฮฑฮณฯ‰ฮณฮฎ {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "ฮ‘ฮฝฮฑฯ€ฮฑฯฮฑฮณฯ‰ฮณฮฎ ฮฒฮฏฮฝฯ„ฮตฮฟ" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "ฮ ฮฑฯฮฑฮบฮฑฮปฯŽ ฮตฯ€ฮนฮปฮญฮพฯ„ฮต ฯ„ฮฟ ฯŒฮฝฮฟฮผฮฑ ฯ‡ฯฮฎฯƒฯ„ฮท ฯƒฮฑฯ‚." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "ฮ ฮฑฯฮฑฮบฮฑฮปฯŽ ฮตฯ€ฮนฮปฮญฮพฯ„ฮต ฯ„ฮฟฮฝ ฮบฯ‰ฮดฮนฮบฯŒ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚ ฯƒฮฑฯ‚." @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "ฮ ฮฑฯฮฑฮบฮฑฮปฯŽ ฮฟฮปฮฟฮบฮปฮทฯฯŽฯƒฯ„ฮต ฯ„ฮฟฮฝ ฮญฮปฮตฮณฯ‡ฮฟ captcha." @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "ฮ ฮฑฯฮฑฮบฮฑฮปฯŽ ฮตฮนฯƒฮฌฮณฮตฯ„ฮต ฯ„ฮฟ email ฯƒฮฑฯ‚." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "ฮ ฮฟฮปฮนฯ„ฮนฮบฮฎ" @@ -9269,7 +9269,7 @@ msgstr "ฮ ฮฟฮปฮนฯ„ฮนฮบฮฎ" msgid "Porn" msgstr "ฮ ฮฟฯฮฝฮฟฮณฯฮฑฯ†ฮฏฮฑ" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "ฮ”ฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "ฮ”ฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "ฮ”ฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท ฮŒฮปฯ‰ฮฝ" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "ฮ”ฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท ฮฑฯ€ฯŒ @{0}" @@ -9340,7 +9340,7 @@ msgstr "ฮ”ฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท ฮบฯฯ…ฮผฮผฮญฮฝฮท ฮฑฯ€ฯŒ ฮตฯƒฮฌฯ‚" msgid "Post interaction settings" msgstr "ฮกฯ…ฮธฮผฮฏฯƒฮตฮนฯ‚ ฮฑฮปฮปฮทฮปฮตฯ€ฮฏฮดฯฮฑฯƒฮทฯ‚ ฮดฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮทฯ‚" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "ฮ”ฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท ฮบฮฑฯฯ†ฮนฯ„ฯƒฯ‰ฮผฮญฮฝฮท" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "ฮ”ฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท ฮพฮตฮบฮฑฯฯ†ฮนฯ„ฯƒฯ‰ฮผฮญฮฝฮท" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "ฮ”ฮทฮผฮฟฯƒฮนฮตฯฯƒฮตฮนฯ‚" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "ฮŸฮน ฮดฮทฮผฮฟฯƒฮนฮตฯฯƒฮตฮนฯ‚ ฮผฯ€ฮฟฯฮฟฯฮฝ ฮฝฮฑ ฯ„ฮตฮธฮฟฯฮฝ ฯƒฮต ฯƒฮฏฮณฮฑฯƒฮท ฮผฮต ฮฒฮฌฯƒฮท ฯ„ฮฟ ฮบฮตฮฏฮผฮตฮฝฮฟ, ฯ„ฮนฯ‚ ฮตฯ„ฮนฮบฮญฯ„ฮตฯ‚ ฯ„ฮฟฯ…ฯ‚ ฮฎ ฮบฮฑฮน ฯ„ฮฑ ฮดฯฮฟ. ฮฃฮฑฯ‚ ฯ€ฯฮฟฯ„ฮตฮฏฮฝฮฟฯ…ฮผฮต ฮฝฮฑ ฮฑฯ€ฮฟฯ†ฯฮณฮตฯ„ฮต ฯ„ฮนฯ‚ ฮบฮฟฮนฮฝฮญฯ‚ ฮปฮญฮพฮตฮนฯ‚ ฯ€ฮฟฯ… ฮตฮผฯ†ฮฑฮฝฮฏฮถฮฟฮฝฯ„ฮฑฮน ฯƒฮต ฯ€ฮฟฮปฮปฮญฯ‚ ฮดฮทฮผฮฟฯƒฮนฮตฯฯƒฮตฮนฯ‚, ฮบฮฑฮธฯŽฯ‚ ฮฑฯ…ฯ„ฯŒ ฮผฯ€ฮฟฯฮตฮฏ ฮฝฮฑ ฮญฯ‡ฮตฮน ฯ‰ฯ‚ ฮฑฯ€ฮฟฯ„ฮญฮปฮตฯƒฮผฮฑ ฮฝฮฑ ฮผฮทฮฝ ฮตฮผฯ†ฮฑฮฝฮฏฮถฮตฯ„ฮฑฮน ฮบฮฑฮผฮฏฮฑ ฮดฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท." @@ -9398,6 +9396,10 @@ msgstr "ฮŸฮน ฮดฮทฮผฮฟฯƒฮนฮตฯฯƒฮตฮนฯ‚ ฮผฯ€ฮฟฯฮฟฯฮฝ ฮฝฮฑ ฯ„ฮตฮธฮฟฯฮฝ ฯƒฮต ฯƒฮฏ msgid "Posts hidden" msgstr "ฮšฯฯ…ฮผฮผฮญฮฝฮตฯ‚ ฮดฮทฮผฮฟฯƒฮนฮตฯฯƒฮตฮนฯ‚" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "ฮ‘ฯ€ฯŒฯฯฮทฯ„ฮฟ" msgid "Privacy and security" msgstr "ฮ‘ฯ€ฯŒฯฯฮทฯ„ฮฟ ฮบฮฑฮน ฮฑฯƒฯ†ฮฌฮปฮตฮนฮฑ" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "ฮ‘ฯ€ฯŒฯฯฮทฯ„ฮฟ ฮบฮฑฮน ฮ‘ฯƒฯ†ฮฌฮปฮตฮนฮฑ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "ฮ ฮฟฮปฮนฯ„ฮนฮบฮฎ ฮ‘ฯ€ฮฟฯฯฮฎฯ„ฮฟฯ…" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "ฮ•ฯ€ฮตฮพฮตฯฮณฮฑฯƒฮฏฮฑ ฮฒฮฏฮฝฯ„ฮตฮฟ..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "ฮŸฮน ฯ€ฮฑฯฮฑฮธฮญฯƒฮตฮนฯ‚ ฮดฮทฮผฮฟฯƒฮนฮตฯฯƒฮตฯ‰ฮฝ ฮตฮฏฮฝฮฑฮน ฮฑฯ€ฮตฮฝฮต #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "ฮ ฮฑฯฮฑฮธฮญฯƒฮตฮนฯ‚" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "ฮ ฮฑฯฮฑฮธฮญฯƒฮตฮนฯ‚ ฮฑฯ…ฯ„ฮฎฯ‚ ฯ„ฮทฯ‚ ฮดฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮทฯ‚" @@ -9647,7 +9650,7 @@ msgstr "ฮ•ฯ€ฮฑฮฝฮฑฮตฮฝฮตฯฮณฮฟฯ€ฮฟฮฏฮทฯƒฮท ฯ„ฮฟฯ… ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯ ฯƒฮฑฯ‚" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "ฮ”ฮนฮฑฮฒฮฌฯƒฯ„ฮต ฯ„ฮทฮฝ ฮ ฮฟฮปฮนฯ„ฮนฮบฮฎ ฮ‘ฯ€ฮฟฯฯฮฎฯ„ฮฟฯ… ฯ„ฮฟฯ… Blues msgid "Read the Bluesky Terms of Service" msgstr "ฮ”ฮนฮฑฮฒฮฌฯƒฯ„ฮต ฯ„ฮฟฯ…ฯ‚ ฮŒฯฮฟฯ…ฯ‚ ฮงฯฮฎฯƒฮทฯ‚ ฯ„ฮฟฯ… Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "ฮ•ฯ€ฮฑฮฝฮฑฯƒฯฮฝฮดฮตฯƒฮท" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "ฮ•ฯ€ฮฑฮฝฮฑฯ†ฯŒฯฯ„ฯ‰ฯƒฮท ฯƒฯ…ฮฝฮฟฮผฮนฮปฮนฯŽฮฝ" @@ -9766,7 +9765,7 @@ msgstr "ฮ•ฯ€ฮฑฮฝฮฑฯ†ฯŒฯฯ„ฯ‰ฯƒฮท ฯƒฯ…ฮฝฮฟฮผฮนฮปฮนฯŽฮฝ" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "ฮ‘ฯ†ฮฑฮฏฯฮตฯƒฮท" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "ฮ‘ฯ†ฮฑฮฏฯฮตฯƒฮท ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯ" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "ฮ‘ฯ†ฮฑฮฏฯฮตฯƒฮท ฮฑฯ€ฯŒ ฯ„ฮนฯ‚ ฯฮฟฮญฯ‚ ฮผฮฟฯ…" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "ฮ‘ฯ†ฮฑฮฏฯฮตฯƒฮท ฮฑฯ€ฯŒ ฯ„ฮทฮฝ ฮณฯฮฎฮณฮฟฯฮท ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮท;" @@ -9862,7 +9861,7 @@ msgstr "ฮ‘ฯ†ฮฑฮฏฯฮตฯƒฮท ฮฑฯ€ฯŒ ฯ„ฮทฮฝ ฮณฯฮฎฮณฮฟฯฮท ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮท;" msgid "Remove from saved feeds" msgstr "ฮ‘ฯ†ฮฑฮฏฯฮตฯƒฮท ฮฑฯ€ฯŒ ฯ„ฮนฯ‚ ฮฑฯ€ฮฟฮธฮทฮบฮตฯ…ฮผฮญฮฝฮตฯ‚ ฯฮฟฮญฯ‚" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "ฮ‘ฯ†ฮฑฮฏฯฮตฯƒฮท ฮตฮนฮบฯŒฮฝฮฑฯ‚" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "ฮ‘ฯ†ฮฑฮนฯฮญฮธฮทฮบฮต ฮฑฯ€ฯŒ ฯ„ฮท ฮปฮฏฯƒฯ„ฮฑ" msgid "Removed from saved feeds" msgstr "ฮ‘ฯ†ฮฑฮนฯฮญฮธฮทฮบฮต ฮฑฯ€ฯŒ ฯ„ฮนฯ‚ ฮฑฯ€ฮฟฮธฮทฮบฮตฯ…ฮผฮญฮฝฮตฯ‚ ฯฮฟฮญฯ‚" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "ฮ‘ฯ€ฮฑฮฝฯ„ฮฎฯƒฮตฮนฯ‚" @@ -10037,7 +10037,7 @@ msgstr "ฮŸฮน ฮฑฯ€ฮฑฮฝฯ„ฮฎฯƒฮตฮนฯ‚ ฯƒฮต ฮฑฯ…ฯ„ฮฎ ฯ„ฮท ฮดฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท ฮตฮฏฮฝ msgid "Reply" msgstr "ฮ‘ฯ€ฮฌฮฝฯ„ฮทฯƒฮท" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "ฮ‘ฯ€ฮฌฮฝฯ„ฮทฯƒฮท" @@ -10098,8 +10098,8 @@ msgstr "ฮ‘ฮฝฮฑฯ†ฮฟฯฮฌ ฯƒฯ…ฮฝฮฟฮผฮนฮปฮฏฮฑฯ‚" msgid "Report dialog" msgstr "ฮ ฮฑฯฮฌฮธฯ…ฯฮฟ ฮฑฮฝฮฑฯ†ฮฟฯฮฌฯ‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "ฮ‘ฮฝฮฑฯ†ฮฟฯฮฌ ฯฮฟฮฎฯ‚" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "ฮ‘ฮฝฮฑฮดฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท ฮฑฯ€ฯŒ ฮตฯƒฮฌฯ‚" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "ฮ‘ฮฝฮฑฮดฮทฮผฮฟฯƒฮฏฮตฯ…ฯƒฮท ฮฑฯ…ฯ„ฮฎฯ‚ ฯ„ฮทฯ‚ ฮฑฮฝฮฌฯฯ„ฮทฯƒฮทฯ‚" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "ฮ•ฯ€ฮฑฮฝฮฌฮปฮทฯˆฮท ฯ„ฮทฯ‚ ฯ„ฮตฮปฮตฯ…ฯ„ฮฑฮฏฮฑฯ‚ ฮตฮฝฮญฯฮณฮตฮนฮฑฯ‚, ฮท ฮฟ #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "ฮ•ฯ€ฮนฯƒฯ„ฯฮฟฯ†ฮฎ ฯƒฯ„ฮทฮฝ ฮฑฯฯ‡ฮนฮบฮฎ ฯƒฮตฮปฮฏฮดฮฑ" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "ฮ•ฯ€ฮนฯƒฯ„ฯฮฟฯ†ฮฎ ฯƒฯ„ฮทฮฝ ฯ€ฯฮฟฮทฮณฮฟฯฮผฮตฮฝฮท ฯƒฮตฮปฮฏฮดฮฑ" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "ฮ‘ฯ€ฮฟฮธฮฎฮบฮตฯ…ฯƒฮท ฮฑฮปฮปฮฑฮณฯŽฮฝ" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "ฮ‘ฯ€ฮฟฮธฮฎฮบฮตฯ…ฯƒฮท QR ฮบฯŽฮดฮนฮบฮฑ" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "ฮ‘ฯ€ฮฟฮธฮฎฮบฮตฯ…ฯƒฮท ฯƒฯ„ฮนฯ‚ ฯฮฟฮญฯ‚ ฮผฮฟฯ…" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "ฮ‘ฯ€ฮฟฮธฮทฮบฮตฯ…ฮผฮญฮฝฮตฯ‚ ฯฮฟฮญฯ‚" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "ฮ‘ฯ€ฮฟฮธฮทฮบฮตฯฯ„ฮทฮบฮต ฯƒฯ„ฮนฯ‚ ฯฮฟฮญฯ‚ ฯƒฮฑฯ‚" @@ -10520,8 +10520,8 @@ msgstr "ฮ‘ฯ€ฮฟฮธฮทฮบฮตฯฯ„ฮทฮบฮต ฯƒฯ„ฮนฯ‚ ฯฮฟฮญฯ‚ ฯƒฮฑฯ‚" msgid "Say hello!" msgstr "ฮ ฮตฮฏฯ„ฮต ฮณฮตฮนฮฑ!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "ฮ•ฯ€ฮนฯƒฯ„ฮฎฮผฮท" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "ฮœฮตฯ„ฮฑฮบฮฏฮฝฮทฯƒฮท ฯƒฯ„ฮทฮฝ ฮบฮฟฯฯ…ฯ†ฮฎ" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "ฮ‘ฮฝฮฑฮถฮฎฯ„ฮทฯƒฮท" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "ฮ‘ฮฝฮฑฮถฮทฯ„ฮฎฯƒฯ„ฮต ฯฮฟฮญฯ‚ ฯ€ฮฟฯ… ฮธฮญฮปฮตฯ„ฮต ฮฝฮฑ ฯ€ฯฮฟฯ„ฮตฮฏฮฝฮตฯ„ฮต ฯƒฮต ฮฌฮปฮปฮฟฯ…ฯ‚." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "ฮ‘ฮฝฮฑฮถฮฎฯ„ฮทฯƒฮท GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "ฮ”ฮตฮฏฯ„ฮต ฮธฮญฯƒฮตฮนฯ‚ ฮตฯฮณฮฑฯƒฮฏฮฑฯ‚ ฯƒฯ„ฮฟ Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "ฮ•ฯ€ฮนฮปฮฟฮณฮฎ ฯ‡ฯฯŽฮผฮฑฯ„ฮฟฯ‚" @@ -10764,11 +10769,11 @@ msgstr "ฮ•ฯ€ฮนฮปฮฟฮณฮฎ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯ" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "ฮ•ฯ€ฮนฮปฮฟฮณฮฎ ฮตฮนฮบฯŒฮฝฮฑฯ‚ ฯ€ฯฮฟฯ†ฮฏฮป" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "ฮ•ฯ€ฮนฮปฮฟฮณฮฎ emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "ฮ•ฯ€ฮนฮปฮฟฮณฮฎ GIF" msgid "Select GIF \"{0}\"" msgstr "ฮ•ฯ€ฮนฮปฮญฮพฯ„ฮต GIF โ€œ{0}โ€" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "ฮ•ฯ€ฮนฮปฮญฮพฯ„ฮต ฯ„ฮฟ emoji {emojiName} ฯ‰ฯ‚ ฮตฮนฮบฯŒฮฝฮฑ ฯ€ฯฮฟฯ†ฮฏฮป ฯƒฮฑฯ‚" @@ -10945,7 +10951,8 @@ msgstr "ฮ‘ฯ€ฮฟฯƒฯ„ฮฟฮปฮฎ ฮผฮทฮฝฯฮผฮฑฯ„ฮฟฯ‚" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "ฮ‘ฯ€ฮฟฯƒฯ„ฮฟฮปฮฎ ฮฑฮฝฮฌฯฯ„ฮทฯƒฮทฯ‚ ฯƒฮต..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "ฮ‘ฯ€ฮฟฯƒฯ„ฮฟฮปฮฎ email ฮตฯ€ฮฑฮปฮฎฮธฮตฯ…ฯƒฮทฯ‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "ฮ‘ฯ€ฮฟฯƒฯ„ฮฟฮปฮฎ ฮผฮญฯƒฯ‰ ฯ€ฯฮฟฯƒฯ‰ฯ€ฮนฮบฮฟฯ ฮผฮทฮฝฯฮผฮฑฯ„ฮฟฯ‚" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "ฮŸฯฮฏฮถฮตฮน email ฮณฮนฮฑ ฮตฯ€ฮฑฮฝฮฑฯ†ฮฟฯฮฌ ฮบฯ‰ฮดฮนฮบฮฟฯ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "ฮกฯ…ฮธฮผฮฏฯƒฮตฮนฯ‚" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "ฮšฮฟฮนฮฝฮฎ ฯ‡ฯฮฎฯƒฮท ฮฟฯฯ„ฯ‰ฯ‚ ฮฎ ฮฌฮปฮปฯ‰ฯ‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "ฮ ฮฑฯฮฌฮธฯ…ฯฮฟ ฮดฮนฮฑฮปฯŒฮณฮฟฯ… ฮบฮฟฮนฮฝฮฎฯ‚ ฯ‡ฯฮฎฯƒฮทฯ‚ ฯƒฯ…ฮฝฮดฮญฯƒ msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "ฮšฮฟฮนฮฝฮฎ ฯ‡ฯฮฎฯƒฮท QR ฮบฯŽฮดฮนฮบฮฑ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "ฮšฮฟฮนฮฝฮฎ ฯ‡ฯฮฎฯƒฮท ฮฑฯ…ฯ„ฮฟฯ ฯ„ฮฟฯ… Starter Pack" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "ฮœฮฟฮนฯฮฑฯƒฯ„ฮตฮฏฯ„ฮต ฮฑฯ…ฯ„ฯŒ ฯ„ฮฟ Starter Pack ฮบฮฑฮน ฮฒฮฟฮทฮธฮฎฯƒฯ„ฮต ฮบฮน ฮฌฮปฮปฮฟฯ…ฯ‚ ฮฝฮฑ ฮณฮฏฮฝฮฟฯ…ฮฝ ฮผฮญฮปฮท ฯ„ฮทฯ‚ ฮบฮฟฮนฮฝฯŒฯ„ฮทฯ„ฮฌฯ‚ ฯƒฮฑฯ‚ ฯƒฯ„ฮฟ Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "ฮ•ฮปฮตฮณฮบฯ„ฮฎฯ‚ ฮบฮฟฮนฮฝฯŽฮฝ ฯ€ฯฮฟฯ„ฮนฮผฮฎฯƒฮตฯ‰ฮฝ" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "ฮ•ฮผฯ†ฮฌฮฝฮนฯƒฮท" msgid "Show alt text" msgstr "ฮ•ฮผฯ†ฮฌฮฝฮนฯƒฮท ฮตฮฝฮฑฮปฮปฮฑฮบฯ„ฮนฮบฮฟฯ ฮบฮตฮนฮผฮญฮฝฮฟฯ…" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "ฮ•ฮผฯ†ฮฌฮฝฮนฯƒฮท ฮฟฯฯ„ฯ‰ฯ‚ ฮฎ ฮฌฮปฮปฯ‰ฯ‚" @@ -11274,9 +11281,9 @@ msgstr "ฮ•ฮผฯ†ฮฌฮฝฮนฯƒฮท ฮปฮฏฯƒฯ„ฮฑฯ‚ ฮฟฯฯ„ฯ‰ฯ‚ ฮฎ ฮฌฮปฮปฯ‰ฯ‚" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "ฮ•ฮผฯ†ฮฌฮฝฮนฯƒฮท ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฯ‰ฮฝ" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "ฮ•ฮผฯ†ฮฌฮฝฮนฯƒฮท ฯ€ฯฮฟฮตฮนฮดฮฟฯ€ฮฟฮฏฮทฯƒฮทฯ‚ ฮบฮฑฮน ฯ†ฮนฮปฯ„ฯฮฌฯฮนฯƒ msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "ฮ‘ฯ€ฮฟฯƒฯฮฝฮดฮตฯƒฮท;" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "ฮ‘ฯ€ฮฑฮนฯ„ฮตฮฏฯ„ฮฑฮน ฯƒฯฮฝฮดฮตฯƒฮท" @@ -11469,7 +11476,7 @@ msgstr "ฮ ฮฑฯฮฌฮปฮตฮนฯˆฮท" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "ฮœฮนฮบฯฯŒฯ„ฮตฯฮฟ" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "ฮšฮฌฯ€ฮฟฮนฮตฯ‚ ฮฌฮปฮปฮตฯ‚ ฯฮฟฮญฯ‚ ฯ€ฮฟฯ… ฮผฯ€ฮฟฯฮตฮฏ ฮฝฮฑ ฯƒฮฑฯ‚ ฮฑฯฮญฯƒฮฟฯ…ฮฝ" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "ฮšฮฌฯ„ฮน ฯ€ฮฎฮณฮต ฯƒฯ„ฯฮฑฮฒฮฌ, ฯ€ฮฑฯฮฑฮบฮฑฮปฯŽ ฮดฮฟฮบฮนฮผฮฌฯƒฯ„ฮต ฮพฮฑฮฝฮฌ" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "ฮ‘ฮธฮปฮฎฮผฮฑฯ„ฮฑ" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "ฮˆฮฝฮฑฯฮพฮท ฮฝฮญฮฑฯ‚ ฯƒฯ…ฮฝฮฟฮผฮนฮปฮฏฮฑฯ‚" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "ฮˆฮฝฮฑฯฮพฮท ฯƒฯ…ฮฝฮฟฮผฮนฮปฮฏฮฑฯ‚ ฮผฮต {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "starter pack" @@ -11715,12 +11722,16 @@ msgstr "starter pack ฮฑฯ€ฯŒ ฮตฯƒฮฌฯ‚" msgid "Starter pack is invalid" msgstr "ฮคฮฟ starter pack ฮตฮฏฮฝฮฑฮน ฮฌฮบฯ…ฯฮฟ" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "ฮคฮฑ Starter Packs ฯƒฮฑฯ‚ ฮตฯ€ฮนฯ„ฯฮญฯ€ฮฟฯ…ฮฝ ฮฝฮฑ ฮผฮฟฮนฯฮฌฮถฮตฯƒฯ„ฮต ฮตฯฮบฮฟฮปฮฑ ฯ„ฮนฯ‚ ฮฑฮณฮฑฯ€ฮทฮผฮญฮฝฮตฯ‚ ฯƒฮฑฯ‚ ฯฮฟฮญฯ‚ ฮบฮฑฮน ฮฌฯ„ฮฟฮผฮฑ ฮผฮต ฯ„ฮฟฯ…ฯ‚ ฯ†ฮฏฮปฮฟฯ…ฯ‚ ฯƒฮฑฯ‚." @@ -11728,7 +11739,7 @@ msgstr "ฮคฮฑ Starter Packs ฯƒฮฑฯ‚ ฮตฯ€ฮนฯ„ฯฮญฯ€ฮฟฯ…ฮฝ ฮฝฮฑ ฮผฮฟฮนฯฮฌฮถฮตฯƒฯ„ฮต msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "ฮฃฮตฮปฮฏฮดฮฑ ฮบฮฑฯ„ฮฌฯƒฯ„ฮฑฯƒฮทฯ‚" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "ฮ’ฮฎฮผฮฑ {0} ฮฑฯ€ฯŒ {1}" @@ -11754,7 +11765,7 @@ msgstr "ฮ— ฮฑฯ€ฮฟฮธฮฎฮบฮตฯ…ฯƒฮท ฮตฮบฮบฮฑฮธฮฑฯฮฏฯƒฯ„ฮทฮบฮต, ฯ€ฯฮญฯ€ฮตฮน ฮฝฮฑ ฮต msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "ฮ•ฮณฮณฯฮฑฯ†ฮตฮฏฯ„ฮต ฯƒฯ„ฮฟ @{0} ฮณฮนฮฑ ฮฝฮฑ ฯ‡ฯฮทฯƒฮนฮผฮฟฯ€ฮฟฮนฮฎฯƒฮตฯ„ฮต ฮฑฯ…ฯ„ฮญฯ‚ ฯ„ฮนฯ‚ ฮตฯ„ฮนฮบฮญฯ„ฮตฯ‚:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "ฮ ฯฮฟฯ„ฮตฮนฮฝฯŒฮผฮตฮฝฮฑ ฮณฮนฮฑ ฮตฯƒฮฌฯ‚" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "ฮฃฯฯƒฯ„ฮทฮผฮฑ" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "ฮ ฮฑฯ„ฮฎฯƒฯ„ฮต ฮณฮนฮฑ ฮฝฮฑ ฮฑฯ€ฮฟฯฯฮฏฯˆฮตฯ„ฮต" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "ฮ— ฮตฯฮณฮฑฯƒฮฏฮฑ ฮฟฮปฮฟฮบฮปฮทฯฯŽฮธฮทฮบฮต - 10 \"ฮœฮฟฯ… ฮฑฯฮญฯƒฮตฮน\"!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "ฮœฮฌฮธฮตฯ„ฮต ฯƒฯ„ฮฟฮฝ ฮฑฮปฮณฯŒฯฮนฮธฮผฯŒ ฮผฮฑฯ‚ ฯ„ฮน ฯƒฮฑฯ‚ ฮฑฯฮญฯƒฮตฮน" @@ -12060,7 +12073,7 @@ msgstr "ฮŒฯฮฟฮน" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "ฮ”ฮตฮฝ ฮฒฯฮญฮธฮทฮบฮต ฮฑฯ…ฯ„ฯŒ ฯ„ฮฟ starter pack." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "ฮ‘ฯ…ฯ„ฮฌ ฮฎฯ„ฮฑฮฝ ฯŒฮปฮฑ, ฯ€ฮฑฮนฮดฮนฮฌ!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "ฮŸ ฮดฮนฮฑฮบฮฟฮผฮนฯƒฯ„ฮฎฯ‚ ฯ†ฮฑฮฏฮฝฮตฯ„ฮฑฮน ฮฝฮฑ ฮฑฮฝฯ„ฮนฮผฮตฯ„ฯ‰ฯ€ฮฏฮถฮต msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "ฮคฮฟ starter pack ฯ€ฮฟฯ… ฯ€ฯฮฟฯƒฯ€ฮฑฮธฮตฮฏฯ„ฮต ฮฝฮฑ ฮดฮตฮฏฯ„ฮต ฮตฮฏฮฝฮฑฮน ฮฌฮบฯ…ฯฮฟ. ฮœฯ€ฮฟฯฮตฮฏฯ„ฮต ฮฝฮฑ ฮดฮนฮฑฮณฯฮฌฯˆฮตฯ„ฮต ฮฑฯ…ฯ„ฯŒ ฯ„ฮฟ starter pack ฮฑฮฝฯ„ฮฏฮธฮตฯ„ฮฑ." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "ฮŸ ฮบฯ‰ฮดฮนฮบฯŒฯ‚ ฮตฯ€ฮฑฮปฮฎฮธฮตฯ…ฯƒฮทฯ‚ ฯ€ฮฟฯ… ฮดฯŽฯƒฮฑฯ„ฮต ฮตฮฏฮฝฮฑฮน msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "ฮ˜ฮญฮผฮฑ" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯ€ฯฯŒฮฒฮปฮทฮผฮฑ ฮตฯ€ฮนฮบฮฟฮนฮฝฯ‰ฮฝฮฏฮฑฯ‚ ฮผฮต ฯ„ฮฟฮฝ ฮดฮนฮฑฮบฮฟฮผฮนฯƒฯ„ฮฎ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯ€ฯฯŒฮฒฮปฮทฮผฮฑ ฮตฯ€ฮนฮบฮฟฮนฮฝฯ‰ฮฝฮฏฮฑฯ‚ ฮผฮต ฯ„ฮฟฮฝ ฮดฮนฮฑฮบฮฟฮผฮนฯƒฯ„ฮฎ, ฯ€ฮฑฯฮฑฮบฮฑฮปฮฟฯฮผฮต ฮตฮปฮญฮณฮพฯ„ฮต ฯ„ฮท ฯƒฯฮฝฮดฮตฯƒฮฎ ฯƒฮฑฯ‚ ฯƒฯ„ฮฟ internet ฮบฮฑฮน ฮดฮฟฮบฮนฮผฮฌฯƒฯ„ฮต ฮพฮฑฮฝฮฌ." @@ -12283,8 +12296,8 @@ msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯ€ฯฯŒฮฒฮปฮทฮผฮฑ ฮตฯ€ฮนฮบฮฟฮนฮฝฯ‰ฮฝฮฏฮฑฯ‚ ฮผ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯ€ฯฯŒฮฒฮปฮทฮผฮฑ ฮปฮฎฯˆฮทฯ‚ ฮตฮนฮดฮฟฯ€ฮฟฮนฮฎฯƒฮตฯ‰ฮฝ. ฮ ฮฑฯ„ฮฎฯƒฯ„ฮต ฮตฮดฯŽ ฮณฮนฮฑ ฮฝฮฑ ฮดฮฟฮบฮนฮผฮฌฯƒฮตฯ„ฮต ฮพฮฑฮฝฮฌ." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯ€ฯฯŒฮฒฮปฮทฮผฮฑ ฮปฮฎฯˆฮทฯ‚ ฮฑฮฝฮฑฯฯ„ฮฎฯƒฮตฯ‰ฮฝ. ฮ ฮฑฯ„ฮฎฯƒฯ„ฮต ฮตฮดฯŽ ฮณฮนฮฑ ฮฝฮฑ ฮดฮฟฮบฮนฮผฮฌฯƒฮตฯ„ฮต ฮพฮฑฮฝฮฌ." @@ -12309,7 +12322,7 @@ msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯ€ฯฯŒฮฒฮปฮทฮผฮฑ ฮปฮฎฯˆฮทฯ‚ ฯ„ฯ‰ฮฝ ฯ€ฮปฮทฯฮฟ msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "ฮ ฮฑฯฮฟฯ…ฯƒฮนฮฌฯƒฯ„ฮทฮบฮต ฯ€ฯฯŒฮฒฮปฮทฮผฮฑ ฮบฮฑฯ„ฮฌ ฯ„ฮทฮฝ ฮบฮฑฯ„ฮฌฯฮณฮทฯƒฮท ฮฑฯ…ฯ„ฮฎฯ‚ ฯ„ฮทฯ‚ ฯฮฟฮฎฯ‚. ฮ ฮฑฯฮฑฮบฮฑฮปฮฟฯฮผฮต ฮตฮปฮญฮณฮพฯ„ฮต ฯ„ฮท ฯƒฯฮฝฮดฮตฯƒฮฎ ฯƒฮฑฯ‚ ฯƒฯ„ฮฟ internet ฮบฮฑฮน ฮดฮฟฮบฮนฮผฮฌฯƒฯ„ฮต ฮพฮฑฮฝฮฌ." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "ฮ‘ฯ…ฯ„ฮญฯ‚ ฮฟฮน ฯฯ…ฮธฮผฮฏฯƒฮตฮนฯ‚ ฮนฯƒฯ‡ฯฮฟฯ…ฮฝ ฮผฯŒฮฝฮฟ ฮณฮนฮฑ ฯ„ฮท msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "ฮ‘ฯ…ฯ„ฯŒ ฯ„ฮฟ {screenDescription} ฮญฯ‡ฮตฮน ฮตฯ€ฮนฯƒฮทฮผฮฑฮฝฮธฮตฮฏ:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "ฮ‘ฯ…ฯ„ฯŒฯ‚ ฮฟ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒฯ‚ ฮญฯ‡ฮตฮน ฮถฮทฯ„ฮฎฯƒฮตฮน ฮฑฯ€ฯŒ ฯ„ฮฟฯ…ฯ‚ ฯ‡ฯฮฎฯƒฯ„ฮตฯ‚ ฮฝฮฑ ฯƒฯ…ฮฝฮดฮตฮธฮฟฯฮฝ ฮณฮนฮฑ ฮฝฮฑ ฮดฮฟฯ…ฮฝ ฯ„ฮฟ ฯ€ฯฮฟฯ†ฮฏฮป ฯ„ฮฟฯ…ฯ‚." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "ฮ‘ฯ…ฯ„ฮฎ ฮท ฯฮฟฮฎ ฮตฮฏฮฝฮฑฮน ฮฌฮดฮตฮนฮฑ! ฮŠฯƒฯ‰ฯ‚ ฯ‡ฯฮตฮนฮฑฯƒฯ„ฮตฮฏ ฮฝฮฑ ฮฑฮบฮฟฮปฮฟฯ…ฮธฮฎฯƒฮตฯ„ฮต ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮฟฯ…ฯ‚ ฯ‡ฯฮฎฯƒฯ„ฮตฯ‚ ฮฎ ฮฝฮฑ ฯฯ…ฮธฮผฮฏฯƒฮตฯ„ฮต ฯ„ฮนฯ‚ ฮณฮปฯ‰ฯƒฯƒฮนฮบฮญฯ‚ ฯƒฮฑฯ‚ ฯฯ…ฮธฮผฮฏฯƒฮตฮนฯ‚." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "ฮ‘ฯ…ฯ„ฮฎ ฮท ฯฮฟฮฎ ฮตฮฏฮฝฮฑฮน ฮฌฮดฮตฮนฮฑ." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "ฮ‘ฯ…ฯ„ฯŒ ฯ„ฮฟ ฯŒฮฝฮฟฮผฮฑ ฯ‡ฯฮฎฯƒฯ„ฮท ฮตฮฏฮฝฮฑฮน ฮบฯฮฑฯ„ฮทฮผฮญฮฝฮฟ. ฮ ฮฑฯฮฑฮบฮฑฮปฮฟฯฮผฮต ฮดฮฟฮบฮนฮผฮฌฯƒฯ„ฮต ฮญฮฝฮฑ ฮดฮนฮฑฯ†ฮฟฯฮตฯ„ฮนฮบฯŒ." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "ฮ‘ฯ…ฯ„ฮฎ ฮท ฮตฯ„ฮนฮบฮญฯ„ฮฑ ฮตฯ†ฮฑฯฮผฯŒฯƒฯ„ฮทฮบฮต ฮฑฯ€ฯŒ ฮตฯƒฮฌฯ‚." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "ฮ‘ฯ…ฯ„ฯŒฯ‚ ฮฟ ฮตฯ„ฮนฮบฮตฯ„ฮฟฮณฯฮฌฯ†ฮฟฯ‚ ฮดฮตฮฝ ฮญฯ‡ฮตฮน ฮดฮทฮปฯŽฯƒฮตฮน ฯ€ฮฟฮนฮตฯ‚ ฮตฯ„ฮนฮบฮญฯ„ฮตฯ‚ ฮดฮทฮผฮฟฯƒฮนฮตฯฮตฮน, ฮบฮฑฮน ฮตฮฝฮดฮญฯ‡ฮตฯ„ฮฑฮน ฮฝฮฑ ฮผฮทฮฝ ฮตฮฏฮฝฮฑฮน ฮตฮฝฮตฯฮณฯŒฯ‚." @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "ฮ‘ฯ…ฯ„ฮฎ ฮท ฮฑฮฝฮฌฯฯ„ฮทฯƒฮท ฮธฮฑ ฮบฯฯ…ฯ†ฯ„ฮตฮฏ ฮฑฯ€ฯŒ ฯ„ฮนฯ‚ ฯฮฟฮญฯ‚ ฮบฮฑฮน ฯ„ฮฑ ฮฝฮฎฮผฮฑฯ„ฮฑ. ฮ‘ฯ…ฯ„ฯŒ ฮดฮตฮฝ ฮผฯ€ฮฟฯฮตฮฏ ฮฝฮฑ ฮฑฮฝฮฑฮนฯฮตฮธฮตฮฏ." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "ฮ‘ฯ…ฯ„ฯŒฯ‚ ฮฟ ฯ‡ฯฮฎฯƒฯ„ฮทฯ‚ ฮดฮตฮฝ ฮญฯ‡ฮตฮน ฮฑฮบฯŒฮปฮฟฯ…ฮธฮฟฯ…ฯ‚." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "ฮ‘ฯ…ฯ„ฯŒฯ‚ ฮฟ ฯ‡ฯฮฎฯƒฯ„ฮทฯ‚ ฯƒฮฑฯ‚ ฮญฯ‡ฮตฮน ฮผฯ€ฮปฮฟฮบฮฌฯฮตฮน. ฮ”ฮตฮฝ ฮผฯ€ฮฟฯฮตฮฏฯ„ฮต ฮฝฮฑ ฮดฮตฮฏฯ„ฮต ฯ„ฮฟ ฯ€ฮตฯฮนฮตฯ‡ฯŒฮผฮตฮฝฯŒ ฯ„ฮฟฯ…." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "ฮ‘ฯ…ฯ„ฯŒฯ‚ ฮฟ ฯ‡ฯฮฎฯƒฯ„ฮทฯ‚ ฯ€ฮตฯฮนฮปฮฑฮผฮฒฮฌฮฝฮตฯ„ฮฑฮน ฯƒฯ„ฮท ฮปฮฏฯƒ msgid "This user is new here. Press for more info about when they joined." msgstr "ฮ‘ฯ…ฯ„ฯŒฯ‚ ฮฟ ฯ‡ฯฮฎฯƒฯ„ฮทฯ‚ ฮตฮฏฮฝฮฑฮน ฮฝฮญฮฟฯ‚ ฮตฮดฯŽ. ฮ ฮฑฯ„ฮฎฯƒฯ„ฮต ฮณฮนฮฑ ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮตฯ‚ ฯ€ฮปฮทฯฮฟฯ†ฮฟฯฮฏฮตฯ‚ ฯƒฯ‡ฮตฯ„ฮนฮบฮฌ ฮผฮต ฯ„ฮฟ ฯ€ฯŒฯ„ฮต ฮตฮฝฯ„ฮฌฯ‡ฮธฮทฮบฮต." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "ฮ‘ฯ…ฯ„ฯŒฯ‚ ฮฟ ฯ‡ฯฮฎฯƒฯ„ฮทฯ‚ ฮดฮตฮฝ ฮฑฮบฮฟฮปฮฟฯ…ฮธฮตฮฏ ฮบฮฑฮฝฮญฮฝฮฑฮฝ." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "ฮ‘ฯ…ฯ„ฯŒ ฮธฮฑ ฮฑฯ†ฮฑฮนฯฮญฯƒฮตฮน ฯ„ฮฟฮฝ @{0} ฮฑฯ€ฯŒ ฯ„ฮท ฮปฮฏฯƒฯ„ฮฑ ฮณฯฮฎฮณฮฟฯฮทฯ‚ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚." @@ -12786,7 +12801,7 @@ msgstr "ฮ ฯฮฟฯ„ฮนฮผฮฎฯƒฮตฮนฯ‚ ฮฮฎฮผฮฑฯ„ฮฟฯ‚" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "ฮ ฯฮฟฯ„ฮนฮผฮฎฯƒฮตฮนฯ‚ ฮฮทฮผฮฌฯ„ฯ‰ฮฝ" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "ฮšฮฟฯฯ…ฯ†ฮฎ" @@ -12858,7 +12873,7 @@ msgstr "ฮšฮฟฯฯ…ฯ†ฮฎ" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "ฮžฮตฮผฯ€ฮปฮฟฮบฮฌฯฮนฯƒฮผฮฑ ฮ›ฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯ;" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "ฮ”ฮนฮฑฮบฮฟฯ€ฮฎ ฯ€ฮฑฯฮฑฮบฮฟฮปฮฟฯฮธฮทฯƒฮทฯ‚ {0}" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "ฮ‘ฮบฯฯฯ‰ฯƒฮท ฮฃฮฏฮณฮฑฯƒฮทฯ‚ ฮฝฮฎฮผฮฑฯ„ฮฟฯ‚" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "ฮ‘ฮบฯฯฯ‰ฯƒฮท ฮฃฮฏฮณฮฑฯƒฮทฯ‚ ฮฒฮฏฮฝฯ„ฮตฮฟ" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "ฮ‘ฯ†ฮฑฮฏฯฮตฯƒฮท ฮบฮฑฯฯ†ฮนฯ„ฯƒฯ‰ฮผฮญฮฝฮฟฯ…" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "ฮ‘ฯ†ฮฑฮฏฯฮตฯƒฮท ฮบฮฑฯฯ†ฮนฯ„ฯƒฯ‰ฮผฮญฮฝฮฟฯ… ฮฑฯ€ฯŒ ฯ„ฮทฮฝ ฮฑฯฯ‡ฮนฮบฮฎ ฯƒฮตฮปฮฏฮดฮฑ" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "ฮ‘ฯ†ฮฑฮฏฯฮตฯƒฮท ฮบฮฑฯฯ†ฮนฯ„ฯƒฯ‰ฮผฮญฮฝฮฟฯ… ฮฑฯ€ฯŒ ฯ„ฮท ฮปฮฏฯƒฯ„ฮฑ ฮดฮนฮฑฯ‡ฮตฮฏฯฮนฯƒฮทฯ‚" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "ฮ‘ฯ€ฮตฮณฮณฯฮฑฯ†ฮฎ ฮฑฯ€ฯŒ ฮฑฯ…ฯ„ฯŒฮฝ ฯ„ฮฟฮฝ ฮตฯ„ฮนฮบฮตฯ„ฮฟฮณฯฮฌฯ†ฮฟ" msgid "Unsubscribed from list" msgstr "ฮ‘ฯ€ฮตฮณฮณฯฮฑฯ†ฮฎ ฮฑฯ€ฯŒ ฮฑฯ…ฯ„ฮฎฮฝ ฯ„ฮทฮฝ ฮปฮฏฯƒฯ„ฮฑ" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "ฮ— ฮตฮฝฮทฮผฮญฯฯ‰ฯƒฮท ฯ„ฮทฯ‚ ฮฟฯฮฑฯ„ฯŒฯ„ฮทฯ„ฮฑฯ‚ ฯ„ฮทฯ‚ ฮฑฯ€ฮฌฮฝฯ„ฮทฯƒฮทฯ‚ ฮฑฯ€ฮญฯ„ฯ…ฯ‡ฮต" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "ฮ‘ฮฝฯ„'ฮฑฯ…ฯ„ฮฟฯ, ฮฑฮฝฮตฮฒฮฌฯƒฯ„ฮต ฮผฮนฮฑ ฯ†ฯ‰ฯ„ฮฟฮณฯฮฑฯ†ฮฏฮฑ" @@ -13355,7 +13376,7 @@ msgstr "ฮ‘ฮฝฮตฮฒฮฌฯƒฯ„ฮต ฮฑฯ€ฯŒ ฮฑฯฯ‡ฮตฮฏฮฑ" msgid "Upload from Library" msgstr "ฮ‘ฮฝฮตฮฒฮฌฯƒฯ„ฮต ฮฑฯ€ฯŒ ฯ„ฮท ฮฒฮนฮฒฮปฮนฮฟฮธฮฎฮบฮท" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "ฮ‘ฮฝฮตฮฒฮฌฮถฯ‰ ฮตฮนฮบฯŒฮฝฮตฯ‚..." msgid "Uploading link thumbnail..." msgstr "ฮ‘ฮฝฮตฮฒฮฌฮถฯ‰ ฮผฮนฮบฯฮฟฮณฯฮฑฯ†ฮฏฮฑ ฯƒฯ…ฮฝฮดฮญฯƒฮผฮฟฯ…..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "ฮ‘ฮฝฮตฮฒฮฌฮถฯ‰ ฮฒฮฏฮฝฯ„ฮตฮฟ..." @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "ฮ’ฮฏฮฝฯ„ฮตฮฟ" msgid "Video failed to process" msgstr "ฮ‘ฯ€ฮฟฯ„ฯ…ฯ‡ฮฏฮฑ ฮตฯ€ฮตฮพฮตฯฮณฮฑฯƒฮฏฮฑฯ‚ ฮฒฮฏฮฝฯ„ฮตฮฟ" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "ฮ’ฮนฮฝฯ„ฮตฮฟฯ€ฮฑฮนฯ‡ฮฝฮฏฮดฮนฮฑ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "ฮคฮฟ ฮฒฮฏฮฝฯ„ฮตฮฟ ฮดฮตฮฝ ฮฒฯฮญฮธฮทฮบฮต." @@ -13653,7 +13674,7 @@ msgstr "ฮคฮฟ ฮฒฮฏฮฝฯ„ฮตฮฟ ฮดฮตฮฝ ฮฒฯฮญฮธฮทฮบฮต." msgid "Video settings" msgstr "ฮกฯ…ฮธฮผฮฏฯƒฮตฮนฯ‚ ฮฒฮฏฮฝฯ„ฮตฮฟ" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "ฮคฮฟ ฮฒฮฏฮฝฯ„ฮตฮฟ ฮฑฮฝฮญฮฒฮทฮบฮต" @@ -13662,17 +13683,17 @@ msgstr "ฮคฮฟ ฮฒฮฏฮฝฯ„ฮตฮฟ ฮฑฮฝฮญฮฒฮทฮบฮต" msgid "Video: {0}" msgstr "ฮ’ฮฏฮฝฯ„ฮตฮฟ: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "ฮ ฯฮฟฮฒฮฟฮปฮฎ ฮตฮนฮบฯŒฮฝฮฑฯ‚ ฯ€ฯฮฟฯ†ฮฏฮป ฯ„ฮฟฯ…/ฯ„ฮทฯ‚ {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "ฮ ฯฮฟฮฒฮฟฮปฮฎ ฯ€ฯฮฟฯ†ฮฏฮป ฯ„ฮฟฯ…/ฯ„ฮทฯ‚ {0}" @@ -13724,13 +13745,13 @@ msgstr "ฮ”ฮตฮฏฯ„ฮต ฯ„ฮทฮฝ ฮฑฮฝฮฌฯฯ„ฮทฯƒฮท ฮนฯƒฯ„ฮฟฮปฮฟฮณฮฏฮฟฯ… ฮณฮนฮฑ ฯ€ฮตฯฮน msgid "View debug entry" msgstr "ฮ ฯฮฟฮฒฮฟฮปฮฎ ฮบฮฑฯ„ฮฑฯ‡ฯŽฯฮทฯƒฮทฯ‚ ฮตฮฝฯ„ฮฟฯ€ฮนฯƒฮผฮฟฯ ฯƒฯ†ฮฑฮปฮผฮฌฯ„ฯ‰ฮฝ" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "ฮ ฯฮฟฮฒฮฟฮปฮฎ ฮปฮตฯ€ฯ„ฮฟฮผฮตฯฮตฮนฯŽฮฝ" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "ฮ ฯฮฟฮฒฮฟฮปฮฎ ฯ€ฮปฮฎฯฮฟฯ…ฯ‚ ฮฝฮฎฮผฮฑฯ„ฮฟฯ‚" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "ฮ ฯฮฟฮฒฮฟฮปฮฎ ฯ€ฮปฮทฯฮฟฯ†ฮฟฯฮนฯŽฮฝ ฯƒฯ‡ฮตฯ„ฮนฮบฮฌ ฮผฮต ฮฑฯ…ฯ„ฮญฯ‚ ฯ„ฮนฯ‚ ฮตฯ„ฮนฮบฮญฯ„ฮตฯ‚" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "ฮ ฯฮฟฮฒฮฟฮปฮฎ ฯ„ฮทฯ‚ ฯ…ฯ€ฮทฯฮตฯƒฮฏฮฑฯ‚ ฮตฯ€ฮนฯƒฮฎฮผฮฑฮฝฯƒฮทฯ‚ ฯ€ฮฟฯ… ฯ€ฮฑฯฮญฯ‡ฮตฯ„ฮฑฮน ฮฑฯ€ฯŒ ฯ„ฮฟ @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "ฮ ฯฮฟฮฒฮฟฮปฮฎ ฯ‡ฯฮทฯƒฯ„ฯŽฮฝ ฯ€ฮฟฯ… ฯ„ฮฟฯ…ฯ‚ ฮฑฯฮญฯƒฮตฮน ฮฑฯ…ฯ„ฮฎ ฮท ฯฮฟฮฎ" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "ฮ ฯฮฟฮฒฮฟฮปฮฎ ฯ„ฯ‰ฮฝ ฮปฮนฯƒฯ„ฯŽฮฝ ฮตฯ€ฮฟฯ€ฯ„ฮตฮฏฮฑฯ‚ ฯƒฮฑฯ‚" msgid "View your muted accounts" msgstr "ฮ ฯฮฟฮฒฮฟฮปฮฎ ฯ„ฯ‰ฮฝ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŽฮฝ ฯ€ฮฟฯ… ฮญฯ‡ฮตฯ„ฮต ฯƒฮต ฯƒฮฏฮณฮฑฯƒฮท" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "ฮ‘ฮฝฯ„ฮนฮผฮตฯ„ฯ‰ฯ€ฮฏฮถฮฟฯ…ฮผฮต ฯ€ฯฮฟฮฒฮปฮฎฮผฮฑฯ„ฮฑ ฮดฮนฮบฯ„ฯฮฟฯ…, ฮดฮฟฮบฮนฮผฮฌฯƒฯ„ฮต ฮพฮฑฮฝฮฌ" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "ฮ›ฯ…ฯ€ฮฟฯฮผฮฑฯƒฯ„ฮต, ฮฑฮปฮปฮฌ ฮดฮตฮฝ ฮผฯ€ฮฟฯฮญฯƒฮฑฮผฮต ฮฝฮฑ ฮตฯ€ฮนฮปฯ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "ฮ›ฯ…ฯ€ฮฟฯฮผฮฑฯƒฯ„ฮต, ฮฑฮปฮปฮฌ ฮดฮตฮฝ ฮผฯ€ฮฟฯฮญฯƒฮฑฮผฮต ฮฝฮฑ ฯ†ฮฟฯฯ„ฯŽฯƒฮฟฯ…ฮผฮต ฯ„ฮนฯ‚ ฮปฮญฮพฮตฮนฯ‚ ฯ€ฮฟฯ… ฮญฯ‡ฮตฯ„ฮต ฯƒฮต ฯƒฮฏฮณฮฑฯƒฮท ฮฑฯ…ฯ„ฮฎฮฝ ฯ„ฮท ฯƒฯ„ฮนฮณฮผฮฎ. ฮ ฮฑฯฮฑฮบฮฑฮปฯŽ ฯ€ฯฮฟฯƒฯ€ฮฑฮธฮฎฯƒฯ„ฮต ฮพฮฑฮฝฮฌ." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "ฮ›ฯ…ฯ€ฮฟฯฮผฮฑฯƒฯ„ฮต! ฮ— ฮฑฮฝฮฌฯฯ„ฮทฯƒฮท ฯƒฯ„ฮทฮฝ ฮฟฯ€ฮฟฮฏฮฑ ฮฑฯ€ฮฑฮฝฯ„ฮฌฯ„ฮต ฮญฯ‡ฮตฮน ฮดฮนฮฑฮณฯฮฑฯ†ฮตฮฏ." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "ฮคฮน ฯƒฯ…ฮผฮฒฮฑฮฏฮฝฮตฮน;" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "ฮŸฯ…ฯ€ฯ‚!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "ฮ“ฯฮฌฯˆฯ„ฮต ฮฑฮฝฮฌฯฯ„ฮทฯƒฮท" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "ฮ“ฯฮฌฯˆฯ„ฮต ฯ„ฮทฮฝ ฮฑฯ€ฮฌฮฝฯ„ฮทฯƒฮฎ ฯƒฮฑฯ‚" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "ฮ”ฮตฮฝ ฮตฯ€ฮนฯ„ฯฮญฯ€ฮตฯ„ฮฑฮน ฮฝฮฑ ฮฑฮฝฮตฮฒฮฌฮถฮตฯ„ฮต ฮฒฮฏฮฝฯ„ฮตฮฟ." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "ฮคฯŽฯฮฑ ฮผฯ€ฮฟฯฮตฮฏฯ„ฮต ฮฝฮฑ ฯƒฯ…ฮฝฮดฮตฮธฮตฮฏฯ„ฮต ฮผฮต ฯ„ฮฟฮฝ ฮฝฮญฮฟ ฯƒฮฑฯ‚ ฮบฯ‰ฮดฮนฮบฯŒ ฯ€ฯฯŒฯƒฮฒฮฑฯƒฮทฯ‚." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "ฮˆฯ‡ฮตฯ„ฮต ฯ†ฯ„ฮฌฯƒฮตฮน ฯ€ฯฮฟฯƒฯ‰ฯฮนฮฝฮฌ ฯ„ฮฟ ฯŒฯฮนฮฟ ฮณฮนฮฑ ฮผฮตฯ„ฮฑฯ†ฮฟฯฯ„ฯŽฯƒฮตฮนฯ‚ ฮฒฮฏฮฝฯ„ฮตฮฟ. ฮ ฮฑฯฮฑฮบฮฑฮปฯŽ ฯ€ฯฮฟฯƒฯ€ฮฑฮธฮฎฯƒฯ„ฮต ฮพฮฑฮฝฮฌ ฮฑฯฮณฯŒฯ„ฮตฯฮฑ." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "ฮ”ฮตฮฝ ฮญฯ‡ฮตฯ„ฮต ฮดฮทฮผฮนฮฟฯ…ฯฮณฮฎฯƒฮตฮน ฮฑฮบฯŒฮผฮท starter pack!" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "ฮœฯ€ฮฟฯฮตฮฏฯ„ฮต ฮฝฮฑ ฯ€ฯฮฟฯƒฮธฮญฯƒฮตฯ„ฮต ฮญฯ‰ฯ‚ ฮบฮฑฮน 3 ฯฮฟฮญฯ‚" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "ฮ ฯฮญฯ€ฮตฮน ฮฝฮฑ ฮฑฮบฮฟฮปฮฟฯ…ฮธฮตฮฏฯ„ฮต ฯ„ฮฟฯ…ฮปฮฌฯ‡ฮนฯƒฯ„ฮฟฮฝ ฮตฯ€ฯ„ฮฌ ฮฌฮปฮปฮฑ ฮฌฯ„ฮฟฮผฮฑ ฮณฮนฮฑ ฮฝฮฑ ฮดฮทฮผฮนฮฟฯ…ฯฮณฮฎฯƒฮตฯ„ฮต ฮญฮฝฮฑ starter pack." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "ฮ˜ฮฑ ฮฑฮบฮฟฮปฮฟฯ…ฮธฮฎฯƒฮตฯ„ฮต ฯ„ฮฟฯ…ฯ‚ ฯ€ฯฮฟฯ„ฮตฮนฮฝฯŒฮผฮตฮฝฮฟฯ…ฯ‚ ฯ‡ฯฮฎฯƒฯ„ฮตฯ‚ ฮบฮฑฮน ฯ„ฮนฯ‚ ฯฮฟฮญฯ‚ ฮผฯŒฮปฮนฯ‚ ฮฟฮปฮฟฮบฮปฮทฯฯŽฯƒฮตฯ„ฮต ฯ„ฮท ฮดฮทฮผฮนฮฟฯ…ฯฮณฮฏฮฑ ฯ„ฮฟฯ… ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯ ฯƒฮฑฯ‚!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "ฮ˜ฮฑ ฮฑฮบฮฟฮปฮฟฯ…ฮธฮฎฯƒฮตฯ„ฮต ฯ„ฮฟฯ…ฯ‚ ฯ€ฯฮฟฯ„ฮตฮนฮฝฯŒฮผฮตฮฝฮฟฯ…ฯ‚ ฯ‡ฯฮฎฯƒฯ„ฮตฯ‚ ฮผฯŒฮปฮนฯ‚ ฮฟฮปฮฟฮบฮปฮทฯฯŽฯƒฮตฯ„ฮต ฯ„ฮท ฮดฮทฮผฮนฮฟฯ…ฯฮณฮฏฮฑ ฯ„ฮฟฯ… ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯ ฯƒฮฑฯ‚!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ฮฆฯ„ฮฌฯƒฮฑฯ„ฮต ฯƒฯ„ฮฟ ฯ„ฮญฮปฮฟฯ‚ ฯ„ฮทฯ‚ ฯฮฟฮฎฯ‚ ฯƒฮฑฯ‚! ฮ’ฯฮตฮฏฯ„ฮต ฯ€ฮตฯฮนฯƒฯƒฯŒฯ„ฮตฯฮฟฯ…ฯ‚ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฮฟฯฯ‚ ฮณฮนฮฑ ฮฝฮฑ ฮฑฮบฮฟฮปฮฟฯ…ฮธฮฎฯƒฮตฯ„ฮต." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "ฮˆฯ‡ฮตฯ„ฮต ฯ†ฯ„ฮฌฯƒฮตฮน ฯ„ฮฟ ฮทฮผฮตฯฮฎฯƒฮนฮฟ ฯŒฯฮนฮฟ ฮณฮนฮฑ ฮผฮตฯ„ฮฑฯ† msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "ฮˆฯ‡ฮตฯ„ฮต ฯ†ฯ„ฮฌฯƒฮตฮน ฯ„ฮฟ ฮทฮผฮตฯฮฎฯƒฮนฮฟ ฯŒฯฮนฮฟ ฮณฮนฮฑ ฮผฮตฯ„ฮฑฯ†ฮฟฯฯ„ฯŽฯƒฮตฮนฯ‚ ฮฒฮฏฮฝฯ„ฮตฮฟ (ฯ€ฮฌฯฮฑ ฯ€ฮฟฮปฮปฮฌ ฮฒฮฏฮฝฯ„ฮตฮฟ)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "ฮŸ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒฯ‚ ฯƒฮฑฯ‚" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "ฮŸ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒฯ‚ ฯƒฮฑฯ‚ ฮดฮตฮฝ ฮตฮฏฮฝฮฑฮน ฮฑฮบฯŒฮผฮท ฮฑฯฮบฮตฯ„ฮฌ ฯ€ฮฑฮปฮนฯŒฯ‚ ฮณฮนฮฑ ฮฝฮฑ ฮฑฮฝฮตฮฒฮฌฯƒฮตฯ„ฮต ฮฒฮฏฮฝฯ„ฮตฮฟ. ฮ ฮฑฯฮฑฮบฮฑฮปฯŽ ฯ€ฯฮฟฯƒฯ€ฮฑฮธฮฎฯƒฯ„ฮต ฮพฮฑฮฝฮฌ ฮฑฯฮณฯŒฯ„ฮตฯฮฑ." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "ฮคฮฟ email ฯƒฮฑฯ‚ ฯ†ฮฑฮฏฮฝฮตฯ„ฮฑฮน ฮฝฮฑ ฮตฮฏฮฝฮฑฮน ฮผฮท ฮญฮณฮบฯ…ฯฮฟ." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "ฮคฮฟ ฯ€ฯฮฟฯ†ฮฏฮป, ฮฟฮน ฮฑฮฝฮฑฯฯ„ฮฎฯƒฮตฮนฯ‚, ฮฟฮน ฯฮฟฮญฯ‚ ฮบฮฑฮน ฮฟฮน ฮปฮฏฯƒฯ„ฮตฯ‚ ฯƒฮฑฯ‚ ฮดฮตฮฝ ฮธฮฑ ฮตฮฏฮฝฮฑฮน ฯ€ฮปฮญฮฟฮฝ ฮฟฯฮฑฯ„ฮญฯ‚ ฯƒฮต ฮฌฮปฮปฮฟฯ…ฯ‚ ฯ‡ฯฮฎฯƒฯ„ฮตฯ‚ ฯ„ฮฟฯ… Bluesky. ฯ€ฮฟฯฮตฮฏฯ„ฮต ฮฝฮฑ ฮตฮฝฮตฯฮณฮฟฯ€ฮฟฮนฮฎฯƒฮตฯ„ฮต ฯ„ฮฟฮฝ ฮปฮฟฮณฮฑฯฮนฮฑฯƒฮผฯŒ ฯƒฮฑฯ‚ ฮฑฮฝฮฌ ฯ€ฮฌฯƒฮฑ ฯƒฯ„ฮนฮณฮผฮฎ ฯ€ฯฮฑฮณฮผฮฑฯ„ฮฟฯ€ฮฟฮนฯŽฮฝฯ„ฮฑฯ‚ ฮตฮฏฯƒฮฟฮดฮฟ." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/en-CA/messages.po b/src/locale/locales/en-CA/messages.po new file mode 100644 index 0000000000..9b2c062ca3 --- /dev/null +++ b/src/locale/locales/en-CA/messages.po @@ -0,0 +1,15044 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-11-05 16:01-0800\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: en_CA\n" +"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2026-07-28 06:05\n" +"Last-Translator: \n" +"Language-Team: English, Canada\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: en-CA\n" +"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" +"X-Crowdin-File-ID: 11\n" + +#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. +#: src/components/InterestTabs.tsx:333 +msgid "\"{interestsDisplayName}\" category (active)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:902 +msgid "(blocked message hidden)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/getMessageInfo.ts:123 +#: src/components/dms/replyPreview.ts:85 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:105 +msgid "(contains embedded content)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:916 +msgid "(deleted message)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:68 +msgid "(disabled chat invite link)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:77 +msgid "(invalid chat invite link)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:910 +msgid "(message sent before you joined)" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:74 +msgid "(no email)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:107 +msgid "(no text)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:99 +msgid "(quoted post)" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/LabelsOnMe.tsx:57 +msgid "{0, plural, one {# account label} other {# account labels}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "" + +#. placeholder {0}: profile.followersCount ?? 0 +#: src/screens/Profile/ProfileFollowers.tsx:33 +msgid "{0, plural, one {# follower} other {# followers}}" +msgstr "" + +#. placeholder {0}: profile.followsCount ?? 0 +#: src/screens/Profile/ProfileFollows.tsx:33 +msgid "{0, plural, one {# following} other {# following}}" +msgstr "" + +#. placeholder {0}: item.count +#: src/components/contacts/screens/ViewMatches.tsx:268 +msgid "{0, plural, one {# friend found!} other {# friends found!}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:159 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/PostAlerts.tsx:157 +msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/PostAlerts.tsx:164 +msgid "{0, plural, one {# label applied} other {# labels applied}}" +msgstr "" + +#. placeholder {0}: likeCount ?? 0 +#: src/screens/Post/PostLikedBy.tsx:34 +msgid "{0, plural, one {# like} other {# likes}}" +msgstr "" + +#. placeholder {0}: convo.details.memberCount +#: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 +msgid "{0, plural, one {# member} other {# members}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:149 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:180 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "" + +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:224 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "" + +#. placeholder {0}: reactions.length +#. placeholder {1}: groupedReactions.map(g => g.value).join(' ') +#: src/components/dms/MessageItem.tsx:371 +msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" +msgstr "" + +#. placeholder {0}: quoteCount ?? 0 +#: src/screens/Post/PostQuotes.tsx:34 +msgid "{0, plural, one {# quote} other {# quotes}}" +msgstr "" + +#. placeholder {0}: quoteCount ?? 0 +#: src/screens/Post/PostRepostedBy.tsx:34 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:139 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "" + +#. placeholder {0}: numUnreadMessages.numUnread ?? 0 +#. placeholder {0}: numUnreadNotifications ?? 0 +#: src/view/shell/bottom-bar/BottomBar.tsx:251 +#: src/view/shell/bottom-bar/BottomBar.tsx:283 +#: src/view/shell/Drawer.tsx:557 +msgid "{0, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes. +#. placeholder {0}: view.readingTime +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:251 +msgid "{0, plural, one {#m} other {#m}}" +msgstr "" + +#. How many months have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:182 +msgid "{0, plural, one {#mo} other {#mo}}" +msgstr "" + +#. placeholder {0}: draft.meta.replyCount +#: src/view/com/composer/drafts/DraftItem.tsx:143 +msgid "{0, plural, one {1 more post} other {# more posts}}" +msgstr "" + +#. placeholder {0}: profile.followersCount || 0 +#: src/components/ProfileHoverCard/index.web.tsx:444 +#: src/screens/Profile/Header/Metrics.tsx:22 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: profile.followsCount || 0 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/screens/Profile/Header/Metrics.tsx:26 +msgid "{0, plural, one {following} other {following}}" +msgstr "" + +#. placeholder {0}: profile.postsCount || 0 +#: src/screens/Profile/Header/Metrics.tsx:58 +msgid "{0, plural, one {post} other {posts}}" +msgstr "" + +#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack +#. placeholder {0}: starterPack.joinedAllTimeCount || 0 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +msgid "{0, plural, other {# people have}} joined Bluesky via this starter pack!" +msgstr "" + +#. placeholder {0}: starterPack.list.listItemCount - 4 +#: src/components/dialogs/StarterPackDialog.tsx:362 +msgid "{0, plural, other {+# more}}" +msgstr "" + +#. placeholder {0}: aaRegionConfig.minAccessAge +#: src/screens/Signup/StepInfo/index.tsx:314 +msgid "{0, plural, other {You must be # years of age or older to create an account in your region.}}" +msgstr "" + +#. placeholder {0}: i18n.date(d, {timeStyle: ts}) +#. placeholder {1}: i18n.date(d, {dateStyle: 'medium'}) +#: src/lib/strings/time.ts:15 +msgctxt "date and time formatted like this: [time] ยท [date]" +msgid "{0} ยท {1}" +msgstr "" + +#. placeholder {0}: desc.name +#: src/components/moderation/ContentHider.tsx:98 +msgid "{0} (Account)" +msgstr "" + +#. Pattern: {wordValue} in tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:495 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:484 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 +msgid "{0} added to chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +msgid "{0} and {1} added to chat" +msgstr "" + +#. placeholder {0}: profile.followsCount || 0 +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/dms/MessageItem.tsx:724 +msgid "{0} is blocking you" +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle) +#: src/features/liveNow/components/LiveStatusDialog.tsx:84 +msgid "{0} is live" +msgstr "" + +#. placeholder {0}: createFullHandle(draftValue, state.userDomain) +#: src/screens/Signup/StepHandle/index.tsx:211 +msgid "{0} is not available" +msgstr "" + +#. placeholder {0}: codeToLanguageName( expectedSourceLanguage, langPrefs.appLanguage, ) +#: src/lib/translation/index.tsx:314 +msgid "{0} is not supported by your device." +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:83 +msgid "{0} joined" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:84 +msgid "{0} joined the group" +msgstr "" + +#. placeholder {0}: formatCount(i18n, JOINED_THIS_WEEK) +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 +msgid "{0} joined this week" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:96 +msgid "{0} left" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:97 +msgid "{0} left the group" +msgstr "" + +#. placeholder {0}: formatTime(currentTime) +#. placeholder {1}: formatTime(duration) +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 +msgid "{0} of {1}" +msgstr "" + +#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field +#. placeholder {0}: state.name?.length +#: src/screens/StarterPack/Wizard/StepDetails.tsx:56 +msgid "{0} out of 50" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(memberSender) +#. placeholder {1}: reaction.value +#: src/components/dms/MessageItem.tsx:366 +msgid "{0} reacted {1}" +msgstr "" + +#. Accessibility hint for the bottom bar chat icon when the number of unread messages exceeds the cap, with the + symbol already included โ€“ for example, 99+ unread items +#. placeholder {0}: numUnreadMessages.numUnread +#: src/view/shell/bottom-bar/BottomBar.tsx:246 +msgid "{0} unread items" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:57 +msgid "{0} was added" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:58 +msgid "{0} was added to the group" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:70 +msgid "{0} was removed" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:71 +msgid "{0} was removed from the group" +msgstr "" + +#. List formatting: {0}, {1}, {2} +#. placeholder {0}: link(lang) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:113 +msgid "{0}, " +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 +msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" +msgstr "" + +#. placeholder {0}: feed.displayName +#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') +#. placeholder {2}: feed.likeCount || 0 +#: src/view/com/feeds/FeedSourceCard.tsx:189 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#. placeholder {0}: feed.displayName +#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') +#: src/view/com/feeds/FeedSourceCard.tsx:192 +msgid "{0}, a list by {1}" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 +msgid "{0}'s avatar" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/screens/Messages/JoinRequest.tsx:139 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {0}: preview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: joinLinkPreview.memberLimit +#. placeholder {2}: preview.memberLimit +#: src/components/dms/ChatInvite/Card.tsx:62 +#: src/components/intents/GroupChatJoinDialog.tsx:341 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. Badge showing the current image position out of the total number of images in a gallery. +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:532 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" + +#. Displayed when the number of requests exceeds the cap โ€“ for example, 99+ requests +#. placeholder {0}: UNREAD_REQUEST_CAP - 1 +#: src/screens/Messages/components/InboxRequests.tsx:55 +msgid "{0}+" +msgstr "" + +#. Displayed when the number of requests exceeds the cap +#. placeholder {0}: UNREAD_REQUEST_CAP - 1 +#: src/screens/Messages/components/InboxRequests.tsx:30 +msgid "{0}+ requests" +msgstr "" + +#. How many days have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:171 +msgid "{0}d" +msgstr "" + +#. How many hours have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:161 +msgid "{0}h" +msgstr "" + +#. How many minutes have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:151 +msgid "{0}m" +msgstr "" + +#. How many seconds have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:141 +msgid "{0}s" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:38 +msgid "{count, plural, one {# chat update} other {# chat updates}}" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "" + +#: src/screens/Messages/components/InboxRequests.tsx:34 +msgid "{count, plural, one {# request} other {# requests}}" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:484 +msgid "{count, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:427 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + +#: src/components/dms/DateDivider.tsx:60 +msgid "{date} at {time}" +msgstr "" + +#: src/lib/generate-starterpack.ts:104 +#: src/screens/StarterPack/Wizard/index.tsx:189 +msgid "{displayName}'s Starter Pack" +msgstr "" + +#: src/screens/SignupQueued.tsx:219 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "" + +#: src/screens/SignupQueued.tsx:225 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:170 +msgid "{filterCount, plural, one {+# filter} other {+# filters}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:361 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:395 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:304 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:500 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:473 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:328 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:524 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:419 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:448 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:373 +msgid "{firstAuthorLink} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:350 +msgid "{firstAuthorLink} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:407 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:316 +msgid "{firstAuthorLink} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:512 +msgid "{firstAuthorLink} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:485 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:340 +msgid "{firstAuthorLink} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "{firstAuthorLink} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:431 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:460 +msgid "{firstAuthorLink} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:354 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:388 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:297 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:493 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:466 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:321 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:517 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:412 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:441 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:359 +msgid "{firstAuthorName} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:349 +msgid "{firstAuthorName} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:393 +msgid "{firstAuthorName} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:302 +msgid "{firstAuthorName} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:498 +msgid "{firstAuthorName} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:471 +msgid "{firstAuthorName} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:326 +msgid "{firstAuthorName} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:522 +msgid "{firstAuthorName} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:417 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:446 +msgid "{firstAuthorName} verified you" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:572 +msgid "{following} following" +msgstr "" + +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:1158 +msgid "{handle} canโ€™t be added" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:459 +msgid "{handle} can't be messaged" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:1119 +msgid "{handle} canโ€™t be messaged" +msgstr "" + +#: src/features/liveNow/utils.ts:40 +msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" +msgstr "" + +#: src/features/liveNow/utils.ts:44 +msgid "{hours, plural, one {# hour} other {# hours}}" +msgstr "" + +#. Displayed when the number of requests is greater than 20 +#: src/screens/Messages/components/RequestStatus.tsx:69 +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:219 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "" + +#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack +#: src/components/StarterPack/StarterPackCard.tsx:102 +msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:138 +msgid "{MAX_ALT_TEXT, plural, other {Alt text must be less than # characters.}}" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:380 +msgid "{MAX_DESCRIPTION, plural, other {Description is too long. The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:329 +msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 +msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" +msgstr "" + +#. The number of group chat members out of the total number of permitted users. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 +msgid "{memberCount}/{memberLimit}" +msgstr "" + +#: src/features/liveNow/utils.ts:35 +msgid "{minutes, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:65 +msgid "{name} reacted {0} to {target}" +msgstr "" + +#. When the last message in a group chat came from someone other than you. +#: src/components/dms/getMessageInfo.ts:89 +msgid "{name}: {message}" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:76 +msgid "{name}'s favorite feeds and people - join me!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:49 +msgid "{name}'s starter pack" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 +msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:457 +msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:115 +msgid "{profileName} joined Bluesky {timeAgoString} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:112 +msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" +msgstr "" + +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 +msgid "{rank}." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 +msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:811 +msgid "{replierDisplayName} replied" +msgstr "" + +#: src/components/dms/MessageItem.tsx:810 +msgid "{replierDisplayName} replied to {originalName}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:808 +msgid "{replierDisplayName} replied to you" +msgstr "" + +#. The number of requests to join a group chat. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 +msgid "{requestCount, plural, one {# request} other {# requests}}" +msgstr "" + +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 +msgid "{requestCount}+ requests" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:62 +msgid "{userName} is a trusted verifier" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:69 +msgid "{userName} is verified" +msgstr "" + +#. Possessive, meaning "the verifications of {userName}" +#: src/components/verification/VerificationsDialog.tsx:71 +msgid "{userName}'s verifications" +msgstr "" + +#. Number of images beyond the first 3 +#. placeholder {0}: labels.length +#. placeholder {0}: totalNumber - 3 +#: src/components/moderation/PostAlerts.tsx:163 +#: src/view/com/composer/ComposerReplyTo.tsx:278 +msgid "+{0}" +msgstr "" + +#. Indicates the number of additional profiles are in the Starter Pack e.g. +12 +#: src/screens/Search/components/StarterPackCard.tsx:258 +msgid "+{computedTotal}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:569 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[2]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:516 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) +#. placeholder {1}: profile?.followersCount || 0 +#: src/view/shell/Drawer.tsx:155 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) +#. placeholder {1}: profile?.followsCount || 0 +#: src/view/shell/Drawer.tsx:166 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.quoteCount) +#. placeholder {1}: post.quoteCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 +msgid "<0>{0} {1, plural, one {quote} other {quotes}}" +msgstr "" + +#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.repostCount) +#. placeholder {1}: post.repostCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 +msgid "<0>{0} {1, plural, one {repost} other {reposts}}" +msgstr "" + +#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.bookmarkCount) +#. placeholder {1}: post.bookmarkCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 +msgid "<0>{0} {1, plural, one {save} other {saves}}" +msgstr "" + +#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(likeCount) +#: src/screens/PostThread/components/LikesStat.tsx:44 +msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[1]) +#: src/screens/StarterPack/Wizard/index.tsx:503 +#: src/screens/StarterPack/Wizard/index.tsx:557 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:550 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/WhoCanReply.tsx:353 +msgid "<0>{0} members" +msgstr "" + +#. Text identifying the person who added you to a group chat +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 +msgid "<0>{displayName}<1/><2> added you" +msgstr "" + +#: src/screens/Hashtag.tsx:230 +#: src/screens/Search/SearchResults.tsx:412 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:250 +msgid "<0>Tap here to update your location with GPS." +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#: src/screens/StarterPack/Wizard/index.tsx:494 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/lib/strings/handles.ts:38 +#: src/screens/Profile/Header/Handle.tsx:58 +msgid "โš Invalid Handle" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:202 +#: src/components/dialogs/MutedWords.tsx:551 +#: src/components/dialogs/MutedWords.tsx:554 +msgid "24 hours" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:436 +msgid "2FA Confirmation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:241 +#: src/components/dialogs/MutedWords.tsx:565 +#: src/components/dialogs/MutedWords.tsx:568 +msgid "30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:226 +#: src/components/dialogs/MutedWords.tsx:558 +#: src/components/dialogs/MutedWords.tsx:561 +msgid "7 days" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 +msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" +msgstr "" + +#. If last message does not contain text, fall back to "{user} reacted to {a message}" +#: src/components/dms/getReactionInfo.ts:53 +msgid "a message" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:102 +msgid "A network error occurred. Please check your internet connection" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:99 +#: src/components/contacts/screens/VerifyNumber.tsx:155 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 +msgid "A network error occurred. Please check your internet connection." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:143 +msgid "A new code has been sent" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 +msgid "A new form of verification" +msgstr "" + +#: src/components/dms/MessageItem.tsx:821 +msgid "A reply to a message sent before you joined" +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:147 +msgid "A screenshot of a post from @esb.lol, showing the user is currently livestreaming content on Twitch. The post reads: \"Hello! I'm live on Twitch, and I'm testing Bluesky's latest feature too!\"" +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:121 +msgid "A screenshot of a post with a new button next to the share button that allows you to save the post to your bookmarks. The post is from @jcsalterego.bsky.social and reads \"inventing a saturday that immediately follows monday\"." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:114 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:98 +msgid "A screenshot of the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now!!!\"." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:483 +#: src/screens/Settings/AboutSettings.tsx:85 +#: src/screens/Settings/Settings.tsx:264 +#: src/screens/Settings/Settings.tsx:267 +msgid "About" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:100 +msgid "Abusive or discriminatory behavior" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestButtons.tsx:287 +msgid "Accept" +msgstr "" + +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 +msgid "Accept chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 +msgid "Accept Request" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:460 +msgid "Accept this language suggestion" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:119 +msgid "Access requested! The group owner will review your request." +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:45 +#: src/screens/Settings/Settings.tsx:234 +#: src/screens/Settings/Settings.tsx:237 +msgid "Accessibility" +msgstr "" + +#: src/Navigation.tsx:390 +msgid "Accessibility Settings" +msgstr "" + +#: src/Navigation.tsx:406 +#: src/screens/Settings/AccountSettings.tsx:54 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 +msgid "Account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: src/view/com/profile/ProfileMenu.tsx:182 +msgctxt "toast" +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:198 +msgctxt "toast" +msgid "Account followed" +msgstr "" + +#: src/lib/strings/errors.ts:33 +msgid "Account has been suspended" +msgstr "" + +#: src/lib/strings/errors.ts:36 +msgid "Account is deactivated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 +#: src/view/com/profile/ProfileMenu.tsx:152 +msgctxt "toast" +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:123 +#: src/lib/moderation/useModerationCauseDescription.ts:99 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:109 +msgid "Account Muted by List" +msgstr "" + +#: src/screens/Settings/Settings.tsx:646 +msgid "Account options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:681 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:87 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:169 +msgctxt "toast" +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:213 +msgctxt "toast" +msgid "Account unfollowed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:139 +msgctxt "toast" +msgid "Account unmuted" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:100 +msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:214 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 +#: src/components/dialogs/MutedWords.tsx:337 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:388 +#: src/components/dms/AddMembersFlow.tsx:410 +msgid "Add" +msgstr "" + +#. placeholder {0}: 8 - items.length +#: src/screens/StarterPack/Wizard/index.tsx:605 +msgid "Add {0} more to continue" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:63 +msgid "Add {displayName} to starter pack" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:103 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +msgid "Add a content warning" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:114 +msgid "Add a temporary live status to your profile. When someone clicks on your avatar, theyโ€™ll see information about your live event." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:64 +#: src/screens/ProfileList/AboutSection.tsx:82 +msgid "Add a user to this list" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/screens/Deactivated.tsx:184 +msgid "Add account" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/GifAltText.tsx:217 +#: src/view/com/composer/photos/Gallery.tsx:201 +#: src/view/com/composer/photos/Gallery.tsx:236 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103 +msgid "Add alt text" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:115 +msgid "Add alt text (optional)" +msgstr "" + +#: src/screens/Settings/Settings.tsx:584 +#: src/screens/Settings/Settings.tsx:587 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 +msgid "Add another account" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1607 +msgid "Add another post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2273 +msgid "Add another post to thread" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 +msgid "Add another search filter" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 +msgid "Add app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:75 +#: src/screens/Settings/AppPasswords.tsx:83 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 +msgid "Add App Password" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:170 +msgid "Add automation label to account" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.web.tsx:31 +msgid "Add emoji reaction" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 +msgid "Add filter" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:492 +msgid "Add group chat members" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:223 +msgid "Add image" +msgstr "" + +#. Accessibility label for button in composer to add images, a video, or a GIF to a post +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Add media to post" +msgstr "" + +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:72 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:106 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:125 +msgid "Add members" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 +msgid "Add more details (optional)" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:218 +#: src/screens/Settings/LanguageSettings.tsx:223 +msgid "Add more languagesโ€ฆ" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:330 +msgid "Add mute word with chosen settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:120 +msgid "Add muted words and tags" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172 +#: src/screens/ProfileList/AboutSection.tsx:72 +#: src/screens/ProfileList/AboutSection.tsx:90 +msgid "Add people" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:81 +msgid "Add people to list" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:56 +msgid "Add Reaction" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:100 +msgid "Add recommended feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:538 +msgid "Add some feeds to your starter pack!" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:40 +msgid "Add the default feed of only people you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:419 +msgid "Add the following DNS record to your domain:" +msgstr "" + +#: src/components/FeedCard.tsx:338 +msgid "Add this feed to your feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:350 +#: src/view/com/profile/ProfileMenu.tsx:353 +msgid "Add to lists" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:121 +msgid "Add to saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:184 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/com/profile/ProfileMenu.tsx:344 +msgid "Add to starter packs" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:178 +msgid "Add user to list" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:297 +msgid "Add your birthdate" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) +#: src/screens/Messages/ConversationSettings/Member.tsx:109 +msgid "Added by {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:114 +msgid "Added by invite link" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:125 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:221 +msgid "Added to list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:274 +msgid "Added to starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:225 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:230 +msgid "Adding members to list..." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:116 +msgid "Additional details (limit 1000 characters)" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:546 +msgid "Additional details (limit 300 characters)" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 +msgid "Admin" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:155 +msgid "Adult" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:66 +msgid "Adult content" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:129 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:149 +#: src/view/com/composer/labels/LabelsBtn.tsx:123 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:412 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:252 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:134 +#: src/view/com/composer/labels/LabelsBtn.tsx:192 +msgid "Adult Content labels" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:76 +msgid "Adult sexual abuse content" +msgstr "" + +#: src/screens/Moderation/index.tsx:457 +msgid "Advanced" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:72 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:82 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:185 +msgid "Age assurance only takes a few minutes" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:449 +msgid "Age assurance only takes a few minutes." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 +msgid "alice@example.com" +msgstr "" + +#. the default tab in the interests tab bar +#: src/components/dms/ReactionsDialog.tsx:292 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 +#: src/view/screens/Notifications.tsx:86 +msgid "All" +msgstr "" + +#. Tab label showing the total count of reactions on a chat message. +#. placeholder {0}: tab.count +#: src/components/dms/ReactionsDialog.tsx:389 +msgid "All {0}" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:400 +msgid "All accounts have been followed!" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:144 +msgid "All friends followed!" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:255 +msgid "All languages" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:189 +msgid "All languages will be shown in your feeds." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:245 +msgid "All of these words" +msgstr "" + +#: src/view/screens/Feeds.tsx:700 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 +msgid "Allow access to your direct messages" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:451 +msgid "Allow anyone to reply" +msgstr "" + +#: src/screens/Messages/Settings.tsx:156 +#: src/screens/Messages/Settings.tsx:171 +msgid "Allow direct messages from" +msgstr "" + +#: src/screens/Messages/Settings.tsx:202 +#: src/screens/Messages/Settings.tsx:224 +msgid "Allow group chat invites from" +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:128 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:134 +msgid "Allow location access" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:53 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:504 +msgid "Allow people you follow to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:518 +msgid "Allow people you mention to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:636 +msgid "Allow quote posts" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:598 +msgid "Allow users in {0} to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:490 +msgid "Allow your followers to reply" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:201 +msgid "Allows access to direct messages" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:174 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:237 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:243 +msgid "Already have a code?" +msgstr "" + +#: src/components/WelcomeModal.tsx:187 +msgid "Already have an account?" +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Login/ChooseAccountForm.tsx:44 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:76 +#: src/components/images/AutoSizedImage.tsx:205 +#: src/components/images/Gallery/index.tsx:596 +#: src/components/images/ImageLayoutGridItem.tsx:135 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:211 +msgid "ALT" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:55 +#: src/view/com/composer/GifAltText.tsx:160 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128 +#: src/view/com/composer/videos/SubtitleDialog.tsx:41 +#: src/view/com/composer/videos/SubtitleDialog.tsx:59 +#: src/view/com/composer/videos/SubtitleDialog.tsx:110 +#: src/view/com/composer/videos/SubtitleDialog.tsx:114 +msgid "Alt text" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:83 +msgid "Alt Text" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:105 +#: src/view/com/composer/photos/Gallery.tsx:130 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "" + +#. placeholder {0}: i18n.number(MAX_ALT_TEXT) +#: src/view/com/composer/GifAltText.tsx:185 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:149 +msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" +msgstr "" + +#. placeholder {0}: currentAccount?.email || '(no email)' +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:94 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "" + +#. Accessibility label for the dialog shown when the GIF picker hits an unexpected runtime error and falls back to its error boundary. +#: src/components/dialogs/LanguageSelectDialog.tsx:344 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:15 +msgid "An error has occurred" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:433 +msgid "An error occurred while compressing the video." +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:223 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:69 +msgid "An error occurred while fetching suggested accounts." +msgstr "" + +#: src/state/queries/explore-feed-previews.tsx:183 +msgid "An error occurred while fetching the feed." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/ViewMatches.tsx:243 +msgid "An error occurred while hiding suggestion. {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 +msgid "An error occurred while loading the video. Please try again." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:581 +msgid "An error occurred while loading your lists :/" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:104 +msgid "An error occurred while saving the QR code!" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:54 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:82 +#: src/screens/StarterPack/StarterPackScreen.tsx:359 +#: src/screens/StarterPack/StarterPackScreen.tsx:386 +msgid "An error occurred while trying to follow all" +msgstr "" + +#: src/view/com/composer/state/video.ts:485 +msgid "An error occurred while uploading the video. {message}" +msgstr "" + +#: src/view/com/composer/state/video.ts:477 +msgid "An error occurred while uploading the video. Please check your internet connection and try again." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/PhoneInput.tsx:120 +#: src/components/contacts/screens/VerifyNumber.tsx:131 +#: src/components/contacts/screens/VerifyNumber.tsx:184 +msgid "An error occurred. {0}" +msgstr "" + +#: src/components/contacts/components/HeroImage.tsx:28 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:79 +msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 +msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:111 +msgid "An illustration of the Bluesky app with a paper airplane flying out of it, representing inviting friends" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:86 +#: src/components/verification/VerifierDialog.tsx:88 +msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:198 +msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 +msgid "An issue not included in these options" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 +msgid "An issue occurred starting the chat, please try again." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:52 +#: src/components/ProfileCard.tsx:510 +#: src/components/ProfileCard.tsx:532 +#: src/view/com/notifications/NotificationFeedItem.tsx:798 +#: src/view/com/notifications/NotificationFeedItem.tsx:820 +msgid "An issue occurred, please try again." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121 +msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:154 +#: src/lib/moderation/useModerationCauseDescription.ts:145 +msgid "an unknown labeler" +msgstr "" + +#: src/components/WhoCanReply.tsx:374 +msgid "and" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:88 +msgid "Animal sexual abuse" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:130 +msgid "Animal welfare" +msgstr "" + +#: src/lib/interests.ts:52 +msgid "Animals" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:85 +msgid "Animated GIF" +msgstr "" + +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:39 +msgid "Announcing verification on Bluesky" +msgstr "" + +#. Placeholder text for a date picker +#: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 +msgid "Any date" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 +msgid "Anyone" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:135 +msgid "Anyone can interact" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:356 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +msgid "Anyone can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +msgid "Anyone can request to join" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:112 +#: src/screens/Settings/ActivityPrivacySettings.tsx:117 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:478 +msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." +msgstr "" + +#: src/Navigation.tsx:491 +#: src/screens/Settings/AppIconSettings/index.tsx:65 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 +msgid "App Icon" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:107 +#: src/screens/Settings/LanguageSettings.tsx:123 +msgid "App language" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 +msgid "App Password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:147 +msgctxt "toast" +msgid "App password deleted" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 +msgid "App password name must be unique" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 +msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 +msgid "App passwords" +msgstr "" + +#: src/Navigation.tsx:358 +#: src/screens/Settings/AppPasswords.tsx:51 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:169 +#: src/components/moderation/LabelsOnMeDialog.tsx:172 +#: src/components/moderation/ModerationDetailsDialog.tsx:223 +msgid "Appeal" +msgstr "" + +#. placeholder {0}: strings.name +#: src/components/moderation/AppealForm.tsx:93 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:159 +msgid "Appeal label" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 +msgid "Appeal livestream suspension" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:83 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 +#: src/screens/Messages/components/ChatDisabled.tsx:125 +msgctxt "toast" +msgid "Appeal submitted" +msgstr "" + +#: src/screens/Takendown.tsx:114 +#: src/screens/Takendown.tsx:140 +msgid "Appeal suspension" +msgstr "" + +#: src/screens/Takendown.tsx:117 +msgid "Appeal Suspension" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:76 +#: src/screens/Messages/components/ChatDisabled.tsx:79 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:135 +msgid "Appeal this decision" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:219 +msgid "Appeal this label" +msgstr "" + +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 +#: src/screens/Settings/Settings.tsx:226 +#: src/screens/Settings/Settings.tsx:229 +msgid "Appearance" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:52 +#: src/screens/Home/NoFeedsPinned.tsx:94 +msgid "Apply default recommended feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:515 +#: src/screens/Settings/Settings.tsx:517 +msgid "Apply Pull Request" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt, 'medium') +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 +msgid "Archived from {0}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 +msgid "Archived post" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:327 +msgid "Are you really, really sure?" +msgstr "" + +#. placeholder {0}: link(languages[0]) +#. placeholder {1}: link(languages[1]) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:100 +msgid "Are you searching for posts in {0} or {1}?" +msgstr "" + +#. placeholder {0}: link(languages[0]) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:95 +msgid "Are you searching for posts in {0}?" +msgstr "" + +#. List formatting: {0}, {1}, or {2} +#. placeholder {0}: head.map(lang => ( {link(lang)},{' '} )) +#. placeholder {1}: link(last) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:110 +msgid "Are you searching for posts in {0}or {1}?" +msgstr "" + +#. placeholder {0}: appPassword.name +#: src/screens/Settings/AppPasswords.tsx:210 +msgid "Are you sure you want to delete the app password \"{0}\"?" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:183 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:684 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:99 +#: src/screens/Profile/Header/EditProfileDialog.tsx:77 +msgid "Are you sure you want to discard your changes?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:128 +#: src/screens/Messages/ConversationSettings/prompts.tsx:152 +msgid "Are you sure you want to leave {groupName}?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:57 +msgid "Are you sure you want to leave this conversation?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:56 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants." +msgstr "" + +#: src/components/FeedCard.tsx:374 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "" + +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:116 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1743 +msgid "Are you sure you'd like to discard this post?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:452 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:349 +msgid "Are you writing in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/lib/interests.ts:53 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:167 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 +msgid "Assign topic for algo" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:209 +msgid "At least 8 characters" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:338 +msgid "AT Protocol FAQ" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 +msgctxt "Name of app icon variant" +msgid "Aurora" +msgstr "" + +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + +#: src/components/BotAccountAlert.tsx:32 +#: src/components/BotBadge.tsx:65 +msgid "Automated account" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:165 +#: src/screens/Login/components/HostingProviderDialog.tsx:167 +msgid "Automatic" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:155 +#: src/screens/Settings/AccountSettings.tsx:158 +msgid "Automation label" +msgstr "" + +#: src/Navigation.tsx:422 +#: src/screens/Settings/AutomationLabelSettings.tsx:103 +msgid "Automation Label" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:118 +#: src/screens/Settings/ContentAndMediaSettings.tsx:124 +msgid "Autoplay videos and GIFs" +msgstr "" + +#. Shown next to an available username suggestion in the account creation flow +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions/index.native.tsx:69 +#: src/screens/Signup/StepHandle/HandleSuggestions/index.tsx:88 +msgid "Available" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:359 +#: src/components/dms/AddMembersFlow.tsx:527 +#: src/components/dms/AddMembersFlow.tsx:533 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 +#: src/components/moderation/AppealForm.tsx:145 +#: src/components/moderation/AppealForm.tsx:146 +#: src/screens/Login/ChooseAccountForm.tsx:96 +#: src/screens/Login/ChooseAccountForm.tsx:100 +#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:124 +#: src/screens/Login/LoginForm.tsx:511 +#: src/screens/Login/LoginForm.tsx:516 +#: src/screens/Login/SetNewPasswordForm.tsx:157 +#: src/screens/Login/SetNewPasswordForm.tsx:163 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:276 +#: src/screens/Messages/components/InviteLinkDialog.tsx:304 +#: src/screens/Messages/Inbox.tsx:233 +#: src/screens/Profile/Header/Shell.tsx:174 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:273 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:282 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:315 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:87 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:93 +msgid "Back" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:232 +msgid "Back to Chats" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:216 +msgid "Banned activities or security violations" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:227 +msgid "Banned user returning" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:184 +msgid "Based on your device's location, we think you're in <0>{geolocationString}." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236 +msgid "Based on your device's location, we think you're in <0>{region}." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:194 +msgid "Based on your network, we think you're in <0>{geolocationString}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 +msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/view/screens/Lists.tsx:35 +#: src/view/screens/ModerationModlists.tsx:35 +msgid "Before creating a list, you must first verify your email." +msgstr "" + +#: src/lib/hooks/useOpenComposer.tsx:14 +msgid "Before creating a post or replying, you must first verify your email." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:72 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 +msgid "Before creating a starter pack, you must first verify your email." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:260 +msgid "Before you can accept this chat request, you must first verify your email." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:56 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:155 +#: src/components/dms/MessageProfileButton.tsx:60 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 +msgid "Before you can message another user, you must first verify your email." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:319 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:313 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:99 +msgid "Beta Feature" +msgstr "" + +#: src/Navigation.tsx:414 +#: src/screens/Settings/BetaFeaturesSettings.tsx:108 +#: src/screens/Settings/Settings.tsx:248 +#: src/screens/Settings/Settings.tsx:251 +msgid "Beta features" +msgstr "" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:144 +msgctxt "web" +msgid "Beta features may be unstable. Some changes may require reloading the app." +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:149 +msgctxt "native" +msgid "Beta features may be unstable. Some changes may require restarting the app." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:163 +msgid "Birthdate" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:145 +msgid "Birthday" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 +msgid "Block" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 +msgid "Block {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/screens/Messages/components/RequestButtons.tsx:154 +#: src/screens/Messages/components/RequestButtons.tsx:156 +#: src/view/com/profile/ProfileMenu.tsx:464 +#: src/view/com/profile/ProfileMenu.tsx:471 +msgid "Block account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:148 +msgid "Block account?" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:91 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:94 +msgid "Block accounts" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:148 +msgid "Block and delete" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:167 +msgctxt "button" +msgid "Block and leave" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:119 +msgid "Block list" +msgstr "" + +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 +msgid "Block or report" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:114 +msgid "Block these accounts?" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:221 +#: src/components/dms/AfterReportConversationDialog.tsx:224 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 +msgid "Block user" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:182 +msgctxt "button" +msgid "Block user" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:185 +msgid "Block user and/or delete this conversation" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:217 +msgid "Block user and/or leave this conversation" +msgstr "" + +#: src/components/Post/Embed/index.tsx:212 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:329 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:194 +#: src/view/screens/ModerationBlockedAccounts.tsx:95 +msgid "Blocked Accounts" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:163 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:181 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:204 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:116 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:157 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:176 +msgid "Blog" +msgstr "" + +#. Advanced search: Examples of hashtags +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:17 +msgid "bloomscrolling booksky" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:144 +#: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +msgid "Bluesky" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 +msgid "Bluesky cannot confirm the authenticity of the claimed date." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 +msgctxt "Name of app icon variant" +msgid "Bluesky Classicโ„ข" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:235 +msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:214 +#: src/screens/Login/components/HostingProviderDialog.tsx:236 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:162 +msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." +msgstr "" + +#: src/components/ProgressGuide/List.tsx:115 +msgid "Bluesky is better with friends!" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:43 +msgid "Bluesky is more fun with friends" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 +msgid "Bluesky is more fun with friends! Import your contacts to see whoโ€™s already here." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:315 +msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "" + +#: src/screens/Takendown.tsx:213 +msgid "Bluesky Social Terms of Service" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:570 +msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:100 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 +msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:97 +msgid "Bluesky+" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:100 +msgid "Bluesky+ icons" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:54 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/lib/interests.ts:54 +msgid "Books" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:215 +msgid "Breaking site rules" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:167 +#: src/view/com/feeds/ProfileFeedgens.tsx:168 +msgid "Browse custom feeds" +msgstr "" + +#: src/components/FeedInterstitials.tsx:540 +msgid "Browse more accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:670 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:679 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:104 +#: src/screens/Home/NoFeedsPinned.tsx:110 +msgid "Browse other feeds" +msgstr "" + +#: src/components/TrendingTopics.tsx:78 +msgid "Browse posts about {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:86 +msgid "Browse posts tagged with {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:95 +msgid "Browse starter pack {displayName}" +msgstr "" + +#. placeholder {0}: trend.displayName +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 +msgid "Browse topic {0}" +msgstr "" + +#: src/components/TrendingTopics.tsx:132 +msgid "Browse topic {displayName}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:171 +msgid "Business" +msgstr "" + +#: src/screens/Bookmarks.tsx:295 +msgid "Button to go back to the home timeline" +msgstr "" + +#. The owner (creator) of a group chat. +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile( joinLinkPreview.owner, moderationOpts, ).ui('displayName'), ) +#. placeholder {0}: sanitizeHandle(handle, '@') +#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@') +#: src/components/LabelingServiceCard/index.tsx:62 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:177 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 +msgid "By {0}" +msgstr "" + +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') +#: src/components/intents/GroupChatJoinDialog.tsx:379 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 +msgid "By <0>{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:84 +msgid "By <0>{ownerDisplayName}" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:297 +msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:76 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:43 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:63 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:111 +msgid "By you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 +msgid "Camera" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 +#: src/components/contacts/screens/GetContacts.tsx:292 +#: src/components/contacts/screens/GetContacts.tsx:297 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128 +#: src/components/dialogs/InAppBrowserConsent.tsx:99 +#: src/components/dialogs/InAppBrowserConsent.tsx:105 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:200 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:291 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:299 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 +#: src/components/Menu/index.tsx:373 +#: src/components/moderation/BlockDialog.tsx:204 +#: src/components/PostControls/RepostButton.tsx:210 +#: src/components/Prompt.tsx:152 +#: src/components/Prompt.tsx:154 +#: src/components/SendErrorReportDialog.tsx:98 +#: src/components/SendErrorReportDialog.tsx:102 +#: src/features/liveNow/components/GoLiveDialog.tsx:254 +#: src/features/liveNow/components/GoLiveDialog.tsx:260 +#: src/lib/media/picker.tsx:38 +#: src/screens/Deactivated.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:108 +#: src/screens/Messages/ConversationSettings/prompts.tsx:132 +#: src/screens/Messages/ConversationSettings/prompts.tsx:156 +#: src/screens/Messages/ConversationSettings/prompts.tsx:180 +#: src/screens/Profile/Header/EditProfileDialog.tsx:215 +#: src/screens/Profile/Header/EditProfileDialog.tsx:223 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:202 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:209 +#: src/screens/Settings/AppIconSettings/index.tsx:42 +#: src/screens/Settings/AppIconSettings/index.tsx:228 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:143 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:152 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:80 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:87 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:248 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:254 +#: src/screens/Settings/Settings.tsx:309 +#: src/screens/Takendown.tsx:102 +#: src/screens/Takendown.tsx:105 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:44 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:53 +#: src/view/shell/desktop/LeftNav.tsx:228 +msgid "Cancel" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:205 +msgid "Cancel quote post" +msgstr "" + +#: src/screens/Deactivated.tsx:144 +msgid "Cancel reactivation and sign out" +msgstr "" + +#: src/screens/Messages/components/MessageInputReply.tsx:83 +msgid "Cancel reply" +msgstr "" + +#: src/screens/Search/Shell.tsx:592 +msgid "Cancel search" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 +msgid "Cancels signing in so you can check your username" +msgstr "" + +#: src/components/PostControls/index.tsx:108 +#: src/components/PostControls/index.tsx:138 +#: src/components/PostControls/index.tsx:166 +#: src/state/shell/composer/index.tsx:105 +msgid "Cannot interact with a blocked user" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:156 +msgid "Captions (.vtt)" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:41 +#: src/view/com/composer/videos/SubtitleDialog.tsx:57 +msgid "Captions & alt text" +msgstr "" + +#: src/components/images/Gallery/index.tsx:273 +msgid "carousel" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Cashtag {tag}" +msgstr "" + +#. Advanced search: Example of an โ€œall of these wordsโ€ search. Paired with โ€œcows pigsโ€. +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:250 +msgid "cats dogs" +msgstr "" + +#: src/components/Post/Translated/index.tsx:439 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Change" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:37 +msgid "Change app icon" +msgstr "" + +#. placeholder {0}: icon.name +#. placeholder {0}: next.name +#: src/screens/Settings/AppIconSettings/index.tsx:36 +#: src/screens/Settings/AppIconSettings/index.tsx:224 +msgid "Change app icon to \"{0}\"" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:41 +msgid "Change app language" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:96 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:100 +msgid "Change Handle" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:644 +msgid "Change hosting provider" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:445 +msgid "Change moderation service" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:262 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:268 +msgid "Change password" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:165 +msgid "Change password dialog" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:312 +msgid "Change report category" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:390 +msgid "Change report reason" +msgstr "" + +#: src/components/Post/Translated/index.tsx:424 +msgid "Change the source language" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:58 +msgid "Change your password" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:219 +msgid "Changes app icon" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:50 +#: src/components/forms/HostingProvider.tsx:70 +msgid "Changes hosting provider" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:179 +msgid "Changes saved" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:164 +msgid "Changes to the starter pack will not be reflected in the list after creation. The list will be an independent copy." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/Navigation.tsx:509 +#: src/view/shell/bottom-bar/BottomBar.tsx:242 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 +msgid "Chat" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 +msgctxt "toast" +msgid "Chat deleted" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:108 +msgid "Chat ended" +msgstr "" + +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:269 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:104 +msgid "Chat locked" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:146 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:137 +msgid "Chat messages - sound" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:206 +msgctxt "toast" +msgid "Chat muted" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 +msgid "Chat not found." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 +msgid "Chat options" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:290 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:529 +msgid "Chat request inbox" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:62 +#: src/screens/Messages/Inbox.tsx:97 +msgid "Chat requests" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 +#: src/screens/Messages/Settings.tsx:48 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:147 +msgid "Chat Settings" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:115 +msgid "Chat title changed" +msgstr "" + +#. placeholder {0}: data.newName +#: src/components/dms/getSystemMessageInfo.ts:114 +msgid "Chat title changed to {0}" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:106 +msgid "Chat unlocked" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:208 +msgctxt "toast" +msgid "Chat unmuted" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 +msgid "Chats" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:233 +msgid "Check <0>{currentEmail} for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:182 +msgid "Check back later!" +msgstr "" + +#: src/screens/SignupQueued.tsx:79 +#: src/screens/SignupQueued.tsx:83 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:463 +msgid "Check your email for a sign in code and enter it here." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:161 +msgid "Child safety" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:165 +msgid "Child Sexual Abuse Material (CSAM)" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:401 +msgid "Choose domain verification method" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:205 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 +msgid "Choose for me" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:199 +msgid "Choose languages" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Choose People" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:75 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:136 +msgid "Choose post languages" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 +msgid "Choose who can join this group chat and how." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:57 +msgid "Choose who to invite" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:134 +#: src/screens/Login/components/HostingProviderDialog.tsx:155 +msgid "Choose your hosting provider" +msgstr "" + +#: src/view/screens/Feeds.tsx:726 +msgid "Choose your own timeline! Feeds built by the community help you find content you love." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:271 +msgid "Choose your password" +msgstr "" + +#: src/screens/Signup/index.tsx:201 +msgid "Choose your username" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.native.tsx:73 +#: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.tsx:110 +#: src/screens/Search/components/AdvancedSearchDialog/ClearableInput.tsx:59 +msgid "Clear" +msgstr "" + +#: src/screens/Settings/Settings.tsx:507 +msgid "Clear all storage data" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Clear all storage data (restart after this)" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:70 +msgid "Clear date" +msgstr "" + +#. Accessibility label for the X button inside the search input that clears the typed query and returns to the trending feed. +#: src/features/gifPicker/components/GifPickerHeader.tsx:67 +msgid "Clear GIF search" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:134 +#: src/screens/Settings/AboutSettings.tsx:138 +msgid "Clear image cache" +msgstr "" + +#: src/components/forms/SearchInput.tsx:87 +msgid "Clear search query" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:88 +msgid "Click for information" +msgstr "" + +#: src/view/screens/Support.tsx:35 +msgid "click here" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 +msgid "Click here to add people to this group chat" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +msgid "Click here to create or manage an invite link for this group chat" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:327 +msgid "Click here to delete your account" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:318 +msgid "Click here to log out" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:263 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:272 +msgid "Click here to resend the email" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 +msgid "Click here to restart the verification process." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:119 +#: src/ageAssurance/components/NoAccessScreen.tsx:294 +msgid "Click here to update your birthdate" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 +msgid "Click here to update your email" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 +msgid "Click here to view the invite link for this group chat" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:56 +msgid "Click to open tag menu for {0}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:643 +msgid "Click to retry failed message" +msgstr "" + +#. Visible label of the button that dismisses the GIF picker error dialog. +#: src/ageAssurance/components/RedirectOverlay.tsx:265 +#: src/ageAssurance/components/RedirectOverlay.tsx:271 +#: src/ageAssurance/components/RedirectOverlay.tsx:321 +#: src/ageAssurance/components/RedirectOverlay.tsx:327 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:174 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:180 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 +#: src/components/AltBadgeWithDialog.tsx:88 +#: src/components/dialogs/LanguageSelectDialog.tsx:359 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:147 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200 +#: src/components/dialogs/SearchablePeopleList.tsx:340 +#: src/components/dialogs/StarterPackDialog.tsx:187 +#: src/components/dms/AddMembersFlow.tsx:384 +#: src/components/dms/AfterReportConversationDialog.tsx:91 +#: src/components/dms/AfterReportConversationDialog.tsx:96 +#: src/components/dms/AfterReportConversationDialog.tsx:247 +#: src/components/dms/AfterReportConversationDialog.tsx:252 +#: src/components/dms/AfterReportDialog.tsx:94 +#: src/components/dms/AfterReportDialog.tsx:99 +#: src/components/dms/AfterReportDialog.tsx:212 +#: src/components/dms/AfterReportDialog.tsx:217 +#: src/components/dms/EmojiPopup.android.tsx:59 +#: src/components/dms/InitiateChatFlow.tsx:670 +#: src/components/intents/GroupChatJoinDialog.tsx:246 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +#: src/components/NewskieDialog.tsx:169 +#: src/components/NewskieDialog.tsx:175 +#: src/components/ProgressGuide/FollowDialog.tsx:462 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128 +#: src/components/verification/VerificationsDialog.tsx:146 +#: src/components/verification/VerifierDialog.tsx:147 +#: src/components/WhoCanReply.tsx:236 +#: src/components/WhoCanReply.tsx:243 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45 +#: src/features/liveNow/components/EditLiveDialog.tsx:210 +#: src/features/liveNow/components/EditLiveDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:524 +#: src/screens/Messages/components/InviteLinkDialog.tsx:529 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:288 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:293 +#: src/view/com/feeds/MissingFeed.tsx:211 +#: src/view/com/feeds/MissingFeed.tsx:218 +msgid "Close" +msgstr "" + +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:30 +msgid "Close alert" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + +#. Accessibility label for the button that dismisses the GIF picker error dialog. +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:223 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:229 +#: src/components/dialogs/LanguageSelectDialog.tsx:221 +#: src/components/dialogs/LanguageSelectDialog.tsx:322 +#: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:102 +#: src/components/moderation/BlockDialog.tsx:201 +#: src/components/verification/VerificationsDialog.tsx:138 +#: src/components/verification/VerifierDialog.tsx:140 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 +msgid "Close dialog" +msgstr "" + +#: src/view/shell/index.web.tsx:127 +msgid "Close drawer menu" +msgstr "" + +#: src/components/Lightbox/chrome/Header.tsx:47 +msgid "Close image" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:73 +#: src/components/Lightbox/Lightbox.web.tsx:334 +msgid "Close image viewer" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:53 +#: src/components/ContextMenu/Backdrop.ios.tsx:79 +#: src/components/ContextMenu/Backdrop.tsx:45 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 +msgid "Close menu" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:239 +#: src/components/intents/GroupChatJoinDialog.tsx:240 +#: src/components/intents/GroupChatJoinDialog.tsx:276 +#: src/components/intents/GroupChatJoinDialog.tsx:277 +#: src/components/Menu/index.tsx:367 +msgid "Close this dialog" +msgstr "" + +#: src/components/WelcomeModal.tsx:212 +msgid "Close welcome modal" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:31 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1829 +msgid "Closes post composer and discards post draft" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:611 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:949 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:68 +msgid "Color" +msgstr "" + +#: src/components/dialogs/Embed.tsx:150 +#: src/screens/Settings/AppearanceSettings.tsx:79 +msgid "Color mode" +msgstr "" + +#: src/components/dialogs/Embed.tsx:147 +msgid "Color theme" +msgstr "" + +#: src/lib/interests.ts:55 +msgid "Comedy" +msgstr "" + +#: src/lib/interests.ts:56 +msgid "Comics" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 +#: src/Navigation.tsx:348 +#: src/view/screens/CommunityGuidelines.tsx:28 +msgid "Community Guidelines" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:329 +msgid "Complete onboarding and start using your account" +msgstr "" + +#: src/screens/Signup/index.tsx:203 +msgid "Complete the challenge" +msgstr "" + +#: src/lib/hotkeys/index.tsx:66 +#: src/view/com/feeds/ComposerPrompt.tsx:147 +#: src/view/shell/desktop/LeftNav.tsx:587 +msgid "Compose new post" +msgstr "" + +#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 +#: src/view/com/composer/Composer.tsx:1705 +msgid "Compose posts up to {0, plural, other {# characters}} in length" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:63 +msgid "Compose reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2677 +msgid "Compressing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2679 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:88 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:254 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/Prompt.tsx:211 +#: src/components/Prompt.tsx:214 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:186 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:189 +msgid "Confirm" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 +#: src/screens/Login/LoginForm.tsx:442 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:187 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:191 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:244 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:145 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:151 +msgid "Confirmation code" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:132 +msgid "Connecting to service..." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:542 +msgid "Connecting to serviceโ€ฆ" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:138 +#: src/screens/Login/LoginForm.tsx:548 +msgid "Connectingโ€ฆ" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Connection issue" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:404 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:128 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:31 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:109 +msgid "Contact our support team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 +msgid "Contact support" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 +#: src/screens/Settings/FindContactsSettings.tsx:164 +msgid "Contact sync is not available on this device, as the app is unable to access your contacts." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Contact us" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:526 +msgid "Contacts imported" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:499 +msgid "Contacts removed" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:53 +msgid "Content & Media" +msgstr "" + +#: src/screens/Settings/Settings.tsx:206 +#: src/screens/Settings/Settings.tsx:209 +msgid "Content and media" +msgstr "" + +#: src/Navigation.tsx:467 +msgid "Content and Media" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:362 +msgid "Content filters" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:177 +msgid "Content languages" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:102 +#: src/lib/moderation/useModerationCauseDescription.ts:83 +msgid "Content Not Available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:192 +msgid "Content promoting or depicting self-harm" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:70 +#: src/components/moderation/ScreenHider.tsx:98 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:46 +msgid "Content Warning" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:61 +msgid "Content warnings" +msgstr "" + +#: src/components/Menu/index.web.tsx:93 +msgid "Context menu backdrop, click to close the menu." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 +#: src/screens/Onboarding/StepInterests/index.tsx:93 +#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 +msgid "Continue" +msgstr "" + +#. placeholder {0}: account.handle +#: src/components/AccountList.tsx:134 +msgid "Continue as {0} (currently signed in)" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 +msgid "Continue signing in" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:64 +msgid "Continue thread..." +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:598 +msgid "Continue to group name" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:90 +#: src/screens/Onboarding/StepProfile/index.tsx:298 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 +#: src/screens/Signup/BackNextButtons.tsx:61 +msgid "Continue to next step" +msgstr "" + +#: src/screens/Messages/Conversation.tsx:63 +msgid "Conversation" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:321 +msgid "Conversation deleted" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 +msgctxt "toast" +msgid "Conversation deleted" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:172 +#: src/components/dms/AfterReportConversationDialog.tsx:179 +msgctxt "toast" +msgid "Conversation left" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:169 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/screens/Search/Shell.tsx:512 +msgid "Copied link to clipboard" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:97 +#: src/components/PostControls/DiscoverDebug.tsx:36 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 +#: src/lib/sharing.ts:24 +#: src/lib/sharing.ts:42 +msgid "Copied to clipboard" +msgstr "" + +#: src/components/dialogs/Embed.tsx:197 +#: src/screens/Messages/components/CopyTextButton.tsx:71 +#: src/screens/Settings/components/CopyButton.tsx:66 +msgid "Copied!" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:145 +msgid "Copies build version to clipboard" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:256 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:266 +msgid "Copy" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:501 +#: src/view/com/profile/ProfileMenu.tsx:504 +msgid "Copy at:// URI" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 +msgid "Copy author DID" +msgstr "" + +#: src/components/dialogs/Embed.tsx:186 +#: src/components/dialogs/Embed.tsx:202 +msgid "Copy code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:504 +#: src/view/com/profile/ProfileMenu.tsx:510 +#: src/view/com/profile/ProfileMenu.tsx:513 +msgid "Copy DID" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:436 +msgid "Copy host" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copy invite link" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:91 +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/screens/StarterPack/StarterPackScreen.tsx:644 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:122 +msgid "Copy Link" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:164 +msgid "Copy link to list" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 +msgid "Copy link to post" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:290 +msgid "Copy link to profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:637 +msgid "Copy link to starter pack" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:198 +#: src/components/dms/MessageContextMenu.tsx:202 +msgid "Copy message text" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 +msgid "Copy post at:// URI" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +msgid "Copy post text" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:184 +msgid "Copy QR code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:457 +msgid "Copy TXT record value" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 +#: src/Navigation.tsx:353 +#: src/view/screens/CopyrightPolicy.tsx:25 +msgid "Copyright Policy" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:80 +msgid "Could not capture QR code" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:42 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:134 +msgid "Could not connect to feed service" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:121 +msgid "Could not copy โ€“ please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:75 +msgid "Could not download โ€“ please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 +msgid "Could not fetch post" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:183 +msgid "Could not find profile" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 +msgid "Could not follow all matches - please check your network connection." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 +msgid "Could not follow all matches. {0}" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:158 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 +msgid "Could not leave chat" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:282 +msgid "Could not leave chat." +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:72 +msgid "Could not load feed" +msgstr "" + +#: src/screens/ProfileList/components/ErrorScreen.tsx:27 +#: src/screens/ProfileList/index.tsx:80 +#: src/screens/ProfileList/index.tsx:102 +msgid "Could not load list" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 +msgid "Could not mute chat" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:308 +msgid "Could not remove member." +msgstr "" + +#. placeholder {0}: cleanError(error) +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:61 +msgid "Could not share โ€“ please try again" +msgstr "" + +#: src/state/queries/notifications/settings.ts:124 +msgid "Could not update notification settings" +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/GetContacts.tsx:171 +msgid "Could not upload contacts. {0}" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:165 +msgid "Could not upload contacts. You need to re-verify your phone number to proceed" +msgstr "" + +#. Title of the error screen shown when the GIF provider request fails. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:51 +msgid "Couldnโ€™t load GIFs" +msgstr "" + +#: src/components/InternationalPhoneCodeSelect.tsx:80 +msgid "Country code" +msgstr "" + +#. Advanced search: Example of a โ€œnone of these wordsโ€ search. Paired with โ€œcats dogsโ€. +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:268 +msgid "cows pigs" +msgstr "" + +#. Text on button to create a new starter pack +#. Text on button to create a new starter pack +#: src/components/dialogs/StarterPackDialog.tsx:113 +#: src/components/dialogs/StarterPackDialog.tsx:210 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 +msgid "Create" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:166 +#: src/view/com/lists/ProfileLists.tsx:167 +msgid "Create a list" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:620 +msgid "Create a list from this starter pack" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:169 +msgid "Create a QR code for a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 +msgid "Create a starter pack" +msgstr "" + +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 +msgid "Create a Starter Pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +msgid "Create a starter pack for me" +msgstr "" + +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 +#: src/screens/Messages/JoinRequest.tsx:310 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 +#: src/view/shell/bottom-bar/BottomBar.tsx:351 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/NavSignupCard.tsx:48 +#: src/view/shell/NavSignupCard.tsx:53 +msgid "Create account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:87 +#: src/components/dialogs/Signin.tsx:89 +#: src/screens/Hashtag.tsx:236 +#: src/screens/Search/SearchResults.tsx:418 +msgid "Create an account" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +msgid "Create an account without using this starter pack" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:314 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 +msgid "Create another" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:606 +msgid "Create group chat" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:180 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:188 +msgid "Create list" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:626 +msgid "Create list from members" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:148 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:152 +msgid "Create list from starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:367 +msgid "Create moderation list" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:304 +#: src/view/com/auth/SplashScreen.tsx:89 +#: src/view/com/auth/SplashScreen.web.tsx:110 +msgid "Create new account" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:554 +msgid "Create or modify an invite link for this group chat" +msgstr "" + +#. Accessibility label for button to create a moderation report for the selected option +#. placeholder {0}: option.title +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 +msgid "Create report for {0}" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:108 +#: src/components/dialogs/StarterPackDialog.tsx:205 +msgid "Create starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:366 +msgid "Create user list" +msgstr "" + +#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', }) +#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', }) +#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', }) +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:509 +#: src/screens/Settings/AppPasswords.tsx:174 +msgid "Created {0}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:131 +msgid "Creator has been blocked" +msgstr "" + +#: src/lib/interests.ts:57 +msgid "Culture" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:188 +msgid "Current beta features" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:375 +msgid "Current chat" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:152 +#: src/components/dialogs/ServerInput.tsx:154 +msgid "Custom" +msgstr "" + +#: src/components/dialogs/Embed.tsx:140 +msgid "Customization options" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:60 +msgid "Customizes your Bluesky experience" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:200 +msgid "Dangerous challenges or activities" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:204 +msgid "Dangerous substances or drug abuse" +msgstr "" + +#: src/components/dialogs/Embed.tsx:164 +#: src/components/dialogs/Embed.tsx:166 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 +msgctxt "Name of app icon variant" +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:104 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:299 +msgid "Date of birth" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Day" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:177 +#: src/screens/Settings/AccountSettings.tsx:182 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "" + +#: src/screens/Settings/Settings.tsx:472 +msgid "Debug Moderation" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:469 +msgid "Decline this language suggestion" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:84 +msgid "Deepfake adult content" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:154 +msgid "Default" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:73 +msgid "Default icons" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:184 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275 +#: src/screens/Settings/AppPasswords.tsx:213 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:715 +#: src/screens/StarterPack/StarterPackScreen.tsx:794 +msgid "Delete" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:187 +#: src/screens/Settings/AccountSettings.tsx:192 +msgid "Delete account" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:183 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:230 +msgid "Delete account โ€œ{currentHandle}โ€" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:187 +msgid "Delete app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:208 +msgid "Delete app password?" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 +msgid "Delete chat" +msgstr "" + +#: src/screens/Settings/Settings.tsx:479 +msgid "Delete chat declaration record" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:567 +msgid "Delete contacts" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:151 +#: src/components/dms/AfterReportDialog.tsx:195 +#: src/components/dms/AfterReportDialog.tsx:198 +#: src/screens/Messages/components/RequestButtons.tsx:147 +#: src/screens/Messages/components/RequestButtons.tsx:149 +msgid "Delete conversation" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:212 +msgid "Delete for me" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:202 +msgid "Delete list" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:182 +msgid "Delete message" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:209 +msgid "Delete message for me" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:309 +msgid "Delete my account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1717 +msgid "Delete post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:609 +#: src/screens/StarterPack/StarterPackScreen.tsx:785 +msgid "Delete starter pack" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:681 +msgid "Delete starter pack?" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:270 +msgid "Delete this list?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +msgid "Delete this post?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:205 +msgid "Deleted" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 +msgid "Deleted Account" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:286 +msgid "Deleted by Plivo after verification" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:43 +#: src/view/com/feeds/MissingFeed.tsx:76 +#: src/view/com/feeds/MissingFeed.tsx:128 +#: src/view/com/feeds/MissingFeed.tsx:136 +msgid "Deleted list" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:453 +#: src/components/SendErrorReportDialog.tsx:78 +#: src/screens/Profile/Header/EditProfileDialog.tsx:360 +#: src/screens/Profile/Header/EditProfileDialog.tsx:367 +msgid "Description" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:82 +msgid "Description (1000 characters max)" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:156 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:124 +msgid "Descriptive alt text" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 +msgid "Detach quote" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 +msgid "Detach quote post?" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:158 +msgctxt "toast" +msgid "Developer mode disabled" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:152 +msgctxt "toast" +msgid "Developer mode enabled" +msgstr "" + +#: src/screens/Settings/Settings.tsx:291 +#: src/screens/Settings/Settings.tsx:294 +msgid "Developer options" +msgstr "" + +#: src/lib/translation/index.tsx:303 +msgid "Device failed to translate :(" +msgstr "" + +#: src/components/WhoCanReply.tsx:222 +msgid "Dialog: adjust who can interact with this post" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 +msgid "Dialog: Set search filters" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:108 +msgid "Dim" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 +msgid "Disable" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 +msgid "Disable 2FA" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 +msgid "Disable captions" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 +msgid "Disable email 2FA" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:90 +msgid "Disable Email 2FA" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:90 +#: src/screens/Settings/AccessibilitySettings.tsx:95 +msgid "Disable haptic feedback" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +msgid "Disable link" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:628 +msgid "Disable quote posts of this post" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:465 +msgid "Disable replies entirely" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 +msgid "Disable this invite link?" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:35 +#: src/lib/moderation/useLabelBehaviorDescription.ts:45 +#: src/lib/moderation/useLabelBehaviorDescription.ts:71 +#: src/screens/Moderation/index.tsx:402 +msgid "Disabled" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 +#: src/screens/Profile/Header/EditProfileDialog.tsx:79 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 +#: src/view/com/composer/drafts/DraftItem.tsx:242 +#: src/view/com/composer/drafts/DraftsButton.tsx:131 +msgid "Discard" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:98 +#: src/screens/Profile/Header/EditProfileDialog.tsx:76 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1495 +#: src/view/com/composer/drafts/DraftItem.tsx:239 +#: src/view/com/composer/drafts/DraftsButton.tsx:98 +msgid "Discard draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 +msgid "Discard post?" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 +msgid "Disconnect Germ DM" +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:88 +#: src/screens/Settings/components/PwiOptOut.tsx:92 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "" + +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:64 +#: src/view/com/posts/FollowingEmptyState.tsx:69 +#: src/view/com/posts/FollowingEndOfFeed.tsx:65 +#: src/view/com/posts/FollowingEndOfFeed.tsx:70 +msgid "Discover new custom feeds" +msgstr "" + +#: src/view/screens/Feeds.tsx:723 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:398 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 +msgid "Dismiss" +msgstr "" + +#: src/components/contacts/FindContactsBannerNUX.tsx:78 +msgid "Dismiss banner" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2598 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:80 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 +msgid "Dismiss interests" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 +msgid "Dismiss live event banner" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 +msgid "Dismiss this section" +msgstr "" + +#: src/components/FeedInterstitials.tsx:351 +msgid "Dismiss this suggestion" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:70 +#: src/screens/Settings/AccessibilitySettings.tsx:75 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:310 +#: src/screens/Profile/Header/EditProfileDialog.tsx:316 +msgid "Display name" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 +msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:405 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:407 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:525 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 +msgid "Don't have a code or need a new one? <0>Click here." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:269 +msgid "Donโ€™t see a code? <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 +msgid "Don't see an email? <0>Click here to resend." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:26 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:73 +#: src/components/contacts/components/InviteInfo.tsx:79 +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:412 +#: src/components/dialogs/BirthDateSettings.tsx:193 +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200 +#: src/components/dialogs/LanguageSelectDialog.tsx:327 +#: src/components/dialogs/NotificationSettingsDialog.tsx:106 +#: src/components/dialogs/ServerInput.tsx:237 +#: src/components/dialogs/ServerInput.tsx:239 +#: src/components/dms/AfterReportConversationDialog.tsx:164 +#: src/components/dms/AfterReportDialog.tsx:145 +#: src/components/forms/DateField/index.tsx:128 +#: src/components/forms/DateField/index.tsx:145 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:147 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:153 +#: src/lib/media/picker.tsx:37 +#: src/screens/Login/components/HostingProviderDialog.tsx:253 +#: src/screens/Login/components/HostingProviderDialog.tsx:255 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 +#: src/view/com/composer/labels/LabelsBtn.tsx:219 +#: src/view/com/composer/labels/LabelsBtn.tsx:226 +#: src/view/com/composer/videos/SubtitleDialog.tsx:192 +#: src/view/com/composer/videos/SubtitleDialog.tsx:203 +msgid "Done" +msgstr "" + +#: src/components/dms/MessageItem.tsx:541 +msgid "Double tap or long press the message to add a reaction" +msgstr "" + +#: src/components/Dialog/index.tsx:399 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1178 +msgid "Double tap to like" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +msgid "Download Bluesky" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:149 +msgid "Download chat data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:154 +msgctxt "button" +msgid "Download chat data" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 +msgid "Download image" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 +msgid "Doxxing" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120 +#: src/view/com/composer/drafts/DraftsButton.tsx:70 +#: src/view/com/composer/drafts/DraftsButton.tsx:79 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:119 +msgid "Drafts" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:369 +msgid "Drop to add images" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:20 +msgid "Due to laws in your region, certain features on Bluesky are currently restricted until you're able to verify you're an adult." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:162 +msgid "Duration:" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Dusk" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:237 +msgid "e.g. alice" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:317 +msgid "e.g. Alice Lastname" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:388 +msgid "e.g. alice.com" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:370 +msgid "e.g. Great Posters" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:371 +msgid "e.g. Spammers" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:374 +msgid "e.g. The posters who never miss." +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:375 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:196 +msgid "Eating disorders" +msgstr "" + +#: src/screens/Messages/components/EditTextButton.tsx:52 +#: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/Wizard/index.tsx:331 +#: src/screens/StarterPack/Wizard/index.tsx:336 +msgid "Edit" +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:215 +#: src/view/com/lists/ListMembers.tsx:220 +msgctxt "action" +msgid "Edit" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 +msgid "Edit avatar" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:116 +msgid "Edit Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:43 +#: src/screens/Messages/ConversationSettings/prompts.tsx:49 +msgid "Edit group name" +msgstr "" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:86 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:90 +#: src/view/com/composer/photos/Gallery.tsx:218 +msgid "Edit image" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 +msgid "Edit interaction settings" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 +msgid "Edit interests" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 +msgid "Edit link settings" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:191 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:194 +msgid "Edit list details" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:364 +#: src/view/com/profile/ProfileMenu.tsx:384 +msgid "Edit live status" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:364 +msgid "Edit moderation list" +msgstr "" + +#: src/Navigation.tsx:363 +#: src/view/screens/Feeds.tsx:511 +msgid "Edit My Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:544 +msgid "Edit name" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 +msgid "Edit People" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:116 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:266 +msgid "Edit post interaction settings" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:265 +#: src/screens/Profile/Header/EditProfileDialog.tsx:271 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:330 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:308 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:332 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:596 +msgid "Edit starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:493 +#: src/screens/Messages/ConversationSettings/index.tsx:543 +msgid "Edit this group chatโ€™s name" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:363 +msgid "Edit user list" +msgstr "" + +#: src/components/WhoCanReply.tsx:116 +msgid "Edit who can reply" +msgstr "" + +#: src/Navigation.tsx:565 +msgid "Edit your starter pack" +msgstr "" + +#: src/lib/interests.ts:59 +msgid "Education" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:145 +msgid "Either the creator of this list has blocked you or you have blocked the creator." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:223 +msgid "Email" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:65 +msgctxt "toast" +msgid "Email 2FA disabled" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 +msgid "Email 2FA enabled" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:90 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:99 +msgid "Email Resent" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 +msgid "Email sent!" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:260 +msgid "Email sent! <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:183 +msgid "Email verification complete!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:74 +msgid "Email Verified" +msgstr "" + +#: src/components/dialogs/Embed.tsx:178 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:105 +#: src/components/dialogs/Embed.tsx:109 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 +msgid "Embed post" +msgstr "" + +#: src/components/dialogs/Embed.tsx:113 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 +msgid "Embedded video player" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Enable" +msgstr "" + +#. placeholder {0}: externalEmbedLabels[source] +#: src/components/dialogs/EmbedConsent.tsx:96 +msgid "Enable {0} only" +msgstr "" + +#: src/screens/Moderation/index.tsx:389 +msgid "Enable adult content" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:117 +#: src/screens/Settings/BetaFeaturesSettings.tsx:124 +msgid "Enable beta features" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 +msgid "Enable captions" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 +msgid "Enable email 2FA" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:80 +#: src/components/dialogs/EmbedConsent.tsx:86 +msgid "Enable external media" +msgstr "" + +#: src/screens/Settings/ExternalMediaPreferences.tsx:53 +msgid "Enable media players for" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +#: src/view/screens/Storybook/Admonitions.tsx:76 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 +msgid "Enable push notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:629 +msgid "Enable quote posts of this post" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:90 +msgid "Enable this source only" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:134 +#: src/screens/Settings/ContentAndMediaSettings.tsx:148 +msgid "Enable trending topics" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:155 +#: src/screens/Settings/ContentAndMediaSettings.tsx:169 +msgid "Enable trending videos in your Discover feed" +msgstr "" + +#: src/screens/Moderation/index.tsx:400 +msgid "Enabled" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:135 +msgid "End of feed" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:182 +msgid "Ensure you have selected a language for each caption file." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:231 +msgid "Enter 6-digit code that was sent to your phone number" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:136 +msgid "Enter a password" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:136 +#: src/components/dialogs/MutedWords.tsx:137 +msgid "Enter a word or tag" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:64 +msgid "Enter code" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 +msgid "Enter fullscreen" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:226 +msgid "Enter the 6-digit code sent to {prettyNumber}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:382 +msgid "Enter the domain you want to use" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:109 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:337 +msgid "Enter the username or email address you used when you created your account" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:164 +msgid "Enter your birthdate" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:96 +#: src/screens/Signup/StepInfo/index.tsx:243 +msgid "Enter your email address" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:389 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:291 +msgid "Enter your password" +msgstr "" + +#: src/screens/Login/index.tsx:144 +msgid "Enter your username and password" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +msgid "Enters full screen" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 +msgid "Entertainment" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2697 +#: src/view/com/util/error/ErrorScreen.tsx:40 +msgid "Error" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:95 +msgid "Error getting the latest data." +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:201 +msgid "Error message" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:47 +#: src/screens/Settings/components/ExportCarDialog.tsx:80 +msgid "Error occurred while saving file" +msgstr "" + +#: src/screens/Signup/StepCaptcha/index.tsx:127 +msgid "Error receiving captcha response." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:206 +msgid "Error: {error}" +msgstr "" + +#: src/components/WhoCanReply.tsx:85 +msgid "Everybody can reply" +msgstr "" + +#: src/components/WhoCanReply.tsx:279 +msgid "Everybody can reply to this post." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:93 +msgctxt "allow group chat invites from" +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:78 +msgctxt "allow messages from" +msgid "Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 +msgid "Everything else" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 +msgid "Everything look right?" +msgstr "" + +#. Advanced search filter +#. Advanced search filter +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:46 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:57 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:86 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:92 +msgid "Exclude" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:320 +msgid "Exclude users you follow" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:605 +msgid "Excludes users you follow" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 +msgid "Exit fullscreen" +msgstr "" + +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 +msgid "Expand alt text" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:612 +msgid "Expand list of users" +msgstr "" + +#: src/view/com/composer/ComposerReplyTo.tsx:103 +msgid "Expand or collapse the full post you are replying to" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:31 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1054 +msgid "Expands or collapses post text" +msgstr "" + +#: src/lib/api/index.ts:490 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:127 +msgid "Experimental" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:520 +msgid "Expired" +msgstr "" + +#. placeholder {0}: formatDistance(expiryDate, new Date(), { addSuffix: true, }) +#: src/components/dialogs/MutedWords.tsx:589 +msgid "Expires {0}" +msgstr "" + +#. placeholder {0}: timeDiff(Date.now(), label.exp) +#. placeholder {0}: timeDiff(Date.now(), modcause.label.exp) +#: src/components/moderation/LabelsOnMeDialog.tsx:218 +#: src/components/moderation/ModerationDetailsDialog.tsx:294 +msgid "Expires in {0}" +msgstr "" + +#. placeholder {0}: displayDuration(i18n, minutesUntilExpiry) +#. placeholder {1}: i18n.date(expiryDateTime, { hour: 'numeric', minute: '2-digit', hour12: true, }) +#: src/features/liveNow/components/EditLiveDialog.tsx:125 +msgid "Expires in {0} at {1}" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +#: src/lib/moderation/useGlobalLabelStrings.ts:51 +msgid "Explicit or potentially disturbing media." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "" + +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 +msgid "Explore" +msgstr "" + +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 +msgid "Explore the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:329 +#: src/screens/Messages/Settings.tsx:338 +#: src/screens/Settings/components/ExportCarDialog.tsx:130 +msgid "Export my chat data" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:168 +#: src/screens/Settings/AccountSettings.tsx:172 +msgid "Export my data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:97 +msgid "Export my profile data" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:86 +#: src/screens/Settings/ContentAndMediaSettings.tsx:89 +msgid "External media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/screens/Settings/ExternalMediaPreferences.tsx:44 +msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." +msgstr "" + +#: src/Navigation.tsx:382 +#: src/screens/Settings/ExternalMediaPreferences.tsx:35 +msgid "External Media Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:146 +msgid "Extremist content" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:244 +msgctxt "toast" +msgid "Failed to accept chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:92 +#: src/components/dms/MessageContextMenu.tsx:140 +msgid "Failed to add emoji reaction" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 +msgid "Failed to add members" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:239 +msgid "Failed to add to list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:280 +msgid "Failed to add to starter pack" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:605 +msgid "Failed to change handle. Please try again." +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 +#: src/screens/Search/Shell.tsx:513 +msgid "Failed to copy link" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 +msgid "Failed to create app password. Please try again." +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:38 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 +msgid "Failed to create conversation" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 +msgid "Failed to create invite link" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:250 +#: src/screens/StarterPack/Wizard/index.tsx:260 +msgid "Failed to create starter pack" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 +msgctxt "toast" +msgid "Failed to delete chat" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:112 +msgid "Failed to delete message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 +msgid "Failed to delete post, please try again" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:754 +msgid "Failed to delete starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +msgid "Failed to disable invite link" +msgstr "" + +#. placeholder {0}: error?.message +#: src/screens/Profile/components/GermButton.tsx:196 +msgid "Failed to disconnect Germ DM. Error: {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:381 +msgid "Failed to edit group chat name" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 +msgid "Failed to edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 +msgid "Failed to enable invite link" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:143 +msgid "Failed to follow all suggested accounts, please try again" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:148 +msgid "Failed to follow all your friends, please try again" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:236 +msgid "Failed to hide suggestion, please check your internet connection" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Failed to join the group chat. Please try again." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:582 +msgid "Failed to launch SMS app" +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:41 +#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/screens/Messages/ConversationSettings/index.tsx:408 +msgctxt "toast" +msgid "Failed to leave group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:420 +#: src/screens/Messages/Inbox.tsx:202 +msgid "Failed to load conversations" +msgstr "" + +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 +msgid "Failed to load feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:85 +#: src/screens/Messages/Settings.tsx:369 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "Failed to load notification settings." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:22 +msgid "Failed to load past messages" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:66 +msgid "Failed to load preference." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:292 +msgid "Failed to load profiles" +msgstr "" + +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:386 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:433 +msgid "Failed to lock group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:636 +#: src/view/shell/bottom-bar/BottomBar.tsx:447 +msgid "Failed to mark all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:645 +#: src/screens/Messages/Inbox.tsx:304 +#: src/view/shell/bottom-bar/BottomBar.tsx:456 +msgid "Failed to mark all requests as read" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:397 +msgid "Failed to mute group chat" +msgstr "" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#. placeholder {0}: e?.message +#: src/screens/Profile/components/GermButton.tsx:164 +msgid "Failed to reconnect Germ DM. Error: {0}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to reject join request" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:509 +msgid "Failed to remove data due to a network error, please check your internet connection." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/screens/Settings/FindContactsSettings.tsx:515 +msgid "Failed to remove data. {0}" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:77 +#: src/components/dms/MessageContextMenu.tsx:125 +#: src/components/dms/ReactionsDialog.tsx:179 +msgid "Failed to remove emoji reaction" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:258 +msgid "Failed to remove from list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:293 +msgid "Failed to remove from starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 +msgid "Failed to remove group chat member" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:34 +msgid "Failed to remove verification" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:193 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 +msgid "Failed to resolve location. Please try again." +msgstr "" + +#: src/view/com/composer/Composer.tsx:731 +msgid "Failed to save draft" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:319 +msgid "Failed to save image" +msgstr "" + +#. placeholder {0}: String(e) +#: src/lib/media/save-image.ios.ts:27 +#: src/lib/media/save-image.ts:31 +msgid "Failed to save image: {0}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:109 +msgid "Failed to save settings. Please try again." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:147 +msgctxt "toast" +msgid "Failed to save your interests." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137 +msgid "Failed to send email, please try again." +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:52 +msgid "Failed to send report" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:77 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 +#: src/screens/Messages/components/ChatDisabled.tsx:119 +msgid "Failed to submit appeal, please try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 +msgid "Failed to toggle thread mute, please try again" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:442 +msgid "Failed to unlock group chat" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107 +msgid "Failed to unpin list" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82 +msgid "Failed to update email 2FA settings" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 +msgid "Failed to update email, please try again." +msgstr "" + +#: src/components/FeedCard.tsx:316 +msgid "Failed to update feeds" +msgstr "" + +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:110 +msgid "Failed to update settings" +msgstr "" + +#: src/lib/media/video/upload.ts:73 +#: src/lib/media/video/upload.web.ts:73 +#: src/lib/media/video/upload.web.ts:77 +#: src/lib/media/video/upload.web.ts:87 +msgid "Failed to upload video" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:169 +msgid "Failed to verify email, please try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:372 +msgid "Failed to verify handle. Please try again." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 +msgid "Fake account or bot" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55 +msgid "False information about elections" +msgstr "" + +#: src/Navigation.tsx:293 +msgid "Feed" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') +#. placeholder {0}: sanitizeHandle(view.creator.handle, '@') +#: src/components/FeedCard.tsx:170 +#: src/state/queries/feed.ts:127 +#: src/view/com/feeds/FeedSourceCard.tsx:151 +msgid "Feed by {0}" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:153 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:190 +msgid "Feed identifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 +msgid "Feed menu" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Feed toggle" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:74 +msgid "Feed unavailable" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:109 +#: src/view/shell/desktop/RightNav.tsx:110 +#: src/view/shell/Drawer.tsx:427 +msgid "Feedback" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 +msgctxt "toast" +msgid "Feedback sent to feed operator" +msgstr "" + +#: src/Navigation.tsx:545 +#: src/screens/SavedFeeds.tsx:112 +#: src/screens/SavedFeeds.tsx:303 +#: src/screens/Search/SearchResults.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:196 +#: src/view/screens/Feeds.tsx:504 +#: src/view/screens/Profile.tsx:241 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 +msgid "Feeds" +msgstr "" + +#: src/screens/SavedFeeds.tsx:227 +#: src/screens/SavedFeeds.tsx:398 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0>See this guide for more information." +msgstr "" + +#: src/components/FeedCard.tsx:313 +#: src/screens/SavedFeeds.tsx:92 +#: src/screens/SavedFeeds.tsx:271 +msgctxt "toast" +msgid "Feeds updated!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:61 +msgid "Fetch update" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:43 +#: src/screens/Settings/components/ExportCarDialog.tsx:76 +msgid "File saved successfully!" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 +msgid "Filter by author (currently: {currentLabel})" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:69 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:70 +msgid "Filter search by language (currently: {currentLanguageLabel})" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + +#. placeholder {0}: lang.name +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 +msgid "Filter this search by {0}" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:106 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 +msgid "Filter who you receive notifications from" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:78 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 +msgctxt "search" +msgid "Filters" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:335 +msgid "Finalizing" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 +msgid "Finally!" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 +msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." +msgstr "" + +#: src/lib/interests.ts:60 +msgid "Finance" +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:67 +#: src/view/com/posts/CustomFeedEmptyState.tsx:72 +#: src/view/com/posts/FollowingEmptyState.tsx:48 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:49 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 +#: src/screens/Settings/Settings.tsx:217 +#: src/screens/Settings/Settings.tsx:220 +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 +msgid "Find Contacts" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:273 +#: src/components/contacts/screens/GetContacts.tsx:287 +msgid "Find my friends" +msgstr "" + +#. Starter packs suggested to the user for them to follow +#: src/components/ProgressGuide/FollowDialog.tsx:72 +#: src/components/ProgressGuide/FollowDialog.tsx:80 +#: src/components/ProgressGuide/FollowDialog.tsx:448 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:43 +msgid "Find people to follow" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + +#: src/screens/Search/Shell.tsx:765 +msgid "Find posts, users, and feeds on Bluesky" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 +msgid "Find your friends" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 +#: src/screens/Settings/FindContactsSettings.tsx:133 +msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 +msgid "Find your people" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:281 +msgid "Finding friends..." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:206 +msgid "Finish" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 +msgctxt "Name of app icon variant" +msgid "Flat Black" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +msgctxt "Name of app icon variant" +msgid "Flat Blue" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 +msgctxt "Name of app icon variant" +msgid "Flat White" +msgstr "" + +#: src/components/contacts/components/OTPInput.tsx:55 +msgid "Focus code input" +msgstr "" + +#: src/lib/hotkeys/index.tsx:73 +msgid "Focus the search field" +msgstr "" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:548 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 +#: src/screens/VideoFeed/index.tsx:937 +#: src/view/com/notifications/NotificationFeedItem.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:871 +msgid "Follow" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397 +msgid "Follow {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:167 +msgid "Follow {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:916 +msgid "Follow {handle}" +msgstr "" + +#: src/state/shell/progress-guide.tsx:232 +msgid "Follow 10 accounts" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:73 +msgid "Follow 10 people to get started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:114 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:331 +msgid "Follow account" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:276 +#: src/components/contacts/screens/ViewMatches.tsx:291 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:294 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:162 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:169 +#: src/screens/Settings/FindContactsSettings.tsx:465 +#: src/screens/Settings/FindContactsSettings.tsx:475 +#: src/screens/StarterPack/StarterPackScreen.tsx:452 +#: src/screens/StarterPack/StarterPackScreen.tsx:460 +msgid "Follow all" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:291 +msgid "Follow all accounts" +msgstr "" + +#. User is not following this account, click to follow back +#: src/components/ProfileCard.tsx:544 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:871 +msgid "Follow back" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:132 +msgid "Followed all accounts!" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:418 +msgid "Followed all matches" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#: src/components/KnownFollowers.tsx:233 +msgid "Followed by <0>{0}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: serverCount - 1 +#: src/components/KnownFollowers.tsx:219 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#: src/components/KnownFollowers.tsx:206 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#. placeholder {2}: serverCount - 2 +#: src/components/KnownFollowers.tsx:189 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:355 +msgid "Followers can join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:247 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:98 +#: src/screens/Profile/KnownFollowers.tsx:115 +msgid "Followers you know" +msgstr "" + +#. User is following this account, click to unfollow +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:539 +#: src/components/ProfileHoverCard/index.web.tsx:494 +#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 +#: src/screens/VideoFeed/index.tsx:935 +#: src/view/com/notifications/NotificationFeedItem.tsx:842 +#: src/view/com/notifications/NotificationFeedItem.tsx:859 +msgid "Following" +msgstr "" + +#: src/screens/SavedFeeds.tsx:618 +#: src/view/screens/Feeds.tsx:596 +msgctxt "feed-name" +msgid "Following" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#: src/components/ProfileCard.tsx:500 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:791 +msgid "Following {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:66 +msgid "Following {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:915 +msgid "Following {handle}" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:78 +#: src/screens/Settings/ContentAndMediaSettings.tsx:81 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:369 +#: src/screens/Settings/FollowingFeedPreferences.tsx:57 +msgid "Following Feed Preferences" +msgstr "" + +#: src/components/Pills.tsx:213 +#: src/screens/Profile/Header/Handle.tsx:33 +msgid "Follows you" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:126 +msgid "Font" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:146 +msgid "Font size" +msgstr "" + +#: src/lib/interests.ts:61 +msgid "Food" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:106 +msgid "For organizational accounts, use the birthdate of the person who is responsible for the account." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:186 +msgid "For security reasons, weโ€™ll need to send a confirmation code to your email address <0>{currentEmail}." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:208 +msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:128 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:131 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 +msgid "For You" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:187 +#: src/components/dialogs/MutedWords.tsx:572 +#: src/components/dialogs/MutedWords.tsx:575 +msgid "Forever" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 +msgid "Forget the noise" +msgstr "" + +#: src/screens/Login/index.tsx:176 +#: src/screens/Login/index.tsx:192 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:421 +#: src/screens/Login/LoginForm.tsx:428 +msgid "Forgot password?" +msgstr "" + +#. This is alt text for a marketing image which transcribes English text that appears in the image +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:153 +msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 +msgid "Free your feed" +msgstr "" + +#. Filter who you receive notifications from +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +msgid "From" +msgstr "" + +#: src/screens/Hashtag.tsx:123 +msgid "From {sanitizedAuthor}" +msgstr "" + +#: src/screens/Hashtag.tsx:124 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:48 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:30 +msgid "From these people" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +msgid "Generate a starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 +#: src/screens/Messages/components/InviteLinkDialog.tsx:277 +#: src/screens/Messages/components/InviteLinkDialog.tsx:305 +msgid "Generate invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 +msgid "Generate new invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 +msgid "Generate new link" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:86 +#: src/screens/Profile/components/GermButton.tsx:225 +msgid "Germ DM" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:183 +msgid "Germ DM disconnected" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 +msgid "Germ DM Link" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:160 +msgid "Germ DM reconnected" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:132 +msgid "Get early access to experimental features weโ€™re testing." +msgstr "" + +#: src/view/shell/Drawer.tsx:431 +msgid "Get help" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:389 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:316 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:366 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:340 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:348 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:332 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:357 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:375 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:33 +msgid "Get notifications when people send you message requests." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:23 +msgid "Get notifications when people send you messages." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:89 +#: src/components/activity-notifications/SubscribeProfileButton.tsx:90 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:233 +msgid "Get notified of this accountโ€™s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:84 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 +msgid "Get notified when someone posts" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 +#: src/screens/Messages/components/InviteLinkDialog.tsx:219 +#: src/screens/Messages/components/InviteLinkDialog.tsx:226 +msgid "Get started" +msgstr "" + +#: src/components/MediaPreview.tsx:182 +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:93 +msgid "GIF" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2702 +msgid "GIF uploaded" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:256 +msgid "Give your profile a face" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:142 +msgid "Glorification of violence" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:127 +#: src/components/dialogs/LinkWarning.tsx:133 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 +#: src/screens/Login/components/AuthLayout/Header/index.tsx:74 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 +#: src/screens/ProfileList/components/ErrorScreen.tsx:35 +#: src/screens/ProfileList/components/ErrorScreen.tsx:41 +#: src/screens/VideoFeed/components/Header.tsx:163 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 +#: src/view/com/auth/LoggedOut.tsx:127 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go back" +msgstr "" + +#: src/components/Error.tsx:72 +#: src/screens/List/ListHiddenScreen.tsx:228 +#: src/screens/Profile/ErrorState.tsx:63 +#: src/screens/Profile/ErrorState.tsx:67 +#: src/screens/StarterPack/StarterPackScreen.tsx:807 +msgid "Go Back" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:97 +#: src/screens/Onboarding/Layout.tsx:198 +#: src/screens/Signup/BackNextButtons.tsx:36 +msgid "Go back to previous step" +msgstr "" + +#: src/screens/Bookmarks.tsx:296 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/view/com/profile/ProfileMenu.tsx:386 +msgid "Go live" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:106 +#: src/features/liveNow/components/GoLiveDialog.tsx:111 +#: src/features/liveNow/components/GoLiveDialog.tsx:239 +#: src/features/liveNow/components/GoLiveDialog.tsx:248 +msgid "Go Live" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:362 +#: src/view/com/profile/ProfileMenu.tsx:382 +msgid "Go live (disabled)" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:181 +msgid "Go live for" +msgstr "" + +#. placeholder {0}: name.displayName +#: src/screens/PostThread/components/LikesStat.tsx:146 +msgid "Go to {0}'s profile" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:256 +msgid "Go to {firstAuthorName}'s profile" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:93 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:73 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:82 +#: src/screens/Moderation/index.tsx:237 +msgid "Go to account settings" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Messages/components/ChatListItem.tsx:155 +msgid "Go to conversation with {0}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:39 +msgid "Go to feed" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:168 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:194 +#: src/view/shell/desktop/LeftNav.tsx:336 +#: src/view/shell/desktop/LeftNav.tsx:342 +msgid "Go to profile" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:211 +msgid "Go to the group chat named \"{chatName}\"" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:258 +msgid "Go to user's profile" +msgstr "" + +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 +msgid "Go to userโ€™s profile" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105 +msgid "Going live is currently disabled for your account" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:121 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:126 +#: src/screens/Profile/components/GermButton.tsx:253 +#: src/screens/Profile/components/GermButton.tsx:258 +msgid "Got it" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/lib/moderation/useGlobalLabelStrings.ts:50 +#: src/view/com/composer/labels/LabelsBtn.tsx:197 +#: src/view/com/composer/labels/LabelsBtn.tsx:200 +msgid "Graphic Media" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:138 +msgid "Graphic violent content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:169 +msgid "Grooming or predatory behavior" +msgstr "" + +#: src/components/dms/ChatInvite/Card.tsx:51 +#: src/components/intents/GroupChatJoinDialog.tsx:333 +#: src/screens/Messages/JoinRequest.tsx:125 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 +msgid "Group chat invite link dialog" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:424 +msgctxt "toast" +msgid "Group chat locked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:389 +msgctxt "toast" +msgid "Group chat muted" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:376 +msgctxt "toast" +msgid "Group chat name updated" +msgstr "" + +#: src/Navigation.tsx:514 +#: src/screens/Messages/ConversationSettings/index.tsx:113 +msgid "Group chat settings" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:427 +msgctxt "toast" +msgid "Group chat unlocked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:392 +msgctxt "toast" +msgid "Group chat unmuted" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" + +#: src/screens/Messages/Settings.tsx:212 +msgid "Group chats are only available to users 18 and over." +msgstr "" + +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:205 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 +msgid "Group is locked" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 +#: src/screens/Messages/ConversationSettings/prompts.tsx:50 +msgid "Group name" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:730 +#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 +msgid "Hacking or system attacks" +msgstr "" + +#: src/state/shell/progress-guide.tsx:221 +#: src/state/shell/progress-guide.tsx:231 +msgid "Half way there!" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:133 +#: src/screens/Settings/AccountSettings.tsx:138 +msgid "Handle" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:609 +msgid "Handle already taken. Please try a different one." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:197 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:356 +msgid "Handle changed!" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:613 +msgid "Handle too long. Please try a shorter one." +msgstr "" + +#: src/components/FeedCard.tsx:156 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 +msgid "Happening now" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to happy/joyful GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:65 +msgid "Happy GIFs" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:86 +msgid "Haptics" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 +msgid "Harassment or hate" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:189 +msgid "Harmful or high-risk activities" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:162 +msgid "Harming or endangering minors" +msgstr "" + +#: src/Navigation.tsx:498 +msgid "Hashtag" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Hashtag {tag}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:111 +msgid "Hate speech" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 +msgid "Have a code? <0>Click here." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:323 +msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." +msgstr "" + +#: src/screens/Signup/index.tsx:246 +msgid "Having trouble?" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:290 +msgid "Held by Bluesky for 7 days to prevent abuse, then deleted" +msgstr "" + +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:260 +#: src/view/shell/desktop/RightNav.tsx:130 +#: src/view/shell/desktop/RightNav.tsx:133 +#: src/view/shell/Drawer.tsx:440 +msgid "Help" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:259 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 +msgid "Here is your app password!" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:74 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:120 +msgid "Hey there ๐Ÿ‘‹" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:171 +msgid "Hey there!" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:276 +msgid "Hi there!" +msgstr "" + +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 +msgid "Hidden" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:714 +msgid "Hidden by your moderation settings." +msgstr "" + +#: src/components/ListCard.tsx:133 +msgid "Hidden list" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:140 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 +#: src/lib/moderation/useLabelBehaviorDescription.ts:18 +#: src/lib/moderation/useLabelBehaviorDescription.ts:23 +#: src/lib/moderation/useLabelBehaviorDescription.ts:28 +#: src/lib/moderation/useLabelBehaviorDescription.ts:33 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:956 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/components/dialogs/Embed.tsx:124 +msgid "Hide customization options" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:57 +msgid "Hide group chat updates" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:533 +msgid "Hide lists" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:613 +msgid "Hide password" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 +msgid "Hide post for me" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 +msgid "Hide reply for everyone" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 +msgid "Hide reply for me" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 +msgid "Hide this card" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +msgid "Hide this post?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 +msgid "Hide this reply?" +msgstr "" + +#: src/components/Post/Translated/index.tsx:216 +#: src/components/Post/Translated/index.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 +msgid "Hide translation" +msgstr "" + +#: src/components/interstitials/Trending.tsx:126 +msgid "Hide trending topics" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 +msgid "Hide trending topics?" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:136 +msgid "Hide trending videos?" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:947 +msgid "Hide user list" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:88 +#: src/screens/Moderation/VerificationSettings.tsx:97 +msgid "Hide verification badges" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:168 +#: src/components/moderation/PostHider.tsx:94 +msgid "Hides the content" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:76 +msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:122 +msgid "Hmm, it seems we weren't able to compute your level of access. Please try again." +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:141 +msgid "Hmm, it seems your device was unable to share age information with us." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:125 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:113 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:119 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:116 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:110 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "" + +#: src/screens/Moderation/index.tsx:61 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:32 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "" + +#: src/view/com/composer/state/video.ts:447 +msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 +#: src/view/shell/bottom-bar/BottomBar.tsx:196 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 +msgid "Home" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:430 +msgid "Host:" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:138 +#: src/screens/Login/components/HostingProviderDialog.tsx:159 +#: src/screens/Login/ForgotPasswordForm.tsx:80 +#: src/screens/Login/LoginForm.tsx:659 +msgid "Hosting provider" +msgstr "" + +#. placeholder {0}: toNiceHostingUrl(state.pdsUrl) +#: src/screens/Login/LoginForm.tsx:655 +msgid "Hosting provider: {0}" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:657 +msgid "Hosting provider: Bluesky" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:54 +msgid "How it works:" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:63 +#: src/components/dialogs/InAppBrowserConsent.tsx:67 +msgid "How should we open this link?" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:279 +msgid "How we use your number:" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:150 +msgid "Human trafficking" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:267 +msgid "I consent to Bluesky using my contacts for mutual friend discovery and to retain hashed data for matching until I opt out." +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:134 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:137 +msgid "I have a code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:292 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:298 +msgid "I have my own domain" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:55 +msgid "I understand" +msgstr "" + +#. placeholder {0}: currentAccount.handle +#: src/components/contacts/screens/ViewMatches.tsx:578 +msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:246 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:235 +msgid "If none are selected, all languages will be shown in your feeds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:103 +msgid "If you are 18 years of age or older and want to try again, click the button below and use a different verification method if one is available in your region. If you have questions or concerns, <0>our support team can help." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:340 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:116 +msgid "If you believe your birthdate is incorrect, you can update it by <0>clicking here." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:272 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:274 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 +msgid "If you need to update your email, <0>click here." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 +msgid "If you update your email address, email 2FA will be disabled." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:60 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 +#: src/view/screens/Storybook/Admonitions.tsx:90 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:210 +msgid "If you're a developer, you can host your own server." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/components/images/ImageLayoutGridItem.tsx:91 +msgid "Image" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:457 +msgid "Image {0}" +msgstr "" + +#. placeholder {0}: index + 1 +#. placeholder {1}: imgs.length +#: src/components/Lightbox/Lightbox.web.tsx:261 +msgid "Image {0} of {1}" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:442 +msgid "Image {0} of {imageCount}" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:74 +msgid "Image cache cleared" +msgstr "" + +#. Android-only toast message which includes amount of space freed using localized number formatting +#. placeholder {0}: i18n.number( Math.abs(sizeDiffBytes / 1024 / 1024), { notation: 'compact', style: 'unit', unit: 'megabyte', }, ) +#: src/screens/Settings/AboutSettings.tsx:60 +msgid "Image cache cleared, freed {0}" +msgstr "" + +#. placeholder {0}: images.length +#: src/components/images/Gallery/index.tsx:274 +msgid "Image gallery, {0} images" +msgstr "" + +#. Image has been moderated and user has the option of showing it temporarily +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 +msgid "Image is hidden due to your moderation settings." +msgstr "" + +#. Image has been moderated and is not visible to the user +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 +msgid "Image is unavailable." +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:72 +#: src/components/Lightbox/Lightbox.web.tsx:265 +#: src/components/Lightbox/Lightbox.web.tsx:273 +msgid "Image options" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/lib/media/save-image.ios.ts:25 +#: src/lib/media/save-image.ts:29 +msgid "Image saved" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:82 +msgid "Image viewer" +msgstr "" + +#: src/lib/media/save-image.ts:51 +msgid "Images cannot be saved unless permission is granted to access your photo library." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:51 +msgid "Impersonation" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 +msgid "Import contacts" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 +msgid "Import Contacts" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "" + +#: src/components/contacts/FindContactsBannerNUX.tsx:33 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 +msgid "Import contacts to find your friends" +msgstr "" + +#. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) +#: src/screens/Settings/FindContactsSettings.tsx:535 +msgid "Imported on {0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:279 +msgid "In order to provide an age-appropriate experience, we need to know your birthdate. This is a one-time thing, and your data will be kept private." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:30 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:21 +msgid "In-app, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:25 +msgid "In-app, people you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:29 +msgid "In-app, push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:20 +msgid "In-app, push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:24 +msgid "In-app, push, people you follow" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:437 +msgid "Inbox empty" +msgstr "" + +#. Title message shown in chat requests inbox when it's empty +#: src/screens/Messages/Inbox.tsx:219 +msgid "Inbox zero!" +msgstr "" + +#. Advanced search filter +#. Advanced search filter +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 +msgid "Include" +msgstr "" + +#. placeholder {0}: filter.mode === 'exclude' ? l({message: 'Exclude', comment: 'Advanced search filter'}) : l({message: 'Include', comment: 'Advanced search filter'}) +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:44 +msgid "Include or exclude matching posts (currently: {0})" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 +msgid "Include posts and/or replies (currently: {currentLabel})" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:305 +msgid "Include posts made since this date" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:329 +msgid "Include posts made until this date" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:165 +msgid "Incorrect username or password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:124 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:148 +msgid "Input new password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:456 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:136 +msgid "Interaction limited" +msgstr "" + +#: src/screens/Moderation/index.tsx:269 +msgid "Interaction settings" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:33 +msgid "Introducing activity notifications" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:49 +msgid "Introducing drafts" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:56 +msgid "Introducing finding friends via contacts" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 +msgid "Introducing saved posts AKA bookmarks" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:156 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:71 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:157 +msgid "Invalid group chat code." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:615 +msgid "Invalid handle. Please try a different one." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 +msgctxt "toast" +msgid "Invalid interaction settings." +msgstr "" + +#: src/components/contacts/phone-number.ts:33 +#: src/components/contacts/screens/PhoneInput.tsx:142 +msgid "Invalid phone number" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:100 +msgid "Invalid report subject" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:200 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:86 +msgid "Invalid Verification Code" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:587 +msgid "Invite" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:567 +msgid "Invite {name} to join Bluesky" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:193 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:363 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:42 +#: src/components/contacts/components/InviteInfo.tsx:44 +msgid "Invite Friends" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:301 +msgid "Invite friends <0/>" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:193 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 +#: src/screens/Messages/components/InviteLinkDialog.tsx:335 +#: src/screens/Messages/components/InviteLinkDialog.tsx:514 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149 +#: src/screens/Messages/ConversationSettings/index.tsx:557 +msgid "Invite link" +msgstr "" + +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:214 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:127 +msgid "Invite link copied" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:120 +msgid "Invite link created" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:138 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 +msgid "Invite link disabled" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:126 +msgid "Invite link edited" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:132 +msgid "Invite link enabled" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:83 +msgid "Invite people to this starter pack!" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:37 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 +msgid "Invited" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:34 +msgid "Invites, but personal" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:47 +msgid "It looks like some of your contacts have not tried to find you here yet. You can personally invite them by customizing a draft message we will provide." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:373 +msgid "It's correct" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:483 +msgid "It's just <0>{0} right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:478 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#. placeholder {0}: videoState.jobId +#: src/view/com/composer/Composer.tsx:2617 +msgid "Job ID: {0}" +msgstr "" + +#. Link to a page with job openings at Bluesky +#: src/view/com/auth/SplashScreen.web.tsx:181 +msgid "Jobs" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +msgid "Join" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:488 +msgid "Join Bluesky" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:72 +#: src/components/intents/GroupChatJoinDialog.tsx:464 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:189 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:72 +#: src/view/shell/NavSignupCard.tsx:41 +msgid "Join the conversation" +msgstr "" + +#: src/lib/interests.ts:63 +msgid "Journalism" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 +#: src/view/com/composer/drafts/DraftsButton.tsx:135 +msgid "Keep editing" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:230 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 +msgid "KWS website" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName(desc.source!) +#: src/components/moderation/ContentHider.tsx:245 +msgid "Labeled by {0}." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:243 +msgid "Labeled by the author." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:70 +#: src/view/screens/Profile.tsx:234 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:68 +msgid "Labels added" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:78 +msgid "Labels applied to this post" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:195 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:76 +msgid "Labels on your account" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:357 +msgid "Language" +msgstr "" + +#: src/Navigation.tsx:220 +msgid "Language Settings" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:98 +#: src/screens/Settings/Settings.tsx:240 +#: src/screens/Settings/Settings.tsx:243 +msgid "Languages" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:158 +msgid "Larger" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:443 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:179 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:441 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:177 +msgid "Last initiated just now" +msgstr "" + +#: src/screens/Hashtag.tsx:97 +#: src/screens/Search/SearchResults.tsx:95 +#: src/screens/Topic.tsx:64 +msgid "Latest" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:168 +#: src/components/verification/VerifierDialog.tsx:136 +#: src/screens/Moderation/VerificationSettings.tsx:50 +#: src/screens/Profile/Header/EditProfileDialog.tsx:346 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:215 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:279 +msgctxt "english-only-resource" +msgid "Learn more" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:143 +msgid "Learn More" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:273 +msgctxt "english-only-resource" +msgid "Learn more about <0>how to use advanced search." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 +msgid "Learn more about age assurance" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:169 +msgid "Learn more about Bluesky" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:33 +msgid "Learn more about how inviting friends works" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:303 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 +#: src/screens/Settings/FindContactsSettings.tsx:140 +msgctxt "english-only-resource" +msgid "Learn more about importing contacts" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:220 +#: src/screens/Login/components/HostingProviderDialog.tsx:241 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 +msgid "Learn more about the moderation applied to this content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:150 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:90 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:116 +#: src/components/moderation/ScreenHider.tsx:132 +msgid "Learn more about this warning" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:153 +#: src/components/verification/VerifierDialog.tsx:122 +msgctxt "english-only-resource" +msgid "Learn more about verification on Bluesky" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:212 +msgid "Learn more about your Germ DM link" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:90 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:222 +#: src/components/moderation/ContentHider.tsx:253 +#: src/screens/Login/components/HostingProviderDialog.tsx:243 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:591 +msgid "Leave" +msgstr "" + +#. Leave a conversation (reject a chat invitation) +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 +msgctxt "Button" +msgid "Leave" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:109 +#: src/components/dms/MessagesListBlockedFooter.tsx:116 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 +#: src/screens/Messages/components/ChatEnded.tsx:66 +#: src/screens/Messages/components/ChatLocked.tsx:112 +msgid "Leave chat" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:229 +#: src/components/dms/AfterReportConversationDialog.tsx:233 +#: src/components/dms/ConvoMenu.tsx:236 +#: src/components/dms/ConvoMenu.tsx:240 +#: src/components/dms/ConvoMenu.tsx:308 +#: src/components/dms/ConvoMenu.tsx:312 +#: src/components/dms/LeaveConvoPrompt.tsx:53 +msgid "Leave conversation" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:174 +msgctxt "button" +msgid "Leave conversation" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:130 +#: src/screens/Messages/ConversationSettings/prompts.tsx:154 +msgid "Leave group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:590 +msgid "Leave this group chat" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:83 +#: src/components/dialogs/LinkWarning.tsx:91 +msgid "Leaving Bluesky" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:153 +msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:274 +msgid "Left group chat." +msgstr "" + +#: src/screens/SignupQueued.tsx:158 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:177 +#: src/screens/Login/index.tsx:193 +msgid "Let's get your password reset!" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:337 +msgid "Let's go!" +msgstr "" + +#: src/components/dialogs/Embed.tsx:159 +#: src/components/dialogs/Embed.tsx:161 +#: src/screens/Settings/AppearanceSettings.tsx:87 +msgid "Light" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14 +msgctxt "Name of app icon variant" +msgid "Light" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 +msgid "Like" +msgstr "" + +#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form +#. placeholder {0}: post.likeCount || 0 +#: src/components/PostControls/index.tsx:284 +msgid "Like ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:108 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:217 +#: src/state/shell/progress-guide.tsx:222 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 +msgid "Like this feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:149 +msgid "Like this labeler" +msgstr "" + +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 +msgid "Liked by" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:31 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:22 +#: src/view/screens/ProfileFeedLikedBy.tsx:22 +msgid "Liked By" +msgstr "" + +#. placeholder {0}: count || 0 +#. placeholder {0}: feed.likeCount || 0 +#: src/components/FeedCard.tsx:249 +#: src/view/com/feeds/FeedSourceCard.tsx:173 +msgid "Liked by {0, plural, one {# user} other {# users}}" +msgstr "" + +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:96 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 +msgid "Liked by {likeCount, plural, one {# user} other {# users}}" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:158 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 +msgid "Likes" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:200 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 +msgid "Likes of your reposts" +msgstr "" + +#: src/screens/PostThread/components/LikesStat.tsx:39 +msgid "Likes on this post" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:49 +#: src/screens/PostThread/components/HeaderDropdown.tsx:54 +msgid "Linear" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:300 +msgid "Link copied to clipboard" +msgstr "" + +#: src/Navigation.tsx:253 +msgid "List" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:397 +msgid "List avatar" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:48 +msgctxt "toast" +msgid "List blocked" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') +#: src/components/ListCard.tsx:153 +#: src/view/com/feeds/FeedSourceCard.tsx:153 +msgid "List by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:145 +msgid "List by <0/>" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:143 +msgid "List by you" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:127 +msgid "List created, but failed to add some members" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:155 +msgid "List creator" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:93 +msgctxt "toast" +msgid "List deleted" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:446 +msgid "List description" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:466 +msgid "List description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:133 +msgid "List has been hidden" +msgstr "" + +#: src/screens/ProfileList/index.tsx:175 +msgid "List Hidden" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:438 +msgid "List must have a name." +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:33 +msgctxt "toast" +msgid "List muted" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:410 +msgid "List name" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:430 +msgid "List name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:115 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:130 +msgctxt "toast" +msgid "List unblocked" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:101 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:116 +msgctxt "toast" +msgid "List unmuted" +msgstr "" + +#: src/Navigation.tsx:174 +#: src/view/screens/Lists.tsx:60 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 +msgid "Lists" +msgstr "" + +#: src/view/com/lists/MyLists.tsx:72 +msgid "Lists allow you to see content from your favorite people." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:38 +msgid "Lists blocking this user:" +msgstr "" + +#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters +#: src/features/liveNow/components/LiveIndicator.tsx:46 +msgid "LIVE" +msgstr "" + +#. placeholder {0}: feed.title +#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:53 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:54 +msgid "Live event happening now: {0}" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 +msgid "Live event hidden" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 +msgid "Live event unhidden" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 +msgid "Live feature is in beta" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:142 +#: src/features/liveNow/components/EditLiveDialog.tsx:146 +#: src/features/liveNow/components/GoLiveDialog.tsx:137 +#: src/features/liveNow/components/GoLiveDialog.tsx:141 +msgid "Live link" +msgstr "" + +#: src/screens/Search/Explore.tsx:87 +msgid "Load more" +msgstr "" + +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Notifications.tsx:271 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 +#: src/screens/ProfileList/FeedSection.tsx:113 +#: src/view/com/feeds/FeedPage.tsx:168 +msgid "Load new posts" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:254 +msgctxt "placeholder" +msgid "Loading chatโ€ฆ" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575 +msgid "Loading lists..." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:279 +msgid "Loading post interaction settings..." +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60 +msgid "Loading..." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:571 +msgid "Lock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:107 +msgid "Lock group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:105 +msgid "Lock group chat?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:569 +msgid "Lock this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:571 +msgid "Locked" +msgstr "" + +#: src/Navigation.tsx:328 +msgid "Log" +msgstr "" + +#: src/components/AccountList.tsx:189 +msgid "Logged out" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 +msgid "Logged-out visibility" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:142 +msgid "Logo by @sawaratsuki.bsky.social" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:139 +#: src/view/shell/Drawer.tsx:768 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:55 +msgid "Long press to open tag menu for {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:114 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:44 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:84 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:36 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to GIFs about love/affection. +#: src/features/gifPicker/components/GifCategoryPills.tsx:55 +msgid "Love GIFs" +msgstr "" + +#: src/components/dialogs/EmailDialog/index.tsx:39 +msgid "Make adjustments to email settings for your account" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +msgid "Make one for me" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:101 +msgid "Make sure this is where you intend to go!" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:62 +#: src/screens/Settings/ContentAndMediaSettings.tsx:65 +msgid "Manage saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:339 +msgid "Manage verification settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:111 +msgid "Manage your muted words and tags" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:173 +#: src/screens/Login/components/HostingProviderDialog.tsx:174 +msgid "Manual" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:312 +#: src/screens/Messages/Inbox.tsx:318 +msgid "Mark all as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 +#: src/view/shell/bottom-bar/BottomBar.tsx:465 +#: src/view/shell/bottom-bar/BottomBar.tsx:469 +msgid "Mark all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 +#: src/view/shell/bottom-bar/BottomBar.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:477 +msgid "Mark all requests as read" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 +msgid "Mark as read" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:299 +msgid "Marked all as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:633 +#: src/view/shell/bottom-bar/BottomBar.tsx:444 +msgid "Marked all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:642 +#: src/view/shell/bottom-bar/BottomBar.tsx:453 +msgid "Marked all requests as read" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +msgid "Maybe later" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 +#: src/view/screens/Profile.tsx:238 +msgid "Media" +msgstr "" + +#. Example: "Media stored on John's iPhone" +#. placeholder {0}: draft.draft.deviceName +#: src/view/com/composer/drafts/DraftItem.tsx:119 +msgid "Media stored on {0}" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:117 +msgid "Media stored on another device" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:206 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:300 +msgid "Member removed from group chat." +msgstr "" + +#. The heading above the list of chat members. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +msgid "Members" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:106 +msgid "Members can still read chat history but canโ€™t send new messages." +msgstr "" + +#: src/components/WhoCanReply.tsx:320 +msgid "mentioned users" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:179 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 +#: src/view/screens/Notifications.tsx:99 +msgid "Mentions" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:37 +msgid "Mentions of these people" +msgstr "" + +#: src/components/Menu/index.tsx:119 +msgid "Menu" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 +msgctxt "action" +msgid "Message" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:255 +msgctxt "description" +msgid "Message" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/components/dms/MessageProfileButton.tsx:99 +msgid "Message {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +msgid "Message {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:322 +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:111 +msgctxt "toast" +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageItem.tsx:637 +msgid "Message failed to send." +msgstr "" + +#. placeholder {0}: sender?.handle ?? 'unknown' +#. placeholder {1}: message.text +#: src/components/dms/MessageContextMenu.tsx:166 +msgid "Message from @{0}: {1}" +msgstr "" + +#. placeholder {0}: rawError.message +#: src/view/com/posts/PostFeedErrorMessage.tsx:209 +msgid "Message from server: {0}" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:251 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:116 +msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:165 +msgid "Message options" +msgstr "" + +#: src/Navigation.tsx:779 +msgid "Messages" +msgstr "" + +#: src/components/dms/MessageItem.tsx:736 +msgid "Messages from this person are hidden while they are blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:731 +msgid "Messages from this person are hidden while you are blocking them." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 +msgctxt "Name of app icon variant" +msgid "Midnight" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:177 +msgid "Minor harassment or bullying" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 +msgid "Misleading" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:131 +msgid "Missing media" +msgstr "" + +#: src/Navigation.tsx:179 +#: src/screens/Moderation/index.tsx:100 +msgid "Moderation" +msgstr "" + +#: src/screens/Settings/Settings.tsx:190 +#: src/screens/Settings/Settings.tsx:193 +msgid "Moderation and content filters" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:175 +msgid "Moderation details" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:311 +#: src/components/ListCard.tsx:152 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:309 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +msgid "Moderation list by you" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:256 +msgctxt "toast" +msgid "Moderation list created" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:242 +msgctxt "toast" +msgid "Moderation list updated" +msgstr "" + +#: src/screens/Moderation/index.tsx:299 +msgid "Moderation lists" +msgstr "" + +#: src/Navigation.tsx:184 +#: src/view/screens/ModerationModlists.tsx:60 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:257 +msgid "moderation settings" +msgstr "" + +#: src/Navigation.tsx:313 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:253 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:72 +#: src/lib/moderation/useModerationCauseDescription.ts:48 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "" + +#: src/view/shell/desktop/Feeds.tsx:106 +#: src/view/shell/desktop/Feeds.tsx:153 +msgid "More feeds" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:125 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:128 +msgid "More languages..." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 +#: src/view/com/composer/drafts/DraftItem.tsx:190 +#: src/view/com/profile/ProfileMenu.tsx:251 +#: src/view/com/profile/ProfileMenu.tsx:258 +msgid "More options" +msgstr "" + +#: src/screens/SavedFeeds.tsx:488 +msgid "Move feed down" +msgstr "" + +#: src/screens/SavedFeeds.tsx:478 +msgid "Move feed up" +msgstr "" + +#: src/lib/interests.ts:64 +msgid "Movies" +msgstr "" + +#: src/lib/interests.ts:65 +msgid "Music" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:536 +msgid "Mute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:184 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97 +msgctxt "video" +msgid "Mute" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:154 +#: src/components/RichTextTag.tsx:170 +msgid "Mute {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 +#: src/view/com/profile/ProfileMenu.tsx:443 +#: src/view/com/profile/ProfileMenu.tsx:450 +msgid "Mute account" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:83 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:86 +msgid "Mute accounts" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 +msgid "Mute conversation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:262 +msgid "Mute in:" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:109 +msgid "Mute list" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:104 +msgid "Mute these accounts?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:534 +msgid "Mute this group chat" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:194 +msgid "Mute this word for 24 hours" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:233 +msgid "Mute this word for 30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:218 +msgid "Mute this word for 7 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:267 +msgid "Mute this word in post text and tags" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:283 +msgid "Mute this word in tags only" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:179 +msgid "Mute this word until you unmute it" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 +msgid "Mute thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 +msgid "Mute words & tags" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. Itโ€™s your chat." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:536 +msgid "Muted" +msgstr "" + +#: src/screens/Moderation/index.tsx:314 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:189 +#: src/view/screens/ModerationMutedAccounts.tsx:107 +msgid "Muted Accounts" +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:193 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "" + +#. placeholder {0}: cause.source.list.name +#: src/lib/moderation/useModerationCauseDescription.ts:93 +msgid "Muted by \"{0}\"" +msgstr "" + +#: src/screens/Moderation/index.tsx:284 +msgid "Muted words & tags" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:106 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:54 +#: src/components/dialogs/BirthDateSettings.tsx:58 +msgid "My birthdate" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:77 +msgid "My favorite feeds and people - join me!" +msgstr "" + +#: src/view/screens/Feeds.tsx:697 +msgid "My Feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:49 +msgid "My starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:416 +msgid "Name" +msgstr "" + +#: src/lib/interests.ts:66 +msgid "Nature" +msgstr "" + +#. placeholder {0}: record.name +#. placeholder {0}: view.record.name +#: src/components/StarterPack/StarterPackCard.tsx:134 +#: src/components/StarterPack/StarterPackCard.tsx:169 +msgid "Navigate to {0}" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:135 +msgid "Navigate to starter pack" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:144 +#: src/screens/Login/ForgotPasswordForm.tsx:169 +#: src/screens/Login/LoginForm.tsx:555 +msgid "Navigates to the next screen" +msgstr "" + +#: src/view/shell/Drawer.tsx:92 +msgid "Navigates to your profile" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:342 +#: src/components/moderation/ReportDialog/index.tsx:358 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:585 +msgid "Nevermind, create a handle for me" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:398 +msgid "New" +msgstr "" + +#: src/view/screens/Lists.tsx:71 +#: src/view/screens/ModerationModlists.tsx:72 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 +msgctxt "nux-description" +msgid "New" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:569 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:552 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 +#: src/screens/Messages/ChatList.tsx:232 +#: src/screens/Messages/ChatList.tsx:455 +#: src/screens/Messages/ChatList.tsx:456 +#: src/screens/Messages/ChatList.tsx:580 +msgid "New chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 +msgid "New chat with {0}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 +msgid "New chat with {0} and {1}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73 +msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 +msgid "New email address" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:75 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:74 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:85 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:65 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:129 +msgid "New Feature" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:193 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 +msgid "New followers" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 +msgid "New group chat" +msgstr "" + +#. Button used to create a new group chat. +#. Button used to create a new group chat. +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:332 +msgid "New group chat with:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:228 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:236 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:387 +msgid "New handle" +msgstr "" + +#: src/view/screens/Lists.tsx:64 +#: src/view/screens/ModerationModlists.tsx:64 +msgid "New list" +msgstr "" + +#: src/screens/Messages/Settings.tsx:289 +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:281 +msgid "New message requests" +msgstr "" + +#: src/screens/Messages/Settings.tsx:268 +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 +#: src/screens/Settings/NotificationSettings/index.tsx:264 +msgid "New messages" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:130 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:204 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:208 +msgid "New password" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:218 +#: src/screens/ProfileList/index.tsx:237 +#: src/screens/ProfileList/index.tsx:280 +#: src/view/screens/Feeds.tsx:545 +#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Profile.tsx:607 +msgid "New post" +msgstr "" + +#: src/view/com/feeds/FeedPage.tsx:179 +#: src/view/shell/desktop/LeftNav.tsx:598 +msgctxt "action" +msgid "New post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:558 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:543 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:202 +msgid "New starter pack" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:569 +msgid "New to Bluesky? <0>Sign up" +msgstr "" + +#: src/components/NewskieDialog.tsx:122 +msgid "New user info dialog" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:95 +#: src/screens/PostThread/components/HeaderDropdown.tsx:100 +#: src/screens/Settings/ThreadPreferences.tsx:73 +#: src/screens/Settings/ThreadPreferences.tsx:76 +msgid "Newest replies first" +msgstr "" + +#: src/lib/interests.ts:67 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 +msgid "News" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:410 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:599 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/ForgotPasswordForm.tsx:150 +#: src/screens/Login/SetNewPasswordForm.tsx:171 +#: src/screens/Login/SetNewPasswordForm.tsx:177 +#: src/screens/Onboarding/StepFinished/index.tsx:330 +#: src/screens/Onboarding/StepFinished/index.tsx:339 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:198 +#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:384 +#: src/screens/StarterPack/Wizard/index.tsx:391 +msgid "Next" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:218 +msgid "Next image" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:33 +msgid "Night" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 +msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:108 +msgid "No app passwords yet" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:177 +msgid "No beta features at the moment." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:681 +msgid "No contacts found" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:659 +msgid "No contacts with the name โ€œ{query}โ€ found" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:161 +msgid "No custom feeds yet" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:410 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:412 +msgid "No DNS Panel" +msgstr "" + +#: src/view/com/composer/drafts/DraftsListDialog.tsx:143 +msgid "No drafts yet" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:134 +msgid "No expiry set" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:122 +msgid "No feeds found. Try searching for something else." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:216 +msgid "No followers yet" +msgstr "" + +#. Empty-state message shown in the GIF picker when a search returns zero results. Placeholder is the userโ€™s search query. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:25 +msgid "No GIFs found for \"{query}\"." +msgstr "" + +#. Empty-state message shown when the trending/featured GIF feed returns no results (rare, usually a transient provider issue). +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:36 +msgid "No GIFs to show right now. Try again in a moment." +msgstr "" + +#: src/features/liveNow/components/LinkPreview.tsx:64 +msgid "No image" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + +#: src/components/LikedByList.tsx:84 +#: src/view/com/post-thread/PostLikedBy.tsx:84 +#: src/view/screens/Profile.tsx:539 +msgid "No likes yet" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:160 +msgid "No lists" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#: src/components/ProfileCard.tsx:523 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/notifications/NotificationFeedItem.tsx:813 +msgid "No longer following {0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 +msgid "No media yet" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:310 +msgid "No messages yet" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 +msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:563 +msgid "No name" +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:125 +msgid "No notifications yet!" +msgstr "" + +#: src/screens/Messages/Settings.tsx:104 +msgctxt "allow group chat invites from" +msgid "No one" +msgstr "" + +#: src/screens/Messages/Settings.tsx:86 +msgctxt "allow messages from" +msgid "No one" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:130 +#: src/screens/Settings/ActivityPrivacySettings.tsx:135 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 +msgctxt "enable for" +msgid "No one" +msgstr "" + +#: src/components/WhoCanReply.tsx:303 +msgid "No one but the author can quote this post." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "No one can send messages" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + +#: src/screens/Notifications/ActivityList.tsx:43 +msgid "No posts here" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 +msgid "No posts yet" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:114 +msgid "No quotes yet" +msgstr "" + +#. Empty-state message shown in the GIF pickerโ€™s Recents tab before the user has selected any GIFs. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:31 +msgid "No recent GIFs yet. Pick one to see it here." +msgstr "" + +#: src/view/screens/Profile.tsx:470 +msgid "No replies yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:90 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:192 +msgid "No result" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:250 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:469 +#: src/components/ProgressGuide/FollowDialog.tsx:221 +msgid "No results" +msgstr "" + +#. placeholder {0}: interestsDisplayNames[selectedInterest] +#: src/screens/Search/Explore.tsx:817 +msgid "No results for \"{0}\"." +msgstr "" + +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 +msgid "No results found" +msgstr "" + +#: src/view/screens/Feeds.tsx:466 +msgid "No results found for \"{query}\"" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:233 +msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:245 +msgid "No results found for โ€œ<0>{query}โ€." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:239 +msgid "No results found for your query with advanced search filters applied." +msgstr "" + +#: src/screens/Search/Explore.tsx:821 +msgid "No results." +msgstr "" + +#: src/view/screens/Profile.tsx:571 +msgid "No Starter Packs yet" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:100 +#: src/components/dialogs/EmbedConsent.tsx:107 +msgid "No thanks" +msgstr "" + +#: src/lib/translation/index.tsx:308 +msgid "No translation received from your device." +msgstr "" + +#: src/view/screens/Profile.tsx:512 +msgid "No video posts yet" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:471 +msgid "Nobody" +msgstr "" + +#: src/components/LikedByList.tsx:86 +#: src/view/com/post-thread/PostLikedBy.tsx:86 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:116 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:92 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:107 +msgid "Nobody was found. Try searching for someone else." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:80 +msgid "Non-consensual intimate imagery" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 +msgid "None of these words" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" + +#: src/screens/FindContactsFlowScreen.tsx:62 +#: src/screens/Settings/FindContactsSettings.tsx:106 +msgid "Not available on this platform." +msgstr "" + +#: src/components/KnownFollowers.tsx:254 +msgid "Not followed by anyone youโ€™re following" +msgstr "" + +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 +msgid "Not Found" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131 +msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:546 +msgid "Note about sharing" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks.tsx:292 +msgid "Nothing saved yet" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:72 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 +#: src/view/screens/Notifications.tsx:134 +msgid "Notification settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:305 +#: src/screens/Messages/Settings.tsx:318 +msgid "Notification sounds" +msgstr "" + +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 +#: src/screens/Messages/Settings.tsx:255 +#: src/screens/Notifications/ActivityList.tsx:31 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 +#: src/screens/Settings/Settings.tsx:198 +#: src/screens/Settings/Settings.tsx:201 +#: src/view/screens/Notifications.tsx:128 +#: src/view/shell/bottom-bar/BottomBar.tsx:279 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 +msgid "Notifications" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:135 +msgid "now" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 +msgid "Nudity" +msgstr "" + +#: src/components/contacts/phone-number.ts:43 +msgid "Number should be a mobile number" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:14 +#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:34 +msgid "Off" +msgstr "" + +#. Title of the error screen shown when the GIF picker crashes unexpectedly. +#: src/components/dialogs/LanguageSelectDialog.tsx:347 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:22 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "" + +#. Confirm button text. +#: src/components/contacts/screens/GetContacts.tsx:317 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Settings/AppIconSettings/index.tsx:46 +#: src/screens/Settings/AppIconSettings/index.tsx:232 +msgid "OK" +msgstr "" + +#: src/components/BotAccountAlert.tsx:52 +#: src/components/BotAccountAlert.tsx:57 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 +#: src/screens/Login/PasswordUpdatedForm.tsx:35 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +msgid "Okay" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:85 +#: src/screens/PostThread/components/HeaderDropdown.tsx:90 +#: src/screens/Settings/ThreadPreferences.tsx:65 +#: src/screens/Settings/ThreadPreferences.tsx:68 +msgid "Oldest replies first" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:162 +msgid "On" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:86 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/screens/Settings/Settings.tsx:405 +msgid "Onboarding reset" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:939 +msgid "One or more GIFs is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:936 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "One or more of your selected files are not supported." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:446 +msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." +msgstr "" + +#: src/view/com/composer/Composer.tsx:742 +msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" +msgstr "" + +#: src/view/com/composer/Composer.tsx:946 +msgid "One or more videos is missing alt text." +msgstr "" + +#. placeholder {0}: settings.map((rule, i) => ( )) +#: src/components/WhoCanReply.tsx:283 +msgid "Only {0} can reply." +msgstr "" + +#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept +#. placeholder {0}: result.accepted.length +#. placeholder {1}: next.length +#. placeholder {2}: next.length +#: src/view/com/composer/Composer.tsx:235 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can reject join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:155 +msgid "Only followers can join this group chat." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:121 +#: src/screens/Settings/ActivityPrivacySettings.tsx:126 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" + +#: src/lib/media/picker.shared.ts:34 +msgid "Only image files are supported" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:218 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:306 +msgid "Only people the chat owner follows can join" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 +msgid "Only posts with media" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:24 +msgid "Only posts with videos" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:24 +msgid "Only replies" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "" + +#: src/components/Lists.tsx:99 +msgid "Oops, something went wrong!" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +msgid "Oops, this profile doesn't exist. Try scanning another one." +msgstr "" + +#: src/components/Lists.tsx:184 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 +#: src/screens/Settings/AppPasswords.tsx:59 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:108 +#: src/view/screens/Profile.tsx:133 +msgid "Oops!" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:66 +msgid "Open advanced search options" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:308 +msgid "Open avatar creator" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:201 +msgid "Open camera" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Open chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 +msgid "Open chat member options for {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:490 +#: src/screens/Messages/components/ChatListItem.tsx:494 +msgid "Open conversation options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:69 +msgid "Open draft" +msgstr "" + +#: src/components/Layout/Header/index.tsx:168 +msgid "Open drawer menu" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:213 +#: src/view/com/composer/Composer.tsx:2250 +msgid "Open emoji picker" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 +msgid "Open feed info screen" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 +msgid "Open feed options menu" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:28 +msgid "Open full emoji list" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:75 +msgid "Open Germ DM" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:446 +msgid "Open group chat" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 +msgid "Open group chat settings" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:147 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:40 +msgid "Open message options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:470 +msgid "Open moderation debug page" +msgstr "" + +#: src/screens/Moderation/index.tsx:280 +msgid "Open muted words and tags settings" +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:128 +msgid "Open pack" +msgstr "" + +#: src/components/PostControls/PostMenu/index.tsx:67 +msgid "Open post options menu" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 +msgid "Open profile" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "" + +#: src/components/BotAccountAlert.tsx:62 +#: src/components/BotAccountAlert.tsx:71 +msgid "Open settings" +msgstr "" + +#: src/components/PostControls/ShareMenu/index.tsx:98 +msgid "Open share menu" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +msgid "Open starter pack menu" +msgstr "" + +#: src/screens/Settings/Settings.tsx:463 +#: src/screens/Settings/Settings.tsx:477 +msgid "Open storybook page" +msgstr "" + +#: src/screens/Settings/Settings.tsx:456 +msgid "Open system log" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Open this group chat" +msgstr "" + +#. placeholder {0}: feedInfo.displayName +#: src/view/shell/desktop/Feeds.tsx:185 +msgid "Opens {0} feed" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:645 +msgid "Opens a dialog to change the hosting provider you sign in to" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 +msgid "Opens a dialog to choose who can interact with this post" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:40 +msgid "Opens a list of color themes for the QR card" +msgstr "" + +#: src/screens/Log.tsx:74 +msgid "Opens additional details for a debug entry" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:45 +msgid "Opens alt text dialog" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 +msgid "Opens camera on device" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:44 +msgid "Opens captions and alt text dialog" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:134 +msgid "Opens change handle dialog" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:64 +msgid "Opens composer" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:202 +msgid "Opens device camera" +msgstr "" + +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:517 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:305 +#: src/view/com/auth/SplashScreen.tsx:91 +#: src/view/com/auth/SplashScreen.web.tsx:112 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:291 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 +msgid "Opens flow to sign in to your existing Bluesky account" +msgstr "" + +#: src/components/images/Gallery/index.tsx:458 +msgid "Opens full image" +msgstr "" + +#: src/screens/Settings/Settings.tsx:257 +msgid "Opens helpdesk in browser" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:224 +msgid "Opens image picker" +msgstr "" + +#. placeholder {0}: link?.href ?? '' +#: src/components/dialogs/LinkWarning.tsx:113 +msgid "Opens link {0}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:603 +msgid "Opens live status dialog" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:200 +msgid "Opens post language settings" +msgstr "" + +#: src/components/dms/SystemMessageItem.tsx:61 +msgid "Opens profile" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "" + +#. Accessibility hint announced after the GIF picker button label, describing what activating it will do. +#: src/view/com/composer/photos/SelectGifBtn.tsx:45 +msgid "Opens the GIF picker dialog" +msgstr "" + +#: src/view/shell/Drawer.tsx:123 +msgid "Opens the invite friends sheet to share your profile" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:148 +msgid "Opens the post composer" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:70 +msgid "Opens this draft in the composer" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:621 +msgid "Opens this profile" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:308 +msgid "Options:" +msgstr "" + +#: src/screens/Deactivated.tsx:192 +msgid "Or, continue with another account." +msgstr "" + +#: src/screens/Deactivated.tsx:179 +msgid "Or, sign in to one of your other accounts." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:55 +msgid "OTA status: ..." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:51 +msgid "OTA status: Available!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:53 +msgid "OTA status: Error fetching update" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:57 +msgid "OTA status: None available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242 +#: src/view/com/composer/labels/LabelsBtn.tsx:181 +msgid "Other" +msgstr "" + +#: src/components/AccountList.tsx:93 +msgid "Other account" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:181 +msgid "Other child safety issue" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:208 +msgid "Other dangerous content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:119 +msgid "Other harassing or hateful content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 +msgid "Other misleading content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:231 +msgid "Other network rule-breaking" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:92 +msgid "Other sexual violence content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:154 +msgid "Other violent content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:51 +msgid "Our blog post" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:86 +#: src/components/dms/AfterReportConversationDialog.tsx:213 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 +msgid "Our moderation team has received your report." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:54 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:384 +msgid "Owner" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" + +#: src/components/Lists.tsx:204 +#: src/components/Lists.tsx:219 +#: src/view/screens/NotFound.tsx:34 +#: src/view/screens/NotFound.tsx:41 +msgid "Page not found" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:85 +msgid "Party GIFs" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:365 +#: src/screens/Login/LoginForm.tsx:372 +#: src/screens/Settings/AccountSettings.tsx:124 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:284 +#: src/screens/Signup/StepInfo/index.tsx:258 +msgid "Password" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:70 +msgid "Password changed" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:125 +msgid "Password must be at least 8 characters long." +msgstr "" + +#: src/screens/Login/index.tsx:206 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:22 +msgid "Password updated!" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 +msgid "Pause" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32 +msgid "Pause GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 +msgid "Pause video" +msgstr "" + +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Search/SearchResults.tsx:107 +#: src/screens/StarterPack/StarterPackScreen.tsx:195 +msgid "People" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 +msgid "People {ownerName} follows can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 +msgid "People {ownerName} follows can request to join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:240 +msgid "People followed by @{0}" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:233 +msgid "People following @{0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:97 +msgctxt "allow group chat invites from" +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:82 +msgctxt "allow messages from" +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 +msgid "People I follow can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 +msgid "People I follow can request to join" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 +msgid "People you follow" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:524 +msgid "People you mention" +msgstr "" + +#: src/lib/media/save-image.ts:59 +msgid "Permission to access your photo library was denied. Please enable it in your system settings." +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Person toggle" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:60 +msgid "Personalize the message" +msgstr "" + +#: src/lib/interests.ts:68 +msgid "Pets" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:192 +#: src/components/contacts/screens/PhoneInput.tsx:204 +msgid "Phone number" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:304 +msgid "Phone number verified" +msgstr "" + +#: src/lib/interests.ts:69 +msgid "Photography" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:39 +msgid "Pick a color theme" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:165 +msgid "Pictures meant for adults." +msgstr "" + +#: src/components/FeedCard.tsx:364 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 +#: src/screens/SavedFeeds.tsx:559 +msgid "Pin feed" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:151 +#: src/screens/ProfileList/components/Header.tsx:158 +msgid "Pin to home" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 +msgid "Pin to Home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:116 +msgid "Pinned" +msgstr "" + +#. placeholder {0}: info.displayName +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 +msgid "Pinned {0} to Home" +msgstr "" + +#: src/screens/SavedFeeds.tsx:146 +#: src/screens/SavedFeeds.tsx:337 +msgid "Pinned Feeds" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:77 +msgid "Pinned to your feeds" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 +msgid "Play" +msgstr "" + +#. placeholder {0}: link.title +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 +msgid "Play {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32 +msgid "Play GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 +msgid "Play video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 +msgid "Play Video" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:33 +msgid "Plays or pauses the GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169 +msgid "Plays or pauses the video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:109 +msgid "Plays the GIF" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 +msgid "Plays the video" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:111 +msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:189 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:313 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:305 +#: src/screens/Signup/StepInfo/index.tsx:149 +msgid "Please choose your password." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:286 +msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." +msgstr "" + +#: src/screens/Signup/state.ts:325 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/view/com/composer/state/video.ts:471 +msgid "Please confirm your email address to upload videos." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:102 +#: src/screens/Signup/StepInfo/index.tsx:139 +msgid "Please double-check that you have entered your email address correctly." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:56 +msgid "Please enter a password." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:120 +msgid "Please enter a password. It must be at least 8 characters long." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:134 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146 +msgid "Please enter a valid code." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 +msgid "Please enter a valid email address." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:89 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:145 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:66 +msgid "Please enter the code you received and the new password you would like to use." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +msgid "Please enter the security code we sent to your previous email address." +msgstr "" + +#: src/screens/Signup/state.ts:289 +#: src/screens/Signup/StepInfo/index.tsx:122 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:115 +msgid "Please enter your invite code." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 +msgid "Please enter your new email address." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:196 +msgid "Please enter your password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:190 +msgid "Please enter your username" +msgstr "" + +#. placeholder {0}: labeler ? sanitizeHandle(labeler.creator.handle, '@') : label.src +#: src/components/moderation/AppealForm.tsx:120 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:124 +msgid "Please explain why you think your Go Live access was incorrectly disabled." +msgstr "" + +#: src/components/FocusScope/index.tsx:91 +#: src/components/FocusScope/index.tsx:115 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:102 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:304 +msgid "Please select a language" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:32 +msgid "Please select a moderation service" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:29 +msgid "Please select a reason for this report" +msgstr "" + +#. placeholder {0}: account.handle +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:54 +msgid "Please sign in as @{0}" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:107 +msgid "Please use the native app to import your contacts." +msgstr "" + +#: src/screens/FindContactsFlowScreen.tsx:63 +msgid "Please use the native app to sync your contacts." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 +msgid "Please verify your email" +msgstr "" + +#: src/lib/hooks/useCreateSupportLink.ts:29 +msgid "Please write your message below:" +msgstr "" + +#: src/lib/interests.ts:70 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +msgid "Porn" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1895 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/screens/PostThread/index.tsx:560 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 +msgid "Post a photo" +msgstr "" + +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 +msgid "Post a video" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1893 +msgctxt "action" +msgid "Post All" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1554 +msgid "Post anyway" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 +msgid "Post by @{0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 +msgctxt "toast" +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:189 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:116 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109 +#: src/screens/VideoFeed/index.tsx:551 +msgid "Post has been deleted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:127 +#: src/lib/moderation/useModerationCauseDescription.ts:107 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:130 +#: src/lib/moderation/useModerationCauseDescription.ts:116 +msgid "Post Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:685 +msgid "Post interaction settings" +msgstr "" + +#: src/Navigation.tsx:200 +#: src/screens/ModerationInteractionSettings/index.tsx:35 +msgid "Post Interaction Settings" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "" + +#. Accessibility label for button that opens dialog to choose post language settings +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:195 +msgid "Post language selection" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 +msgid "Post link" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:33 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgctxt "toast" +msgid "Post pinned" +msgstr "" + +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgctxt "toast" +msgid "Post unpinned" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 +#: src/screens/StarterPack/StarterPackScreen.tsx:197 +#: src/view/screens/Profile.tsx:236 +msgid "Posts" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:123 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:76 +msgid "Posts hidden" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:89 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:82 +msgid "Potentially misleading link warning" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:292 +msgid "Preferred language" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "Press to attempt reconnection" +msgstr "" + +#: src/components/Error.tsx:56 +#: src/components/Lists.tsx:104 +#: src/screens/Messages/components/MessageListError.tsx:23 +#: src/screens/Messages/JoinRequests.tsx:355 +#: src/screens/Signup/BackNextButtons.tsx:48 +msgid "Press to retry" +msgstr "" + +#: src/components/KnownFollowers.tsx:125 +msgid "Press to view followers of this account that you also follow" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 +msgid "Preview" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:197 +msgid "Previous image" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:141 +#: src/screens/Settings/LanguageSettings.tsx:157 +msgid "Primary language" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:118 +#: src/view/shell/desktop/RightNav.tsx:119 +msgid "Privacy" +msgstr "" + +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 +msgid "Privacy and security" +msgstr "" + +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 +#: src/screens/Settings/ActivityPrivacySettings.tsx:41 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 +msgid "Privacy and Security" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 +#: src/view/screens/Storybook/Admonitions.tsx:94 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 +#: src/Navigation.tsx:338 +#: src/screens/Settings/AboutSettings.tsx:102 +#: src/screens/Settings/AboutSettings.tsx:105 +#: src/view/screens/PrivacyPolicy.tsx:25 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 +msgid "Privacy Policy" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:173 +msgid "Privacy violation of a minor" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2691 +msgid "Processing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2693 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:62 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:956 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:322 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 +msgid "Profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:164 +msgid "Profile banner placeholder" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 +#: src/lib/strings/errors.ts:39 +msgid "Profile not found" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:186 +msgctxt "toast" +msgid "Profile updated" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:223 +msgid "Promoting or selling prohibited items or services" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:160 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:161 +msgid "Psst! You can edit who can interact with this post." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:77 +msgid "Public, sharable lists of users to mute or block in bulk." +msgstr "" + +#. Accessibility label for button to publish a single post +#: src/view/com/composer/Composer.tsx:1879 +msgid "Publish post" +msgstr "" + +#. Accessibility label for button to publish multiple posts in a thread +#: src/view/com/composer/Composer.tsx:1874 +msgid "Publish posts" +msgstr "" + +#. Accessibility label for button to publish multiple replies in a thread +#: src/view/com/composer/Composer.tsx:1863 +msgid "Publish replies" +msgstr "" + +#. Accessibility label for button to publish a single reply +#: src/view/com/composer/Composer.tsx:1868 +msgid "Publish reply" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:31 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:22 +msgid "Push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:26 +msgid "Push, people you follow" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:143 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:121 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:101 +msgid "QR code saved to your camera roll!" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:176 +#: src/components/PostControls/RepostButton.tsx:199 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 +#: src/view/com/composer/drafts/DraftItem.tsx:137 +msgid "Quote post" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 +msgid "Quote post was re-attached" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +msgid "Quote post was successfully detached" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:175 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 +msgid "Quote posts disabled" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:186 +#: src/screens/Post/PostQuotes.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 +msgid "Quotes" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 +msgid "Quotes of this post" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:618 +msgid "Rate limit exceeded โ€“ you've tried to change your handle too many times in a short period. Please wait a minute before trying again." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:109 +msgid "Rate limit exceeded. Please try again later." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 +msgid "Re-attach quote" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 +msgid "Re-enable invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 +msgid "Re-enable link" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.tsx:80 +msgid "React with {emoji}" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:70 +#: src/components/dms/ReactionsDialog.tsx:98 +msgid "Reactions" +msgstr "" + +#: src/screens/Deactivated.tsx:133 +msgid "Reactivate your account" +msgstr "" + +#. placeholder {0}: item.moreReplies +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:93 +msgid "Read {0, plural, one {# more reply} other {# more replies}}" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:276 +msgctxt "english-only-resource" +msgid "Read about how to use advanced search filters" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 +msgid "Read blog post" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1055 +msgid "Read less" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1055 +msgid "Read more" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:72 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:113 +msgid "Read our blog post" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:174 +msgid "Read the Bluesky blog" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:53 +#: src/screens/Signup/StepInfo/Policies.tsx:79 +msgid "Read the Bluesky Privacy Policy" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:46 +#: src/screens/Signup/StepInfo/Policies.tsx:66 +msgid "Read the Bluesky Terms of Service" +msgstr "" + +#: src/components/WelcomeModal.tsx:144 +msgid "Real conversations." +msgstr "" + +#: src/components/WelcomeModal.tsx:142 +msgid "Real people." +msgstr "" + +#: src/screens/Takendown.tsx:158 +#: src/screens/Takendown.tsx:166 +msgid "Reason for appeal" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +msgid "Receive push notifications" +msgstr "" + +#. Accessibility label for the icon-only pill that shows previously selected GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:35 +msgid "Recent GIFs" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:52 +msgid "Recent searches" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:249 +msgid "Recently used" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Reconnect" +msgstr "" + +#. Reject a chat request, this opens a menu with options +#: src/screens/Messages/components/RequestButtons.tsx:136 +msgid "Reject" +msgstr "" + +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 +msgid "Reject chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:424 +#: src/screens/Messages/Inbox.tsx:206 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:193 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 +#: src/components/dialogs/MutedWords.tsx:457 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:386 +#: src/components/FeedCard.tsx:376 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:106 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:113 +#: src/screens/Bookmarks.tsx:258 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:178 +#: src/screens/Moderation/index.tsx:477 +#: src/screens/Settings/Settings.tsx:683 +#: src/view/com/posts/PostFeedErrorMessage.tsx:221 +msgid "Remove" +msgstr "" + +#: src/components/dms/ChatProfileTabs.tsx:153 +msgid "Remove {displayName} from group chat" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:62 +msgid "Remove {displayName} from starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 +msgid "Remove {displayName} from this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:176 +msgid "Remove {displayName}?" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:182 +msgid "Remove {q}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 +msgid "Remove account" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 +msgid "Remove all contacts" +msgstr "" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 +msgid "Remove attachment" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 +msgid "Remove Avatar" +msgstr "" + +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 +msgid "Remove Banner" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:286 +msgid "Remove caption file" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:234 +#: src/screens/Messages/components/MessageInputEmbed.tsx:289 +#: src/screens/Messages/components/MessageInputEmbed.tsx:344 +msgid "Remove embed" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:121 +#: src/view/com/posts/FeedShutdownMsg.tsx:125 +#: src/view/com/posts/PostFeedErrorMessage.tsx:177 +msgid "Remove feed" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:218 +msgid "Remove feed?" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:143 +msgid "Remove filter" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 +msgid "Remove from chat" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 +#: src/screens/SavedFeeds.tsx:549 +msgid "Remove from my feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:677 +msgid "Remove from quick access?" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:174 +#: src/screens/List/ListHiddenScreen.tsx:178 +msgid "Remove from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:120 +#: src/screens/Bookmarks.tsx:252 +msgid "Remove from saved posts" +msgstr "" + +#: src/components/FeedCard.tsx:373 +msgid "Remove from your feeds?" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:227 +msgid "Remove image" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:221 +#: src/features/liveNow/components/EditLiveDialog.tsx:228 +msgid "Remove live status" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 +msgid "Remove member" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:613 +msgid "Remove mute word from your list" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:243 +msgid "Remove profile" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:153 +#: src/components/PostControls/RepostButton.tsx:163 +msgid "Remove repost" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:500 +#: src/screens/Settings/FindContactsSettings.tsx:349 +msgid "Remove suggestion" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:219 +msgid "Remove this feed from your saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:473 +msgid "Remove unavailable moderation services" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 +msgid "Remove user from list" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:48 +#: src/components/verification/VerificationsDialog.tsx:250 +#: src/view/com/profile/ProfileMenu.tsx:416 +#: src/view/com/profile/ProfileMenu.tsx:419 +msgid "Remove verification" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:46 +msgid "Remove your verification for this account?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:240 +msgid "Removed by author" +msgstr "" + +#: src/components/Post/Embed/index.tsx:238 +msgid "Removed by you" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:136 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:246 +msgid "Removed from list" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:98 +msgid "Removed from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:88 +#: src/screens/Bookmarks.tsx:211 +msgid "Removed from saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:287 +msgid "Removed from starter pack" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 +#: src/view/com/posts/FeedShutdownMsg.tsx:45 +msgid "Removed from your feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:187 +msgid "Removed unavailable services" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:32 +msgid "Removed verification" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:541 +msgid "Renew" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:547 +msgid "Renew duration" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:531 +msgid "Renew mute word" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:134 +#: src/view/com/posts/FeedShutdownMsg.tsx:138 +msgid "Replace with Discover" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:39 +msgctxt "description" +msgid "Replied to <0><1/>" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:28 +msgctxt "description" +msgid "Replied to a blocked post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:30 +msgctxt "description" +msgid "Replied to a post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:36 +msgctxt "description" +msgid "Replied to you" +msgstr "" + +#: src/components/dms/MessageItem.tsx:926 +msgid "Replied-to message from {senderName}, tap to scroll to it" +msgstr "" + +#: src/components/dms/MessageItem.tsx:924 +msgid "Replied-to message was sent before you joined" +msgstr "" + +#: src/components/dms/MessageItem.tsx:927 +msgid "Replied-to message, tap to scroll to it" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 +#: src/lib/hooks/useNotificationHandler.ts:172 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 +msgid "Replies" +msgstr "" + +#: src/components/WhoCanReply.tsx:87 +msgid "Replies disabled" +msgstr "" + +#: src/components/WhoCanReply.tsx:281 +msgid "Replies to this post are disabled." +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:182 +#: src/components/dms/MessageContextMenu.tsx:185 +msgid "Reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1891 +msgctxt "action" +msgid "Reply" +msgstr "" + +#. Accessibility label for the reply button, verb form followed by number of replies and noun form +#. placeholder {0}: post.replyCount || 0 +#: src/components/PostControls/index.tsx:240 +msgid "Reply ({0, plural, one {# reply} other {# replies}})" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:136 +#: src/lib/moderation/useModerationCauseDescription.ts:126 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:135 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "Reply Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +msgid "Reply settings are chosen by the author of the thread" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:71 +msgid "Reply sorting" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 +msgctxt "toast" +msgid "Reply visibility updated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +msgid "Reply was successfully hidden" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:220 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:583 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:483 +#: src/view/com/profile/ProfileMenu.tsx:486 +msgid "Report account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:295 +#: src/components/dms/ConvoMenu.tsx:299 +#: src/screens/Messages/components/RequestButtons.tsx:161 +#: src/screens/Messages/components/RequestButtons.tsx:164 +msgid "Report conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 +msgid "Report dialog" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 +msgid "Report feed" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:210 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:213 +msgid "Report list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:217 +msgid "Report message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 +msgid "Report post" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:47 +msgid "Report sent" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:657 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 +msgid "Report starter pack" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:83 +#: src/components/dms/AfterReportConversationDialog.tsx:210 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 +msgid "Report submitted" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:51 +#: src/components/moderation/ReportDialog/copy.ts:65 +msgid "Report this conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:37 +msgid "Report this feed" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:582 +msgid "Report this group chat" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:31 +msgid "Report this list" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:19 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 +msgid "Report this livestream" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:57 +msgid "Report this message" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:25 +msgid "Report this post" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:43 +msgid "Report this starter pack" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:13 +msgid "Report this user" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:154 +#: src/components/PostControls/RepostButton.tsx:165 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 +msgctxt "action" +msgid "Repost" +msgstr "" + +#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form +#. placeholder {0}: repostCount || 0 +#: src/components/PostControls/RepostButton.tsx:78 +msgid "Repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:146 +#: src/components/PostControls/RepostButton.web.tsx:43 +#: src/components/PostControls/RepostButton.web.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:577 +msgid "Repost or quote post" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:31 +msgid "Reposted By" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:78 +#: src/view/com/posts/PostFeedReason.tsx:97 +msgid "Reposted by {reposter}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:78 +#: src/view/com/posts/PostFeedReason.tsx:95 +msgid "Reposted by you" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:165 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 +msgid "Reposts of this post" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:207 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 +msgid "Reposts of your reposts" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:463 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:226 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:232 +msgid "Request code" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request rejected." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:295 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + +#. Incoming message requests +#: src/screens/Messages/components/InboxRequests.tsx:25 +msgid "Requests" +msgstr "" + +#: src/Navigation.tsx:519 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:59 +#: src/screens/Settings/AccessibilitySettings.tsx:64 +msgid "Require alt text before posting" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 +msgid "Require an email code to sign in to your account." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:207 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:310 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:115 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:117 +msgid "Rescind request" +msgstr "" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 +msgid "Resend" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:365 +#: src/components/contacts/screens/VerifyNumber.tsx:382 +msgid "Resend code" +msgstr "" + +#. placeholder {0}: String( clamp(Math.round(timeUntilCanResend / 1000), 0, 30), ).padStart(2, '0') +#: src/components/contacts/screens/VerifyNumber.tsx:372 +msgid "Resend code in <0>00:{0}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:174 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:177 +msgid "Resend email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:124 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:117 +msgid "Resend Verification Email" +msgstr "" + +#: src/screens/Settings/Settings.tsx:499 +#: src/screens/Settings/Settings.tsx:501 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:108 +msgid "Reset code" +msgstr "" + +#: src/screens/Settings/Settings.tsx:484 +#: src/screens/Settings/Settings.tsx:486 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:77 +msgid "Reset password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:422 +msgid "Reset your password by sending a code to your email" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 +msgid "Resync contacts" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:532 +msgid "Retries signing in" +msgstr "" + +#: src/view/com/util/error/ErrorMessage.tsx:56 +#: src/view/com/util/error/ErrorScreen.tsx:93 +msgid "Retries the last action, which errored out" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:28 +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 +#: src/components/contacts/screens/VerifyNumber.tsx:350 +#: src/components/contacts/screens/VerifyNumber.tsx:355 +#: src/components/Error.tsx:60 +#: src/components/Lists.tsx:115 +#: src/components/moderation/ReportDialog/index.tsx:297 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 +#: src/screens/Login/LoginForm.tsx:531 +#: src/screens/Login/LoginForm.tsx:537 +#: src/screens/Messages/ChatList.tsx:429 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/JoinRequests.tsx:361 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:95 +#: src/screens/PostThread/components/ThreadError.tsx:81 +#: src/screens/PostThread/components/ThreadError.tsx:87 +#: src/screens/Signup/BackNextButtons.tsx:54 +#: src/view/com/util/error/ErrorMessage.tsx:55 +#: src/view/com/util/error/ErrorScreen.tsx:91 +#: src/view/screens/Storybook/Admonitions.tsx:64 +msgid "Retry" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:294 +#: src/view/screens/Storybook/Admonitions.tsx:61 +msgid "Retry loading report options" +msgstr "" + +#: src/components/Error.tsx:68 +#: src/screens/List/ListHiddenScreen.tsx:223 +#: src/screens/StarterPack/StarterPackScreen.tsx:801 +msgid "Return to previous page" +msgstr "" + +#: src/view/screens/NotFound.tsx:54 +msgid "Returns to home page" +msgstr "" + +#: src/screens/ProfileList/components/ErrorScreen.tsx:36 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:577 +#: src/screens/VideoFeed/index.tsx:1240 +#: src/view/screens/NotFound.tsx:54 +msgid "Returns to previous page" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:316 +msgid "Returns to the previous step" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:613 +msgid "Reveal password" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:75 +msgid "Sad GIFs" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:309 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 +#: src/components/StarterPack/QrCodeDialog.tsx:210 +#: src/features/liveNow/components/EditLiveDialog.tsx:197 +#: src/features/liveNow/components/EditLiveDialog.tsx:204 +#: src/screens/Messages/ConversationSettings/prompts.tsx:82 +#: src/screens/Profile/Header/EditProfileDialog.tsx:233 +#: src/screens/Profile/Header/EditProfileDialog.tsx:247 +#: src/screens/SavedFeeds.tsx:124 +#: src/screens/SavedFeeds.tsx:315 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:269 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/GifAltText.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:63 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:76 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:173 +msgid "Save" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:193 +msgid "Save birthdate" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:198 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:207 +#: src/screens/SavedFeeds.tsx:120 +#: src/screens/SavedFeeds.tsx:124 +#: src/screens/SavedFeeds.tsx:311 +#: src/screens/SavedFeeds.tsx:315 +#: src/view/com/composer/Composer.tsx:1535 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save changes" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1507 +#: src/view/com/composer/drafts/DraftsButton.tsx:93 +msgid "Save changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1535 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save draft" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1509 +#: src/view/com/composer/drafts/DraftsButton.tsx:95 +msgid "Save draft?" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/MediaPreview.tsx:231 +#: src/components/Post/Embed/ImageContextMenu.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:144 +#: src/components/StarterPack/ShareDialog.tsx:150 +msgid "Save image" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:255 +msgid "Save new handle" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:202 +msgid "Save QR code" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:649 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:655 +msgid "Save these options for next time" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 +msgid "Save to my feeds" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 +msgctxt "link to bookmarks screen" +msgid "Saved" +msgstr "" + +#: src/screens/SavedFeeds.tsx:198 +#: src/screens/SavedFeeds.tsx:375 +msgid "Saved Feeds" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:579 +#: src/screens/Bookmarks.tsx:59 +msgid "Saved Posts" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 +#: src/screens/ProfileList/components/Header.tsx:88 +msgid "Saved to your feeds" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +#: src/view/com/notifications/NotificationFeedItem.tsx:895 +#: src/view/com/notifications/NotificationFeedItem.tsx:920 +msgid "Say hello!" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 +msgid "Say hi to someone" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:43 +msgid "Scam" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:318 +msgid "Scan QR code" +msgstr "" + +#: src/lib/interests.ts:71 +msgid "Science" +msgstr "" + +#: src/components/InterestTabs.tsx:258 +msgid "Scroll left" +msgstr "" + +#: src/components/InterestTabs.tsx:292 +msgid "Scroll right" +msgstr "" + +#: src/components/dms/MessageItem.tsx:820 +msgid "Scroll to the message this is replying to" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:132 +msgid "Scroll to top" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:667 +#: src/components/forms/SearchInput.tsx:51 +#: src/components/forms/SearchInput.tsx:53 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 +#: src/screens/Search/Shell.tsx:753 +#: src/view/shell/bottom-bar/BottomBar.tsx:216 +msgid "Search" +msgstr "" + +#. placeholder {0}: profile.handle +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:259 +#: src/screens/Profile/ProfileSearch.tsx:37 +msgid "Search @{0}'s posts" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:708 +msgid "Search by name or interest" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:356 +msgid "Search contacts" +msgstr "" + +#: src/view/screens/Feeds.tsx:437 +msgid "Search feeds" +msgstr "" + +#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected. +#: src/components/ProgressGuide/FollowDialog.tsx:505 +msgid "Search for \"{interestsDisplayName}\"" +msgstr "" + +#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected. +#: src/components/ProgressGuide/FollowDialog.tsx:500 +msgid "Search for \"{interestsDisplayName}\" (active)" +msgstr "" + +#: src/screens/Search/components/AutocompleteResults.tsx:49 +msgid "Search for โ€œ{searchText}โ€" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:136 +msgid "Search for {q}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:541 +msgid "Search for feeds that you want to suggest to others." +msgstr "" + +#: src/screens/Search/Explore.tsx:373 +msgid "Search for more accounts" +msgstr "" + +#: src/screens/Search/Explore.tsx:452 +msgid "Search for more feeds" +msgstr "" + +#: src/components/dms/components/UserSearchInput.tsx:43 +msgid "Search for people" +msgstr "" + +#. Accessibility label for the GIF search input inside the GIF picker dialog. +#: src/features/gifPicker/components/GifPickerHeader.tsx:40 +msgid "Search GIFs" +msgstr "" + +#: src/screens/Hashtag.tsx:228 +#: src/screens/Search/SearchResults.tsx:410 +msgid "Search is currently unavailable when logged out" +msgstr "" + +#. Placeholder text inside the GIF search input. KLIPY is the third-party GIF provider; keep the brand name as-is. +#: src/features/gifPicker/components/GifPickerHeader.tsx:45 +msgid "Search KLIPY" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:232 +#: src/components/dialogs/LanguageSelectDialog.tsx:233 +msgid "Search languages" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:36 +msgid "Search my posts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:301 +#: src/view/com/profile/ProfileMenu.tsx:304 +msgid "Search posts" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:687 +#: src/components/dms/components/UserSearchInput.tsx:63 +#: src/components/ProgressGuide/FollowDialog.tsx:727 +msgid "Search profiles" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 +msgid "Search query" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:38 +msgid "Search..." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:688 +#: src/components/dms/components/UserSearchInput.tsx:64 +#: src/components/ProgressGuide/FollowDialog.tsx:728 +msgid "Searches for profiles" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 +msgid "Security step required" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:114 +msgid "See {0} posts" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:131 +msgid "See {0} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:122 +msgid "See {tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +msgid "See {tag} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:124 +msgid "See #{tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:142 +msgid "See #{tag} posts by user" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:179 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:475 +msgid "See more suggested profiles" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 +msgid "See suggested accounts" +msgstr "" + +#: src/screens/SavedFeeds.tsx:232 +#: src/screens/SavedFeeds.tsx:403 +msgid "See this guide" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:196 +msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" +msgstr "" + +#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. +#: src/components/InterestTabs.tsx:340 +msgid "Select \"{interestsDisplayName}\" category" +msgstr "" + +#. Accessibility label for a username suggestion in the account creation flow +#. Accessibility label for a username suggestion in the account creation flow +#. placeholder {0}: item.handle +#. placeholder {0}: suggestion.handle +#: src/screens/Signup/StepHandle/HandleSuggestions/index.native.tsx:40 +#: src/screens/Signup/StepHandle/HandleSuggestions/index.tsx:72 +msgid "Select {0}" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:110 +msgid "Select {langName}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:380 +msgid "Select a reason" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:79 +msgid "Select account" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:63 +msgid "Select an app language" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "" + +#: src/components/Select/index.tsx:199 +msgid "Select an option" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:118 +msgid "Select app language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +msgid "Select caption file (.vtt)" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 +msgid "Select chat \"{name}\"" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:195 +#: src/screens/Settings/LanguageSettings.tsx:233 +msgid "Select content languages" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:186 +msgid "Select duration" +msgstr "" + +#. placeholder {0}: labels[filter.field].title +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:102 +msgid "Select filter type (currently: {0})" +msgstr "" + +#: src/screens/Login/index.tsx:166 +msgid "Select from an existing account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:553 +msgid "Select from your lists" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:555 +msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}" +msgstr "" + +#. Accessibility label for the button in the post composer that opens the GIF picker dialog. +#: src/view/com/composer/photos/SelectGifBtn.tsx:38 +msgid "Select GIF" +msgstr "" + +#. Accessibility label for an individual GIF tile in the picker grid. The placeholder is the GIFโ€™s title from the provider. +#. placeholder {0}: gif.title +#: src/features/gifPicker/components/GifPickerItem.tsx:31 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:830 +msgid "Select group chat members" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:151 +msgid "Select how long to mute this word for." +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:71 +#: src/components/LanguageSelect.tsx:41 +#: src/components/LanguageSelect.tsx:42 +msgid "Select language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:273 +msgid "Select language..." +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:267 +msgid "Select languages" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:430 +msgid "Select moderation service" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:91 +msgid "Select post language" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:152 +msgid "Select primary language" +msgstr "" + +#: src/components/InternationalPhoneCodeSelect.tsx:68 +msgid "Select telephone code" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "" + +#: src/components/Post/Translated/index.tsx:446 +msgid "Select the source language" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:77 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:137 +msgid "Select up to 3 languages used in this post" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:251 +msgid "Select what content this mute word should apply to." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:111 +msgid "Select which language to use for the app's user interface." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:181 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:300 +msgid "Select your date of birth" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:69 +#: src/screens/Settings/InterestsSettings.tsx:178 +msgid "Select your interests from the options below" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:145 +msgid "Select your preferred language for translations in your feed." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:426 +msgid "Selecting multiple media types is not supported." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:188 +msgid "Self-harm or dangerous behaviors" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:255 +#: src/components/contacts/screens/PhoneInput.tsx:260 +msgid "Send code" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:199 +msgid "Send email" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:60 +#: src/components/SendErrorReportDialog.tsx:64 +#: src/screens/Settings/AboutSettings.tsx:125 +#: src/screens/Settings/AboutSettings.tsx:128 +msgid "Send error report" +msgstr "" + +#: src/view/shell/Drawer.tsx:420 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:324 +msgid "Send message" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:146 +msgid "Send post to {name}" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 +msgid "Send post to..." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:818 +msgid "Send report to {title}" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:63 +msgid "Send the message from your phone" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124 +msgid "Send verification email" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" + +#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) +#: src/components/dms/MessageContextMenu.tsx:175 +msgid "Sent at {0}" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:283 +msgid "Sent to our phone number verification provider Plivo" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:174 +#: src/screens/Login/components/HostingProviderDialog.tsx:200 +msgid "Server address" +msgstr "" + +#. placeholder {0}: icon.name +#: src/screens/Settings/AppIconSettings/index.tsx:176 +msgid "Set app icon to {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:99 +msgid "Set new password" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:481 +msgid "Set precisely which groups of people can reply to your post" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:48 +msgid "Set up your account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:431 +msgid "Set who can reply to your post" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:286 +msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:352 +msgid "set your hosting provider manually" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:486 +msgid "Set your hosting provider manually" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:104 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:215 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 +msgid "Settings" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:220 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:293 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:233 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Messages/Settings.tsx:280 +#: src/screens/Settings/NotificationSettings/index.tsx:276 +msgid "Settings for notifications for new message requests" +msgstr "" + +#: src/screens/Messages/Settings.tsx:259 +#: src/screens/Settings/NotificationSettings/index.tsx:259 +msgid "Settings for notifications for new messages" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:246 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:198 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:209 +msgid "Settings for repost notifications" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:103 +msgctxt "toast" +msgid "Settings saved" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:169 +msgid "Sexual activity or erotic nudity." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "" + +#: src/components/Link.tsx:428 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/screens/Hashtag.tsx:130 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/StarterPack/StarterPackScreen.tsx:447 +#: src/screens/Topic.tsx:89 +msgid "Share" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:62 +msgid "Share age range" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:549 +msgid "Share anyway" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 +msgid "Share author DID" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:158 +#: src/screens/Settings/BetaFeaturesSettings.tsx:165 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 +msgid "Share feedback" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 +msgid "Share image" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:120 +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/features/inviteFriends/components/ActionButtons.tsx:28 +msgid "Share link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:74 +msgid "Share link dialog" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 +msgid "Share post at:// URI" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:141 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:156 +msgid "Share Profile" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:129 +#: src/components/StarterPack/ShareDialog.tsx:139 +msgid "Share QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 +msgid "Share this feed" +msgstr "" + +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 +msgid "Share this search" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:440 +msgid "Share this starter pack" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:86 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 +#: src/screens/StarterPack/StarterPackScreen.tsx:646 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:292 +msgid "Share via..." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:232 +msgid "Share your contacts to find friends" +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 +msgid "Share your thoughtsโ€ฆ" +msgstr "" + +#: src/Navigation.tsx:323 +msgid "Shared Preferences Tester" +msgstr "" + +#. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 +msgid "Sharing your age range reveals only the range associated with your Apple Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." +msgstr "" + +#. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 +msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:217 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:140 +msgid "Show" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:48 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 +#: src/features/liveNow/components/LiveStatusDialog.tsx:318 +#: src/features/liveNow/components/LiveStatusDialog.tsx:322 +#: src/screens/List/ListHiddenScreen.tsx:194 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 +msgid "Show anyway" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 +msgid "Show automation label" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Show badge" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:64 +msgid "Show badge and filter from feeds" +msgstr "" + +#: src/components/dialogs/Embed.tsx:125 +msgid "Show customization options" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:57 +msgid "Show group chat updates" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 +msgid "Show less like this" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:190 +msgid "Show list anyway" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:534 +msgid "Show lists of users to select from" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 +msgid "Show more like this" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:15 +msgid "Show more replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:99 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:108 +#: src/screens/Settings/FollowingFeedPreferences.tsx:118 +msgid "Show quote posts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:72 +#: src/screens/Settings/FollowingFeedPreferences.tsx:82 +msgid "Show replies" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:45 +msgid "Show replies as" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +msgid "Show reply for everyone" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:90 +#: src/screens/Settings/FollowingFeedPreferences.tsx:100 +msgid "Show reposts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:133 +#: src/screens/Settings/FollowingFeedPreferences.tsx:143 +msgid "Show samples of your saved feeds in your Following feed" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show warning" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:59 +msgid "Show warning and filter from feeds" +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 +msgid "Show when youโ€™re live" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 +msgid "Shows information about when this post was created" +msgstr "" + +#: src/screens/Settings/Settings.tsx:124 +msgid "Shows other accounts you can switch to" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:169 +#: src/components/moderation/PostHider.tsx:94 +msgid "Shows the content" +msgstr "" + +#: src/components/dialogs/Signin.tsx:98 +#: src/components/dialogs/Signin.tsx:100 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 +#: src/screens/Hashtag.tsx:231 +#: src/screens/Login/index.tsx:143 +#: src/screens/Login/index.tsx:165 +#: src/screens/Login/LoginForm.tsx:274 +#: src/screens/Login/LoginForm.tsx:554 +#: src/screens/Login/LoginForm.tsx:560 +#: src/screens/Messages/JoinRequest.tsx:290 +#: src/screens/Messages/JoinRequest.tsx:296 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBar.tsx:364 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255 +#: src/view/shell/NavSignupCard.tsx:58 +#: src/view/shell/NavSignupCard.tsx:63 +msgid "Sign in" +msgstr "" + +#. placeholder {0}: account.handle +#: src/components/AccountList.tsx:135 +msgid "Sign in as {0}" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:84 +msgid "Sign in asโ€ฆ" +msgstr "" + +#: src/screens/Deactivated.tsx:195 +#: src/screens/Deactivated.tsx:201 +msgid "Sign in or create an account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:76 +msgid "Sign in or create your account to join the conversation!" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:216 +msgid "Sign in to accept invite." +msgstr "" + +#: src/components/AccountList.tsx:70 +msgid "Sign in to account that is not listed" +msgstr "" + +#: src/components/dialogs/Signin.tsx:47 +msgid "Sign in to Bluesky or create a new account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:215 +msgid "Sign in to request access to this group chat." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:274 +#: src/screens/Settings/Settings.tsx:276 +#: src/screens/Settings/Settings.tsx:308 +#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:97 +#: src/screens/Takendown.tsx:88 +#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:282 +#: src/view/shell/desktop/LeftNav.tsx:285 +msgid "Sign out" +msgstr "" + +#: src/screens/Takendown.tsx:91 +msgid "Sign Out" +msgstr "" + +#: src/screens/Settings/Settings.tsx:305 +#: src/view/shell/desktop/LeftNav.tsx:224 +msgid "Sign out?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:572 +msgid "Sign up" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:96 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "" + +#. placeholder {0}: account.handle +#: src/lib/hooks/useAccountSwitcher.ts:42 +#: src/screens/Login/ChooseAccountForm.tsx:54 +msgid "Signed in as @{0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:299 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:302 +msgid "Since" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:163 +#: src/components/contacts/screens/VerifyNumber.tsx:205 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:86 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:90 +#: src/screens/Onboarding/StepFinished/index.tsx:295 +#: src/screens/Onboarding/StepFinished/index.tsx:317 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:281 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:105 +#: src/screens/StarterPack/Wizard/index.tsx:206 +msgid "Skip" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:160 +#: src/components/contacts/screens/VerifyNumber.tsx:202 +msgid "Skip contact sharing and continue to the app" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1552 +msgid "Skip empty posts?" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:288 +#: src/screens/Onboarding/StepFinished/index.tsx:314 +msgid "Skip introduction and start using your account" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:278 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102 +msgid "Skip to next step" +msgstr "" + +#: src/components/images/Gallery/index.tsx:441 +msgid "slide" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:150 +msgid "Smaller" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 +msgid "Snoozes the reminder" +msgstr "" + +#: src/view/com/composer/drafts/DraftsListDialog.tsx:155 +msgid "So many thoughts, you should post one" +msgstr "" + +#: src/components/WelcomeModal.tsx:146 +msgid "Social media you control." +msgstr "" + +#. Name for a feature flag +#: src/analytics/features/index.ts:84 +msgid "Social proofing on posts" +msgstr "" + +#: src/lib/interests.ts:58 +msgid "Software Dev" +msgstr "" + +#: src/screens/Moderation/index.tsx:466 +msgid "Some moderation services in your list are no longer available." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:122 +msgid "Some of your verifications are invalid." +msgstr "" + +#: src/components/FeedInterstitials.tsx:633 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:88 +msgid "Some people can reply" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:86 +msgid "Someone joined" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:87 +msgid "Someone joined the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:99 +msgid "Someone left" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:100 +msgid "Someone left the group" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:368 +msgid "Someone reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:67 +msgid "Someone reacted {0} to {target}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:813 +msgid "Someone replied" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:60 +msgid "Someone was added" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:61 +msgid "Someone was added to the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:73 +msgid "Someone was removed" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:74 +msgid "Someone was removed from the group" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:103 +msgid "Something wasn't quite right with the data you're trying to report. Please contact support." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 +msgid "Something went wrong" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 +#: src/components/moderation/ReportDialog/index.tsx:289 +#: src/screens/Deactivated.tsx:86 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +#: src/view/screens/Storybook/Admonitions.tsx:56 +msgid "Something went wrong, please try again" +msgstr "" + +#: src/screens/Moderation/index.tsx:112 +#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Settings/BetaFeaturesSettings.tsx:80 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 +msgid "Something went wrong, please try again." +msgstr "" + +#: src/components/Lists.tsx:185 +msgid "Something went wrong!" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:28 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:247 +msgid "Something went wrong. Please try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 +msgid "Something wrong? Let us know." +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:231 +msgid "Sorry, we're unable to load account suggestions at this time." +msgstr "" + +#: src/App.tsx:139 +#: src/App.web.tsx:118 +msgid "Sorry! Your session expired. Please sign in again." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:45 +msgid "Sort replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:52 +msgid "Sort replies by" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:49 +msgid "Sort replies to the same post by:" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:197 +#: src/components/moderation/ModerationDetailsDialog.tsx:272 +msgid "Source: <0>{sourceName}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 +msgid "Spam" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:36 +msgid "Spam or other inauthentic behavior or deception" +msgstr "" + +#: src/lib/interests.ts:72 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 +msgid "Sports" +msgstr "" + +#. Description of a feature flag (Social proofing on posts) +#: src/analytics/features/index.ts:90 +msgid "Spot posts your friends and follows have liked." +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 +msgid "Start a conversation, and it will appear here." +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:192 +msgid "Start a new chat" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:104 +#: src/screens/ProfileList/FeedSection.tsx:82 +msgid "Start adding people" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:110 +#: src/screens/ProfileList/FeedSection.tsx:88 +msgid "Start adding people!" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:831 +msgid "Start chat" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:428 +#: src/components/dms/InitiateChatFlow.tsx:1087 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 +#: src/screens/StarterPack/Wizard/index.tsx:197 +msgid "Starter Pack" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#: src/components/StarterPack/StarterPackCard.tsx:91 +msgid "Starter pack by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 +msgid "Starter pack by <0/>" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:90 +#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:765 +msgid "Starter pack is invalid" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:105 +msgid "Starter packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/view/screens/Profile.tsx:569 +msgid "Starter Packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:110 +#: src/screens/Settings/AboutSettings.tsx:113 +msgid "Status Page" +msgstr "" + +#. placeholder {0}: state.activeStep + 1 +#. placeholder {0}: state.activeStepIndex + 1 +#. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' +#. placeholder {1}: state.totalSteps +#: src/screens/Onboarding/Layout.tsx:226 +#: src/screens/Signup/index.tsx:189 +msgid "Step {0} of {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:410 +msgid "Storage cleared, you need to restart the app now." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:294 +msgid "Stored as part of a secure code for matching with others" +msgstr "" + +#: src/Navigation.tsx:308 +#: src/screens/Settings/Settings.tsx:465 +msgid "Storybook" +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182 +msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:122 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128 +#: src/components/moderation/AppealForm.tsx:154 +#: src/components/moderation/AppealForm.tsx:155 +#: src/components/SendErrorReportDialog.tsx:90 +#: src/components/SendErrorReportDialog.tsx:95 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:133 +msgid "Submit" +msgstr "" + +#: src/screens/Takendown.tsx:76 +msgid "Submit appeal" +msgstr "" + +#: src/screens/Takendown.tsx:80 +msgid "Submit Appeal" +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 +msgid "Submit feedback" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:508 +#: src/components/moderation/ReportDialog/index.tsx:569 +#: src/components/moderation/ReportDialog/index.tsx:576 +msgid "Submit report" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:75 +msgid "Subscribe" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:447 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:476 +msgid "Subscribe on {0}" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:475 +msgid "Subscribe to {publicationTitle} on {0}" +msgstr "" + +#. placeholder {0}: labelerInfo.creator.handle +#: src/screens/Profile/Sections/Labels.tsx:232 +msgid "Subscribe to @{0} to use these labels:" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:252 +msgid "Subscribe to account activity" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356 +msgid "Subscribe to Labeler" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:322 +msgid "Subscribe to this labeler" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:63 +msgid "Subscribe to this list" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:252 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:160 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 +msgid "Success!" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:131 +msgid "Successfully joined the group chat!" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:37 +msgid "Successfully verified" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:432 +msgid "Suggested" +msgstr "" + +#: src/screens/Search/Explore.tsx:369 +msgid "Suggested accounts" +msgstr "" + +#. Accounts suggested to the user for them to follow +#: src/components/FeedInterstitials.tsx:472 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:143 +msgid "Suggestive" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Sunlight" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 +msgctxt "Name of app icon variant" +msgid "Sunrise" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 +msgctxt "Name of app icon variant" +msgid "Sunset" +msgstr "" + +#: src/Navigation.tsx:333 +#: src/view/screens/Support.tsx:25 +#: src/view/screens/Support.tsx:28 +msgid "Support" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:236 +msgid "Support for this feature in your country has not been enabled yet! Please check back later." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 +msgid "Suspended accounts cannot participate in chat." +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:47 +#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:135 +#: src/screens/Settings/Settings.tsx:624 +#: src/view/shell/desktop/LeftNav.tsx:262 +msgid "Switch account" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:124 +msgid "Switch accounts" +msgstr "" + +#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) +#: src/view/shell/desktop/LeftNav.tsx:364 +msgid "Switch to {0}" +msgstr "" + +#: src/components/dialogs/Embed.tsx:154 +#: src/components/dialogs/Embed.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 +msgid "System" +msgstr "" + +#: src/screens/Log.tsx:49 +#: src/screens/Settings/AboutSettings.tsx:117 +#: src/screens/Settings/AboutSettings.tsx:120 +#: src/screens/Settings/Settings.tsx:458 +msgid "System log" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:291 +msgid "Tags only" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:110 +msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." +msgstr "" + +#: src/components/dms/MessageItem.tsx:682 +msgid "Tap for details" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:90 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:45 +msgid "Tap for more information" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:326 +msgid "Tap here to update your location with GPS." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:54 +#: src/components/ContextMenu/Backdrop.ios.tsx:80 +#: src/components/ContextMenu/Backdrop.tsx:46 +msgid "Tap to close context menu" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + +#: src/components/ProgressGuide/Toast.tsx:159 +msgid "Tap to dismiss" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:469 +msgid "Tap to join this group chat immediately" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:200 +msgid "Tap to remove" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/ReactionsDialog.tsx:216 +msgid "Tap to remove your {0} reaction" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:468 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:647 +msgid "Tap to retry" +msgstr "" + +#. placeholder {0}: tab.value +#: src/components/dms/ReactionsDialog.tsx:362 +msgid "Tap to show {0} reactions" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:361 +msgid "Tap to show all reactions" +msgstr "" + +#: src/components/dms/MessageItem.tsx:394 +msgid "Tap to view reactions" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 +msgid "Targeted harassment" +msgstr "" + +#: src/state/shell/progress-guide.tsx:236 +msgid "Task complete - 10 follows!" +msgstr "" + +#: src/state/shell/progress-guide.tsx:226 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:109 +msgid "Teach our algorithm what you like" +msgstr "" + +#: src/lib/interests.ts:73 +msgid "Tech" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:368 +msgid "Tell us a bit about yourself" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:70 +msgid "Tell us a little more" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:214 +msgid "Temporarily deactivate your account" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:125 +#: src/view/shell/desktop/RightNav.tsx:126 +msgid "Terms" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:181 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 +#: src/Navigation.tsx:343 +#: src/screens/Settings/AboutSettings.tsx:94 +#: src/screens/Settings/AboutSettings.tsx:97 +#: src/view/screens/TermsOfService.tsx:25 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 +msgid "Terms of Service" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:275 +msgid "Text & tags" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:118 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +msgid "Text input field" +msgstr "" + +#: src/view/com/posts/ShowLessFollowup.tsx:39 +msgid "Thank you for your feedback! It has been sent to the feed operator." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 +msgid "Thanks for your feedback!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:77 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:233 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:224 +msgid "Thanks! You're all set." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:500 +msgid "That contains the following:" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:115 +#: src/screens/StarterPack/StarterPackScreen.tsx:116 +#: src/screens/StarterPack/StarterPackScreen.tsx:160 +#: src/screens/StarterPack/StarterPackScreen.tsx:161 +#: src/screens/StarterPack/Wizard/index.tsx:116 +#: src/screens/StarterPack/Wizard/index.tsx:126 +msgid "That starter pack could not be found." +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:90 +msgid "That username is already taken" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:142 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1212 +msgid "That's everything!" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:422 +msgid "The account will be able to interact with you after unblocking." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:39 +#: src/screens/Settings/AppIconSettings/index.tsx:225 +msgid "The app will be restarted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:139 +#: src/lib/moderation/useModerationCauseDescription.ts:129 +msgid "The author of this thread has hidden this reply." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:169 +msgid "The birthdate you've entered means you are under 18 years old. Certain content and features may be unavailable to you." +msgstr "" + +#: src/screens/Moderation/index.tsx:415 +msgid "The Bluesky web application" +msgstr "" + +#: src/view/screens/CommunityGuidelines.tsx:32 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "" + +#: src/view/screens/CopyrightPolicy.tsx:29 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:107 +msgid "The Discover feed" +msgstr "" + +#: src/state/shell/progress-guide.tsx:227 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:332 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:70 +msgid "The feed has been replaced with Discover." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:64 +msgid "The following labels were applied to this post." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:63 +msgid "The following labels were applied to your account." +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:168 +msgid "The following services are enabled for your account: {allowedServices}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:43 +msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:23 +msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 +msgid "The post youโ€™re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:29 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:468 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB}ย MB. Please try again with a smaller file." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:41 +#: src/lib/strings/errors.ts:18 +msgid "The server appears to be experiencing issues. Please try again in a few moments." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:775 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "" + +#: src/components/ContextMenu/index.tsx:507 +msgid "The subject of the context menu" +msgstr "" + +#: src/view/screens/Support.tsx:31 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "" + +#: src/view/screens/TermsOfService.tsx:29 +msgid "The Terms of Service have been moved to" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:89 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:115 +#: src/components/contacts/screens/VerifyNumber.tsx:113 +#: src/components/contacts/screens/VerifyNumber.tsx:165 +msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:137 +msgid "Theme" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:106 +msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again." +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 +msgid "There is no invite link for this group chat." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "" + +#. Body message of the error screen shown when the GIF provider request fails. Encourages the user to retry. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:56 +msgid "There was a problem loading GIFs. Check your connection and try again." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:149 +#: src/components/intents/GroupChatJoinDialog.tsx:195 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 +msgid "There was a problem with your internet connection, please try again" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 +#: src/screens/ProfileList/components/Header.tsx:91 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 +#: src/screens/SavedFeeds.tsx:99 +#: src/screens/SavedFeeds.tsx:278 +msgid "There was an issue contacting the server" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:133 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "" + +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:180 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:60 +msgid "There was an issue fetching your app passwords" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:185 +#: src/view/com/lists/ProfileLists.tsx:184 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:109 +msgid "There was an issue fetching your service info" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:153 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 +#: src/view/com/posts/FeedShutdownMsg.tsx:53 +#: src/view/com/posts/FeedShutdownMsg.tsx:74 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#. placeholder {0}: e.toString() +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:432 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:475 +#: src/screens/Messages/ConversationSettings/Member.tsx:71 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:114 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:127 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:92 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:257 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:157 +#: src/view/com/profile/ProfileMenu.tsx:174 +#: src/view/com/profile/ProfileMenu.tsx:187 +#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:218 +msgid "There was an issue! {0}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:241 +#: src/screens/List/ListHiddenScreen.tsx:67 +#: src/screens/List/ListHiddenScreen.tsx:81 +#: src/screens/List/ListHiddenScreen.tsx:103 +#: src/screens/ProfileList/components/Header.tsx:106 +#: src/screens/ProfileList/components/Header.tsx:120 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:121 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:135 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:38 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:53 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "" + +#. Body of the error screen shown when the GIF picker crashes unexpectedly. Encourages the user to report the issue. +#: src/components/dialogs/LanguageSelectDialog.tsx:349 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:27 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "" + +#: src/screens/SignupQueued.tsx:133 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:660 +msgid "These are your default settings" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:51 +msgid "These domains" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:44 +msgid "These hashtags" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:66 +msgid "These settings only apply to the Following feed." +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 +msgid "These URLs" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:353 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:177 +msgid "They wonโ€™t be able to rejoin unless you invite them again." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:116 +msgid "This {screenDescription} has been flagged:" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:89 +msgid "This account has a checkmark because it's been verified by trusted sources." +msgstr "" + +#: src/components/BotAccountAlert.tsx:27 +msgid "This account has been marked as automated by its owner." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:94 +msgid "This account has one or more attempted verifications, but it is not currently verified." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This account has requested that users sign in to view their profile." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:33 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:56 +msgid "This action can be undone at any time." +msgstr "" + +#: src/components/moderation/AppealForm.tsx:96 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 +#: src/screens/Messages/components/ChatDisabled.tsx:138 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "This author has chosen to make their posts visible only to people who are signed in." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:244 +msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below." +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:48 +msgid "This chat has ended" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:301 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:376 +#: src/screens/Messages/components/ChatLocked.tsx:69 +msgid "This chat is locked" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:437 +msgid "This chat is locked by a moderation action" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:17 +msgid "This chat was disconnected" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:106 +msgid "This code is invalid. Resend to get a new code." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:145 +msgid "This confirmation code is not valid. Please try again." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "" + +#. placeholder {0}: externalEmbedLabels[source] +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:104 +#: src/lib/moderation/useModerationCauseDescription.ts:85 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:122 +msgid "This content is not viewable without a Bluesky account." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This conversation is locked." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:156 +msgid "This conversation is with a deleted or a deactivated account. Press for options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:240 +msgid "This draft will be permanently deleted." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 +msgid "This email is already associated with your account." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:280 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:283 +msgid "This exact phrase" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:56 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:166 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:61 +msgid "This feature is not available while using an app password. Please sign in with your main password." +msgstr "" + +#: src/lib/strings/errors.ts:30 +msgid "This feature is not available while using an App Password. Please sign in with your main password." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:128 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:60 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "" + +#: src/components/StarterPack/Main/PostsList.tsx:41 +#: src/screens/Profile/ProfileFeed/index.tsx:170 +#: src/screens/ProfileList/FeedSection.tsx:78 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:104 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:72 +msgid "This group is locked by a moderation action on the owner" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:611 +msgid "This handle is reserved. Please try a different one." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:140 +msgid "This image could not be used. Try a different format like .jpg or .png." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:62 +msgid "This information is private and not shared with other users." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:161 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:236 +msgid "This invite link is invalid" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 +msgid "This is just a one-time security check, since we haven't seen this account on this device before." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:171 +#: src/features/liveNow/components/GoLiveDialog.tsx:161 +msgid "This is not a valid link" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:173 +msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:254 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:184 +msgid "This label was applied by you." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/ModerationDetailsDialog.tsx:231 +msgid "This label was applied to the entire user account and will appear on all posts." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:219 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:95 +msgid "This link is taking you to the following website:" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/screens/List/ListHiddenScreen.tsx:155 +msgid "This list โ€“ created by <0>{0} โ€“ contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:150 +msgid "This list โ€“ created by you โ€“ contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:100 +msgid "This list is empty." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:335 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 +msgid "This message is hidden because this user is blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 +msgid "This message is hidden because you are blocking this user." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:41 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:84 +msgid "This person is blocking you" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt) +#. placeholder {1}: niceDate(i18n, indexedAt) +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "" + +#: src/components/WhoCanReply.tsx:274 +msgid "This post has an unknown type of threadgate on it. Your app may be out of date." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 +msgid "This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks.tsx:248 +msgid "This post was deleted by its author" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1127 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:547 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 +msgid "This screen is only available for group conversations." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "" + +#: src/features/liveNow/index.tsx:203 +msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:469 +msgid "This should create a domain record at:" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:214 +msgid "This should only take a few minutes." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:94 +msgid "This user does not have a display name, and therefore cannot be verified." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:217 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:99 +#: src/lib/moderation/useModerationCauseDescription.ts:76 +msgid "This user has blocked you. You cannot view their content." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 +msgid "This user has disabled chat and cannot be messaged." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:79 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:111 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:49 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:196 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 +msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:65 +msgid "This video canโ€™t be previewed in your browser. It will still be uploaded." +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 +msgid "This will create a new list with the same name, description, and members as this starter pack." +msgstr "" + +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:454 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:330 +msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} and all associated data. Note that this will affect any other <1>AT Protocol services you use with this account." +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Settings/Settings.tsx:678 +msgid "This will remove @{0} from the quick access list." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:25 +#: src/screens/PostThread/components/HeaderDropdown.tsx:28 +msgid "Thread options" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:70 +#: src/screens/Settings/ContentAndMediaSettings.tsx:73 +msgid "Thread preferences" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:35 +msgid "Thread Preferences" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:59 +#: src/screens/PostThread/components/HeaderDropdown.tsx:64 +msgid "Threaded" +msgstr "" + +#: src/Navigation.tsx:376 +msgid "Threads Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:134 +msgid "Threats or incitement" +msgstr "" + +#. placeholder {0}: Number(time) || 0 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 +msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:68 +msgid "Title" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:71 +msgid "Title (100 characters max)" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:100 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 +msgid "To disable your email 2FA method, please verify your access to <0>{0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:315 +msgid "To log out, <0>click here. Or if youโ€™d prefer, you can <1>delete your account." +msgstr "" + +#: src/components/dms/DateDivider.tsx:27 +msgid "Today" +msgstr "" + +#: src/screens/Moderation/index.tsx:392 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:186 +msgid "Toggles the sound" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:123 +msgid "Too many attempts. Please wait a few minutes and try again." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:176 +msgid "Too many codes sent. Please wait a few minutes and try again." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:156 +msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends" +msgstr "" + +#: src/screens/Hashtag.tsx:86 +#: src/screens/Search/SearchResults.tsx:83 +#: src/screens/Topic.tsx:58 +msgid "Top" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:75 +#: src/screens/PostThread/components/HeaderDropdown.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:57 +#: src/screens/Settings/ThreadPreferences.tsx:60 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:503 +msgid "Topic" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:191 +#: src/components/dms/MessageContextMenu.tsx:194 +#: src/components/Post/Translated/index.tsx:150 +#: src/components/Post/Translated/index.tsx:157 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 +msgid "Translate" +msgstr "" + +#: src/components/Post/Translated/index.tsx:326 +msgid "Translated" +msgstr "" + +#: src/components/Post/Translated/index.tsx:113 +msgid "Translating" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 +msgid "Translatingโ€ฆ" +msgstr "" + +#: src/lib/translation/index.tsx:305 +msgid "Translation to the same language is unavailable on your device." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:87 +#: src/screens/Settings/ThreadPreferences.tsx:92 +msgid "Tree view" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 +msgid "Trending" +msgstr "" + +#. Accessibility label for the icon-only pill that shows currently trending/featured GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:45 +msgid "Trending GIFs" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 +msgid "Trending options" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 +msgid "Trolling" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 +msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:260 +msgid "Try a different search term or remove some filters." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:262 +msgid "Try a different search term." +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "" + +#: src/view/com/util/error/ErrorScreen.tsx:97 +msgctxt "action" +msgid "Try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:171 +msgid "Try again in a moment." +msgstr "" + +#: src/components/Post/Translated/index.tsx:229 +#: src/components/Post/Translated/index.tsx:242 +msgid "Try Google Translate" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "" + +#: src/lib/interests.ts:74 +msgid "TV" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:32 +msgid "Twilight" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 +msgid "Two-factor authentication (2FA)" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:445 +msgid "Type:" +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:86 +msgid "Unable to access location. You'll need to visit your system settings to enable location services for Bluesky." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:30 +#: src/lib/strings/errors.ts:11 +msgid "Unable to connect. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:96 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:141 +msgid "Unable to contact your service. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:66 +#: src/screens/Login/index.tsx:100 +#: src/screens/Login/LoginForm.tsx:169 +#: src/screens/Login/SetNewPasswordForm.tsx:77 +#: src/screens/Signup/index.tsx:89 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:700 +msgid "Unable to delete" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 +msgid "Unable to find the selected recipient." +msgstr "" + +#: src/lib/strings/errors.ts:42 +msgid "Unable to resolve handle" +msgstr "" + +#: src/screens/Settings/Settings.tsx:524 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:526 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:43 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:127 +msgid "Unavailable feed information" +msgstr "" + +#: src/components/dms/MessageItem.tsx:747 +#: src/components/dms/MessagesListBlockedFooter.tsx:97 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:427 +#: src/screens/ProfileList/components/Header.tsx:166 +#: src/screens/ProfileList/components/Header.tsx:173 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 +msgid "Unblock {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:463 +#: src/view/com/profile/ProfileMenu.tsx:469 +msgid "Unblock account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +msgid "Unblock Account?" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:242 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:245 +msgid "Unblock list" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 +#: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 +msgid "Undo" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:43 +msgctxt "Button label to undo saving/removing a post from saved posts." +msgid "Undo" +msgstr "" + +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 +msgid "Undo repost" +msgstr "" + +#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun +#. placeholder {0}: repostCount || 0 +#: src/components/PostControls/RepostButton.tsx:68 +msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:396 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:329 +msgid "Unfollow account" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:919 +msgid "Unfollows the user" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:492 +msgid "Unfortunately, none of your subscribed labelers supports this report type." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:263 +msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:247 +msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:209 +msgid "Unknown verifier" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 +msgid "Unlabeled adult content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68 +msgid "Unlabeled, abusive, or non-consensual adult content" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 +msgid "Unlike" +msgstr "" + +#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun +#. placeholder {0}: post.likeCount || 0 +#: src/components/PostControls/index.tsx:276 +msgid "Unlike ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:91 +msgid "Unlock chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:568 +msgid "Unlock this group chat" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:180 +#: src/screens/ProfileList/components/Header.tsx:187 +msgid "Unmute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:183 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 +msgctxt "video" +msgid "Unmute" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:153 +#: src/components/RichTextTag.tsx:169 +msgid "Unmute {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 +#: src/view/com/profile/ProfileMenu.tsx:442 +#: src/view/com/profile/ProfileMenu.tsx:448 +msgid "Unmute account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:272 +msgid "Unmute conversation" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:252 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:255 +msgid "Unmute list" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:533 +msgid "Unmute this group chat" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 +msgid "Unmute thread" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 +msgid "Unmute video" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:151 +#: src/screens/ProfileList/components/Header.tsx:158 +msgid "Unpin" +msgstr "" + +#: src/components/FeedCard.tsx:355 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 +#: src/screens/SavedFeeds.tsx:467 +msgid "Unpin feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 +msgid "Unpin from home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 +msgid "Unpin from profile" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:225 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:228 +msgid "Unpin moderation list" +msgstr "" + +#. placeholder {0}: info.displayName +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 +msgid "Unpinned {0} from Home" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:78 +msgid "Unpinned from your feeds" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:105 +msgid "Unpinned list" +msgstr "" + +#: src/screens/Settings/Settings.tsx:491 +#: src/screens/Settings/Settings.tsx:493 +msgid "Unsnooze email reminder" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:354 +msgid "Unsubscribe" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:202 +#: src/screens/List/ListHiddenScreen.tsx:212 +msgid "Unsubscribe from list" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:321 +msgid "Unsubscribe from this labeler" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:90 +msgid "Unsubscribed from list" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.tsx:127 +msgid "Unsupported clipboard content" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1644 +msgid "Unsupported video type: {mimeType}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:323 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:326 +msgid "Until" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:61 +#: src/screens/Settings/components/OTAInfo.tsx:77 +msgid "Update" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(profile, true) +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:138 +msgid "Update {0} in Lists" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 +#: src/screens/Settings/AccountSettings.tsx:110 +#: src/screens/Settings/AccountSettings.tsx:118 +msgid "Update email" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:142 +msgid "Update in Lists" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 +#: src/screens/Messages/components/InviteLinkDialog.tsx:275 +#: src/screens/Messages/components/InviteLinkDialog.tsx:303 +msgid "Update invite link" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:544 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:565 +msgid "Update to {domain}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 +msgid "Update your email" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:208 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:252 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:41 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:106 +msgid "Update your location" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 +msgctxt "toast" +msgid "Updating quote attachment failed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 +msgctxt "toast" +msgid "Updating reply visibility failed" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:312 +msgid "Upload a photo instead" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:485 +msgid "Upload a text file to:" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:494 +#: src/view/com/util/UserAvatar.tsx:497 +#: src/view/com/util/UserBanner.tsx:164 +#: src/view/com/util/UserBanner.tsx:167 +msgid "Upload from Camera" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 +msgid "Upload from Files" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:505 +#: src/view/com/util/UserAvatar.tsx:509 +#: src/view/com/util/UserBanner.tsx:175 +#: src/view/com/util/UserBanner.tsx:179 +msgid "Upload from Library" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2684 +msgid "Uploading GIF..." +msgstr "" + +#: src/lib/api/index.ts:327 +#: src/lib/api/index.ts:354 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:426 +#: src/lib/api/index.ts:450 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2686 +msgid "Uploading video..." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:67 +msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:576 +msgid "Use default provider" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:78 +#: src/components/dialogs/InAppBrowserConsent.tsx:84 +msgid "Use in-app browser" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:104 +#: src/screens/Settings/ContentAndMediaSettings.tsx:110 +msgid "Use in-app browser to open links" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:88 +#: src/components/dialogs/InAppBrowserConsent.tsx:94 +msgid "Use my default browser" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:57 +msgid "Use recommended" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 +msgid "Use this to sign in to the other app along with your handle." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:278 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + +#: src/view/screens/Profile.tsx:396 +msgid "user" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:155 +msgctxt "toast" +msgid "User blocked" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:91 +#: src/lib/moderation/useModerationCauseDescription.ts:64 +msgid "User Blocked" +msgstr "" + +#. placeholder {0}: cause.source.list.name +#: src/lib/moderation/useModerationCauseDescription.ts:56 +msgid "User Blocked by \"{0}\"" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:77 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:74 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:97 +msgid "User Blocks You" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:303 +msgid "User list by {0}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(view.creator.handle, '@') +#: src/state/queries/feed.ts:171 +msgid "User List by {0}" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:301 +msgid "User list by you" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:255 +msgctxt "toast" +msgid "User list created" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:241 +msgctxt "toast" +msgid "User list updated" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:257 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:241 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:245 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:305 +msgid "Username or email" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:315 +msgid "Username or email address" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:337 +msgid "users followed by <0>@{0}" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:324 +msgid "users following <0>@{0}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:451 +msgid "Value:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:40 +msgid "Verification failed, please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:344 +msgid "Verification settings" +msgstr "" + +#: src/Navigation.tsx:208 +#: src/screens/Moderation/VerificationSettings.tsx:34 +msgid "Verification Settings" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:43 +msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:105 +msgid "Verified by:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:85 +#: src/components/verification/VerificationCreatePrompt.tsx:87 +#: src/view/com/profile/ProfileMenu.tsx:426 +#: src/view/com/profile/ProfileMenu.tsx:429 +msgid "Verify account" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:64 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 +msgctxt "action" +msgid "Verify code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:546 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:567 +msgid "Verify DNS Record" +msgstr "" + +#. Dialog title when a user is verifying their email address by entering a code they have been sent +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 +msgid "Verify email code" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:62 +msgid "Verify email dialog" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:65 +msgid "Verify now" +msgstr "" + +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:34 +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:52 +msgid "Verify now using KWS" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:175 +#: src/components/contacts/screens/VerifyNumber.tsx:217 +msgid "Verify phone number" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:547 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:569 +msgid "Verify Text File" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:52 +msgid "Verify this account?" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 +msgid "Verify your age" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 +#: src/screens/Settings/AccountSettings.tsx:84 +#: src/screens/Settings/AccountSettings.tsx:104 +msgid "Verify your email" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Verifying" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:165 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:75 +msgid "Verifying your age assurance status" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:307 +msgid "Verifying..." +msgstr "" + +#. placeholder {0}: env.APP_VERSION +#: src/screens/Settings/AboutSettings.tsx:144 +#: src/screens/Settings/AboutSettings.tsx:173 +msgid "Version {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:162 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:390 +msgid "Video failed to process" +msgstr "" + +#: src/Navigation.tsx:571 +msgid "Video Feed" +msgstr "" + +#. placeholder {0}: author.handle +#: src/components/VideoPostCard.tsx:121 +msgid "Video from {0}: {text}" +msgstr "" + +#. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) +#: src/screens/VideoFeed/index.tsx:1174 +msgid "Video from {0}. Tap to play or pause the video" +msgstr "" + +#: src/lib/interests.ts:62 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 +msgid "Video Games" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1173 +msgid "Video is paused" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1173 +msgid "Video is playing" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2704 +msgid "Video uploaded" +msgstr "" + +#. placeholder {0}: embed.alt +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:95 +msgid "Video: {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:239 +msgid "Videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 +#: src/view/com/composer/SelectMediaButton.tsx:440 +msgid "Videos must be less than 3 minutes long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1234 +msgctxt "Action to view the post the user just created" +msgid "View" +msgstr "" + +#. placeholder {0}: view.source.title +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:340 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:670 +msgid "View {0}" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/Shell.tsx:256 +msgid "View {0}'s avatar" +msgstr "" + +#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle +#. placeholder {0}: info.creatorHandle +#. placeholder {0}: profile.handle +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 +#: src/screens/Search/components/SearchProfileCard.tsx:37 +#: src/screens/VideoFeed/index.tsx:880 +#: src/view/com/notifications/NotificationFeedItem.tsx:619 +msgid "View {0}'s profile" +msgstr "" + +#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle) +#: src/components/ProfileCard.tsx:150 +msgid "View {0}โ€™s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 +msgid "View {displayName}โ€™s profile" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:478 +msgid "View {publicationTitle}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:479 +msgid "View blocked user's profile" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:170 +msgid "View blogpost for more details" +msgstr "" + +#: src/screens/Log.tsx:72 +msgid "View debug entry" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 +msgid "View details" +msgstr "" + +#: src/view/com/posts/ViewFullThread.tsx:31 +#: src/view/com/posts/ViewFullThread.tsx:65 +msgid "View full thread" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +msgid "View incoming group chat requests" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:51 +msgid "View information about these labels" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 +msgid "View more" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:227 +msgid "View more trending videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1229 +msgid "View post" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:465 +#: src/components/ProfileHoverCard/index.web.tsx:485 +#: src/components/ProfileHoverCard/index.web.tsx:512 +#: src/view/com/posts/PostFeedErrorMessage.tsx:183 +#: src/view/com/util/PostMeta.tsx:92 +#: src/view/com/util/PostMeta.tsx:120 +msgid "View profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:163 +msgid "View profile banner" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:340 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:448 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:479 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:670 +msgid "View publication" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:108 +msgid "View the avatar" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:555 +msgid "View the invite link for this group chat" +msgstr "" + +#. placeholder {0}: labeler.creator.handle +#: src/components/LabelingServiceCard/index.tsx:164 +msgid "View the labeling service provided by @{0}" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:103 +msgid "View this user's verifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +msgid "View users who like this feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:398 +msgid "View video" +msgstr "" + +#: src/screens/Moderation/index.tsx:324 +msgid "View your blocked accounts" +msgstr "" + +#: src/screens/Moderation/index.tsx:264 +msgid "View your default post interaction settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +msgid "View your feeds and explore more" +msgstr "" + +#: src/screens/Moderation/index.tsx:294 +msgid "View your moderation lists" +msgstr "" + +#: src/screens/Moderation/index.tsx:309 +msgid "View your muted accounts" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:102 +msgid "View your verifications" +msgstr "" + +#: src/components/images/AutoSizedImage.tsx:222 +#: src/components/images/AutoSizedImage.tsx:254 +msgid "Views full image" +msgstr "" + +#: src/components/VideoPostCard.tsx:120 +msgid "Views video in immersive mode" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:126 +msgid "Violence" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:127 +msgid "Violent or threatening content" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:122 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:296 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +msgid "Volume" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:142 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:49 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 +msgid "Watch now" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:253 +msgid "We apply the highest privacy standards, and never share or sell your contact information." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:141 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:147 +msgid "We could not find this list. It was probably deleted." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:348 +msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." +msgstr "" + +#: src/screens/Hashtag.tsx:260 +msgid "We couldn't find any results for that tag." +msgstr "" + +#: src/screens/Topic.tsx:166 +msgid "We couldn't find any results for that topic." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:134 +msgid "We couldn't load this conversation" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldnโ€™t load this conversationโ€™s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 +msgid "We couldnโ€™t load this conversationโ€™s settings" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:482 +msgid "We couldnโ€™t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:244 +msgid "We delete hashes after matches are made" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:67 +msgid "We don't store your friends' phone numbers or send any messages" +msgstr "" + +#: src/screens/SignupQueued.tsx:163 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:197 +msgid "We have partnered with <0>KWS to handle age verification. When you click \"Begin\" below, KWS will email you instructions to complete the verification process. If your email address has already been used to verify your age for another game or service that uses KWS, you wonโ€™t need to do it again. When youโ€™re done, you'll be brought back to continue using Bluesky." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/intents/VerifyEmailIntentDialog.tsx:102 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:184 +msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:241 +msgid "We never keep plain phone numbers" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:247 +msgid "We only suggest follows if both people consent" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:171 +msgid "We recommend selecting at least two interests." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/view/com/composer/state/video.ts:451 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:19 +msgid "We were unable to load the age assurance configuration for your region, probably due to a network error. Some content and features may be unavailable temporarily. Please try again later." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:41 +msgid "We were unable to load your birthdate preferences. Please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:492 +msgid "We were unable to load your configured labelers at this time." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:305 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:217 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + +#: src/screens/SignupQueued.tsx:167 +msgid "We will let you know when your account is ready." +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:531 +msgid "We will notify you when we find your friends." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 +msgid "Weโ€™d love to hear about your experience testing beta features!" +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:62 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:140 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:83 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:311 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:223 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:151 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:127 +#: src/components/ProgressGuide/FollowDialog.tsx:195 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:321 +msgid "Weโ€™re having network issues, try again" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 +msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." +msgstr "" + +#: src/screens/Signup/index.tsx:140 +msgid "Weโ€™re so excited to have you join us!" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:117 +msgid "We're sorry, but based on the data shared by your device, you are not old enough to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:227 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:218 +msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance." +msgstr "" + +#: src/screens/ProfileList/index.tsx:88 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:387 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 +msgid "Weโ€™re sorry, but your search could not be completed." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 +msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:62 +msgid "We're sorry, you cannot access this screen at this time." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1125 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:223 +#: src/view/screens/NotFound.tsx:44 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:220 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:123 +msgid "Weโ€™re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:64 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:77 +msgid "Weโ€™re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:62 +msgid "Weโ€™re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:257 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:165 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + +#: src/screens/Deactivated.tsx:117 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:59 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:44 +msgid "What do you want to call your starter pack?" +msgstr "" + +#. Advanced search: Example of an โ€œexact phraseโ€ search +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:285 +msgid "whatโ€™s up" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 +#: src/view/com/feeds/ComposerPrompt.tsx:192 +msgid "What's up?" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 +msgid "When you tap on a check, youโ€™ll see which organizations have granted verification." +msgstr "" + +#: src/components/WhoCanReply.tsx:226 +msgid "Who can interact with this post?" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 +msgid "Who can join this group chat and how" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 +#: src/components/WhoCanReply.tsx:116 +msgid "Who can reply" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 +msgid "Who can verify?" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:80 +#: src/screens/Messages/ChatList.tsx:409 +#: src/screens/Messages/Inbox.tsx:191 +msgid "Whoops!" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:126 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 +msgid "Whoops! Trending videos failed to load." +msgstr "" + +#: src/screens/Takendown.tsx:169 +msgid "Why are you appealing?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:52 +#: src/components/moderation/ReportDialog/copy.ts:66 +msgid "Why should this conversation be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:38 +msgid "Why should this feed be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:32 +msgid "Why should this list be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:20 +msgid "Why should this livestream be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:58 +msgid "Why should this message be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:26 +msgid "Why should this post be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:44 +msgid "Why should this starter pack be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:14 +msgid "Why should this user be reviewed?" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:51 +msgid "Would you like to block this user and/or delete this conversation?" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:47 +msgid "Would you like to block this user and/or leave this conversation?" +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:110 +msgid "Would you like to save this as a draft before viewing your drafts?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1523 +msgid "Would you like to save this as a draft to edit later?" +msgstr "" + +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 +msgid "Write a post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1704 +msgid "Write post" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 +#: src/view/com/composer/Composer.tsx:1606 +msgid "Write your reply" +msgstr "" + +#: src/lib/interests.ts:75 +msgid "Writers" +msgstr "" + +#. placeholder {0}: verifyError.did +#: src/screens/Settings/components/ChangeHandleDialog.tsx:368 +msgid "Wrong DID returned from server. Received: {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 +msgid "Wrong kind of conversation" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:147 +#: src/features/liveNow/components/GoLiveDialog.tsx:142 +msgid "www.mylivestream.tv" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to affirmation/agreement GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:95 +msgid "Yes GIFs" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:105 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:107 +msgid "Yes, deactivate" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:348 +msgid "Yes, delete my account" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:712 +msgid "Yes, delete this starter pack" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 +msgid "Yes, detach" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 +msgid "Yes, hide" +msgstr "" + +#: src/screens/Deactivated.tsx:139 +msgid "Yes, reactivate my account" +msgstr "" + +#: src/components/dms/DateDivider.tsx:29 +msgid "Yesterday" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:61 +msgid "You are a trusted verifier" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:174 +msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/dms/MessageItem.tsx:720 +msgid "You are blocking {0}" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:81 +msgid "You are blocking the chat owner" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:83 +msgid "You are blocking this person" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:46 +msgid "You are creating an account on" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:108 +msgid "You are currently blocked from using the Go Live feature. To appeal this moderation decision, please submit the form below." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:400 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + +#: src/screens/SignupQueued.tsx:160 +msgid "You are in line." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:113 +#: src/features/liveNow/components/EditLiveDialog.tsx:118 +msgid "You are Live" +msgstr "" + +#: src/features/liveNow/index.tsx:371 +msgid "You are no longer live" +msgstr "" + +#: src/view/com/composer/state/video.ts:444 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:195 +msgid "You are not following anyone yet" +msgstr "" + +#: src/features/liveNow/index.tsx:315 +msgid "You are now live!" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:66 +msgid "You are verified" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:341 +msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:210 +msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 +msgid "You can adjust your interests at any time from \"Content and media\" settings." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:211 +msgid "You can also <0>temporarily deactivate your account instead. Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:60 +#: src/view/com/posts/FollowingEndOfFeed.tsx:61 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:139 +msgid "You can also download your chat data as a \"JSONL\" file. This file only includes chat messages that you have sent and does not include chat messages that you have received." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:250 +msgid "You can always opt out and delete your data" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:134 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:165 +#: src/screens/Messages/Settings.tsx:216 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150 +msgid "You can now choose to be notified when specific people post. If thereโ€™s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:154 +msgid "You can now invite friends with a link or QR code. Share the link anywhere, or let them scan the code to join you on Bluesky." +msgstr "" + +#: src/screens/Login/index.tsx:207 +#: src/screens/Login/PasswordUpdatedForm.tsx:25 +msgid "You can now sign in with your new password." +msgstr "" + +#. Toast shown when the user tries to add more images but the post gallery is already at the cap +#: src/view/com/composer/Composer.tsx:222 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1528 +msgid "You can only save drafts up to 1000 characters." +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:116 +msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:443 +msgid "You can only select one GIF at a time." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:437 +msgid "You can only select one video at a time." +msgstr "" + +#: src/screens/Deactivated.tsx:125 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:93 +msgid "You can read chat history but canโ€™t send new messages." +msgstr "" + +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:429 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 +msgid "You can update this later from your settings." +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:81 +#: src/components/dms/MessageContextMenu.tsx:129 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 +msgid "You cannot create a group chat yet." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:54 +#: src/lib/strings/errors.ts:27 +msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:103 +msgid "You don't follow any users who follow @{name}." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:589 +msgid "You don't have any lists yet." +msgstr "" + +#: src/screens/SavedFeeds.tsx:153 +#: src/screens/SavedFeeds.tsx:343 +msgid "You don't have any pinned feeds." +msgstr "" + +#: src/screens/SavedFeeds.tsx:205 +#: src/screens/SavedFeeds.tsx:381 +msgid "You don't have any saved feeds." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:312 +msgid "You got here first" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +msgid "You have been previously removed from this group and canโ€™t join it using this link." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:93 +#: src/lib/moderation/useModerationCauseDescription.ts:58 +#: src/lib/moderation/useModerationCauseDescription.ts:66 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "You have completed the Age Assurance process, but based on the results, we cannot be sure that you are 18 years of age or older. Due to laws in your region, certain features on Bluesky must remain restricted until you're able to verify you're an adult." +msgstr "" + +#: src/view/screens/Notifications.tsx:291 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:89 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:113 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:117 +msgid "You have hidden this post" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:131 +msgid "You have hidden this post." +msgstr "" + +#: src/components/BotAccountAlert.tsx:26 +msgid "You have marked this account as automated. You can remove it at any time from your account settings." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:124 +#: src/lib/moderation/useModerationCauseDescription.ts:100 +msgid "You have muted this account." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:94 +msgid "You have muted this user" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:71 +#: src/view/com/lists/MyLists.tsx:81 +msgid "You have no lists." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:102 +msgid "You have no starter packs." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:155 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:168 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "" + +#: src/components/Lists.tsx:62 +msgid "You have reached the end" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:188 +msgid "You have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1518 +msgid "You have unsaved changes to this draft, would you like to save them?" +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:105 +msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +msgid "You haven't created a starter pack yet!" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:159 +msgid "You haven't created any lists yet." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:160 +msgid "You haven't made any custom feeds yet." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:407 +msgid "You haven't muted any words or tags yet" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:138 +#: src/lib/moderation/useModerationCauseDescription.ts:128 +msgid "You hid this reply." +msgstr "" + +#. placeholder {0}: getTimeAgo(lastInitiatedAt, new Date(), {format: 'long'}) +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:240 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + +#: src/components/NewskieDialog.tsx:107 +msgid "You joined Bluesky {timeAgoString} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:104 +msgid "You joined Bluesky using a starter pack {timeAgoString} ago" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:83 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:88 +#: src/components/moderation/ModerationDetailsDialog.tsx:210 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:80 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:101 +msgid "You may only add up to 3 feeds" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:318 +msgid "You must be a chat owner to remove a member." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:177 +msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:89 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:472 +msgid "You need to allow access to your media library." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 +msgid "You need to verify your email address before you can enable email 2FA." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:349 +msgid "You own this chat" +msgstr "" + +#. placeholder {0}: currentAccount?.handle +#: src/screens/Deactivated.tsx:120 +msgid "You previously deactivated @{0}." +msgstr "" + +#: src/screens/Settings/Settings.tsx:421 +msgid "You probably want to restart the app now." +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:361 +msgid "You reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:63 +msgid "You reacted {0} to {target}" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:92 +#: src/components/dialogs/BirthDateSettings.tsx:102 +msgid "You recently changed your birthdate" +msgstr "" + +#: src/components/dms/MessageItem.tsx:806 +msgid "You replied" +msgstr "" + +#: src/components/dms/MessageItem.tsx:805 +msgid "You replied to {originalName}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:803 +msgid "You replied to yourself" +msgstr "" + +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:105 +msgid "You requested to join" +msgstr "" + +#: src/screens/Settings/Settings.tsx:306 +#: src/view/shell/desktop/LeftNav.tsx:225 +msgid "You will be signed out of all your accounts." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:140 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 +msgid "You will no longer receive notifications for this thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 +msgid "You will now receive notifications for this thread" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:101 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:129 +msgid "You wonโ€™t be able to rejoin unless youโ€™re invited." +msgstr "" + +#. When the last message in a chat was made by you. +#: src/components/dms/getMessageInfo.ts:82 +msgid "You: {message}" +msgstr "" + +#: src/screens/Signup/index.tsx:158 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:163 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "" + +#. placeholder {0}: listItemsCount - 8 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:243 +msgid "You'll follow these people and {0} others" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +msgid "You'll follow these people right away" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:314 +msgid "You'll need to go to the System Settings for Bluesky and give permission if you want to use this feature." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:172 +msgid "You'll start receiving notifications for {0}!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:281 +msgid "You'll stay updated with these feeds" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:133 +msgid "You're all set!" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:127 +msgid "You're all set! However, certain features may still be restricted until you're able to verify you're an adult." +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "Youโ€™re in control" +msgstr "" + +#: src/screens/SignupQueued.tsx:130 +msgid "You're in line" +msgstr "" + +#: src/screens/Deactivated.tsx:81 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." +msgstr "" + +#: src/components/moderation/AppealForm.tsx:73 +msgid "You've already appealed this label and it's being reviewed by our moderation team." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:128 +#: src/lib/moderation/useModerationCauseDescription.ts:109 +msgid "You've chosen to hide a word or tag within this post." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:313 +msgid "You've denied access to your contacts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:237 +msgid "You've found some people to follow" +msgstr "" + +#: src/components/FocusScope/index.tsx:112 +msgid "You've reached the end of the active content." +msgstr "" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:42 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "" + +#: src/view/com/composer/Composer.tsx:729 +msgid "You've reached the maximum number of drafts" +msgstr "" + +#: src/lib/hooks/useCleanError.ts:68 +msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 +msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." +msgstr "" + +#: src/components/FocusScope/index.tsx:88 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:455 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:459 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1221 +msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" +msgstr "" + +#: src/screens/Signup/index.tsx:199 +msgid "Your account" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:128 +msgid "Your account has been deleted, see ya! โœŒ๏ธ" +msgstr "" + +#: src/screens/Takendown.tsx:142 +msgid "Your account has been suspended" +msgstr "" + +#: src/view/com/composer/state/video.ts:463 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:836 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:837 +msgid "Your account must be at least 7 days old to create a new group chat." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:107 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Takendown.tsx:210 +msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." +msgstr "" + +#: src/screens/Takendown.tsx:150 +msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:287 +msgid "Your birth date" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:45 +msgid "Your chats have been disabled" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:70 +msgid "Your choice will be remembered for future links. You can change it at any time in settings." +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:380 +msgid "Your contact {firstAuthorLink} is on Bluesky" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:378 +msgid "Your contact {firstAuthorName} is on Bluesky" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:454 +msgid "Your contact {name}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(currentAccount?.handle || '', '@') +#: src/screens/Settings/components/ChangeHandleDialog.tsx:531 +msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." +msgstr "" + +#: src/screens/Moderation/index.tsx:231 +msgid "Your declared age is under 18. Some settings below may be disabled. If this was a mistake, you may edit your birthdate in your <0>account settings." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:252 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:256 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +msgid "Your email" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:82 +#: src/screens/Signup/state.ts:297 +#: src/screens/Signup/StepInfo/index.tsx:129 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 +msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." +msgstr "" + +#: src/state/shell/progress-guide.tsx:216 +msgid "Your first like!" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:496 +msgid "Your followers" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:41 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#. placeholder {0}: createFullHandle(subdomain, host) +#: src/screens/Settings/components/ChangeHandleDialog.tsx:247 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:182 +msgid "Your hosting provider canโ€™t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:188 +msgid "Your hosting provider is detected automatically from the username you enter." +msgstr "" + +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 +#: src/screens/Settings/ContentAndMediaSettings.tsx:94 +#: src/screens/Settings/ContentAndMediaSettings.tsx:97 +#: src/screens/Settings/InterestsSettings.tsx:49 +msgid "Your interests" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:138 +msgctxt "toast" +msgid "Your interests have been updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 +msgid "Your interests help us find what you like!" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:356 +msgid "Your location has been updated." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "Your muted words" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:72 +msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:156 +msgid "Your password must be at least 8 characters long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1225 +msgid "Your post was sent" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1222 +msgid "Your posts were sent" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:289 +msgid "Your preferred language" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 +msgid "Your profile picture" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 +msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1224 +msgid "Your reply was sent" +msgstr "" + +#. placeholder {0}: state.selectedLabeler?.creator.displayName +#: src/components/moderation/ReportDialog/index.tsx:519 +msgid "Your report will be sent to <0>{0}." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:63 +msgid "Your selected interests help us serve you content you care about." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1553 +msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 +msgid "Your username and password will be shared with <0>{host}. If you donโ€™t recognize this provider, double-check your username." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:67 +msgid "Your verifications" +msgstr "" diff --git a/src/locale/locales/en-GB/messages.po b/src/locale/locales/en-GB/messages.po index 985b3e76eb..54346f39ed 100644 --- a/src/locale/locales/en-GB/messages.po +++ b/src/locale/locales/en-GB/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: en_GB\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: English, United Kingdom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" category (active)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(blocked message hidden)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(contains embedded content)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(deleted message)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(invalid chat invite link)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(message sent before you joined)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hour} other {# hours}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# label applied} other {# labels applied}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# like} other {# likes}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# member} other {# members}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# new join request} other {# new join requests}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Account)" @@ -251,36 +252,13 @@ msgstr "{0} added to chat" msgid "{0} and {1} added to chat" msgstr "{0} and {1} added to chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} and {1} like this" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} and {others, plural, one {{1} other} other {{2} others}} like this" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} and {othersLabel} like this" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} following" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} is blocking you" @@ -324,14 +302,6 @@ msgstr "{0} left" msgid "{0} left the group" msgstr "{0} left the group" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} likes this" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} out of 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reacted {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1} and {others, plural, one {{2} other} other {{3} others}} like this" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1} and {othersLabel} like this" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} verified you" msgid "{following} following" msgstr "{following} following" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, one {post} other {posts}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} canโ€™t be added" @@ -698,7 +660,7 @@ msgstr "{handle} canโ€™t be added" msgid "{handle} can't be messaged" msgstr "{handle} can't be messaged" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "{handle} canโ€™t be messaged" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# unread item} other {# unread items}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contact found} other {# contacts found}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} other} other {{1} others}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} joined Bluesky {timeAgoString} ago" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, one {# character remaining} other {# characters remaining}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} replied" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} replied to {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} replied to you" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# request} other {# requests}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ requests" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}h ago" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} is a trusted verifier" @@ -842,13 +795,13 @@ msgstr "{userName}'s verifications" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {following} other {following}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {quote} other {quotes}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} other {reposts}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {save} other {saves}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {like} other {likes}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> added you" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics and everything else happening on Bluesky." @@ -971,7 +924,7 @@ msgstr "30 days" msgid "7 days" msgstr "7 days" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" @@ -988,9 +941,11 @@ msgstr "A network error occurred. Please check your internet connection" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "A new code has been sent" msgid "A new form of verification" msgstr "A new form of verification" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "A reply to a message sent before you joined" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "A screenshot of the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now!!!\"." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "A selected recipient is not followed by the sender." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Access requested! The group owner will review your request." msgid "Accessibility" msgstr "Accessibility" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Accessibility Settings" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Account Muted by List" msgid "Account options" msgstr "Account options" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Account removed from quick access" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Activity from others" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Activity notifications" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Add alt text (optional)" msgid "Add another account" msgstr "Add another account" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Add another post" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Add another post to thread" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Add another search filter" @@ -1253,7 +1213,7 @@ msgstr "Add automation label to account" msgid "Add emoji reaction" msgstr "Add emoji reaction" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Add filter" @@ -1338,7 +1298,7 @@ msgstr "Add this feed to your feeds" msgid "Add to lists" msgstr "Add to lists" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Add to saved posts" @@ -1400,7 +1360,7 @@ msgstr "Adult" msgid "Adult content" msgstr "Adult content" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "All" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "All friends followed!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "All languages" @@ -1491,11 +1447,6 @@ msgstr "All languages will be shown in your feeds." msgid "All of these words" msgstr "All of these words" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "All posts" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "All the feeds you've saved, right in one place." @@ -1560,7 +1511,7 @@ msgstr "Allows access to direct messages" msgid "Already have a code?" msgstr "Already have a code?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Already have an account?" @@ -1614,7 +1565,7 @@ msgstr "An email has been sent to {0}. It includes a confirmation code which you msgid "An error has occurred" msgstr "An error has occurred" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "An error occurred" @@ -1631,7 +1582,7 @@ msgstr "An error occurred while fetching suggested accounts." msgid "An error occurred while fetching the feed." msgstr "An error occurred while fetching the feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "An error occurred while generating your starter pack. Want to try again?" @@ -1640,11 +1591,11 @@ msgstr "An error occurred while generating your starter pack. Want to try again? msgid "An error occurred while hiding suggestion. {0}" msgstr "An error occurred while hiding suggestion. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "An error occurred while loading the video. Please try again later." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "An error occurred while loading the video. Please try again." @@ -1684,7 +1635,7 @@ msgstr "An error occurred. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "An illustration depicting user avatars flowing from a contact book into the Bluesky app" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "An illustration of several Bluesky posts alongside repost, like, and comment icons" @@ -1705,17 +1656,15 @@ msgstr "An invite link lets people join this group chat without being added dire msgid "An issue not included in these options" msgstr "An issue not included in these options" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "An issue occurred creating the group chat, please try again." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "An issue occurred starting the chat, please try again." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "An issue occurred starting the group chat, please try again." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "Any date" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Anyone" @@ -1802,7 +1749,7 @@ msgstr "Anyone who follows me" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Anyone who has it will no longer be able to join or request to join. You can always create a new one." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "App password names must be at least 4 characters long" msgid "App passwords" msgstr "App passwords" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App Passwords" @@ -1891,8 +1838,8 @@ msgstr "Appeal this decision" msgid "Appeal this label" msgstr "Appeal this label" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Apply Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archived from {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Archived post" @@ -1980,7 +1927,7 @@ msgstr "Are you sure you want to remove this from your feeds?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Are you sure you want to rescind your request to join {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Are you sure you'd like to discard this post?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "Author" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Automated account" @@ -2033,7 +1985,7 @@ msgstr "Automatic" msgid "Automation label" msgstr "Automation label" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automation Label" @@ -2050,12 +2002,16 @@ msgstr "Autoplay videos and GIFs" msgid "Available" msgstr "Available" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "Avatar creator" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Before creating a post or replying, you must first verify your email." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Before creating a starter pack, you must first verify your email." @@ -2135,10 +2091,10 @@ msgstr "Before you can get notifications for {name}'s posts, you must first veri #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "Begin the age assurance process by completing the fields below." msgid "Beta Feature" msgstr "Beta Feature" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "Beta features" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Beta features enabled" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "Birthdate" msgid "Birthday" msgstr "Birthday" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Blocked" msgid "Blocked accounts" msgstr "Blocked accounts" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blocked Accounts" @@ -2282,7 +2244,7 @@ msgstr "Blocked accounts cannot reply in your threads, mention you, or otherwise msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blocking does not prevent this labeller from placing labels on your account." @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky cannot confirm the authenticity of the claimed date." @@ -2330,7 +2293,7 @@ msgstr "Bluesky is an open network where you can choose your hosting provider. I msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky is an open network where you can choose your hosting provider. If youโ€™re new here, we recommend sticking with the default Bluesky Social option." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky is better with friends!" @@ -2358,7 +2321,7 @@ msgstr "Bluesky Social Terms of Service" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky will choose a set of recommended accounts from people in your network." @@ -2403,20 +2366,20 @@ msgstr "Bring up to 50 friends together in one chat." msgid "Browse custom feeds" msgstr "Browse custom feeds" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Browse more accounts" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Browse more feeds on the Explore page" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Browse more suggestions" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Browse more suggestions on the Explore page" @@ -2425,24 +2388,25 @@ msgstr "Browse more suggestions on the Explore page" msgid "Browse other feeds" msgstr "Browse other feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Browse posts about {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Browse posts tagged with {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Browse starter pack {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Browse topic {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Browse topic {displayName}" @@ -2461,8 +2425,8 @@ msgstr "Button to go back to the home timeline" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "By {0}" @@ -2473,9 +2437,9 @@ msgstr "by @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "By <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "By creating an account you agree to the <0>Terms of Service and <1>P msgid "By creating an account you agree to the <0>Terms of Service." msgstr "By creating an account you agree to the <0>Terms of Service." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "By you" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Camera" @@ -2534,7 +2498,7 @@ msgstr "Camera access needed" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Camera access needed" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Cancel reactivation and sign out" msgid "Cancel reply" msgstr "Cancel reply" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancel search" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Changes to the starter pack will not be reflected in the list after creation. The list will be an independent copy." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat muted" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Chat not found." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Chat options" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Chat owners cannot leave a group chat." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Chat recipient is not followed by the sender." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Chat request inbox" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Chat requests" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chat settings" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat unmuted" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2802,7 @@ msgstr "Choose domain verification method" msgid "Choose Feeds" msgstr "Choose Feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Choose for me" @@ -2854,7 +2819,7 @@ msgstr "Choose People" msgid "Choose post languages" msgstr "Choose post languages" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Choose this colour as your avatar" @@ -2879,7 +2844,7 @@ msgstr "Choose your own timeline! Feeds built by the community help you find con msgid "Choose your password" msgstr "Choose your password" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Choose your username" @@ -2966,7 +2931,7 @@ msgstr "Click here to view the invite link for this group chat" msgid "Click to open tag menu for {0}" msgstr "Click to open tag menu for {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Click to retry failed message" @@ -3003,7 +2968,7 @@ msgstr "Click to retry failed message" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Click to retry failed message" msgid "Close" msgstr "Close" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Close active dialog" @@ -3047,7 +3012,7 @@ msgstr "Close banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Close image viewer" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Close menu" @@ -3090,7 +3055,7 @@ msgstr "Close the incoming requests banner" msgid "Close this dialog" msgstr "Close this dialog" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Close welcome modal" @@ -3098,7 +3063,7 @@ msgstr "Close welcome modal" msgid "Closes password update alert" msgstr "Closes password update alert" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Closes post composer and discards post draft" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Colour" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Colour mode" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Comics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Community Guidelines" @@ -3141,7 +3106,7 @@ msgstr "Community Guidelines" msgid "Complete onboarding and start using your account" msgstr "Complete onboarding and start using your account" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Complete the challenge" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Compose new post" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Compose posts up to {0, plural, other {# characters}} in length" @@ -3160,11 +3125,11 @@ msgstr "Compose posts up to {0, plural, other {# characters}} in length" msgid "Compose reply" msgstr "Compose reply" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Compressing GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Compressing video..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Contact our support team" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contact support" @@ -3253,7 +3218,7 @@ msgstr "Content & Media" msgid "Content and media" msgstr "Content and media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Content and Media" @@ -3265,10 +3230,6 @@ msgstr "Content Blocked" msgid "Content filters" msgstr "Content filters" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Content from across the network we think you might like." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Content languages" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Content promoting or depicting self-harm" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Content Warning" msgid "Content warnings" msgstr "Content warnings" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Context menu backdrop, click to close the menu." @@ -3302,7 +3263,7 @@ msgstr "Context menu backdrop, click to close the menu." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Continue thread..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continue to group name" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "Conversation not found." msgid "Copied build version to clipboard" msgstr "Copied build version to clipboard" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Copied link to clipboard" @@ -3376,7 +3337,7 @@ msgstr "Copied link to clipboard" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Copy App Password" msgid "Copy at:// URI" msgstr "Copy at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copy author DID" @@ -3449,10 +3410,10 @@ msgstr "Copy Link" msgid "Copy link to list" msgstr "Copy link to list" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copy link to post" @@ -3470,8 +3431,8 @@ msgstr "Copy link to starter pack" msgid "Copy message text" msgstr "Copy message text" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copy post at:// URI" @@ -3490,7 +3451,7 @@ msgstr "Copy TXT record value" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Copyright Policy" @@ -3540,11 +3501,11 @@ msgstr "Could not follow all matches. {0}" msgid "Could not leave chat" msgstr "Could not leave chat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Could not leave chat." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Could not load feed" @@ -3562,7 +3523,7 @@ msgstr "Could not load profile" msgid "Could not mute chat" msgstr "Could not mute chat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Could not remove member." @@ -3606,8 +3567,8 @@ msgstr "cows pigs" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Create" @@ -3624,26 +3585,26 @@ msgstr "Create a list from this starter pack" msgid "Create a QR code for a starter pack" msgstr "Create a QR code for a starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Create a starter pack" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Create a Starter Pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Create a starter pack for me" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Create account" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Create an account" @@ -3666,15 +3627,15 @@ msgstr "Create an account" msgid "Create an account without using this starter pack" msgstr "Create an account without using this starter pack" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Create an avatar instead" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Create another" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Create group chat" @@ -3743,7 +3704,7 @@ msgstr "Culture" msgid "Current beta features" msgstr "Current beta features" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Current chat" @@ -3770,8 +3731,8 @@ msgstr "Dangerous substances or drug abuse" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Dark" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Dark" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Dark theme" @@ -3814,7 +3775,7 @@ msgstr "Decline this language suggestion" msgid "Deepfake adult content" msgstr "Deepfake adult content" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Default" @@ -3894,7 +3855,7 @@ msgstr "Delete my account" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Delete post" @@ -3988,7 +3949,7 @@ msgstr "Dialog: adjust who can interact with this post" msgid "Dialog: Set search filters" msgstr "Dialog: Set search filters" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Dim" @@ -4002,7 +3963,7 @@ msgstr "Disable" msgid "Disable 2FA" msgstr "Disable 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Disable subtitles" @@ -4045,9 +4006,9 @@ msgstr "Disabled" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Discard" msgid "Discard changes?" msgstr "Discard changes?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Discard draft?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Discard post?" @@ -4079,6 +4040,10 @@ msgstr "Disconnect Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Discourage apps from showing my account to logged-out users" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Discover feeds" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Discourage apps from showing my account to logged-out users" msgid "Discover new custom feeds" msgstr "Discover new custom feeds" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Discover new feeds" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Discover New Feeds" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Dismiss" @@ -4103,28 +4064,28 @@ msgstr "Dismiss" msgid "Dismiss banner" msgstr "Dismiss banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Dismiss error" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Dismiss getting started guide" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Dismiss interests" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Dismiss live event banner" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Dismiss this section" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Dismiss this suggestion" @@ -4142,7 +4103,7 @@ msgstr "Display larger alt text badges" msgid "Display name" msgstr "Display name" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Ditch the trolls and clickbait. Find real people and conversations that matter to you." @@ -4205,8 +4166,8 @@ msgstr "Don't worry! All existing messages and settings are saved and will be av #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Don't worry! All existing messages and settings are saved and will be av msgid "Done" msgstr "Done" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Double tap or long press the message to add a reaction" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Double tap to close the dialog" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Double tap to like" @@ -4328,6 +4289,7 @@ msgstr "Eating disorders" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Edit image" msgid "Edit interaction settings" msgstr "Edit interaction settings" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Edit interests" @@ -4397,7 +4359,7 @@ msgstr "Edit live status" msgid "Edit moderation list" msgstr "Edit moderation list" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Edit My Feeds" @@ -4406,6 +4368,11 @@ msgstr "Edit My Feeds" msgid "Edit name" msgstr "Edit name" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Edit notifications from {0}" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Edit People" @@ -4444,7 +4411,7 @@ msgstr "Edit user list" msgid "Edit who can reply" msgstr "Edit who can reply" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Edit your starter pack" @@ -4500,8 +4467,8 @@ msgstr "Embed HTML code" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Embed post" @@ -4509,7 +4476,7 @@ msgstr "Embed post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Embedded video player" @@ -4533,7 +4500,7 @@ msgstr "Enable adult content" msgid "Enable beta features" msgstr "Enable beta features" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Enable subtitles" @@ -4550,12 +4517,13 @@ msgstr "Enable external media" msgid "Enable media players for" msgstr "Enable media players for" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Enable push notifications" @@ -4581,7 +4549,7 @@ msgstr "Enable trending videos in your Discover feed" msgid "Enabled" msgstr "Enabled" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "End of feed" @@ -4608,7 +4576,7 @@ msgstr "Enter a word or tag" msgid "Enter code" msgstr "Enter code" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Enter fullscreen" @@ -4650,11 +4618,11 @@ msgstr "Enter your username and password" msgid "Enters full screen" msgstr "Enters fullscreen" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Entertainment" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" @@ -4684,7 +4652,7 @@ msgstr "Error occurred while saving file" msgid "Error receiving captcha response." msgstr "Error receiving captcha response." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Error: {error}" @@ -4696,8 +4664,8 @@ msgstr "Everybody can reply" msgid "Everybody can reply to this post." msgstr "Everybody can reply to this post." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Everyone" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Everyone" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Everything else" @@ -4738,7 +4706,7 @@ msgstr "Exclude users you follow" msgid "Excludes users you follow" msgstr "Excludes users you follow" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Exit fullscreen" @@ -4755,11 +4723,11 @@ msgstr "Expand list of users" msgid "Expand or collapse the full post you are replying to" msgstr "Expand or collapse the full post you are replying to" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Expand post text" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Expands or collapses post text" @@ -4802,15 +4770,15 @@ msgstr "Explicit or potentially disturbing media." msgid "Explicit sexual images." msgstr "Explicit sexual images." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explore" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Explore the app" @@ -4844,7 +4812,7 @@ msgstr "External Media" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "External Media Preferences" @@ -4886,7 +4854,7 @@ msgstr "Failed to change handle. Please try again." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Failed to copy link" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Failed to leave group chat" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Failed to load conversations" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Failed to load feeds" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Failed to load feeds preferences" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Failed to load notification settings." @@ -5012,14 +4981,14 @@ msgstr "Failed to load preference." msgid "Failed to load profiles" msgstr "Failed to load profiles" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Failed to load suggested feeds" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Failed to load suggested follows" @@ -5027,12 +4996,12 @@ msgstr "Failed to load suggested follows" msgid "Failed to lock group chat" msgstr "Failed to lock group chat" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Failed to mark all chats as read" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "Failed to rescind your request. Please try again." msgid "Failed to resolve location. Please try again." msgstr "Failed to resolve location. Please try again." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Failed to save draft" @@ -5191,7 +5160,7 @@ msgstr "Fake account or bot" msgid "False information about elections" msgstr "False information about elections" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5181,7 @@ msgstr "Feed creator" msgid "Feed identifier" msgstr "Feed identifier" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Feed menu" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback sent to feed operator" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds updated!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds we think you might like." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Fetch update" @@ -5273,34 +5238,22 @@ msgstr "Fetch update" msgid "File saved successfully!" msgstr "File saved successfully!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Filter by author" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Filter by author (currently: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Filter by media" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Filter by media (currently: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filter from feeds" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filter search by language" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filter search by language (currently: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "Filter search by media (currently: {currentLabel})" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "Filter this search by {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filter who can opt to receive notifications for your activity" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filter who you receive notifications from" @@ -5352,8 +5305,8 @@ msgstr "Find accounts to follow" msgid "Find and invite friends" msgstr "Find and invite friends" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Find Contacts" @@ -5387,7 +5340,7 @@ msgstr "Find your friends" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Find your people" @@ -5429,7 +5382,7 @@ msgstr "Focus the search field" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Follow {0}" msgid "Follow {displayName}" msgstr "Follow {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Follow {handle}" @@ -5453,11 +5406,11 @@ msgstr "Follow {handle}" msgid "Follow 10 accounts" msgstr "Follow 10 accounts" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Follow 10 people to get started" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Follow 7 accounts" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Followers can join" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Followers of @{0} that you know" @@ -5544,7 +5497,7 @@ msgstr "Followers you know" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Following {0}" msgid "Following {displayName}" msgstr "Following {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Following {handle}" @@ -5578,21 +5531,21 @@ msgstr "Following {handle}" msgid "Following feed preferences" msgstr "Following feed preferences" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Following Feed Preferences" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Follows you" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Font" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Font size" @@ -5612,13 +5565,13 @@ msgstr "For security reasons, weโ€™ll need to send a confirmation code to your e msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "For the best experience, we recommend using the theme font." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "For You" @@ -5628,7 +5581,7 @@ msgstr "For You" msgid "Forever" msgstr "Forever" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Forget the noise" @@ -5647,11 +5600,11 @@ msgstr "Forgot password?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Free your feed" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "From" @@ -5674,7 +5627,7 @@ msgstr "From <0/>" msgid "From these people" msgstr "From these people" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generate a starter pack" @@ -5718,39 +5671,39 @@ msgstr "Get early access to experimental features weโ€™re testing." msgid "Get help" msgstr "Get help" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Get notifications for starter pack joins, verification, and other activity." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Get notifications when people follow you." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Get notifications when people like your posts." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Get notifications when people like your reposts." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Get notifications when people mention you." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Get notifications when people quote your posts." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Get notifications when people reply to your posts." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Get notifications when people repost your posts." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Get notifications when people repost your reposts." @@ -5762,15 +5715,15 @@ msgstr "Get notifications when people send you message requests." msgid "Get notifications when people send you messages." msgstr "Get notifications when people send you messages." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Get notifications when there's activity on posts you're subscribed to." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Get notified about new posts" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Get notified about posts and replies from accounts you choose." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Get notified of new posts from {name}" @@ -5799,11 +5752,11 @@ msgstr "Get started" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF uploaded" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Give your profile a face" @@ -5813,20 +5766,20 @@ msgstr "Glorification of violence" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Go live for" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Go to {0}'s profile" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Group chat name updated" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Group chat settings" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Group chats can only have a maximum of {0, plural, other {# people}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Group is locked" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Group name" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" @@ -6077,7 +6031,7 @@ msgstr "Harmful or high-risk activities" msgid "Harming or endangering minors" msgstr "Harming or endangering minors" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6052,7 @@ msgstr "Have a code? <0>Click here." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Have we got your location wrong? <0>Tap here to update your location with GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Having trouble?" @@ -6114,7 +6068,7 @@ msgstr "Held by Bluesky for 7 days to prevent abuse, then deleted" msgid "Help" msgstr "Help" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Help people know you're not a bot by uploading a picture or creating an avatar." @@ -6135,12 +6089,12 @@ msgstr "Hey there!" msgid "Hi there!" msgstr "Hi there!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Hidden" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Hidden by your moderation settings." @@ -6148,9 +6102,10 @@ msgstr "Hidden by your moderation settings." msgid "Hidden list" msgstr "Hidden list" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Hidden list" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Hide" @@ -6198,7 +6154,7 @@ msgstr "Hide reply for everyone" msgid "Hide reply for me" msgstr "Hide reply for me" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Hide this card" @@ -6218,16 +6174,18 @@ msgstr "Hide this reply?" msgid "Hide translation" msgstr "Hide translation" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Hide trending topics" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Hide trending topics?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Hide trending videos?" @@ -6240,7 +6198,7 @@ msgstr "Hide user list" msgid "Hide verification badges" msgstr "Hide verification badges" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Hides the content" @@ -6293,8 +6251,8 @@ msgstr "Hmm, we couldn't load that moderation service." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Hold up! Weโ€™re gradually giving access to video and youโ€™re still waiting in line. Check back soon!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "Hosting provider: {0}" msgid "Hosting provider: Bluesky" msgstr "Hosting provider: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Hot" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "How it works:" @@ -6409,6 +6363,7 @@ msgstr "If you update your email address, email 2FA will be disabled." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "If you want to change your password, we will send you a code to verify that this is your account." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." @@ -6548,7 +6503,7 @@ msgstr "In-app, push, everyone" msgid "In-app, push, people you follow" msgstr "In-app, push, people you follow" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Inbox empty" @@ -6564,7 +6519,6 @@ msgstr "Inbox zero!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "Include" @@ -6573,7 +6527,7 @@ msgstr "Include" msgid "Include or exclude matching posts (currently: {0})" msgstr "Include or exclude matching posts (currently: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Include posts and/or replies (currently: {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "Include posts made since this date" msgid "Include posts made until this date" msgstr "Include posts made until this date" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Include these results" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Incorrect username or password" @@ -6683,7 +6633,7 @@ msgstr "Invite {name} to join Bluesky" msgid "Invite code" msgstr "Invite code" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Invite code not accepted. Check that you input it correctly and try again." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "It's just you right now! Add more people to your starter pack by searching above." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Job ID: {0}" @@ -6816,8 +6766,8 @@ msgstr "Join the conversation" msgid "Journalism" msgstr "Journalism" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Keep editing" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "KWS website" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Labelled by {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Labelled by the author." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Labels" @@ -6852,7 +6802,7 @@ msgstr "Labels added" msgid "Labels applied to this post" msgstr "Labels applied to this post" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Labels are annotations on users and content. They can be used to hide, warn and categorise the network." @@ -6864,7 +6814,7 @@ msgstr "Labels on your account" msgid "Language" msgstr "Language" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Language Settings" @@ -6874,7 +6824,7 @@ msgstr "Language Settings" msgid "Languages" msgstr "Languages" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Larger" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Last initiated just now" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Latest" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Learn more" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Learn More" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Learn more about <0>how to use advanced search." @@ -6937,8 +6887,8 @@ msgstr "Learn more about importing contacts" msgid "Learn more about self hosting your PDS." msgstr "Learn more about self-hosting your PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Learn more about the moderation applied to this content" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Learn more about these changes and how to share your thoughts with us by reading our blog post." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Learn more about this warning" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Learn more in your <0>account settings." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Learn more." @@ -6993,8 +6943,8 @@ msgstr "Leave" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Leaving Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Left group chat." @@ -7042,7 +6992,7 @@ msgstr "Left group chat." msgid "left to go." msgstr "left to go." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Let me choose" @@ -7057,7 +7007,7 @@ msgstr "Let's go!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Light" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Light" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Like" @@ -7076,7 +7026,7 @@ msgstr "Like" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Like ({0, plural, one {# like} other {# likes}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Like 10 posts" @@ -7085,7 +7035,7 @@ msgstr "Like 10 posts" msgid "Like 10 posts to train the Discover feed" msgstr "Like 10 posts to train the Discover feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Like this feed" @@ -7093,8 +7043,8 @@ msgstr "Like this feed" msgid "Like this labeler" msgstr "Like this labeller" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Liked by" @@ -7111,27 +7061,45 @@ msgstr "Liked By" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Liked by {0, plural, one {# user} other {# users}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Liked by {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Liked by {0} and {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Liked by {likeCount, plural, one {# user} other {# users}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Likes" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Likes of your reposts" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Likes on this post" @@ -7144,7 +7112,7 @@ msgstr "Linear" msgid "Link copied to clipboard" msgstr "Link copied to clipboard" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "List" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "List unmuted" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "Live event happening now: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Live event hidden" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Live event unhidden" @@ -7279,12 +7247,12 @@ msgstr "Live feature is in beta" msgid "Live link" msgstr "Live link" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Load more" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Load more suggested feeds" @@ -7292,8 +7260,8 @@ msgstr "Load more suggested feeds" msgid "Load new notifications" msgstr "Load new notifications" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Lock this group chat" msgid "Locked" msgstr "Locked" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Log" @@ -7387,7 +7355,7 @@ msgstr "Love GIFs" msgid "Make adjustments to email settings for your account" msgstr "Make adjustments to email settings for your account" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Make one for me" @@ -7418,15 +7386,15 @@ msgstr "Manual" msgid "Mark all as read" msgstr "Mark all as read" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Mark all chats as read" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Mark as read" msgid "Marked all as read" msgstr "Marked all as read" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Marked all chats as read" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Marked all requests as read" @@ -7456,8 +7424,12 @@ msgstr "Marked all requests as read" msgid "Maybe later" msgstr "Maybe later" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Me" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Media" @@ -7475,7 +7447,7 @@ msgstr "Media stored on another device" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media that may be disturbing or inappropriate for some audiences." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Member removed from group chat." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "mentioned users" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mentions" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Message deleted" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Message failed to send." @@ -7563,15 +7535,15 @@ msgstr "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Message options" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Messages" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Messages from this person are hidden while they are blocking you." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Messages from this person are hidden while you are blocking them." @@ -7592,7 +7564,7 @@ msgstr "Misleading" msgid "Missing media" msgstr "Missing media" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderation" @@ -7636,7 +7608,7 @@ msgstr "Moderation list updated" msgid "Moderation lists" msgstr "Moderation lists" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderation Lists" @@ -7645,7 +7617,7 @@ msgstr "Moderation Lists" msgid "moderation settings" msgstr "moderation settings" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderation states" @@ -7786,7 +7758,7 @@ msgstr "Muted" msgid "Muted accounts" msgstr "Muted accounts" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Muted Accounts" @@ -7867,7 +7839,6 @@ msgstr "Need to report a copyright violation, legal request, or regulatory compl msgid "Nevermind, create a handle for me" msgstr "Nevermind, create a handle for me" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "New" @@ -7893,11 +7864,11 @@ msgstr "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "New chat" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "New Feature" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "New followers" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "New group chat" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "New group chat" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "New group chat with:" @@ -7966,13 +7937,13 @@ msgstr "New list" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "New message requests" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "New messages" @@ -7982,12 +7953,12 @@ msgstr "New messages" msgid "New password" msgstr "New password" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "New post" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Newest replies first" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "News" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Next image" msgid "Night" msgstr "Night" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." @@ -8065,6 +8036,11 @@ msgstr "No ads, no invasive tracking, no engagement traps. Bluesky respects your msgid "No app passwords yet" msgstr "No app passwords yet" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "No author filter" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "No beta features at the moment." @@ -8098,7 +8074,7 @@ msgstr "No expiry set" msgid "No feeds found. Try searching for something else." msgstr "No feeds found. Try searching for something else." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "No followers yet" @@ -8116,9 +8092,15 @@ msgstr "No GIFs to show right now. Try again in a moment." msgid "No image" msgstr "No image" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "No language filter" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "No likes yet" @@ -8135,7 +8117,12 @@ msgstr "No lists" msgid "No longer following {0}" msgstr "No longer following {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "No media filter" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "No media yet" @@ -8143,7 +8130,7 @@ msgstr "No media yet" msgid "No messages yet" msgstr "No messages yet" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." @@ -8180,16 +8167,21 @@ msgstr "No one but the author can quote this post." msgid "No one can send messages" msgstr "No one can send messages" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "No post filter" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "No posts here" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "No posts yet" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "No quotes yet" @@ -8198,11 +8190,7 @@ msgstr "No quotes yet" msgid "No recent GIFs yet. Pick one to see it here." msgstr "No recent GIFs yet. Pick one to see it here." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "No replies" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "No replies yet" @@ -8217,13 +8205,13 @@ msgstr "No result" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "No results" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "No results for \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "No results found" msgid "No results found for \"{query}\"" msgstr "No results found for \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "No results found for โ€œ<0>{query}โ€." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "No results found for your query with advanced search filters applied." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "No results." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "No Starter Packs yet" @@ -8265,7 +8253,7 @@ msgstr "No thanks" msgid "No translation received from your device." msgstr "No translation received from your device." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "No video posts yet" @@ -8278,7 +8266,7 @@ msgstr "Nobody" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nobody has liked this yet. Maybe you should be the first!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Nobody has quoted this yet. Maybe you should be the first!" @@ -8298,6 +8286,10 @@ msgstr "Non-consensual intimate imagery" msgid "Non-sexual Nudity" msgstr "Non-sexual Nudity" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "None" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Not available on this platform." msgid "Not followed by anyone youโ€™re following" msgstr "Not followed by anyone youโ€™re following" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Not Found" @@ -8333,7 +8325,7 @@ msgstr "Note about sharing" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Note: This post is only visible to logged-in users." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Nothing saved yet" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Notification settings" @@ -8353,11 +8345,12 @@ msgstr "Notification settings" msgid "Notification sounds" msgstr "Notification sounds" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Oh no!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Okay" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Onboarding reset" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "One of the selected recipients does not allow group chats." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "One of the selected recipients has blocked you and cannot be messaged." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "One or more GIFs is missing alt text." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "One or more images is missing alt text." @@ -8454,11 +8449,11 @@ msgstr "One or more of your selected files are not supported." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {The maximum number of characters is # characters.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "One or more videos is missing alt text." @@ -8471,7 +8466,7 @@ msgstr "Only {0} can reply." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" @@ -8507,6 +8502,10 @@ msgstr "Only people {0} follows can join." msgid "Only people the chat owner follows can join" msgstr "Only people the chat owner follows can join" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "Only posts" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "Only posts with media" @@ -8519,7 +8518,7 @@ msgstr "Only posts with videos" msgid "Only replies" msgstr "Only replies" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Only WebVTT (.vtt) files are supported" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Oops, this profile doesn't exist. Try scanning another one." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Oops!" @@ -8544,7 +8543,7 @@ msgstr "Oops!" msgid "Open advanced search options" msgstr "Open advanced search options" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Open avatar creator" @@ -8570,21 +8569,22 @@ msgstr "Open conversation options" msgid "Open draft" msgstr "Open draft" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Open drawer menu" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Open emoji picker" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Open feed info screen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Open feed options menu" @@ -8627,7 +8627,7 @@ msgstr "Open moderation debug page" msgid "Open muted words and tags settings" msgstr "Open muted words and tags settings" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Open pack" @@ -8699,7 +8699,7 @@ msgstr "Opens additional details for a debug entry" msgid "Opens alt text dialog" msgstr "Opens alt text dialog" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Opens camera on device" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Opens flow to create a new Bluesky account" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Opens flow to sign in to your existing Bluesky account" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Password updated!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pause" @@ -8925,12 +8925,12 @@ msgstr "Pause" msgid "Pause GIF" msgstr "Pause GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pause video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "People" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "People {ownerName} follows can request to join" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "People followed by @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "People following @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "People I follow" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "People I follow can request to join" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "People you follow" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Pictures meant for adults." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Pin feed" @@ -9034,7 +9034,7 @@ msgstr "Pin feed" msgid "Pin to home" msgstr "Pin to home" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Pin to Home" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Pinned" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Pinned {0} to Home" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Pinned to your feeds" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Play" @@ -9076,8 +9076,8 @@ msgstr "Play {0}" msgid "Play GIF" msgstr "Play GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Play video" @@ -9109,11 +9109,11 @@ msgstr "Please add any content warning labels that are applicable for the media 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Please choose your handle." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Please choose your password." @@ -9122,7 +9122,7 @@ msgstr "Please choose your password." 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 "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." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Please complete the verification captcha." @@ -9179,7 +9179,7 @@ msgstr "Please enter the code you received and the new password you would like t 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:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Please enter your email." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Please write your message below:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politics" @@ -9269,7 +9269,7 @@ msgstr "Politics" msgid "Porn" msgstr "Porn" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Post" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Post a photo" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Post a video" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Post All" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Post anyway" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Post blocked" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Post by @{0}" @@ -9340,7 +9340,7 @@ msgstr "Post Hidden by You" msgid "Post interaction settings" msgstr "Post interaction settings" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Post Interaction Settings" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Post pinned" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "Post type" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Post unpinned" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Posts" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "Posts and replies" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." @@ -9398,6 +9396,10 @@ msgstr "Posts can be muted based on their text, their tags, or both. We recommen msgid "Posts hidden" msgstr "Posts hidden" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Posts, Replies" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Potentially misleading link" @@ -9449,20 +9451,21 @@ msgstr "Privacy" msgid "Privacy and security" msgstr "Privacy and security" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacy and Security" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Privacy and Security settings" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Privacy Policy" msgid "Privacy violation of a minor" msgstr "Privacy violation of a minor" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Processing GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Processing video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Public, shareable lists of users to mute or block in bulk." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publish post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publish posts" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publish replies" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publish reply" @@ -9599,12 +9602,12 @@ msgstr "Quote posts disabled" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Quotes" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Quotes of this post" @@ -9647,7 +9650,7 @@ msgstr "Reactivate your account" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Read {0, plural, one {# more reply} other {# more replies}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Read about how to use advanced search filters" @@ -9657,11 +9660,11 @@ msgstr "Read about how to use advanced search filters" msgid "Read blog post" msgstr "Read blog post" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Read less" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Read more" @@ -9687,11 +9690,11 @@ msgstr "Read the Bluesky Privacy Policy" msgid "Read the Bluesky Terms of Service" msgstr "Read the Bluesky Terms of Service" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Real conversations." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Real people." @@ -9721,10 +9724,6 @@ msgstr "Recent searches" msgid "Recently used" msgstr "Recently used" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recommended" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconnect" @@ -9748,7 +9747,7 @@ msgstr "Reject chat request" msgid "Reject join request" msgstr "Reject join request" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Reload conversations" @@ -9766,7 +9765,7 @@ msgstr "Reload conversations" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Remove" @@ -9792,8 +9791,8 @@ msgstr "Remove {displayName}?" msgid "Remove {q}" msgstr "Remove {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Remove account" @@ -9845,15 +9844,15 @@ msgstr "Remove filter" msgid "Remove from chat" msgstr "Remove from chat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Remove from my feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Remove from quick access?" @@ -9862,7 +9861,7 @@ msgstr "Remove from quick access?" msgid "Remove from saved feeds" msgstr "Remove from saved feeds" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Remove from saved posts" @@ -9880,8 +9879,8 @@ msgstr "Remove image" msgid "Remove live status" msgstr "Remove live status" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Remove member" @@ -9943,7 +9942,7 @@ msgstr "Removed from list" msgid "Removed from saved feeds" msgstr "Removed from saved feeds" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Removed from saved posts" @@ -9952,7 +9951,7 @@ msgstr "Removed from saved posts" msgid "Removed from starter pack" msgstr "Removed from starter pack" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Replied to you" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Replied-to message from {senderName}, tap to scroll to it" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Replied-to message was sent before you joined" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Replied-to message, tap to scroll to it" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Replies" @@ -10037,7 +10037,7 @@ msgstr "Replies to this post are disabled." msgid "Reply" msgstr "Reply" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Reply" @@ -10098,8 +10098,8 @@ msgstr "Report conversation" msgid "Report dialog" msgstr "Report dialog" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Report feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Reposted by you" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Reposts" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Reposts of this post" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Reposts of your reposts" @@ -10253,7 +10253,7 @@ msgstr "Requested" msgid "Requests" msgstr "Requests" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Retries the last action, which errored out" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Returns to home page" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Returns to previous page" @@ -10446,27 +10446,27 @@ msgstr "Save birthdate" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Save changes" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Save changes?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Save draft" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Save draft?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Save QR code" msgid "Save these options for next time" msgstr "Save these options for next time" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Save to my feeds" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Saved Feeds" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Saved Posts" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Saved to your feeds" @@ -10520,8 +10520,8 @@ msgstr "Saved to your feeds" msgid "Say hello!" msgstr "Say hello!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Say hi to someone" @@ -10535,7 +10535,7 @@ msgstr "Scan" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Scan QR code" @@ -10543,15 +10543,15 @@ msgstr "Scan QR code" msgid "Science" msgstr "Science" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Scroll left" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Scroll right" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Scroll to the message this is replying to" @@ -10564,8 +10564,8 @@ msgstr "Scroll to top" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Search" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Search @{0}'s posts" @@ -10612,11 +10612,11 @@ msgstr "Search for {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Search for feeds that you want to suggest to others." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Search for more accounts" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Search for more feeds" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Search GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Search is currently unavailable when logged out" @@ -10707,17 +10707,22 @@ msgstr "See #{tag} posts by user" msgid "See jobs at Bluesky" msgstr "See jobs at Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "See more" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "See more suggested profiles" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "See more trending topics" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "See suggested accounts" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Select \"{interestsDisplayName}\" category" @@ -10748,7 +10753,7 @@ msgstr "Select {0}" msgid "Select {langName}" msgstr "Select {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Select a colour" @@ -10764,11 +10769,11 @@ msgstr "Select account" msgid "Select an app language" msgstr "Select an app language" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Select an avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Select an emoji" @@ -10780,12 +10785,13 @@ msgstr "Select an option" msgid "Select app language" msgstr "Select app language" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Select subtitle file (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Select chat \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Select GIF" msgid "Select GIF \"{0}\"" msgstr "Select GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Select group chat members" @@ -10864,7 +10870,7 @@ msgstr "Select primary language" msgid "Select telephone code" msgstr "Select telephone code" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Select the {emojiName} emoji as your avatar" @@ -10945,7 +10951,8 @@ msgstr "Send message" msgid "Send post to {name}" msgstr "Send post to {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Send post to..." @@ -10963,12 +10970,12 @@ msgstr "Send the message from your phone" msgid "Send verification email" msgstr "Send verification email" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Send via chat" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Set your hosting provider manually" msgid "Sets email for password reset" msgstr "Sets email for password reset" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Settings" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Settings for activity from others" @@ -11036,49 +11043,49 @@ msgstr "Settings for activity from others" msgid "Settings for allowing others to be notified of your posts" msgstr "Settings for allowing others to be notified of your posts" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Settings for like notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Settings for mention notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Settings for new follower notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Settings for notifications for everything else" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Settings for notifications for likes of your reposts" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Settings for notifications for new message requests" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Settings for notifications for new messages" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Settings for notifications for reposts of your reposts" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Settings for quote notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Settings for reply notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Settings for repost notifications" @@ -11115,8 +11122,8 @@ msgstr "Share age range" msgid "Share anyway" msgstr "Share anyway" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Share author DID" @@ -11127,7 +11134,7 @@ msgstr "Share author DID" msgid "Share feedback" msgstr "Share feedback" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Share link dialog" msgid "Share my profile" msgstr "Share my profile" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Share post at:// URI" @@ -11169,12 +11176,12 @@ msgstr "Share Profile" msgid "Share QR code" msgstr "Share QR code" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Share this feed" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Share this search" @@ -11186,8 +11193,8 @@ msgstr "Share this starter pack" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Share this starter pack and help people join your community on Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Share your contacts to find friends" msgid "Share your thoughtsโ€ฆ" msgstr "Share your thoughtsโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Shared Preferences Tester" @@ -11219,7 +11226,7 @@ msgstr "Sharing your age range reveals only the range associated with your Apple msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner KWS to complete your verification and enable access on all platforms." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Show" msgid "Show alt text" msgstr "Show alt text" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Show anyway" @@ -11274,9 +11281,9 @@ msgstr "Show list anyway" msgid "Show lists of users to select from" msgstr "Show lists of users to select from" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "Show more" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Show warning and filter from feeds" msgid "Show when youโ€™re live" msgstr "Show when youโ€™re live" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Shows information about when this post was created" @@ -11341,15 +11348,15 @@ msgstr "Shows information about when this post was created" msgid "Shows other accounts you can switch to" msgstr "Shows other accounts you can switch to" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Shows the content" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Shows the content" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Sign out?" msgid "Sign up" msgstr "Sign up" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Sign-in Required" @@ -11469,7 +11476,7 @@ msgstr "Skip" msgid "Skip contact sharing and continue to the app" msgstr "Skip contact sharing and continue to the app" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Skip empty posts?" @@ -11487,7 +11494,7 @@ msgstr "Skip to next step" msgid "slide" msgstr "slide" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Smaller" @@ -11499,7 +11506,7 @@ msgstr "Snoozes the reminder" msgid "So many thoughts, you should post one" msgstr "So many thoughts, you should post one" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Social media you control." @@ -11520,7 +11527,7 @@ msgstr "Some moderation services in your list are no longer available." msgid "Some of your verifications are invalid." msgstr "Some of your verifications are invalid." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Some other feeds you might like" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Someone left the group" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Someone reacted {0}" @@ -11554,7 +11561,7 @@ msgstr "Someone reacted {0}" msgid "Someone reacted {0} to {target}" msgstr "Someone reacted {0} to {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Someone replied" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Something went wrong, please try again" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Something went wrong. Please try again in a moment." msgid "Something went wrong. Please try again." msgstr "Something went wrong. Please try again." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Something wrong? Let us know." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam or other inauthentic behaviour or deception" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sports" @@ -11668,7 +11675,7 @@ msgstr "Start a conversation, and it will appear here." msgid "Start a group chat" msgstr "Start a group chat" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Start a new chat" @@ -11682,17 +11689,17 @@ msgstr "Start adding people" msgid "Start adding people!" msgstr "Start adding people!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Start chat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Start chat with {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Starter Pack" @@ -11715,12 +11722,16 @@ msgstr "Starter pack by you" msgid "Starter pack is invalid" msgstr "Starter pack is invalid" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Starter packs" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Starter Packs" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Starter packs let you easily share your favourite feeds and people with your friends." @@ -11728,7 +11739,7 @@ msgstr "Starter packs let you easily share your favourite feeds and people with msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Starter packs let you share your favourite feeds and people with your friends." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Starter Packs let you share your favourite feeds and people with your friends." @@ -11742,7 +11753,7 @@ msgstr "Status Page" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Step {0} of {1}" @@ -11754,7 +11765,7 @@ msgstr "Storage cleared, you need to restart the app now." msgid "Stored as part of a secure code for matching with others" msgstr "Stored as part of a secure code for matching with others" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Subscribe to {publicationTitle} on {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscribe to @{0} to use these labels:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Successfully verified" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Suggested" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Suggested accounts" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Suggested for you" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sunset" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Support for this feature in your country has not been enabled yet! Please check back later." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Suspended accounts cannot participate in a group chat." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Suspended accounts cannot participate in chat." @@ -11921,8 +11934,8 @@ msgstr "Switch to {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "System" @@ -11945,7 +11958,7 @@ msgstr "Take the conversation private." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tap for details" @@ -11976,7 +11989,7 @@ msgstr "Tap to close context menu" msgid "Tap to copy this invite link" msgstr "Tap to copy this invite link" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tap to dismiss" @@ -12003,7 +12016,7 @@ msgstr "Tap to remove your {0} reaction" msgid "Tap to request access to join this group chat" msgstr "Tap to request access to join this group chat" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tap to retry" @@ -12016,7 +12029,7 @@ msgstr "Tap to show {0} reactions" msgid "Tap to show all reactions" msgstr "Tap to show all reactions" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tap to view reactions" @@ -12032,7 +12045,7 @@ msgstr "Task complete โ€“ 10 follows!" msgid "Task complete - 10 likes!" msgstr "Task complete โ€“ 10 likes!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Teach our algorithm what you like" @@ -12060,7 +12073,7 @@ msgstr "Terms" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "That starter pack could not be found." msgid "That username is already taken" msgstr "That username is already taken" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "That's all, folks!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "That's everything!" @@ -12216,7 +12229,7 @@ msgstr "The server appears to be experiencing issues. Please try again in a few msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "The subject of the context menu" @@ -12238,7 +12251,7 @@ msgstr "The verification code you have provided is invalid. Please make sure tha msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Theme" @@ -12266,7 +12279,7 @@ msgstr "There was a problem loading GIFs. Check your connection and try again." msgid "There was a problem with your internet connection, please try again" msgstr "There was a problem with your internet connection, please try again" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "There was a problem with your internet connection, please try again" msgid "There was an issue contacting the server" msgstr "There was an issue contacting the server" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "There was an issue contacting the server, please check your internet connection and try again." @@ -12283,8 +12296,8 @@ msgstr "There was an issue contacting the server, please check your internet con msgid "There was an issue fetching notifications. Tap here to try again." msgstr "There was an issue fetching notifications. Tap here to try again." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "There was an issue fetching posts. Tap here to try again." @@ -12309,7 +12322,7 @@ msgstr "There was an issue fetching your service info" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "There was an issue removing this feed. Please check your internet connection and try again." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "These settings only apply to the Following feed." msgid "These URLs" msgstr "These URLs" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "They own this chat" @@ -12392,7 +12405,7 @@ msgstr "They own this chat" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "They wonโ€™t be able to rejoin unless you invite them again." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "This {screenDescription} has been flagged:" @@ -12408,7 +12421,7 @@ msgstr "This account has been marked as automated by its owner." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "This account has one or more attempted verifications, but it is not currently verified." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "This account has requested that users sign in to view their profile." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "This feed is empty! You may need to follow more users or tune your language settings." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "This feed is empty." @@ -12554,7 +12567,7 @@ msgstr "This group is locked by a moderation action on the owner" msgid "This handle is reserved. Please try a different one." msgstr "This handle is reserved. Please try a different one." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "This image could not be used. Please try a different format like .jpg or .png." @@ -12596,7 +12609,7 @@ msgstr "This label was applied by you." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "This label was applied to the entire user account and will appear on all posts." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "This labeller hasn't declared what labels it publishes and may not be active." @@ -12621,13 +12634,13 @@ msgstr "This list is empty." msgid "This message is hidden" msgstr "This message is hidden" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "This message is hidden because this user is blocking you." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "This message is hidden because you are blocking this user." @@ -12641,7 +12654,7 @@ msgstr "This person is blocking you" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "This post claims to have been created on <0>{0}, but was first seen msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "This post has an unknown type of threadgate on it. Your app may be out of date." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "This post is only visible to logged-in users." @@ -12661,7 +12674,7 @@ msgstr "This post was deleted by its author" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "This post will be hidden from feeds and threads. This cannot be undone." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "This post's author has disabled quote posts." @@ -12698,11 +12711,12 @@ msgstr "This should only take a few minutes." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "This user does not have a display name, and therefore cannot be verified." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "This user doesn't have any followers." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "This user has blocked you and cannot be messaged." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "This user has blocked you. You cannot view their content." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "This user has disabled chat and cannot be messaged." @@ -12733,11 +12748,11 @@ msgstr "This user is included in the <0>{0} list which you have muted." msgid "This user is new here. Press for more info about when they joined." msgstr "This user is new here. Press for more info about when they joined." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "This user isn't following anyone." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "This will irreversibly delete your Bluesky account <0>{currentHandle} and all associated data. Note that this will affect any other <1>AT Protocol services you use with this account." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "This will remove @{0} from the quick access list." @@ -12786,7 +12801,7 @@ msgstr "Thread Preferences" msgid "Threaded" msgstr "Threaded" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Threads Preferences" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Too many contacts โ€“ you've exceeded the number of contacts you can import to find your friends" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Top" @@ -12858,7 +12873,7 @@ msgstr "Top" msgid "Top replies first" msgstr "Top replies first" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Topic" @@ -12893,7 +12908,9 @@ msgstr "Translation to the same language is unavailable on your device." msgid "Tree view" msgstr "Tree view" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Trending" @@ -12902,13 +12919,15 @@ msgstr "Trending" msgid "Trending GIFs" msgstr "Trending GIFs" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Trending options" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Trust emerges from relationships, communities and shared context, so weโ€™re also enabling <0>trusted verifiers: organisations that can directly issue verification." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Try a different search term or remove some filters." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Try a different search term." @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Unable to fetch join requests." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Unable to find a selected recipient." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Unable to find the selected recipient." @@ -13024,12 +13045,12 @@ msgstr "Unavailable" msgid "Unavailable feed information" msgstr "Unavailable feed information" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Unblock Account?" msgid "Unblock list" msgstr "Unblock list" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Unfollow {0}" msgid "Unfollow account" msgstr "Unfollow account" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Unfollows the user" @@ -13132,7 +13153,7 @@ msgstr "Unlabelled adult content" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Unlabelled, abusive, or non-consensual adult content" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Unlike" @@ -13192,7 +13213,7 @@ msgstr "Unmute this group chat" msgid "Unmute thread" msgstr "Unmute thread" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Unmute video" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Unpin" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Unpin feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Unpin from home" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Unpin moderation list" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Unpinned {0} from Home" @@ -13258,11 +13279,11 @@ msgstr "Unsubscribe from this labeller" msgid "Unsubscribed from list" msgstr "Unsubscribed from list" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Unsupported clipboard content" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Unsupported video type: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Updating reply visibility failed" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Upload a photo instead" @@ -13355,7 +13376,7 @@ msgstr "Upload from Files" msgid "Upload from Library" msgstr "Upload from Library" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Uploading GIF..." @@ -13369,7 +13390,7 @@ msgstr "Uploading images..." msgid "Uploading link thumbnail..." msgstr "Uploading link thumbnail..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Uploading video..." @@ -13408,7 +13429,7 @@ msgstr "Use this to sign in to the other app along with your handle." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "user" @@ -13510,7 +13531,7 @@ msgstr "Verification failed, please try again." msgid "Verification settings" msgstr "Verification settings" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Verification Settings" @@ -13618,34 +13639,34 @@ msgstr "Video" msgid "Video failed to process" msgstr "Video failed to process" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Video Feed" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Video from {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video from {0}. Tap to play or pause the video" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Video Games" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video is paused" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video is playing" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video not found." @@ -13653,7 +13674,7 @@ msgstr "Video not found." msgid "Video settings" msgstr "Video settings" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video uploaded" @@ -13662,17 +13683,17 @@ msgstr "Video uploaded" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videos must be less than 3 minutes long." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "View" @@ -13691,9 +13712,9 @@ msgstr "View {0}'s avatar" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "View {0}'s profile" @@ -13724,13 +13745,13 @@ msgstr "View blogpost for more details" msgid "View debug entry" msgstr "View debug entry" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "View details" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "View full thread" @@ -13750,18 +13771,18 @@ msgstr "View incoming requests to join this group chat" msgid "View information about these labels" msgstr "View information about these labels" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "View more" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "View more trending videos" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "View post" @@ -13798,15 +13819,15 @@ msgstr "View the invite link for this group chat" msgid "View the labeling service provided by @{0}" msgstr "View the labelling service provided by @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "View this user's verifications" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "View users who like this feed" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "View video" @@ -13831,7 +13852,7 @@ msgstr "View your moderation lists" msgid "View your muted accounts" msgstr "View your muted accounts" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "View your verifications" @@ -13840,7 +13861,7 @@ msgstr "View your verifications" msgid "Views full image" msgstr "Views full image" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Views video in immersive mode" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "We're having network issues, try again" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Weโ€™re having network issues, try again" @@ -14043,7 +14064,7 @@ msgstr "Weโ€™re having network issues, try again" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Weโ€™re so excited to have you join us!" @@ -14064,13 +14085,15 @@ msgstr "We're sorry, but we were unable to resolve this list. If this persists, msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "We're sorry, but we weren't able to load your muted words at this time. Please try again." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "Weโ€™re sorry, but your search could not be completed." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." @@ -14078,7 +14101,7 @@ msgstr "Weโ€™re sorry, but your search could not be completed. Please try again msgid "We're sorry, you cannot access this screen at this time." msgstr "We're sorry, you cannot access this screen at this time." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "We're sorry! The post you are replying to has been deleted." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "whatโ€™s up" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "What's up?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Who can verify?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Whoops!" @@ -14220,21 +14243,21 @@ msgstr "Would you like to block this user and/or leave this conversation?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Would you like to save this as a draft before viewing your drafts?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Would you like to save this as a draft to edit later?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Write a post" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Write post" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Write your reply" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "You are blocking {0}" @@ -14342,7 +14365,7 @@ msgstr "You are no longer live" msgid "You are not allowed to upload videos." msgstr "You are not allowed to upload videos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "You are not following anyone yet" @@ -14362,7 +14385,7 @@ msgstr "You are verified. You will lose your verification status if you change y msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "You are verified. You will lose your verification status if you change your handle. <0>Learn more." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "You can adjust your interests at any time from \"Content and media\" settings." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "You can now sign in with your new password." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "You can only save drafts up to 1,000 characters." @@ -14439,9 +14462,11 @@ msgstr "You can read chat history but canโ€™t send new messages." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "You can update this later from your settings." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "You cannot create a group chat yet." @@ -14555,7 +14581,7 @@ msgstr "You have successfully verified your email address. You can close this di msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "You have temporarily reached the limit for video uploads. Please try again later." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "You have unsaved changes to this draft, would you like to save them?" @@ -14563,7 +14589,7 @@ msgstr "You have unsaved changes to this draft, would you like to save them?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "You have unsaved changes. Would you like to save them before viewing your drafts?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "You haven't created a starter pack yet!" @@ -14614,7 +14640,7 @@ msgstr "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_P msgid "You may only add up to 3 feeds" msgstr "You may only add up to 3 feeds" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "You must be a chat owner to remove a member." @@ -14622,7 +14648,7 @@ msgstr "You must be a chat owner to remove a member." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "You must be following at least seven other people to generate a starter pack." @@ -14639,7 +14665,7 @@ msgstr "You need to allow access to your media library." msgid "You need to verify your email address before you can enable email 2FA." msgstr "You need to verify your email address before you can enable email 2FA." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "You own this chat" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "You probably want to restart the app now." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "You reacted {0}" @@ -14667,15 +14693,15 @@ msgstr "You reacted {0} to {target}" msgid "You recently changed your birthdate" msgstr "You recently changed your birthdate" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "You replied" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "You replied to {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "You replied to yourself" @@ -14715,11 +14741,11 @@ msgstr "You wonโ€™t be able to rejoin unless youโ€™re invited." msgid "You: {message}" msgstr "You: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "You'll follow the suggested users and feeds once you finish creating your account!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "You'll follow the suggested users once you finish creating your account!" @@ -14791,7 +14817,7 @@ msgstr "You've reached the end of the active content." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "You've reached the end of your feed! Find some more accounts to follow." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "You've reached the maximum number of drafts" @@ -14799,7 +14825,7 @@ msgstr "You've reached the maximum number of drafts" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "You've reached the maximum number of requests allowed. Please try again later." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." @@ -14815,11 +14841,11 @@ msgstr "You've reached your daily limit for video uploads (too many bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "You've reached your daily limit for video uploads (too many videos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "You've run out of videos to watch. Maybe it's a good time to take a break?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Your account" @@ -14835,11 +14861,11 @@ msgstr "Your account has been suspended" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Your account is not yet old enough to upload videos. Please try again later." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Your account is too new" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Your account must be at least 7 days old to create a new group chat." @@ -14896,7 +14922,7 @@ msgstr "Your email" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Your email appears to be invalid." @@ -14930,8 +14956,8 @@ msgstr "Your hosting provider canโ€™t be detected from an email address, so the msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Your hosting provider is detected automatically from the username you enter." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Your interests have been updated!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Your interests help us find what you like!" @@ -14967,11 +14993,11 @@ msgstr "Your password has been changed successfully! Please use your new passwor msgid "Your password must be at least 8 characters long." msgstr "Your password must be at least 8 characters long." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Your post was sent" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Your posts were sent" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Your preferred language" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Your profile picture" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Your profile picture surrounded by concentric circles of other users' profile pictures" @@ -14992,7 +15018,7 @@ msgstr "Your profile picture surrounded by concentric circles of other users' pr msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Your profile, posts, feeds and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Your reply was sent" @@ -15005,7 +15031,7 @@ msgstr "Your report will be sent to <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Your selected interests help us serve you content you care about." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index 51d10b8cf8..c71c8c5256 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -14,12 +14,12 @@ msgstr "" "Plural-Forms: \n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(blocked message hidden)" @@ -34,7 +34,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(deleted message)" @@ -49,7 +49,7 @@ msgid "(invalid chat invite link)" msgstr "(invalid chat invite link)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(message sent before you joined)" @@ -135,7 +135,7 @@ msgstr "{0, plural, one {# new join request} other {# new join requests}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" @@ -158,7 +158,7 @@ msgstr "" #. placeholder {0}: numUnreadNotifications ?? 0 #: src/view/shell/bottom-bar/BottomBar.tsx:251 #: src/view/shell/bottom-bar/BottomBar.tsx:283 -#: src/view/shell/Drawer.tsx:557 +#: src/view/shell/Drawer.tsx:560 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "" @@ -192,10 +192,7 @@ msgid "{0, plural, one {following} other {following}}" msgstr "" #. placeholder {0}: profile.postsCount || 0 -#. placeholder {0}: trend.postCount -#: src/components/interstitials/FeedTrendingTopics.tsx:223 #: src/screens/Profile/Header/Metrics.tsx:58 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:153 msgid "{0, plural, one {post} other {posts}}" msgstr "" @@ -227,16 +224,6 @@ msgstr "" msgid "{0} (Account)" msgstr "" -#. '{postCount} {posts}', e.g., '1.2K posts' -#. '{postCount} {posts}', e.g., '1.2K posts' -#. placeholder {0}: formatCount(i18n, trend.postCount) -#. placeholder {1}: import {useMemo} from 'react' import {Pressable, View} from 'react-native' import {Image} from 'expo-image' import { type AppBskyUnspeccedDefs, moderateProfile, RichText as RichTextApi, } from '@atproto/api' import {plural} from '@lingui/core/macro' import {Trans, useLingui} from '@lingui/react/macro' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useTrendingSettings} from '#/state/preferences/trending' import {useGetTrendsQuery} from '#/state/queries/trending/useGetTrendsQuery' import {useTrendingConfig} from '#/state/service-config' import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {formatCount} from '#/view/com/util/numeric/format' import {atoms as a, useGutters, useTheme, type ViewStyleProp} from '#/alf' import {AvatarStack} from '#/components/AvatarStack' import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/icons/Trending' import {Link} from '#/components/Link' import {RichText} from '#/components/RichText' import {SubtleHover} from '#/components/SubtleHover' import {Text} from '#/components/Typography' import {useAnalytics} from '#/analytics' import * as ModuleHeader from '../components/ModuleHeader' const TOPIC_COUNT = 5 const IMAGE_SIZE = 56 export function ExploreTrendingTopics() { const {enabled} = useTrendingConfig() const {trendingDisabled} = useTrendingSettings() return enabled && !trendingDisabled ? : null } function Inner() { const ax = useAnalytics() const {data: trending, error, isLoading, isRefetching} = useGetTrendsQuery() const noTopics = !isLoading && !error && !trending?.trends?.length const showLoading = isLoading || isRefetching if (!showLoading && (error || !trending?.trends || noTopics)) return null return ( Trending {showLoading ? Array.from({length: TOPIC_COUNT}).map((__, i) => ( )) : trending?.trends.map((trend, index) => ( { ax.metric('trendingTopic:click', { context: 'explore', recId: trending.recId, }) }} /> ))} ) } export function TrendRow({ trend, rank, children, onPress, }: ViewStyleProp & { trend: AppBskyUnspeccedDefs.TrendView rank: number children?: React.ReactNode onPress?: () => void }) { const t = useTheme() const {t: l, i18n} = useLingui() const gutters = useGutters([0, 'base']) const actors = useModerateTrendingActors(trend.actors) const description = useMemo(() => { if (!trend.description) return const rt = new RichTextApi({text: trend.description}) rt.detectFacetsWithoutResolution() return rt }, [trend.description]) let imageUrl = null // TODO Image URL goes here when available. -dsb return ( {({hovered, pressed}) => ( <> {rank}. {trend.displayName} {description ? ( ) : null} {actors.length > 0 ? ( ) : null} {trend.postCount >= 1000 ? ( 1K+ posts ) : ( {formatCount(i18n, trend.postCount)}{' '} {plural(trend.postCount, {one: 'post', other: 'posts'})} )} {imageUrl ? ( {trend.topic} ) : null} {children} )} ) } // Unused atm, but leaving here so we don't lose localization. -dsb export function useCategoryDisplayName( category: AppBskyUnspeccedDefs.TrendView['category'], ) { const {t: l} = useLingui() switch (category) { case 'sports': return l`Sports` case 'politics': return l`Politics` case 'video-games': return l`Video Games` case 'pop-culture': return l`Entertainment` case 'news': return l`News` case 'other': default: return null } } export function TrendingTopicRowSkeleton() { const t = useTheme() const gutters = useGutters([0, 'base']) return ( {/* TODO Image placeholder goes here when images are available. -dsb */} ) } function useModerateTrendingActors( actors: AppBskyUnspeccedDefs.TrendView['actors'], ) { const moderationOpts = useModerationOpts() return useMemo(() => { if (!moderationOpts) return [] return actors .filter(actor => { const decision = moderateProfile(actor, moderationOpts) return !decision.ui('avatar').filter && !decision.ui('avatar').blur }) .slice(0, 3) }, [actors, moderationOpts]) } -#. placeholder {1}: import {useMemo} from 'react' import {Pressable, View} from 'react-native' import {LinearGradient} from 'expo-linear-gradient' import {type AppBskyUnspeccedDefs, moderateProfile} from '@atproto/api' import {plural} from '@lingui/core/macro' import {Trans, useLingui} from '@lingui/react/macro' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useTrendingSettings} from '#/state/preferences/trending' import {useGetTrendsQuery} from '#/state/queries/trending/useGetTrendsQuery' import {useTrendingConfig} from '#/state/service-config' import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {formatCount} from '#/view/com/util/numeric/format' import { atoms as a, useGutters, useLayoutBreakpoints, useTheme, type ViewStyleProp, } from '#/alf' import {alpha} from '#/alf/utils' import {AvatarStack} from '#/components/AvatarStack' import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/icons/Trending' import {Link} from '#/components/Link' import {SubtleHover} from '#/components/SubtleHover' import {Text} from '#/components/Typography' import {useAnalytics} from '#/analytics' const TOPIC_COUNT = 3 export function FeedTrendingTopicsInterstitial() { const {enabled} = useTrendingConfig() const {trendingDisabled} = useTrendingSettings() const {rightNavVisible} = useLayoutBreakpoints() return enabled && !trendingDisabled && !rightNavVisible ? : null } function Inner() { const t = useTheme() const {t: l} = useLingui() const gutters = useGutters([0, 'base']) const ax = useAnalytics() const { data: trending, error, isLoading, isRefetching, } = useGetTrendsQuery({limit: TOPIC_COUNT}) const noTopics = !isLoading && !error && !trending?.trends?.length const shadowColor = alpha(t.palette.primary_100, 0.5) const gradient = { values: [ [0, t.atoms.bg.backgroundColor], [0.1, t.palette.primary_25], [0.9, t.palette.primary_25], [1, t.atoms.bg.backgroundColor], ], hover_value: t.palette.white, } if (error || noTopics) { return null } return ( c[1]) as [string, string, ...string[]]} locations={ gradient.values.map(c => c[0]) as [number, number, ...number[]] } style={[a.absolute, a.inset_0]} /> Trending See more {isLoading || isRefetching ? Array.from({length: TOPIC_COUNT}).map((_, i) => ( )) : trending?.trends?.map((trend, index) => ( { ax.metric('trendingTopic:click', {context: 'interstitial'}) }} /> ))} ) } function TrendRow({ trend, rank, onPress, }: ViewStyleProp & { trend: AppBskyUnspeccedDefs.TrendView rank: number children?: React.ReactNode onPress?: () => void }) { const t = useTheme() const {t: l, i18n} = useLingui() const actors = useModerateTrendingActors(trend.actors) return ( {({hovered, pressed}) => ( <> {rank}. {trend.displayName} {actors.length > 0 ? ( ) : null} {trend.postCount >= 1000 ? ( 1K+ posts ) : ( {formatCount(i18n, trend.postCount)}{' '} {plural(trend.postCount, {one: 'post', other: 'posts'})} )} )} ) } function TrendingTopicRowSkeleton({rank}: {rank: number}) { const t = useTheme() return ( ) } function useModerateTrendingActors( actors: AppBskyUnspeccedDefs.TrendView['actors'], ) { const moderationOpts = useModerationOpts() return useMemo(() => { if (!moderationOpts) return [] return actors .filter(actor => { const decision = moderateProfile(actor, moderationOpts) return !decision.ui('avatar').filter && !decision.ui('avatar').blur }) .slice(0, 3) }, [actors, moderationOpts]) } -#: src/components/interstitials/FeedTrendingTopics.tsx:221 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:151 -msgid "{0} {1}" -msgstr "{0} {1}" - #. Pattern: {wordValue} in tags #. placeholder {0}: word.value #: src/components/dialogs/MutedWords.tsx:495 @@ -266,7 +253,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} is blocking you" @@ -324,7 +311,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -496,35 +483,35 @@ msgstr "" msgid "{filterCount, plural, one {+# filter} other {+# filters}}" msgstr "{filterCount, plural, one {+# filter} other {+# filters}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:361 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:395 +#: src/view/com/notifications/NotificationFeedItem.tsx:399 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:304 +#: src/view/com/notifications/NotificationFeedItem.tsx:305 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:500 +#: src/view/com/notifications/NotificationFeedItem.tsx:496 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:473 +#: src/view/com/notifications/NotificationFeedItem.tsx:471 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:328 +#: src/view/com/notifications/NotificationFeedItem.tsx:327 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:524 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:419 +#: src/view/com/notifications/NotificationFeedItem.tsx:421 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" @@ -532,39 +519,39 @@ msgstr "" msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:379 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:350 +#: src/view/com/notifications/NotificationFeedItem.tsx:351 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:316 +#: src/view/com/notifications/NotificationFeedItem.tsx:317 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:512 +#: src/view/com/notifications/NotificationFeedItem.tsx:508 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:483 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:340 +#: src/view/com/notifications/NotificationFeedItem.tsx:339 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:536 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:433 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" @@ -572,23 +559,27 @@ msgstr "" msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:354 +#: src/view/com/notifications/NotificationFeedItem.tsx:361 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:388 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you via starter pack {starterPackName}" +msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you via starter pack {starterPackName}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:393 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:297 +#: src/view/com/notifications/NotificationFeedItem.tsx:299 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:493 +#: src/view/com/notifications/NotificationFeedItem.tsx:490 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:466 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" @@ -596,51 +587,59 @@ msgstr "" msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:517 +#: src/view/com/notifications/NotificationFeedItem.tsx:512 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:412 +#: src/view/com/notifications/NotificationFeedItem.tsx:415 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:441 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:359 +#: src/view/com/notifications/NotificationFeedItem.tsx:365 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:349 +#: src/view/com/notifications/NotificationFeedItem.tsx:350 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:393 +#: src/view/com/notifications/NotificationFeedItem.tsx:349 +msgid "{firstAuthorName} followed you back via starter pack {starterPackName}" +msgstr "{firstAuthorName} followed you back via starter pack {starterPackName}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:359 +msgid "{firstAuthorName} followed you via starter pack {starterPackName}" +msgstr "{firstAuthorName} followed you via starter pack {starterPackName}" + +#: src/view/com/notifications/NotificationFeedItem.tsx:397 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:302 +#: src/view/com/notifications/NotificationFeedItem.tsx:303 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:498 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:471 +#: src/view/com/notifications/NotificationFeedItem.tsx:469 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:326 +#: src/view/com/notifications/NotificationFeedItem.tsx:325 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:522 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:417 +#: src/view/com/notifications/NotificationFeedItem.tsx:419 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" @@ -652,6 +651,13 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:245 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:192 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, one {post} other {posts}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 #: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" @@ -749,8 +755,8 @@ msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/components/interstitials/FeedTrendingTopics.tsx:203 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:123 +#: src/components/interstitials/FeedTrendingTopics.tsx:230 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:167 msgid "{rank}." msgstr "" @@ -758,15 +764,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, one {# character remaining} other {# characters remaining}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} replied" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} replied to {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} replied to you" @@ -824,13 +830,13 @@ msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:155 +#: src/view/shell/Drawer.tsx:156 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:166 +#: src/view/shell/Drawer.tsx:167 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" @@ -903,13 +909,6 @@ msgstr "" msgid "โš Invalid Handle" msgstr "" -#. Over 1,000 posts -#. Over 1,000 posts -#: src/components/interstitials/FeedTrendingTopics.tsx:219 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:149 -msgid "1K+ posts" -msgstr "1K+ posts" - #: src/components/dialogs/MutedWords.tsx:202 #: src/components/dialogs/MutedWords.tsx:551 #: src/components/dialogs/MutedWords.tsx:554 @@ -967,7 +966,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "A reply to a message sent before you joined" @@ -997,8 +996,8 @@ msgstr "A selected recipient is not followed by the sender." #: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 -#: src/screens/Settings/Settings.tsx:264 -#: src/screens/Settings/Settings.tsx:267 +#: src/screens/Settings/Settings.tsx:265 +#: src/screens/Settings/Settings.tsx:268 msgid "About" msgstr "" @@ -1039,8 +1038,8 @@ msgid "Access requested! The group owner will review your request." msgstr "Access requested! The group owner will review your request." #: src/screens/Settings/AccessibilitySettings.tsx:45 -#: src/screens/Settings/Settings.tsx:234 -#: src/screens/Settings/Settings.tsx:237 +#: src/screens/Settings/Settings.tsx:235 +#: src/screens/Settings/Settings.tsx:238 msgid "Accessibility" msgstr "" @@ -1050,8 +1049,8 @@ msgstr "" #: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 -#: src/screens/Settings/Settings.tsx:174 -#: src/screens/Settings/Settings.tsx:177 +#: src/screens/Settings/Settings.tsx:175 +#: src/screens/Settings/Settings.tsx:178 msgid "Account" msgstr "" @@ -1091,11 +1090,11 @@ msgstr "" msgid "Account Muted by List" msgstr "" -#: src/screens/Settings/Settings.tsx:646 +#: src/screens/Settings/Settings.tsx:656 msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:691 msgid "Account removed from quick access" msgstr "" @@ -1172,7 +1171,7 @@ msgstr "" #: src/view/com/composer/GifAltText.tsx:76 #: src/view/com/composer/GifAltText.tsx:150 -#: src/view/com/composer/GifAltText.tsx:217 +#: src/view/com/composer/GifAltText.tsx:216 #: src/view/com/composer/photos/Gallery.tsx:201 #: src/view/com/composer/photos/Gallery.tsx:236 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:95 @@ -1184,18 +1183,18 @@ msgstr "" msgid "Add alt text (optional)" msgstr "" -#: src/screens/Settings/Settings.tsx:584 -#: src/screens/Settings/Settings.tsx:587 +#: src/screens/Settings/Settings.tsx:594 +#: src/screens/Settings/Settings.tsx:597 #: src/view/shell/desktop/LeftNav.tsx:276 #: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1606 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2272 msgid "Add another post to thread" msgstr "" @@ -1229,7 +1228,7 @@ msgstr "Add filter" msgid "Add group chat members" msgstr "Add group chat members" -#: src/view/com/feeds/ComposerPrompt.tsx:223 +#: src/view/com/feeds/ComposerPrompt.tsx:226 msgid "Add image" msgstr "" @@ -1244,8 +1243,8 @@ msgstr "" msgid "Add members" msgstr "Add members" -#: src/components/moderation/ReportDialog/index.tsx:528 -#: src/components/moderation/ReportDialog/index.tsx:532 +#: src/components/moderation/ReportDialog/index.tsx:566 +#: src/components/moderation/ReportDialog/index.tsx:570 msgid "Add more details (optional)" msgstr "" @@ -1351,7 +1350,7 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:546 +#: src/components/moderation/ReportDialog/index.tsx:584 msgid "Additional details (limit 300 characters)" msgstr "" @@ -1424,7 +1423,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "" @@ -1445,9 +1443,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1459,11 +1454,6 @@ msgstr "" msgid "All of these words" msgstr "All of these words" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "All posts" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -1528,7 +1518,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:189 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1566,8 +1556,8 @@ msgid "Alt text describes images for blind and low-vision users, and helps give msgstr "" #. placeholder {0}: i18n.number(MAX_ALT_TEXT) -#: src/view/com/composer/GifAltText.tsx:185 -#: src/view/com/composer/photos/ImageAltTextDialog.tsx:149 +#: src/view/com/composer/GifAltText.tsx:184 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:148 msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" msgstr "" @@ -1586,7 +1576,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: src/view/com/composer/state/video.ts:433 +#: src/view/com/composer/state/video.ts:447 msgid "An error occurred while compressing the video." msgstr "" @@ -1632,11 +1622,11 @@ msgstr "" msgid "An error occurred while trying to follow all" msgstr "" -#: src/view/com/composer/state/video.ts:485 +#: src/view/com/composer/state/video.ts:499 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:477 +#: src/view/com/composer/state/video.ts:491 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1687,8 +1677,8 @@ msgstr "An issue occurred starting the group chat, please try again." #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:510 #: src/components/ProfileCard.tsx:532 -#: src/view/com/notifications/NotificationFeedItem.tsx:798 -#: src/view/com/notifications/NotificationFeedItem.tsx:820 +#: src/view/com/notifications/NotificationFeedItem.tsx:834 +#: src/view/com/notifications/NotificationFeedItem.tsx:855 msgid "An issue occurred, please try again." msgstr "" @@ -1735,8 +1725,6 @@ msgid "Any date" msgstr "Any date" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:26 msgid "Anyone" msgstr "" @@ -1858,9 +1846,9 @@ msgid "Appeal this label" msgstr "Appeal this label" #: src/Navigation.tsx:398 -#: src/screens/Settings/AppearanceSettings.tsx:73 -#: src/screens/Settings/Settings.tsx:226 -#: src/screens/Settings/Settings.tsx:229 +#: src/screens/Settings/AppearanceSettings.tsx:71 +#: src/screens/Settings/Settings.tsx:227 +#: src/screens/Settings/Settings.tsx:230 msgid "Appearance" msgstr "" @@ -1869,8 +1857,8 @@ msgstr "" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:515 -#: src/screens/Settings/Settings.tsx:517 +#: src/screens/Settings/Settings.tsx:525 +#: src/screens/Settings/Settings.tsx:527 msgid "Apply Pull Request" msgstr "" @@ -1946,7 +1934,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Are you sure you want to rescind your request to join {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1742 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -1954,6 +1942,10 @@ msgstr "" msgid "Are you sure?" msgstr "" +#: src/components/moderation/ReportDialog/index.tsx:841 +msgid "Are you the person depicted, or an authorized representative acting on behalf of the person depicted?" +msgstr "Are you the person depicted, or an authorized representative acting on behalf of the person depicted?" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:349 msgid "Are you writing in <0>{suggestedLanguageName}?" msgstr "" @@ -1984,6 +1976,11 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "Author" + #: src/components/BotAccountAlert.tsx:32 #: src/components/BotBadge.tsx:65 msgid "Automated account" @@ -2016,6 +2013,10 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "Avatar creator" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 @@ -2087,7 +2088,7 @@ msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 #: src/components/StarterPack/ProfileStarterPacks.tsx:267 #: src/components/StarterPack/ProfileStarterPacks.tsx:277 -#: src/view/screens/Profile.tsx:350 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2128,8 +2129,8 @@ msgstr "" #: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 -#: src/screens/Settings/Settings.tsx:248 -#: src/screens/Settings/Settings.tsx:251 +#: src/screens/Settings/Settings.tsx:249 +#: src/screens/Settings/Settings.tsx:252 msgid "Beta features" msgstr "Beta features" @@ -2303,7 +2304,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2376,20 +2377,20 @@ msgstr "Bring up to 50 friends together in one chat." msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -2398,25 +2399,25 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:58 +#: src/components/TrendingTopics.tsx:87 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:66 +#: src/components/TrendingTopics.tsx:95 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:75 +#: src/components/TrendingTopics.tsx:104 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/components/interstitials/FeedTrendingTopics.tsx:170 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 +#: src/components/interstitials/FeedTrendingTopics.tsx:202 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:149 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:112 +#: src/components/TrendingTopics.tsx:141 msgid "Browse topic {displayName}" msgstr "" @@ -2433,7 +2434,7 @@ msgstr "" #. placeholder {0}: sanitizeHandle(handle, '@') #. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/components/moderation/ReportDialog/index.tsx:1005 #: src/screens/Messages/JoinRequest.tsx:177 #: src/screens/Search/components/StarterPackCard.tsx:112 #: src/screens/Search/Explore.tsx:960 @@ -2482,7 +2483,7 @@ msgstr "" msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:68 msgid "Camera" msgstr "" @@ -2536,11 +2537,11 @@ msgstr "Camera access needed" #: src/screens/Settings/components/ChangeHandleDialog.tsx:87 #: src/screens/Settings/components/ChangePasswordDialog.tsx:248 #: src/screens/Settings/components/ChangePasswordDialog.tsx:254 -#: src/screens/Settings/Settings.tsx:309 +#: src/screens/Settings/Settings.tsx:310 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1820 +#: src/view/com/composer/Composer.tsx:1830 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2625,7 +2626,7 @@ msgstr "" msgid "Change hosting provider" msgstr "Change hosting provider" -#: src/components/moderation/ReportDialog/index.tsx:445 +#: src/components/moderation/ReportDialog/index.tsx:483 msgid "Change moderation service" msgstr "" @@ -2638,11 +2639,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:312 +#: src/components/moderation/ReportDialog/index.tsx:345 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:390 +#: src/components/moderation/ReportDialog/index.tsx:424 msgid "Change report reason" msgstr "" @@ -2675,7 +2676,7 @@ msgstr "" #: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 -#: src/view/shell/Drawer.tsx:525 +#: src/view/shell/Drawer.tsx:528 msgid "Chat" msgstr "" @@ -2829,7 +2830,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2854,7 +2855,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2864,11 +2865,11 @@ msgstr "" msgid "Clear" msgstr "Clear" -#: src/screens/Settings/Settings.tsx:507 +#: src/screens/Settings/Settings.tsx:517 msgid "Clear all storage data" msgstr "" -#: src/screens/Settings/Settings.tsx:509 +#: src/screens/Settings/Settings.tsx:519 msgid "Clear all storage data (restart after this)" msgstr "" @@ -2941,7 +2942,7 @@ msgstr "Click here to view the invite link for this group chat" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +3004,7 @@ msgid "Close" msgstr "" #: src/components/Dialog/index.web.tsx:129 -#: src/components/Dialog/index.web.tsx:339 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3065,7 +3066,7 @@ msgstr "Close the incoming requests banner" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:214 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3073,15 +3074,15 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1828 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:611 +#: src/view/com/notifications/NotificationFeedItem.tsx:601 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:949 +#: src/view/com/notifications/NotificationFeedItem.tsx:983 msgid "Collapses list of users for a given notification" msgstr "" @@ -3090,7 +3091,7 @@ msgid "Color" msgstr "Color" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3116,18 +3117,18 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" #: src/lib/hotkeys/index.tsx:66 -#: src/view/com/feeds/ComposerPrompt.tsx:147 +#: src/view/com/feeds/ComposerPrompt.tsx:150 #: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1704 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3135,11 +3136,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2676 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2678 msgid "Compressing video..." msgstr "" @@ -3197,8 +3198,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3223,8 +3224,8 @@ msgstr "" msgid "Content & Media" msgstr "" -#: src/screens/Settings/Settings.tsx:206 -#: src/screens/Settings/Settings.tsx:209 +#: src/screens/Settings/Settings.tsx:207 +#: src/screens/Settings/Settings.tsx:210 msgid "Content and media" msgstr "" @@ -3273,7 +3274,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3302,7 +3303,7 @@ msgid "Continue to group name" msgstr "Continue to group name" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3601,8 +3602,8 @@ msgstr "" msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" @@ -3610,11 +3611,11 @@ msgstr "" msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:155 -#: src/components/WelcomeModal.tsx:163 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3637,7 +3638,7 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" @@ -3679,8 +3680,8 @@ msgstr "Create or modify an invite link for this group chat" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:709 -#: src/components/moderation/ReportDialog/index.tsx:754 +#: src/components/moderation/ReportDialog/index.tsx:747 +#: src/components/moderation/ReportDialog/index.tsx:792 msgid "Create report for {0}" msgstr "" @@ -3741,8 +3742,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3751,7 +3752,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3773,7 +3774,7 @@ msgstr "Day" msgid "Deactivate account" msgstr "" -#: src/screens/Settings/Settings.tsx:472 +#: src/screens/Settings/Settings.tsx:482 msgid "Debug Moderation" msgstr "" @@ -3785,7 +3786,7 @@ msgstr "Decline this language suggestion" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3826,7 +3827,8 @@ msgstr "" msgid "Delete chat" msgstr "" -#: src/screens/Settings/Settings.tsx:479 +#: src/screens/Settings/Settings.tsx:487 +#: src/screens/Settings/Settings.tsx:489 msgid "Delete chat declaration record" msgstr "" @@ -3865,7 +3867,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1716 msgid "Delete post" msgstr "" @@ -3942,8 +3944,8 @@ msgctxt "toast" msgid "Developer mode enabled" msgstr "" -#: src/screens/Settings/Settings.tsx:291 -#: src/screens/Settings/Settings.tsx:294 +#: src/screens/Settings/Settings.tsx:292 +#: src/screens/Settings/Settings.tsx:295 msgid "Developer options" msgstr "" @@ -3959,7 +3961,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "Dialog: Set search filters" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4016,9 +4018,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1496 +#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1749 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4029,14 +4031,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1494 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1511 +#: src/view/com/composer/Composer.tsx:1741 msgid "Discard post?" msgstr "" @@ -4065,7 +4067,7 @@ msgstr "" msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4074,11 +4076,11 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2597 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" @@ -4091,11 +4093,11 @@ msgstr "" msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4176,8 +4178,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4187,11 +4189,11 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:415 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" @@ -4559,7 +4561,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:132 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4628,11 +4630,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:202 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:246 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2696 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4725,7 +4727,7 @@ msgstr "" msgid "Expand alt text" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:612 +#: src/view/com/notifications/NotificationFeedItem.tsx:602 msgid "Expand list of users" msgstr "" @@ -4783,12 +4785,12 @@ msgstr "" #: src/Navigation.tsx:769 #: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 -#: src/view/shell/Drawer.tsx:473 +#: src/view/shell/Drawer.tsx:476 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:168 -#: src/components/WelcomeModal.tsx:177 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -5075,7 +5077,7 @@ msgstr "Failed to rescind your request. Please try again." msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:730 msgid "Failed to save draft" msgstr "" @@ -5147,10 +5149,10 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/lib/media/video/upload.ts:73 -#: src/lib/media/video/upload.web.ts:73 -#: src/lib/media/video/upload.web.ts:77 -#: src/lib/media/video/upload.web.ts:87 +#: src/lib/media/video/upload.ts:98 +#: src/lib/media/video/upload.web.ts:98 +#: src/lib/media/video/upload.web.ts:102 +#: src/lib/media/video/upload.web.ts:112 msgid "Failed to upload video" msgstr "" @@ -5205,7 +5207,7 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:427 +#: src/view/shell/Drawer.tsx:430 msgid "Feedback" msgstr "" @@ -5221,9 +5223,9 @@ msgstr "" #: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 -#: src/view/shell/Drawer.tsx:589 +#: src/view/shell/Drawer.tsx:592 msgid "Feeds" msgstr "" @@ -5239,7 +5241,7 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Settings/components/OTAInfo.tsx:61 +#: src/screens/Settings/components/OTAInfo.tsx:66 msgid "Fetch update" msgstr "" @@ -5248,34 +5250,22 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:49 -msgid "Filter by author" -msgstr "Filter by author" - -#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:30 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Filter by author (currently: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Filter by media" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Filter by media (currently: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "Filter search by media (currently: {currentLabel})" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5322,8 +5312,8 @@ msgstr "" #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 #: src/screens/Settings/FindContactsSettings.tsx:81 -#: src/screens/Settings/Settings.tsx:217 -#: src/screens/Settings/Settings.tsx:220 +#: src/screens/Settings/Settings.tsx:218 +#: src/screens/Settings/Settings.tsx:221 msgid "Find and invite friends" msgstr "Find and invite friends" @@ -5405,8 +5395,8 @@ msgstr "Focus the search field" #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 #: src/screens/VideoFeed/index.tsx:937 -#: src/view/com/notifications/NotificationFeedItem.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:871 +#: src/view/com/notifications/NotificationFeedItem.tsx:897 +#: src/view/com/notifications/NotificationFeedItem.tsx:904 msgid "Follow" msgstr "" @@ -5428,11 +5418,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5461,8 +5451,8 @@ msgstr "" #: src/components/ProfileCard.tsx:544 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:407 -#: src/view/com/notifications/NotificationFeedItem.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:871 +#: src/view/com/notifications/NotificationFeedItem.tsx:897 +#: src/view/com/notifications/NotificationFeedItem.tsx:904 msgid "Follow back" msgstr "" @@ -5520,8 +5510,8 @@ msgstr "" #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 #: src/screens/VideoFeed/index.tsx:935 -#: src/view/com/notifications/NotificationFeedItem.tsx:842 -#: src/view/com/notifications/NotificationFeedItem.tsx:859 +#: src/view/com/notifications/NotificationFeedItem.tsx:876 +#: src/view/com/notifications/NotificationFeedItem.tsx:892 msgid "Following" msgstr "" @@ -5532,11 +5522,11 @@ msgid "Following" msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) -#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #: src/components/ProfileCard.tsx:500 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:247 -#: src/view/com/notifications/NotificationFeedItem.tsx:791 +#: src/view/com/notifications/NotificationFeedItem.tsx:827 msgid "Following {0}" msgstr "" @@ -5558,16 +5548,16 @@ msgstr "" msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5587,13 +5577,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5626,9 +5616,7 @@ msgstr "Four message bubbles representing a group chat. First message: \"Did you msgid "Free your feed" msgstr "" -#. Filter search results by a specific post author #. Filter who you receive notifications from -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5691,7 +5679,7 @@ msgstr "" msgid "Get early access to experimental features weโ€™re testing." msgstr "Get early access to experimental features weโ€™re testing." -#: src/view/shell/Drawer.tsx:431 +#: src/view/shell/Drawer.tsx:434 msgid "Get help" msgstr "" @@ -5776,11 +5764,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2701 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5802,8 +5790,8 @@ msgstr "" #: src/screens/VideoFeed/index.tsx:1239 #: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5857,7 +5845,7 @@ msgstr "" msgid "Go to {0}'s profile" msgstr "Go to {0}'s profile" -#: src/view/com/notifications/NotificationFeedItem.tsx:256 +#: src/view/com/notifications/NotificationFeedItem.tsx:258 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -6002,6 +5990,10 @@ msgstr "Group name" msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" +#: src/screens/Settings/Settings.tsx:467 +msgid "GrowthBook" +msgstr "GrowthBook" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "" @@ -6076,7 +6068,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Have we got your location wrong? <0>Tap here to update your location with GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6084,15 +6076,15 @@ msgstr "" msgid "Held by Bluesky for 7 days to prevent abuse, then deleted" msgstr "" -#: src/screens/Settings/Settings.tsx:256 -#: src/screens/Settings/Settings.tsx:260 +#: src/screens/Settings/Settings.tsx:257 +#: src/screens/Settings/Settings.tsx:261 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:440 +#: src/view/shell/Drawer.tsx:443 msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6113,8 +6105,8 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" @@ -6126,8 +6118,9 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:143 -#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/interstitials/FeedTrendingTopics.tsx:168 +#: src/components/interstitials/Trending.tsx:149 +#: src/components/interstitials/TrendingVideos.tsx:138 #: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 @@ -6136,11 +6129,12 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:106 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:173 msgid "Hide" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:956 +#: src/view/com/notifications/NotificationFeedItem.tsx:989 msgctxt "action" msgid "Hide" msgstr "" @@ -6196,20 +6190,22 @@ msgstr "" msgid "Hide translation" msgstr "Hide translation" -#: src/components/interstitials/Trending.tsx:125 +#: src/components/interstitials/Trending.tsx:131 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:141 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:135 +#: src/components/interstitials/FeedTrendingTopics.tsx:166 +#: src/components/interstitials/Trending.tsx:147 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:104 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:171 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:947 +#: src/view/com/notifications/NotificationFeedItem.tsx:982 msgid "Hide user list" msgstr "" @@ -6267,7 +6263,7 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/view/com/composer/state/video.ts:447 +#: src/view/com/composer/state/video.ts:461 msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "" @@ -6275,7 +6271,7 @@ msgstr "" #: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 -#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:502 msgid "Home" msgstr "" @@ -6535,12 +6531,10 @@ msgstr "" #. Advanced search filter #. Advanced search filter #. Advanced search filter -#. Include search results with or without replies #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "Include" @@ -6549,7 +6543,7 @@ msgstr "Include" msgid "Include or exclude matching posts (currently: {0})" msgstr "Include or exclude matching posts (currently: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Include posts and/or replies (currently: {currentLabel})" @@ -6563,10 +6557,6 @@ msgstr "Include posts made since this date" msgid "Include posts made until this date" msgstr "Include posts made until this date" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Include these results" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "" @@ -6634,7 +6624,7 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:100 +#: src/components/moderation/ReportDialog/index.tsx:108 msgid "Invalid report subject" msgstr "" @@ -6659,12 +6649,12 @@ msgstr "" msgid "Invite code" msgstr "" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:122 msgid "Invite friends" msgstr "Invite friends" @@ -6752,7 +6742,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2616 msgid "Job ID: {0}" msgstr "" @@ -6792,8 +6782,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1544 +#: src/view/com/composer/Composer.tsx:1554 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6816,7 +6806,7 @@ msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6845,12 +6835,12 @@ msgid "Language Settings" msgstr "" #: src/screens/Settings/LanguageSettings.tsx:98 -#: src/screens/Settings/Settings.tsx:240 -#: src/screens/Settings/Settings.tsx:243 +#: src/screens/Settings/Settings.tsx:241 +#: src/screens/Settings/Settings.tsx:244 msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -7033,7 +7023,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7052,7 +7042,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7115,7 +7105,7 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 #: src/screens/Settings/NotificationSettings/index.tsx:159 #: src/screens/Settings/NotificationSettings/index.tsx:314 -#: src/view/screens/Profile.tsx:238 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" @@ -7226,10 +7216,10 @@ msgstr "" #: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 -#: src/view/shell/Drawer.tsx:604 +#: src/view/shell/Drawer.tsx:607 msgid "Lists" msgstr "" @@ -7287,7 +7277,7 @@ msgid "Load new notifications" msgstr "" #: src/screens/Profile/ProfileFeed/index.tsx:208 -#: src/screens/Profile/Sections/Feed.tsx:118 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7347,7 +7337,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:768 +#: src/view/shell/Drawer.tsx:771 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "" @@ -7455,7 +7445,7 @@ msgid "Me" msgstr "Me" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7534,7 +7524,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Message failed to send." @@ -7565,11 +7555,11 @@ msgstr "" msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Messages from this person are hidden while they are blocking you." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Messages from this person are hidden while you are blocking them." @@ -7595,8 +7585,8 @@ msgstr "" msgid "Moderation" msgstr "" -#: src/screens/Settings/Settings.tsx:190 -#: src/screens/Settings/Settings.tsx:193 +#: src/screens/Settings/Settings.tsx:191 +#: src/screens/Settings/Settings.tsx:194 msgid "Moderation and content filters" msgstr "Moderation and content filters" @@ -7852,12 +7842,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:92 +#: src/view/shell/Drawer.tsx:93 msgid "Navigates to your profile" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:342 -#: src/components/moderation/ReportDialog/index.tsx:358 +#: src/components/moderation/ReportDialog/index.tsx:375 +#: src/components/moderation/ReportDialog/index.tsx:391 msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" msgstr "" @@ -7880,11 +7870,11 @@ msgctxt "nux-description" msgid "New" msgstr "New" -#: src/view/com/notifications/NotificationFeedItem.tsx:569 +#: src/view/com/notifications/NotificationFeedItem.tsx:559 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:552 +#: src/view/com/notifications/NotificationFeedItem.tsx:543 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" @@ -7984,7 +7974,7 @@ msgstr "" #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -7994,11 +7984,11 @@ msgctxt "action" msgid "New post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:558 +#: src/view/com/notifications/NotificationFeedItem.tsx:548 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:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:536 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -8022,7 +8012,7 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:204 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:248 msgid "News" msgstr "" @@ -8054,6 +8044,12 @@ msgstr "" msgid "Night" msgstr "Night" +#: src/components/moderation/ReportDialog/index.tsx:923 +#: src/components/moderation/ReportDialog/index.tsx:932 +msgctxt "Answer to a yes/no question" +msgid "No" +msgstr "No" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8062,6 +8058,11 @@ msgstr "" msgid "No app passwords yet" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "No author filter" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "No beta features at the moment." @@ -8095,7 +8096,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8113,9 +8114,15 @@ msgstr "No GIFs to show right now. Try again in a moment." msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "No language filter" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8124,15 +8131,20 @@ msgid "No lists" msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) -#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #: src/components/ProfileCard.tsx:523 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 -#: src/view/com/notifications/NotificationFeedItem.tsx:813 +#: src/view/com/notifications/NotificationFeedItem.tsx:848 msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "No media filter" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8148,7 +8160,7 @@ msgstr "" msgid "No name" msgstr "" -#: src/view/com/notifications/NotificationFeed.tsx:125 +#: src/view/com/notifications/NotificationFeed.tsx:131 msgid "No notifications yet!" msgstr "" @@ -8177,12 +8189,17 @@ msgstr "" msgid "No one can send messages" msgstr "No one can send messages" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "No post filter" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:82 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" @@ -8195,11 +8212,7 @@ msgstr "" msgid "No recent GIFs yet. Pick one to see it here." msgstr "No recent GIFs yet. Pick one to see it here." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "No replies" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8249,7 +8262,7 @@ msgstr "No results found for your query with advanced search filters applied." msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8262,7 +8275,7 @@ msgstr "" msgid "No translation received from your device." msgstr "No translation received from your device." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8283,7 +8296,7 @@ msgstr "" msgid "Nobody has reposted this yet. Maybe you should be the first!" msgstr "" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:107 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:110 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -8295,6 +8308,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/components/OTAChannelNotice.tsx:37 +msgid "Non-standard OTA channel" +msgstr "Non-standard OTA channel" + #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 msgid "None" msgstr "None" @@ -8318,7 +8335,7 @@ msgid "Not followed by anyone youโ€™re following" msgstr "Not followed by anyone youโ€™re following" #: src/Navigation.tsx:169 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8360,12 +8377,12 @@ msgstr "" #: src/screens/Notifications/ActivityList.tsx:31 #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 #: src/screens/Settings/NotificationSettings/index.tsx:125 -#: src/screens/Settings/Settings.tsx:198 -#: src/screens/Settings/Settings.tsx:201 +#: src/screens/Settings/Settings.tsx:199 +#: src/screens/Settings/Settings.tsx:202 #: src/view/screens/Notifications.tsx:128 #: src/view/shell/bottom-bar/BottomBar.tsx:279 #: src/view/shell/desktop/LeftNav.tsx:687 -#: src/view/shell/Drawer.tsx:552 +#: src/view/shell/Drawer.tsx:555 msgid "Notifications" msgstr "" @@ -8407,7 +8424,7 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 #: src/components/dms/InitiateChatFlow.tsx:838 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 #: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" @@ -8428,7 +8445,7 @@ msgstr "On" msgid "on<0><1/><2><3/>" msgstr "" -#: src/screens/Settings/Settings.tsx:405 +#: src/screens/Settings/Settings.tsx:407 msgid "Onboarding reset" msgstr "" @@ -8442,11 +8459,11 @@ msgstr "One of the selected recipients does not allow group chats." msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "One of the selected recipients has blocked you and cannot be messaged." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:938 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:935 msgid "One or more images is missing alt text." msgstr "" @@ -8458,11 +8475,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:741 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:945 msgid "One or more videos is missing alt text." msgstr "" @@ -8511,6 +8528,10 @@ msgstr "Only people {0} follows can join." msgid "Only people the chat owner follows can join" msgstr "Only people the chat owner follows can join" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "Only posts" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "Only posts with media" @@ -8540,7 +8561,7 @@ msgstr "Oops, this profile doesn't exist. Try scanning another one." #: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8548,11 +8569,11 @@ msgstr "" msgid "Open advanced search options" msgstr "Open advanced search options" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" -#: src/view/com/feeds/ComposerPrompt.tsx:201 +#: src/view/com/feeds/ComposerPrompt.tsx:204 msgid "Open camera" msgstr "" @@ -8579,7 +8600,7 @@ msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2249 msgid "Open emoji picker" msgstr "" @@ -8624,7 +8645,7 @@ msgstr "" msgid "Open message options" msgstr "" -#: src/screens/Settings/Settings.tsx:470 +#: src/screens/Settings/Settings.tsx:480 msgid "Open moderation debug page" msgstr "" @@ -8662,12 +8683,11 @@ msgstr "" msgid "Open starter pack menu" msgstr "" -#: src/screens/Settings/Settings.tsx:463 -#: src/screens/Settings/Settings.tsx:477 +#: src/screens/Settings/Settings.tsx:473 msgid "Open storybook page" msgstr "" -#: src/screens/Settings/Settings.tsx:456 +#: src/screens/Settings/Settings.tsx:458 msgid "Open system log" msgstr "" @@ -8704,7 +8724,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Opens camera on device" msgstr "" @@ -8720,7 +8740,7 @@ msgstr "" msgid "Opens composer" msgstr "" -#: src/view/com/feeds/ComposerPrompt.tsx:202 +#: src/view/com/feeds/ComposerPrompt.tsx:205 msgid "Opens device camera" msgstr "" @@ -8736,7 +8756,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8745,11 +8765,11 @@ msgstr "" msgid "Opens full image" msgstr "Opens full image" -#: src/screens/Settings/Settings.tsx:257 +#: src/screens/Settings/Settings.tsx:258 msgid "Opens helpdesk in browser" msgstr "" -#: src/view/com/feeds/ComposerPrompt.tsx:224 +#: src/view/com/feeds/ComposerPrompt.tsx:227 msgid "Opens image picker" msgstr "" @@ -8779,11 +8799,11 @@ msgstr "Opens the find and invite friends settings" msgid "Opens the GIF picker dialog" msgstr "Opens the GIF picker dialog" -#: src/view/shell/Drawer.tsx:123 +#: src/view/shell/Drawer.tsx:124 msgid "Opens the invite friends sheet to share your profile" msgstr "Opens the invite friends sheet to share your profile" -#: src/view/com/feeds/ComposerPrompt.tsx:148 +#: src/view/com/feeds/ComposerPrompt.tsx:151 msgid "Opens the post composer" msgstr "" @@ -8807,19 +8827,19 @@ msgstr "" msgid "Or, sign in to one of your other accounts." msgstr "" -#: src/screens/Settings/components/OTAInfo.tsx:55 +#: src/screens/Settings/components/OTAInfo.tsx:60 msgid "OTA status: ..." msgstr "" -#: src/screens/Settings/components/OTAInfo.tsx:51 +#: src/screens/Settings/components/OTAInfo.tsx:56 msgid "OTA status: Available!" msgstr "" -#: src/screens/Settings/components/OTAInfo.tsx:53 +#: src/screens/Settings/components/OTAInfo.tsx:58 msgid "OTA status: Error fetching update" msgstr "" -#: src/screens/Settings/components/OTAInfo.tsx:57 +#: src/screens/Settings/components/OTAInfo.tsx:62 msgid "OTA status: None available" msgstr "" @@ -9114,11 +9134,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "" @@ -9127,11 +9147,11 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "" -#: src/view/com/composer/state/video.ts:471 +#: src/view/com/composer/state/video.ts:485 msgid "Please confirm your email address to upload videos." msgstr "" @@ -9184,7 +9204,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "" @@ -9245,6 +9265,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "" +#: src/components/moderation/ReportDialog/index.tsx:874 +msgctxt "english-only-resource" +msgid "Please submit your report through the Report non-consensual intimate imagery (NCII) form." +msgstr "Please submit your report through the Report non-consensual intimate imagery (NCII) form." + #: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 msgid "Please use the Bluesky mobile app to scan a QR code." msgstr "Please use the Bluesky mobile app to scan a QR code." @@ -9266,7 +9291,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:198 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:242 msgid "Politics" msgstr "" @@ -9274,7 +9299,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1894 msgctxt "action" msgid "Post" msgstr "" @@ -9284,22 +9309,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1892 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1553 msgid "Post anyway" msgstr "Post anyway" @@ -9374,6 +9399,11 @@ msgctxt "toast" msgid "Post pinned" msgstr "" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "Post type" + #: src/state/queries/pinned-post.ts:61 msgctxt "toast" msgid "Post unpinned" @@ -9384,14 +9414,10 @@ msgstr "" #: src/screens/ProfileList/index.tsx:167 #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "Posts and replies" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "" @@ -9450,8 +9476,8 @@ msgstr "" msgid "Privacy" msgstr "" -#: src/screens/Settings/Settings.tsx:182 -#: src/screens/Settings/Settings.tsx:185 +#: src/screens/Settings/Settings.tsx:183 +#: src/screens/Settings/Settings.tsx:186 msgid "Privacy and security" msgstr "" @@ -9473,8 +9499,8 @@ msgstr "" #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:763 -#: src/view/shell/Drawer.tsx:764 +#: src/view/shell/Drawer.tsx:766 +#: src/view/shell/Drawer.tsx:767 msgid "Privacy Policy" msgstr "" @@ -9482,11 +9508,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2690 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2692 msgid "Processing video..." msgstr "" @@ -9500,8 +9526,8 @@ msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:322 #: src/view/shell/desktop/LeftNav.tsx:745 -#: src/view/shell/Drawer.tsx:91 -#: src/view/shell/Drawer.tsx:655 +#: src/view/shell/Drawer.tsx:92 +#: src/view/shell/Drawer.tsx:658 msgid "Profile" msgstr "" @@ -9533,22 +9559,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1878 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1873 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1862 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1867 msgid "Publish reply" msgstr "" @@ -9694,11 +9720,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:146 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:144 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9769,7 +9795,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:693 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9795,8 +9821,8 @@ msgstr "Remove {displayName}?" msgid "Remove {q}" msgstr "Remove {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:674 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove account" msgstr "" @@ -9856,7 +9882,7 @@ msgstr "Remove from chat" msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:687 msgid "Remove from quick access?" msgstr "" @@ -10006,15 +10032,15 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Replied-to message from {senderName}, tap to scroll to it" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Replied-to message was sent before you joined" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Replied-to message, tap to scroll to it" @@ -10024,7 +10050,7 @@ msgstr "Replied-to message, tap to scroll to it" #: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 #: src/screens/Settings/NotificationSettings/index.tsx:181 #: src/screens/Settings/NotificationSettings/index.tsx:330 -#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10041,7 +10067,7 @@ msgstr "" msgid "Reply" msgstr "Reply" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1890 msgctxt "action" msgid "Reply" msgstr "" @@ -10097,8 +10123,8 @@ msgstr "" msgid "Report conversation" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 -#: src/components/moderation/ReportDialog/index.tsx:263 +#: src/components/moderation/ReportDialog/index.tsx:106 +#: src/components/moderation/ReportDialog/index.tsx:296 msgid "Report dialog" msgstr "" @@ -10317,8 +10343,8 @@ msgstr "" msgid "Resend Verification Email" msgstr "" -#: src/screens/Settings/Settings.tsx:499 -#: src/screens/Settings/Settings.tsx:501 +#: src/screens/Settings/Settings.tsx:509 +#: src/screens/Settings/Settings.tsx:511 msgid "Reset activity subscription nudge" msgstr "" @@ -10326,8 +10352,8 @@ msgstr "" msgid "Reset code" msgstr "" -#: src/screens/Settings/Settings.tsx:484 -#: src/screens/Settings/Settings.tsx:486 +#: src/screens/Settings/Settings.tsx:494 +#: src/screens/Settings/Settings.tsx:496 msgid "Reset onboarding state" msgstr "" @@ -10339,6 +10365,14 @@ msgstr "" msgid "Reset your password by sending a code to your email" msgstr "Reset your password by sending a code to your email" +#: src/components/OTAChannelNotice.tsx:58 +msgid "Restore default" +msgstr "Restore default" + +#: src/components/OTAChannelNotice.tsx:54 +msgid "Restore the {defaultChannel} deployment" +msgstr "Restore the {defaultChannel} deployment" + #: src/screens/Settings/FindContactsSettings.tsx:544 #: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" @@ -10359,7 +10393,7 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:355 #: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:297 +#: src/components/moderation/ReportDialog/index.tsx:330 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 #: src/components/StarterPack/ProfileStarterPacks.tsx:380 @@ -10382,7 +10416,7 @@ msgstr "" msgid "Retry" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:294 +#: src/components/moderation/ReportDialog/index.tsx:327 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" @@ -10431,12 +10465,12 @@ msgstr "Sad GIFs" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:315 #: src/screens/Settings/components/ChangeHandleDialog.tsx:269 -#: src/view/com/composer/GifAltText.tsx:199 -#: src/view/com/composer/GifAltText.tsx:208 +#: src/view/com/composer/GifAltText.tsx:198 +#: src/view/com/composer/GifAltText.tsx:207 #: src/view/com/composer/photos/EditImageDialog.web.tsx:63 #: src/view/com/composer/photos/EditImageDialog.web.tsx:76 -#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 -#: src/view/com/composer/photos/ImageAltTextDialog.tsx:173 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:162 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:172 msgid "Save" msgstr "" @@ -10450,22 +10484,22 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1534 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1506 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1534 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1508 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" @@ -10497,7 +10531,7 @@ msgid "Save to my feeds" msgstr "" #: src/view/shell/desktop/LeftNav.tsx:732 -#: src/view/shell/Drawer.tsx:630 +#: src/view/shell/Drawer.tsx:633 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -10519,8 +10553,8 @@ msgid "Saved to your feeds" msgstr "" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:895 -#: src/view/com/notifications/NotificationFeedItem.tsx:920 +#: src/view/com/notifications/NotificationFeedItem.tsx:947 +#: src/view/com/notifications/NotificationFeedItem.tsx:955 msgid "Say hello!" msgstr "" @@ -10547,15 +10581,15 @@ msgstr "Scan QR code" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Scroll to the message this is replying to" @@ -10711,22 +10745,24 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 #: src/components/interstitials/FeedTrendingTopics.tsx:112 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:80 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/components/interstitials/FeedTrendingTopics.tsx:103 +#: src/components/interstitials/FeedTrendingTopics.tsx:98 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:66 msgid "See more trending topics" msgstr "See more trending topics" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10740,7 +10776,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10757,11 +10793,11 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:380 +#: src/components/moderation/ReportDialog/index.tsx:413 msgid "Select a reason" msgstr "" @@ -10773,11 +10809,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10858,7 +10894,7 @@ msgstr "" msgid "Select languages" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:430 +#: src/components/moderation/ReportDialog/index.tsx:468 msgid "Select moderation service" msgstr "" @@ -10874,7 +10910,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10943,7 +10979,7 @@ msgstr "" msgid "Send error report" msgstr "Send error report" -#: src/view/shell/Drawer.tsx:420 +#: src/view/shell/Drawer.tsx:423 msgid "Send feedback" msgstr "" @@ -10960,7 +10996,7 @@ msgstr "" msgid "Send post to..." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:818 +#: src/components/moderation/ReportDialog/index.tsx:976 msgid "Send report to {title}" msgstr "" @@ -11033,9 +11069,9 @@ msgid "Sets email for password reset" msgstr "" #: src/Navigation.tsx:215 -#: src/screens/Settings/Settings.tsx:99 +#: src/screens/Settings/Settings.tsx:100 #: src/view/shell/desktop/LeftNav.tsx:755 -#: src/view/shell/Drawer.tsx:668 +#: src/view/shell/Drawer.tsx:671 msgid "Settings" msgstr "" @@ -11348,7 +11384,7 @@ msgstr "" msgid "Shows information about when this post was created" msgstr "" -#: src/screens/Settings/Settings.tsx:124 +#: src/screens/Settings/Settings.tsx:125 msgid "Shows other accounts you can switch to" msgstr "" @@ -11359,8 +11395,8 @@ msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:194 -#: src/components/WelcomeModal.tsx:206 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11370,8 +11406,8 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 #: src/screens/Search/SearchResults.tsx:413 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11422,9 +11458,9 @@ msgstr "Sign in to request access to this group chat." msgid "Sign in to view post" msgstr "" -#: src/screens/Settings/Settings.tsx:274 -#: src/screens/Settings/Settings.tsx:276 -#: src/screens/Settings/Settings.tsx:308 +#: src/screens/Settings/Settings.tsx:275 +#: src/screens/Settings/Settings.tsx:277 +#: src/screens/Settings/Settings.tsx:309 #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 @@ -11438,7 +11474,7 @@ msgstr "" msgid "Sign Out" msgstr "" -#: src/screens/Settings/Settings.tsx:305 +#: src/screens/Settings/Settings.tsx:306 #: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "" @@ -11480,7 +11516,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1551 msgid "Skip empty posts?" msgstr "Skip empty posts?" @@ -11498,7 +11534,7 @@ msgstr "" msgid "slide" msgstr "slide" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11510,7 +11546,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:148 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11531,7 +11567,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "" @@ -11556,7 +11592,7 @@ msgid "Someone left the group" msgstr "Someone left the group" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11565,7 +11601,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "Someone reacted {0} to {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Someone replied" @@ -11585,7 +11621,7 @@ msgstr "Someone was removed" msgid "Someone was removed from the group" msgstr "Someone was removed from the group" -#: src/components/moderation/ReportDialog/index.tsx:103 +#: src/components/moderation/ReportDialog/index.tsx:111 msgid "Something wasn't quite right with the data you're trying to report. Please contact support." msgstr "" @@ -11596,7 +11632,7 @@ msgid "Something went wrong" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:289 +#: src/components/moderation/ReportDialog/index.tsx:322 #: src/screens/Deactivated.tsx:86 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 #: src/view/screens/Storybook/Admonitions.tsx:56 @@ -11618,7 +11654,7 @@ msgstr "" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:247 +#: src/components/moderation/ReportDialog/index.tsx:269 msgid "Something went wrong. Please try again." msgstr "" @@ -11661,7 +11697,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:196 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:240 msgid "Sports" msgstr "" @@ -11731,7 +11767,7 @@ msgid "Starter packs" msgstr "Starter packs" #: src/screens/Search/Explore.tsx:661 -#: src/view/screens/Profile.tsx:240 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" @@ -11743,7 +11779,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11757,11 +11793,11 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" -#: src/screens/Settings/Settings.tsx:410 +#: src/screens/Settings/Settings.tsx:412 msgid "Storage cleared, you need to restart the app now." msgstr "" @@ -11770,7 +11806,7 @@ msgid "Stored as part of a secure code for matching with others" msgstr "" #: src/Navigation.tsx:308 -#: src/screens/Settings/Settings.tsx:465 +#: src/screens/Settings/Settings.tsx:475 msgid "Storybook" msgstr "" @@ -11804,12 +11840,17 @@ msgstr "" msgid "Submit feedback" msgstr "Submit feedback" -#: src/components/moderation/ReportDialog/index.tsx:508 -#: src/components/moderation/ReportDialog/index.tsx:569 -#: src/components/moderation/ReportDialog/index.tsx:576 +#: src/components/moderation/ReportDialog/index.tsx:546 +#: src/components/moderation/ReportDialog/index.tsx:607 +#: src/components/moderation/ReportDialog/index.tsx:614 msgid "Submit report" msgstr "" +#: src/components/moderation/ReportDialog/index.tsx:854 +msgctxt "english-only-resource" +msgid "Submit your report through the Report non-consensual intimate imagery (NCII) form" +msgstr "Submit your report through the Report non-consensual intimate imagery (NCII) form" + #: src/screens/ProfileList/components/SubscribeMenu.tsx:75 msgid "Subscribe" msgstr "" @@ -11874,7 +11915,7 @@ msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "" @@ -11920,9 +11961,9 @@ msgstr "Suspended accounts cannot participate in chat." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 -#: src/screens/Settings/Settings.tsx:123 -#: src/screens/Settings/Settings.tsx:135 -#: src/screens/Settings/Settings.tsx:624 +#: src/screens/Settings/Settings.tsx:124 +#: src/screens/Settings/Settings.tsx:136 +#: src/screens/Settings/Settings.tsx:634 #: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "" @@ -11938,15 +11979,15 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" #: src/screens/Log.tsx:49 #: src/screens/Settings/AboutSettings.tsx:117 #: src/screens/Settings/AboutSettings.tsx:120 -#: src/screens/Settings/Settings.tsx:458 +#: src/screens/Settings/Settings.tsx:460 msgid "System log" msgstr "" @@ -11962,7 +12003,7 @@ msgstr "Take the conversation private." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tap for details" @@ -11993,7 +12034,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "Tap to copy this invite link" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12020,7 +12061,7 @@ msgstr "Tap to remove your {0} reaction" msgid "Tap to request access to join this group chat" msgstr "Tap to request access to join this group chat" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tap to retry" @@ -12033,7 +12074,7 @@ msgstr "Tap to show {0} reactions" msgid "Tap to show all reactions" msgstr "Tap to show all reactions" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tap to view reactions" @@ -12049,7 +12090,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12081,8 +12122,8 @@ msgstr "" #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:756 -#: src/view/shell/Drawer.tsx:758 +#: src/view/shell/Drawer.tsx:759 +#: src/view/shell/Drawer.tsx:761 msgid "Terms of Service" msgstr "" @@ -12211,6 +12252,10 @@ msgstr "" msgid "The member limit has been reached." msgstr "The member limit has been reached." +#: src/components/moderation/ReportDialog/index.tsx:275 +msgid "The moderation service is temporarily unavailable. Please try again later." +msgstr "The moderation service is temporarily unavailable. Please try again later." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post youโ€™re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "The post youโ€™re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" @@ -12220,10 +12265,22 @@ msgid "The Privacy Policy has been moved to <0/>" msgstr "" #: src/view/com/composer/state/video.ts:429 -#: src/view/com/composer/state/video.ts:468 +msgid "The selected video has an unsupported aspect ratio." +msgstr "The selected video has an unsupported aspect ratio." + +#: src/view/com/composer/state/video.ts:443 +#: src/view/com/composer/state/video.ts:482 msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB}ย MB. Please try again with a smaller file." msgstr "The selected video is larger than {VIDEO_MAX_SIZE_MB}ย MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:427 +msgid "The selected video is too long." +msgstr "The selected video is too long." + +#: src/view/com/composer/state/video.ts:431 +msgid "The selected video uses an unsupported format." +msgstr "The selected video uses an unsupported format." + #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:18 msgid "The server appears to be experiencing issues. Please try again in a few moments." @@ -12233,7 +12290,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12255,7 +12312,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12296,12 +12353,12 @@ msgstr "" msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" -#: src/view/com/notifications/NotificationFeed.tsx:133 +#: src/view/com/notifications/NotificationFeed.tsx:138 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" #: src/screens/Search/Explore.tsx:1015 -#: src/view/com/posts/PostFeed.tsx:808 +#: src/view/com/posts/PostFeed.tsx:834 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12437,6 +12494,10 @@ msgstr "" msgid "This action can be undone at any time." msgstr "" +#: src/components/OTAChannelNotice.tsx:40 +msgid "This app is running a deployment of <0>{currentChannel}. Restore the {defaultChannel} deployment to get back to a standard build." +msgstr "This app is running a deployment of <0>{currentChannel}. Restore the {defaultChannel} deployment to get back to a standard build." + #: src/components/moderation/AppealForm.tsx:96 msgid "This appeal will be sent to <0>{sourceName}." msgstr "" @@ -12571,7 +12632,7 @@ msgstr "This group is locked by a moderation action on the owner" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "This image could not be used. Try a different format like .jpg or .png." @@ -12638,16 +12699,20 @@ msgstr "" msgid "This message is hidden" msgstr "This message is hidden" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "This message is hidden because this user is blocking you." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "This message is hidden because you are blocking this user." +#: src/components/moderation/ReportDialog/index.tsx:273 +msgid "This moderation service does not support that report reason. Please choose a different reason or moderation service." +msgstr "This moderation service does not support that report reason. Please choose a different reason or moderation service." + #: src/screens/Profile/ErrorState.tsx:41 msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." msgstr "" @@ -12678,7 +12743,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1126 msgid "This post's author has disabled quote posts." msgstr "" @@ -12715,7 +12780,7 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" @@ -12752,7 +12817,7 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" @@ -12778,7 +12843,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:688 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12912,9 +12977,9 @@ msgstr "Translation to the same language is unavailable on your device." msgid "Tree view" msgstr "" -#: src/components/interstitials/FeedTrendingTopics.tsx:100 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:51 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 +#: src/components/interstitials/FeedTrendingTopics.tsx:94 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:71 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:63 msgid "Trending" msgstr "" @@ -12923,13 +12988,15 @@ msgstr "" msgid "Trending GIFs" msgstr "Trending GIFs" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 +#: src/components/interstitials/FeedTrendingTopics.tsx:121 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:74 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:90 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "Trending videos" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -13031,11 +13098,11 @@ msgstr "Unable to find the selected recipient." msgid "Unable to resolve handle" msgstr "" -#: src/screens/Settings/Settings.tsx:524 +#: src/screens/Settings/Settings.tsx:534 msgid "Unapply Pull Request" msgstr "" -#: src/screens/Settings/Settings.tsx:526 +#: src/screens/Settings/Settings.tsx:536 msgid "Unapply Pull Request {currentChannel}" msgstr "" @@ -13047,7 +13114,7 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 #: src/components/moderation/BlockDialog.tsx:187 @@ -13131,7 +13198,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:492 +#: src/components/moderation/ReportDialog/index.tsx:530 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -13259,8 +13326,8 @@ msgstr "" msgid "Unpinned list" msgstr "" -#: src/screens/Settings/Settings.tsx:491 -#: src/screens/Settings/Settings.tsx:493 +#: src/screens/Settings/Settings.tsx:501 +#: src/screens/Settings/Settings.tsx:503 msgid "Unsnooze email reminder" msgstr "" @@ -13285,7 +13352,7 @@ msgstr "" msgid "Unsupported clipboard content" msgstr "Unsupported clipboard content" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1643 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13298,8 +13365,8 @@ msgstr "Until" msgid "Up to 50 people" msgstr "Up to 50 people" -#: src/screens/Settings/components/OTAInfo.tsx:61 -#: src/screens/Settings/components/OTAInfo.tsx:77 +#: src/screens/Settings/components/OTAInfo.tsx:66 +#: src/screens/Settings/components/OTAInfo.tsx:82 msgid "Update" msgstr "" @@ -13351,7 +13418,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13378,7 +13445,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2683 msgid "Uploading GIF..." msgstr "" @@ -13392,7 +13459,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2685 msgid "Uploading video..." msgstr "" @@ -13431,7 +13498,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "user" @@ -13632,12 +13699,17 @@ msgstr "" msgid "Version {0}" msgstr "" +#. When the source of a follow is a starter pack, i.e., 'via starter pack {starterPackName}'. +#: src/view/com/notifications/NotificationFeedItem.tsx:746 +msgid "via starter pack <0/><1>{starterPackName}" +msgstr "via starter pack <0/><1>{starterPackName}" + #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:95 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:162 msgid "Video" msgstr "" -#: src/view/com/composer/state/video.ts:390 +#: src/view/com/composer/state/video.ts:433 msgid "Video failed to process" msgstr "" @@ -13646,7 +13718,7 @@ msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" @@ -13656,7 +13728,7 @@ msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:200 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:244 msgid "Video Games" msgstr "" @@ -13676,7 +13748,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2703 msgid "Video uploaded" msgstr "" @@ -13685,7 +13757,7 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" @@ -13695,7 +13767,7 @@ msgstr "" msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1233 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13717,7 +13789,7 @@ msgstr "" #: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 #: src/screens/VideoFeed/index.tsx:880 -#: src/view/com/notifications/NotificationFeedItem.tsx:619 +#: src/view/com/notifications/NotificationFeedItem.tsx:608 msgid "View {0}'s profile" msgstr "" @@ -13757,6 +13829,10 @@ msgstr "" msgid "View full thread" msgstr "" +#: src/screens/Settings/Settings.tsx:465 +msgid "View GrowthBook information" +msgstr "View GrowthBook information" + #: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" msgstr "View incoming group chat requests" @@ -13773,18 +13849,18 @@ msgstr "View incoming requests to join this group chat" msgid "View information about these labels" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1228 msgid "View post" msgstr "" @@ -13829,7 +13905,7 @@ msgstr "" msgid "View users who like this feed" msgstr "" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13863,7 +13939,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -13993,7 +14069,7 @@ msgstr "" msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:451 +#: src/view/com/composer/state/video.ts:465 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" @@ -14066,7 +14142,7 @@ msgstr "Weโ€™re having network issues, try again" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Weโ€™re so excited to have you join us!" @@ -14103,7 +14179,7 @@ msgstr "Weโ€™re sorry, but your search could not be completed. Please try again msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1124 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14159,8 +14235,8 @@ msgid "whatโ€™s up" msgstr "whatโ€™s up" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 -#: src/view/com/feeds/ComposerPrompt.tsx:192 +#: src/view/com/composer/Composer.tsx:1607 +#: src/view/com/feeds/ComposerPrompt.tsx:195 msgid "What's up?" msgstr "" @@ -14245,21 +14321,21 @@ msgstr "Would you like to block this user and/or leave this conversation?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1522 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1703 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1605 msgid "Write your reply" msgstr "" @@ -14282,6 +14358,12 @@ msgstr "Wrong kind of conversation" msgid "www.mylivestream.tv" msgstr "" +#: src/components/moderation/ReportDialog/index.tsx:907 +#: src/components/moderation/ReportDialog/index.tsx:916 +msgctxt "Answer to a yes/no question" +msgid "Yes" +msgstr "Yes" + #. Accessibility label for the icon-only pill that filters the GIF picker to affirmation/agreement GIFs. #: src/features/gifPicker/components/GifCategoryPills.tsx:95 msgid "Yes GIFs" @@ -14325,7 +14407,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "You are blocking {0}" @@ -14363,11 +14445,11 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:444 +#: src/view/com/composer/state/video.ts:458 msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14435,7 +14517,7 @@ msgstr "" msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1527 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14464,9 +14546,11 @@ msgstr "You can read chat history but canโ€™t send new messages." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." -#: src/components/interstitials/Trending.tsx:142 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:136 +#: src/components/interstitials/FeedTrendingTopics.tsx:167 +#: src/components/interstitials/Trending.tsx:148 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:105 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:172 msgid "You can update this later from your settings." msgstr "" @@ -14581,7 +14665,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1517 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14674,12 +14758,12 @@ msgstr "You own this chat" msgid "You previously deactivated @{0}." msgstr "" -#: src/screens/Settings/Settings.tsx:421 +#: src/screens/Settings/Settings.tsx:423 msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14693,15 +14777,15 @@ msgstr "You reacted {0} to {target}" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "You replied" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "You replied to {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "You replied to yourself" @@ -14710,7 +14794,7 @@ msgstr "You replied to yourself" msgid "You requested to join" msgstr "You requested to join" -#: src/screens/Settings/Settings.tsx:306 +#: src/screens/Settings/Settings.tsx:307 #: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "" @@ -14741,11 +14825,11 @@ msgstr "You wonโ€™t be able to rejoin unless youโ€™re invited." msgid "You: {message}" msgstr "You: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14817,7 +14901,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:728 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14833,11 +14917,11 @@ msgstr "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} oth msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:455 +#: src/view/com/composer/state/video.ts:469 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/view/com/composer/state/video.ts:459 +#: src/view/com/composer/state/video.ts:473 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" @@ -14845,10 +14929,14 @@ msgstr "" msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" +#: src/components/moderation/ReportDialog/index.tsx:271 +msgid "Your account cannot submit reports while it is taken down." +msgstr "Your account cannot submit reports while it is taken down." + #: src/screens/Settings/components/DeleteAccountDialog.tsx:128 msgid "Your account has been deleted, see ya! โœŒ๏ธ" msgstr "" @@ -14857,7 +14945,7 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:463 +#: src/view/com/composer/state/video.ts:477 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" @@ -14893,11 +14981,11 @@ msgstr "" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:386 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:384 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -14922,7 +15010,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "" @@ -14993,11 +15081,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1221 msgid "Your posts were sent" msgstr "" @@ -15018,12 +15106,12 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1223 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:519 +#: src/components/moderation/ReportDialog/index.tsx:557 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -15031,7 +15119,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1552 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." diff --git a/src/locale/locales/eo/messages.po b/src/locale/locales/eo/messages.po index 8b0e43da95..40829b7597 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Esperanto\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorio \"{interestsDisplayName}\" (aktiva)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(blokita mesaฤo kaลita)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(enhavas enkorpigitan enhavon)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(forigita mesaฤo)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(mesaฤo sendita antaลญ ol vi aniฤis)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# horo} other {# horoj}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# ลato} other {# ลatoj}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# ano} other {# anoj}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# nova aliฤpeto} other {# novaj aliฤpetoj}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {# homo} other {# homoj}} reagis โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Konto)" @@ -251,36 +252,13 @@ msgstr "{0} aligita al babilejo" msgid "{0} and {1} added to chat" msgstr "{0} kaj {1} aligitaj al babilejo" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} sekvataj" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} blokas vin" @@ -324,14 +302,6 @@ msgstr "{0} foriris" msgid "{0} left the group" msgstr "{0} foriris el la grupo" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} el 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reagis per {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} kaj {memberCount, plural, one {# alia} other {# aliaj}} aligitaj al babilejo" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} konfirmis vin" msgid "{following} following" msgstr "{following} sekvataj" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} nealigeblas" @@ -698,7 +660,7 @@ msgstr "{handle} nealigeblas" msgid "{handle} can't be messaged" msgstr "{handle} nemesaฤeblas" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "{handle} nemesaฤeblas" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# nelegita elemento} other {# nelegitaj msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# kontakto trovita} other {# kontaktoj trovitaj}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} aliฤis al Bluesky antaลญ {timeAgoString}" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} aliฤis al Bluesky uzante startpakon antaลญ {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {# signo restanta} other {# signoj restantaj}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} respondis" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} respondis al {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} respondis al vi" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# peto} other {# petoj}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ petoj" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "antaลญ {type}h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} estas fidata konfirmanto" @@ -842,13 +795,13 @@ msgstr "Konfirmoj de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {sekvata} other {sekvataj}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citaฤตo} other {citaฤตoj}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {reafiลo} other {reafiลoj}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, one {konservo} other {konservoj}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, one {ลato} other {ลatoj}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> aligis vin" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Ensalutu<1> aลญ <2>kreu konton<3> <4>por serฤ‰i pri novaฤตoj, sportoj, politiko kaj ฤ‰io alia okazanta ฤ‰e Bluesky." @@ -971,7 +924,7 @@ msgstr "30 tagoj" msgid "7 days" msgstr "7 tagoj" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Aro de popularaj fluoj, kiujn vi povas trovi ฤ‰e Bluesky, inkluzive de News, Booksky, Game Dev, Blacksky kaj Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Reta eraro okazis. Bonvolu kontroli vian interretan konekton" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Nova kodo estis sendita" msgid "A new form of verification" msgstr "Nova konfirmada metodo" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Respondo al mesaฤo sendita antaลญ ol vi aniฤis" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Elektita ricevonto ne estas sekvata de la sendanto." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Aliฤpeto farita! La grupa posedanto kontrolos vian peton." msgid "Accessibility" msgstr "Alirebleco" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Alireblecaj agordoj" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Konto silentigita de listo" msgid "Account options" msgstr "Kontaj opcioj" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Konto forigita el la rapidatingo" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Kontoj kun gravurita blua kontrolmarko<0><1/>povas kontroli aliulojn. Tiuj fidataj konfirmantoj estas elektataj de Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Agado de aliuloj" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Aldoni alternativan tekston (nedeviga)" msgid "Add another account" msgstr "Aldoni plian konton" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Aldoni plian afiลon" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Aldoni plian afiลon al fadeno" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "Aldoni aลญtomatigan etikedon al konto" msgid "Add emoji reaction" msgstr "Aldoni emoฤi-reagon" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Aldoni filtrilon" @@ -1338,7 +1298,7 @@ msgstr "Aldoni ฤ‰i tiun fluon al viaj fluoj" msgid "Add to lists" msgstr "Aldoni al listoj" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Aldoni al konservitaj afiลoj" @@ -1400,7 +1360,7 @@ msgstr "Poradolta" msgid "Adult content" msgstr "Poradolta enhavo" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "ludoviko@ekzemplo.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "ฤˆiuj" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "ฤˆiuj amikoj sekvataj!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "ฤˆiuj lingvoj" @@ -1491,11 +1447,6 @@ msgstr "ฤˆiuj lingvoj estos montrotaj en viaj fluoj." msgid "All of these words" msgstr "ฤˆiuj el ฤ‰i tiuj vortoj" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "ฤˆiuj afiลoj" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "ฤˆiuj fluoj, kiujn vi konservis, kune en unu loko." @@ -1560,7 +1511,7 @@ msgstr "Permesas aliron al rektaj mesaฤoj" msgid "Already have a code?" msgstr "ฤˆu vi jam havas kodon?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "ฤˆu vi jam havas konton?" @@ -1614,7 +1565,7 @@ msgstr "Retmesaฤo estis sendita al {0}. ฤœi enhavas konfirmkodon, kiun vi povas msgid "An error has occurred" msgstr "Eraro okazis" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Eraro okazis" @@ -1631,7 +1582,7 @@ msgstr "Eraro okazis dum ลargado de proponitaj kontoj." msgid "An error occurred while fetching the feed." msgstr "Eraro okazis dum ลargado de la fluo." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Eraro okazis dum generado de via startpako. ฤˆu vi volas reprovi?" @@ -1640,11 +1591,11 @@ msgstr "Eraro okazis dum generado de via startpako. ฤˆu vi volas reprovi?" msgid "An error occurred while hiding suggestion. {0}" msgstr "Eraro okazis dum kaลado de propono. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Eraro okazis dum ลargado de la videaฤตo. Bonvolu reprovi poste." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Eraro okazis dum ลargado de la videaฤตo. Bonvolu reprovi." @@ -1684,7 +1635,7 @@ msgstr "Eraro okazis. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Ilustraฤตo, kiu prezentas profilbildojn fluantajn el kontaktlibro en la apon Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Ilustraฤตo montranta plurajn Bluesky-afiลojn apud piktogramoj de reafiลado, ลatado kaj komentado" @@ -1705,17 +1656,15 @@ msgstr "Invitilo ebligas al homoj la aliฤon al ฤ‰i tiu grupa babilejo sen rekta msgid "An issue not included in these options" msgstr "Problemo neinkludita inter ฤ‰i tiuj opcioj" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Problemo okazis kreante la grupan babilejon, bonvolu reprovi." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Problemo okazis komencante la babilejon, bonvolu reprovi." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Problemo okazis dum provo malfermi la babilejon" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "ฤˆiuj" @@ -1802,7 +1749,7 @@ msgstr "ฤˆiu kiu sekvas min" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "ฤˆiu kiu havas ฤin ne plu eblos aliฤi aลญ peti aliฤi. Vi ฤ‰iam povas krei novan." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Nomoj de apaj pasvortoj devas havi longon de almenaลญ 4 signoj" msgid "App passwords" msgstr "Apaj pasvortoj" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Apaj pasvortoj" @@ -1891,8 +1838,8 @@ msgstr "Apelacii pri ฤ‰i tiu decido" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Apliki tirpeton" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arkivigita de {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Arkivigita afiลo" @@ -1980,7 +1927,7 @@ msgstr "ฤˆu vi certas, ke vi volas forigi ฤ‰i tion el viaj fluoj?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "ฤˆu vi certas, ke vi volas nuligi vian aliฤpeton al {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "ฤˆu vi certas, ke vi volas forฤตeti ฤ‰i tiun afiลon?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Nordobrilo" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Aลญtomata konto" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "Aลญtomatiga etikedo" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Aลญtomatiga etikedo" @@ -2050,12 +2002,16 @@ msgstr "Aลญtomate ludi videaฤตojn kaj GIF-ojn" msgid "Available" msgstr "Disponebla" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Antaลญ ol krei afiลon aลญ respondi, vi devas unue konfirmi vian retpoลtadreson." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Antaลญ ol krei startpakon, vi devas unue konfirmi vian retpoลtadreson." @@ -2135,10 +2091,10 @@ msgstr "Antaลญ ol vi povos ricevi sciigojn pri afiลoj de {name}, unue vi devas #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "Komencu procezon de garantio pri aฤo kompletigante la kampojn sube." msgid "Beta Feature" msgstr "Beta-funkcio" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "Naskiฤdato" msgid "Birthday" msgstr "Naskiฤtago" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Blokita" msgid "Blocked accounts" msgstr "Blokitaj kontoj" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokitaj kontoj" @@ -2282,7 +2244,7 @@ msgstr "Blokitaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek aliman msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blokitaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek alimaniere interagi kun vi. Vi ne vidos ilian enhavon kaj ili ne povos vidi la vian." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokado ne malebligas al ฤ‰i tiu etikedilo meti etikedojn sur vian konton." @@ -2305,10 +2267,11 @@ msgstr "eฤฅoลanฤo ฤ‰iuฤตaลญde" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ne povas konfirmi la aลญtentecon de la donita dato." @@ -2330,7 +2293,7 @@ msgstr "Bluesky estas malfermita reto, kie elekteblas provizanto de gastigo. Se msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky estas malfermita reto, kie elekteblas provizanto de gastigo. Se vi estas novulo, ni rekomendas, ke vi restu ฤ‰e la defaลญlta opcio Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky pli bonas kun amikoj!" @@ -2348,7 +2311,7 @@ msgstr "Bluesky estas pli feliฤ‰iga kun amikoj! ฤˆu vi volas inviti iujn el viaj #: src/features/inviteFriends/InviteScannerScreen.tsx:105 msgid "Bluesky needs camera access to scan QR codes from other profiles." -msgstr "" +msgstr "Bluesky bezonas aliron al la kamerao por skani la QR-kodojn de aliaj profiloj." #: src/screens/Takendown.tsx:213 msgid "Bluesky Social Terms of Service" @@ -2358,7 +2321,7 @@ msgstr "Uzokondiฤ‰oj de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky konservas viajn kontaktojn kiel ฤ‰ifritaj datumoj. Forigado de viaj kontaktoj tuje forigos tiujn datumojn." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky elektos aron de rekomenditaj kontoj de homoj en via reto." @@ -2403,20 +2366,20 @@ msgstr "Kunigu ฤis 50 amikojn en unu babilejo." msgid "Browse custom feeds" msgstr "Foliumi proprajn fluojn" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Foliumi pli da kontoj" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Foliumi pli da fluoj sur la paฤo Esplori" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Foliumi pli da proponoj" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Foliumi pli da proponoj sur la paฤo Esplori" @@ -2425,24 +2388,25 @@ msgstr "Foliumi pli da proponoj sur la paฤo Esplori" msgid "Browse other feeds" msgstr "Foliumi aliajn fluojn" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Foliumi afiลojn pri {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Foliumi afiลojn etikeditajn per {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Foliumi startpakon {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Foliumi temon {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Foliumi temon {displayName}" @@ -2461,8 +2425,8 @@ msgstr "Butono por reveni al la hejma novaฤตfluo" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "De {0}" @@ -2473,9 +2437,9 @@ msgstr "de @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "De <0>{0}" @@ -2504,17 +2468,17 @@ msgstr "Kreante konton vi konsentas pri la <0>Uzokondiฤ‰oj kaj <1>Regularo p msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Kreante konton vi konsentas pri la <0>Uzokondiฤ‰oj." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "De vi" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" -msgstr "Fotilo" +msgstr "Kamerao" #: src/features/inviteFriends/InviteScannerScreen.tsx:96 msgid "Camera access needed" -msgstr "" +msgstr "Aliro al kamerao estas bezonata" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Nuligi reaktivigon kaj elsaluti" msgid "Cancel reply" msgstr "Nuligi respondon" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Nuligi serฤ‰on" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "ลœanฤoj al la startpako ne estos reflektota en la listo post kreo. La listo estos sendependa kopio." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Babilejo silentigita" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Babilejo netrovita." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Babilejaj opcioj" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Babileja ricevonto ne estas sekvata de la sendanto." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Ricevujo de babilpetoj" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Babilpetoj" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Agordoj de babilejo" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Babilejo malsilentigita" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Babilejoj" @@ -2837,7 +2802,7 @@ msgstr "Elektu metodon por konfirmi vian domajnon" msgid "Choose Feeds" msgstr "Elektu fluojn" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Elektu por mi" @@ -2854,7 +2819,7 @@ msgstr "Elektu homojn" msgid "Choose post languages" msgstr "Elektu lingvojn de la afiลo" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Elekti ฤ‰i tiun koloron kiel profilbildo" @@ -2879,7 +2844,7 @@ msgstr "Elektu vian propran novaฤตfluon! Fluoj konstruitaj de la komunumo helpas msgid "Choose your password" msgstr "Elektu vian pasvorton" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Elektu vian uzantnomon" @@ -2966,7 +2931,7 @@ msgstr "Klaku ฤ‰i tie por vidi la invitligilon por ฤ‰i tiu grupa babilejo" msgid "Click to open tag menu for {0}" msgstr "Alklaku por malfermi kradvortan menuon por {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Alklaku por reprovi sendi mesaฤon" @@ -3003,7 +2968,7 @@ msgstr "Alklaku por reprovi sendi mesaฤon" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Alklaku por reprovi sendi mesaฤon" msgid "Close" msgstr "Fermi" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Fermi la aktivan dialogujon" @@ -3047,7 +3012,7 @@ msgstr "Fermi rubandon" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Fermi bildmontrilon" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Fermi menuon" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "Fermi ฤ‰i tiun dialogujon" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Fermi bonvenon-fenestron" @@ -3098,7 +3063,7 @@ msgstr "Fermi bonvenon-fenestron" msgid "Closes password update alert" msgstr "Fermas la averton pri pasvorta ฤisdatigo" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Fermas afiลan redaktilon kaj forฤตetas afiลan malneton" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Koloro" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Kolora reฤimo" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Komiksoj" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Komunumaj gvidnormoj" @@ -3141,7 +3106,7 @@ msgstr "Komunumaj gvidnormoj" msgid "Complete onboarding and start using your account" msgstr "Finu la lernilon kaj komencu uzi vian konton" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Plenumi la defion" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Krei novan afiลon" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Krei afiลojn maksimume {0, plural, one {# signon}other {# signojn}} longajn" @@ -3160,11 +3125,11 @@ msgstr "Krei afiลojn maksimume {0, plural, one {# signon}other {# signojn}} lon msgid "Compose reply" msgstr "Krei respondon" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Densigado de GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Densigado de videaฤตo..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Kontaktu nian subtenan teamon" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Kontakti subtenejon" @@ -3253,7 +3218,7 @@ msgstr "Enhavo kaj aลญdvidaฤตoj" msgid "Content and media" msgstr "Enhavo kaj aลญdvidaฤตoj" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Enhavo kaj aลญdvidaฤตoj" @@ -3265,10 +3230,6 @@ msgstr "Enhavo blokita" msgid "Content filters" msgstr "Filtriloj por la enhavo" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Enhavo el la tuta reto, kiu eble plaฤ‰os al vi." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Lingvoj de enhavo" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Enhavo, kiu instigas aลญ prezentas memvundadon" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Averto de enhavo" msgid "Content warnings" msgstr "Avertoj de enhavo" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fono de kuntekstmenuo, alklaku por fermi la menuon." @@ -3302,7 +3263,7 @@ msgstr "Fono de kuntekstmenuo, alklaku por fermi la menuon." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Daลญrigi fadenon..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Daลญrigi al grupa nomo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "Konversacio netrovita." msgid "Copied build version to clipboard" msgstr "Versio kopiita al tondujo" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Ligilo kopiita al tondujo" @@ -3376,7 +3337,7 @@ msgstr "Ligilo kopiita al tondujo" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Kopii apan pasvorton" msgid "Copy at:// URI" msgstr "Kopii URI-on at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Kopii la DID-on de la aลญtoro" @@ -3449,10 +3410,10 @@ msgstr "Kopii ligilon" msgid "Copy link to list" msgstr "Kopii ligilon al listo" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopii ligilon al afiลo" @@ -3470,8 +3431,8 @@ msgstr "Kopii ligilon al startpako" msgid "Copy message text" msgstr "Kopii mesaฤan tekston" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Kopii URI-on at:// de afiลo" @@ -3490,7 +3451,7 @@ msgstr "Kopii la valoron de la TXT-rikordo" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Regularo pri kopirajto" @@ -3540,11 +3501,11 @@ msgstr "Ne eblis eksekvi ฤ‰iujn trovitajn kontaktojn. {0}" msgid "Could not leave chat" msgstr "Ne eblis foriri el babilejo" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Ne eblis foriri el la babilejo." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Ne eblis ลargi fluon" @@ -3562,7 +3523,7 @@ msgstr "Ne eblis ลargi profilon" msgid "Could not mute chat" msgstr "Ne eblis silentigi babilejon" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Ne eblis forigi anon." @@ -3606,8 +3567,8 @@ msgstr "bovinoj porkoj" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Krei" @@ -3624,26 +3585,26 @@ msgstr "Krei liston el ฤ‰i tiu startpako" msgid "Create a QR code for a starter pack" msgstr "Krei QR-kodon por startpako" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Krei startpakon" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Krei startpakon" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Krei startpakon por mi" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Krei konton" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Krei konton" @@ -3666,15 +3627,15 @@ msgstr "Krei konton" msgid "Create an account without using this starter pack" msgstr "Krei konton neuzante ฤ‰i tiun startpakon" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Krei profilbildon anstataลญe" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Krei plian" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Krei grupan babilejon" @@ -3743,7 +3704,7 @@ msgstr "Kulturo" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Nuna babilejo" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Malhela" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Malhela" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Malhela etoso" @@ -3814,7 +3775,7 @@ msgstr "Malakcepti ฤ‰i tiun proponon de lingvo" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Defaลญlta" @@ -3894,7 +3855,7 @@ msgstr "Forigi mian konton" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Forigi afiลon" @@ -3988,7 +3949,7 @@ msgstr "Dialogujo: kiu povas interagi kun ฤ‰i tiu afiลo" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Malheleta" @@ -4002,7 +3963,7 @@ msgstr "Malลalti" msgid "Disable 2FA" msgstr "Malลalti 2FA-on" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Malลalti subtekstojn" @@ -4045,9 +4006,9 @@ msgstr "Malลaltita" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Forฤตeti" msgid "Discard changes?" msgstr "ฤˆu forฤตeti ลanฤojn?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "ฤˆu forฤตeti malneton?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "ฤˆu forฤตeti afiลon?" @@ -4079,6 +4040,10 @@ msgstr "Malkonekti Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Malinstigi apojn por ke ili ne montru mian konton al elsalutintaj uzantoj" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Malinstigi apojn por ke ili ne montru mian konton al elsalutintaj uzanto msgid "Discover new custom feeds" msgstr "Malkovri novajn proprajn fluojn" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Malkovri novajn fluojn" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Malkovri novajn fluojn" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ignori" @@ -4103,28 +4064,28 @@ msgstr "Ignori" msgid "Dismiss banner" msgstr "Fermi rubandon" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Ignori eraron" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Ignori enkondukon" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Forฤตeti interesojn" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Ignori ฤ‰i tiun sekcion" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Ignori ฤ‰i tiun proponon" @@ -4142,7 +4103,7 @@ msgstr "Montri pli grandajn ลildojn de alternativa teksto" msgid "Display name" msgstr "Montrata nomo" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Forlasu la trolojn kaj klakallogilojn. Trovu realajn homojn kaj konversaciojn, kiuj gravas por vi." @@ -4205,8 +4166,8 @@ msgstr "Ne maltrankvilu! ฤˆiuj ekzistantaj mesaฤoj kaj agordoj estas konservita #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Ne maltrankvilu! ฤˆiuj ekzistantaj mesaฤoj kaj agordoj estas konservita msgid "Done" msgstr "Farite" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Duoble tuลetu aลญ longe premu la mesaฤon por aldoni reagon" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Duoble tuลeti por fermi la dialogujon" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Duoble tuลeti por ลati" @@ -4328,6 +4289,7 @@ msgstr "Manฤadaj perturboj" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Redakti bildon" msgid "Edit interaction settings" msgstr "Redakti interagajn agordojn" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Redakti interesojn" @@ -4397,7 +4359,7 @@ msgstr "Redakti tujelsendan staton" msgid "Edit moderation list" msgstr "Redakti la kontrol-liston" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Redakti miajn fluojn" @@ -4406,6 +4368,11 @@ msgstr "Redakti miajn fluojn" msgid "Edit name" msgstr "Redakti nomon" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Redakti homojn" @@ -4444,7 +4411,7 @@ msgstr "Redakti la liston de uzantoj" msgid "Edit who can reply" msgstr "Elekti kiu povas respondi" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Redakti vian startpakon" @@ -4500,8 +4467,8 @@ msgstr "Enkorpigi HTML-kodon" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Enkorpigi afiลon" @@ -4509,7 +4476,7 @@ msgstr "Enkorpigi afiลon" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Enkorpigi ฤ‰i tiun afiลon en vian retejon. Simple kopiu la jenan kodaฤตon kaj algluu ฤin en la HTML-kodo de via retejo." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Enkorpigita videoludilo" @@ -4533,7 +4500,7 @@ msgstr "Videbligi poradoltan enhavon" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "ลœalti subtekstojn" @@ -4550,12 +4517,13 @@ msgstr "ลœalti eksterajn aลญdvidaฤตojn" msgid "Enable media players for" msgstr "ลœalti la aลญdvidajn ludliojn por" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Por ลalti sciigojn pri konto, vizitu ties profilon kaj premu la <0>sonorilan piktogramon <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "ลœalti ลprucosciigojn" @@ -4581,7 +4549,7 @@ msgstr "Videbligi popularajn videaฤตojn en via fluo Discover" msgid "Enabled" msgstr "ลœaltita" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fino de la fluo" @@ -4608,7 +4576,7 @@ msgstr "Entajpu vorton aลญ kradvorton" msgid "Enter code" msgstr "Entajpu kodon" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "ลœalti plenekranon" @@ -4650,11 +4618,11 @@ msgstr "Entajpu vian uzantnomon kaj pasvorton" msgid "Enters full screen" msgstr "ลœaltas plenekranon" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Amuzo" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Eraro" @@ -4684,7 +4652,7 @@ msgstr "Eraro okazis dum konservado de dosiero" msgid "Error receiving captcha response." msgstr "Eraris ricevante la captcha-respondon." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Eraro: {error}" @@ -4696,8 +4664,8 @@ msgstr "ฤˆiuj povas respondi" msgid "Everybody can reply to this post." msgstr "ฤˆiuj povas respondi al ฤ‰i tiu afiลo." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "ฤˆiuj" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "ฤˆiuj" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "ฤˆio alia" @@ -4738,7 +4706,7 @@ msgstr "Ekskluzivi uzantojn, kiujn vi sekvas" msgid "Excludes users you follow" msgstr "Ekskluzivas uzantojn, kiujn vi sekvas" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Malลalti plenekranon" @@ -4755,11 +4723,11 @@ msgstr "Etendi liston de uzantoj" msgid "Expand or collapse the full post you are replying to" msgstr "Etendi aลญ maletendi la tutan afiลon, al kiu vi respondas" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Etendi afiลan tekston" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Etendas aลญ maletendas la tekston de la afiลo" @@ -4802,15 +4770,15 @@ msgstr "Poradolta aลญ maltrankviliga aลญdvidaฤตo." msgid "Explicit sexual images." msgstr "Detalaj seksumaj bildoj." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Esplori" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Esplori la apon" @@ -4844,7 +4812,7 @@ msgstr "Eksteraj aลญdvidaฤตoj" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Eksteraj aลญdvidaฤตoj eblas permesi al retejoj kolekti informojn pri vi kaj via aparato. Neniu informo estos sendota aลญ postulota antaลญ vi premos la butonon \"ludi\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferoj pri eksteraj aลญdvidaฤตoj" @@ -4886,7 +4854,7 @@ msgstr "Malsukcesis ลanฤi identigilon. Bonvolu reprovi." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Malsukcesis kopii ligilon" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Malsukcesis foriri el grupa babilejo" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Malsukcesis ลargi konversaciojn" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Fiaskis ลargi fluojn" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Malsukcesis ลargi preferojn de fluoj" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Malsukcesis ลargi sciigajn agordojn." @@ -5012,14 +4981,14 @@ msgstr "Malsukcesis ลargi preferon." msgid "Failed to load profiles" msgstr "Malsukcesis ลargi profilojn" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Malsukcesis ลargi propontiajn fluojn" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Malsukcesis ลargi proponitajn kontojn" @@ -5027,12 +4996,12 @@ msgstr "Malsukcesis ลargi proponitajn kontojn" msgid "Failed to lock group chat" msgstr "Malsukcesis ลlosi grupan babilejon" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Malsukcesis marki ฤ‰iujn petojn kiel legitajn" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "Malsukcesis nuligi vian peton. Bonvolu reprovi." msgid "Failed to resolve location. Please try again." msgstr "Malsukcesis trovi la lokon. Bonvolu reprovi." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Malsukcesis konservi malneton" @@ -5191,7 +5160,7 @@ msgstr "Falsa konto aลญ roboto" msgid "False information about elections" msgstr "Malveraj informoj pri balotoj" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Fluo" @@ -5212,7 +5181,7 @@ msgstr "Kreinto de fluo" msgid "Feed identifier" msgstr "Identigilo de fluo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menuo de la fluo" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Prikomentado sendita al operatoro de la fluo" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Fluoj ฤisdatigitaj!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Fluoj, kiuj eble plaฤ‰os al vi." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Elลuti ฤisdatigon" @@ -5273,34 +5238,22 @@ msgstr "Elลuti ฤisdatigon" msgid "File saved successfully!" msgstr "Dosiero konservita sukcese!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtri el fluoj" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtri serฤ‰on laลญ lingvo" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtri serฤ‰on laลญ lingvo (nune: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtri kiu havos eblon ลalti ricevadon de sciigoj pri via agado" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtri de kiuj vi ricevos sciigojn" @@ -5352,8 +5305,8 @@ msgstr "Trovi kontojn por sekvi" msgid "Find and invite friends" msgstr "Trovi kaj inviti amikojn" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Trovi kontaktojn" @@ -5387,7 +5340,7 @@ msgstr "Trovu viajn amikojn" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Trovu viajn amikojn ฤ‰e Bluesky per konfirmo de via telefonnumero kaj kongruigo de viaj kontaktoj kun ili. Ni protektas viajn informojn kaj vi kontrolas, kio okazos poste. <0>Eksciu pli" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Trovu viajn konatojn" @@ -5429,7 +5382,7 @@ msgstr "Enfokusigi la serฤ‰ujon" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Sekvi {0}" msgid "Follow {displayName}" msgstr "Sekvi {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Sekvi {handle}" @@ -5453,11 +5406,11 @@ msgstr "Sekvi {handle}" msgid "Follow 10 accounts" msgstr "Eksekvu 10 kontojn" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Eksekvu 10 homojn por komenci" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Eksekvu 7 kontojn" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Sekvantoj povas aliฤi" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Sekvantoj de @{0}, kiujn vi konas" @@ -5544,7 +5497,7 @@ msgstr "Sekvantoj, kiujn vi konas" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Sekvas {0}" msgid "Following {displayName}" msgstr "Sekvas {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Sekvas {handle}" @@ -5578,21 +5531,21 @@ msgstr "Sekvas {handle}" msgid "Following feed preferences" msgstr "Preferoj de la fluo pri sekvatoj" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferoj de la fluo pri sekvatoj" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Sekvas vin" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Tiparo" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tipara grando" @@ -5612,13 +5565,13 @@ msgstr "Pro sekurecaj kialoj, ni devos sendi konfirmkodon al via retpoลtadreso msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por sekurecaj kialoj, vi ne povos vidi ฤ‰i tion denove. Se vi perdas ฤ‰i tiun apan pasvorton, vi devos generi novan." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Por la plej bona ฤuo, ni rekomendas uzi la tiparon de la etoso." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Por vi" @@ -5628,7 +5581,7 @@ msgstr "Por vi" msgid "Forever" msgstr "Eterne" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Forgesu pri bruo" @@ -5647,11 +5600,11 @@ msgstr "ฤˆu vi forgesis pasvorton?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Liberu vian fluon" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De" @@ -5674,7 +5627,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generi startpakon" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "Akiri helpon" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Ricevi sciigojn, kiam homoj eksekvos vin." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Ricevi sciigojn, kiam homoj ลatos viajn afiลojn." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Ricevi sciigojn, kiam homoj mencios vin." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Ricevi sciigojn, kiam homoj citos viajn afiลojn." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Ricevi sciigojn, kiam homoj respondos al viaj afiลoj." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Ricevi sciigojn, kiam homoj reafiลos viajn afiลojn." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Esti sciigota pri novaj afiลoj" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Esti sciigota pri novaj afiลoj de {name}" @@ -5799,11 +5752,11 @@ msgstr "Enkonduko" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF alลutita" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Donu vizaฤon al via profilo" @@ -5813,20 +5766,20 @@ msgstr "Glorigo de violento" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Tujelsendi dum" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Nomo de grupa babilejo aktualigita" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Agordoj de grupa babilejo" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Grupaj babilejoj povas havi maksimume {0, plural, other {# anojn}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Grupo estas ลlosita" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Grupa nomo" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "La grupa nomo estas tro longa. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {La maksimuma nombro da signoj estas #.}}" @@ -6077,7 +6031,7 @@ msgstr "Agoj kun granda riziko de danฤero" msgid "Harming or endangering minors" msgstr "Damaฤo aลญ endanฤerigado de neplenaฤuloj" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Kradvorto" @@ -6098,7 +6052,7 @@ msgstr "ฤˆu vi havas kodon? <0>Klaku ฤ‰i tie." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "ฤˆu ni misdivenis vian lokon? <0>Tuลetu ฤ‰i tie por aktualigi vian lokon per GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "ฤˆu vi havas problemon?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "Helpo" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Afiลu foton aลญ kreu profilbildon por ke homoj sciu, ke vi ne estas roboto." @@ -6135,12 +6089,12 @@ msgstr "Saluton!" msgid "Hi there!" msgstr "Saluton!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Kaลita" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Kaลita laลญ viaj agordoj pri kontrolado." @@ -6148,9 +6102,10 @@ msgstr "Kaลita laลญ viaj agordoj pri kontrolado." msgid "Hidden list" msgstr "Kaลita listo" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Kaลita listo" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Kaลi" @@ -6198,7 +6154,7 @@ msgstr "Kaลi respondon por ฤ‰iuj" msgid "Hide reply for me" msgstr "Kaลi respondon por mi" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Kaลi ฤ‰i tiun karton" @@ -6218,16 +6174,18 @@ msgstr "ฤˆu kaลi ฤ‰i tiun respondon?" msgid "Hide translation" msgstr "Kaลi tradukon" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Kaลi furorajn temojn" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "ฤˆu kaลi furorajn temojn?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "ฤˆu kaลi popularajn videaฤตojn?" @@ -6240,7 +6198,7 @@ msgstr "Kaลi la liston de uzantoj" msgid "Hide verification badges" msgstr "Kaลi konfirmajn ลildojn" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Kaลas la enhavon" @@ -6293,8 +6251,8 @@ msgstr "Hmmmm, ni ne povis ลargi tiun kontrol-servon." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Momenton! Ni iom post iom donas aliron al la videaฤตo, kaj vi ankoraลญ atendas en vico. Rekontrolu baldaลญ!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Populara" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Tiel ฤi funkcias:" @@ -6409,6 +6363,7 @@ msgstr "Se vi ฤisdatigos vian retpoลtadreson, retpoลta 2FA estos malลaltota. msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se vi volas ลanฤi vian pasvorton, ni sendos al vi kodon por konfirmi, ke ฤ‰i tiu estas via konto." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Se vi volas limigi kiu povos ricevi sciigojn pri agado de via konto, vi povas ลanฤi tion en <0>Agordoj โ†’ Privateco kaj sekureco." @@ -6548,7 +6503,7 @@ msgstr "En-apaj, ลprucaj, ฤ‰iuj" msgid "In-app, push, people you follow" msgstr "En-apaj, ลprucaj, homoj kiujn vi sekvas" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Ricevujo malplenas" @@ -6564,7 +6519,6 @@ msgstr "Ricevujo malplenas!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Malฤusta uzantnomo aลญ pasvorto" @@ -6683,7 +6633,7 @@ msgstr "Invitu {name} por aliฤi Bluesky" msgid "Invite code" msgstr "Invita kodo" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Invita kodo neakceptita. Kontrolu ฤ‰u vi entajpis ฤin ฤuste kaj reprovu." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Vi estas sola ฤ‰i-momente! Aldoni pli da homoj al via startpako serฤ‰ante supre." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID de laboro: {0}" @@ -6816,8 +6766,8 @@ msgstr "Aliฤi al konversacio" msgid "Journalism" msgstr "ฤดurnalismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Daลญre redakti" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "Retejo de KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etikedita de {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etikedita de la aลญtoro." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etikedoj" @@ -6852,7 +6802,7 @@ msgstr "Etikedoj aldonitaj" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Etikedoj estas notoj pri uzantoj kaj enhavo. Ili povas esti uzataj por kaลi, averti, kaj ordigi la reton laลญ kategorioj." @@ -6864,7 +6814,7 @@ msgstr "Etikedoj sur via konto" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Lingvaj agordoj" @@ -6874,7 +6824,7 @@ msgstr "Lingvaj agordoj" msgid "Languages" msgstr "Lingvoj" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Pli granda" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Laste iniciatita ฤuste nun" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Plej freลaj" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Ekscii pli" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Eksciu pli" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "Eksciu pli pri importado de kontaktoj" msgid "Learn more about self hosting your PDS." msgstr "Eksciu pli pri gastigado de via PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Eksciu pli pri la kontrolado farita al ฤ‰i tiu enhavo" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Eksciu pli pri tiuj ลanฤoj kaj kiel konigi viajn opiniojn al ni legante nian blogafiลon." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Eksciu pli pri ฤ‰i tiu averto" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Eksciu pli en viaj <0>kontaj agordoj." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Eksciu pli." @@ -6993,8 +6943,8 @@ msgstr "Foriri" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Elirante el Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Foriris el grupa babilejo." @@ -7042,7 +6992,7 @@ msgstr "Foriris el grupa babilejo." msgid "left to go." msgstr "restas." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lasu min elekti" @@ -7057,7 +7007,7 @@ msgstr "Ek!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Hela" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Hela" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "ลœati" @@ -7076,7 +7026,7 @@ msgstr "ลœati" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "ลœati ({0, plural, one {# ลato} other {# ลatoj}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "ลœatu 10 afiลojn" @@ -7085,7 +7035,7 @@ msgstr "ลœatu 10 afiลojn" msgid "Like 10 posts to train the Discover feed" msgstr "ลœatu 10 afiลojn por trejni la fluon Discover" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "ลœati ฤ‰i tiun fluon" @@ -7093,8 +7043,8 @@ msgstr "ลœati ฤ‰i tiun fluon" msgid "Like this labeler" msgstr "ลœati ฤ‰i tiun etikedilon" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "ลœatata de" @@ -7111,27 +7061,45 @@ msgstr "ลœatata de" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "ลœatata de {0, plural, one {# uzanto} other {# uzantoj}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "ลœatata de {likeCount, plural, one {# uzanto} other {# uzantoj}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "ลœatoj" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "ลœatoj de viaj reafiลoj" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "ลœatoj de ฤ‰i tiu afiลo" @@ -7144,7 +7112,7 @@ msgstr "Linie" msgid "Link copied to clipboard" msgstr "Ligilo kopiita al tondujo" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Listo" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Listo malsilentigita" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "TUJELSENDAS" msgid "Live event happening now: {0}" msgstr "Tujelsenda evento okazas nun: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Tujelsenda evento kaลita" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Tujelsenda evento malkaลita" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "Tujelsenda ligilo" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "ลœargi pli" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "ลœargi pliajn proponitajn fluojn" @@ -7292,8 +7260,8 @@ msgstr "ลœargi pliajn proponitajn fluojn" msgid "Load new notifications" msgstr "ลœargi novajn sciigojn" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "ลœlosi ฤ‰i tiun grupan babilejon" msgid "Locked" msgstr "ลœlosita" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Protokolo" @@ -7387,7 +7355,7 @@ msgstr "GIF-oj pri amo" msgid "Make adjustments to email settings for your account" msgstr "Faru ฤustigojn al retpoลtaj agordoj por via konto" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Faru ฤin por mi" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "Marki ฤ‰iujn kiel legitaj" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marki ฤ‰iujn babilejojn kiel legitajn" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Marki kiel legita" msgid "Marked all as read" msgstr "Markis ฤ‰iujn kiel legitaj" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Markis ฤ‰iujn babilejojn kiel legitajn" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "Eble poste" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Aลญdvidaฤตoj" @@ -7475,7 +7447,7 @@ msgstr "Aลญdvidaฤตo konservita en alia aparato" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Aลญdvidaฤตoj, kiuj povas esti maltrankviligaj aลญ nekonvenaj por kelkaj spektantoj." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Ano forigita el la grupa babilejo." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "menciitaj uzantoj" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mencioj" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mesaฤo forigita" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Malsukcesis sendi mesaฤon." @@ -7563,15 +7535,15 @@ msgstr "Mesaฤo tro longas ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Opcioj de mesaฤo" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mesaฤoj" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Mesaฤoj de ฤ‰i tiu persono estas kaลitaj dum tiu blokas vin." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Mesaฤoj de ฤ‰i tiu persono estas kaลitaj dum vi blokas tiun." @@ -7592,7 +7564,7 @@ msgstr "Miskonkludiga" msgid "Missing media" msgstr "Mankanta aลญdvidaฤตo" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Kontrolado" @@ -7636,7 +7608,7 @@ msgstr "Kontrol-listo ฤisdatigita" msgid "Moderation lists" msgstr "Kontrol-listoj" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Kontrol-listoj" @@ -7645,7 +7617,7 @@ msgstr "Kontrol-listoj" msgid "moderation settings" msgstr "agordoj pri kontrolado" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Statoj de kontrolado" @@ -7786,7 +7758,7 @@ msgstr "Silentigita" msgid "Muted accounts" msgstr "Silentigitaj kontoj" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Silentigitaj kontoj" @@ -7867,7 +7839,6 @@ msgstr "ฤˆu vi bezonas raporti kopirajtan malobservon, jurpeton aลญ problemon pr msgid "Nevermind, create a handle for me" msgstr "Ne gravas, krei identigilon por mi" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nova" @@ -7893,11 +7864,11 @@ msgstr "{postsCount, plural, one {Nova afiลo} other {Novaj afiลoj}} de {firstA #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nova babilejo" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Nova funkcio" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Novaj sekvantoj" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nova grupa babilejo" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nova grupa babilejo" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nova grupa babilejo kun:" @@ -7966,13 +7937,13 @@ msgstr "Nova listo" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Nova pasvorto" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nova afiลo" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "La plej novaj respondoj unue" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Novaฤตoj" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Sekva bildo" msgid "Night" msgstr "Nokto" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Sen reklamoj, sen enpenetra spurado, sen okupo-kaptiloj. Bluesky respektas vian tempon kaj atenton." @@ -8065,6 +8036,11 @@ msgstr "Sen reklamoj, sen enpenetra spurado, sen okupo-kaptiloj. Bluesky respekt msgid "No app passwords yet" msgstr "Ankoraลญ ne estas apaj pasvortoj" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "Neniu eksvalidiฤo agordita" msgid "No feeds found. Try searching for something else." msgstr "Neniu fluo trovita. Provu serฤ‰i ion alian." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Ankoraลญ neniu sekvanto" @@ -8116,9 +8092,15 @@ msgstr "Neniu GIF-o por montri nuntempe. Reprovu post momento." msgid "No image" msgstr "Sen bildo" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Ankoraลญ neniu ลato" @@ -8135,7 +8117,12 @@ msgstr "Neniu listo" msgid "No longer following {0}" msgstr "Vi ne plu sekvas {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Ankoraลญ neniu aลญdvidaฤตo" @@ -8143,7 +8130,7 @@ msgstr "Ankoraลญ neniu aลญdvidaฤตo" msgid "No messages yet" msgstr "Ankoraลญ neniu mesaฤo" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Ne plu da eterna rulumado tra aฤ‰aฤตo-plenaj algoritmoj. Trovu fluojn kiuj funkcias por vi, ne kontraลญ vi." @@ -8180,16 +8167,21 @@ msgstr "Neniu krom la aลญtoro povas citi ฤ‰i tiun afiลon." msgid "No one can send messages" msgstr "Neniu povas sendi mesaฤojn" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Neniuj afiลoj ฤ‰i tie" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Ankoraลญ neniu afiลo" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Ankoraลญ neniu citaฤตo" @@ -8198,11 +8190,7 @@ msgstr "Ankoraลญ neniu citaฤตo" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Ankoraลญ neniu lasta GIF-o. Elektu iun por vidi ฤin ฤ‰i tie." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Ankoraลญ neniu respondo" @@ -8217,13 +8205,13 @@ msgstr "Sen rezulto" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sen rezultoj" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Sen rezultoj por \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "Neniu rezulto trovita" msgid "No results found for \"{query}\"" msgstr "Neniu rezulto trovita por \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "Neniu rezulto trovita por \"<0>{query}\"." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Sen rezultoj." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Anoraลญ neniu startpako" @@ -8265,7 +8253,7 @@ msgstr "Ne, dankon" msgid "No translation received from your device." msgstr "Neniu traduko ricevita de via aparato." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Ankoraลญ neniu videaฤตa afiลo" @@ -8278,7 +8266,7 @@ msgstr "Neniu" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ankoraลญ neniu ลatas ฤ‰i tion. Eble vi estu la unua!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ankoraลญ neniu citis ฤ‰i tion. Eble vi estu la unua!" @@ -8298,6 +8286,10 @@ msgstr "Privataj bildoj, kies publikigo ne estis interkonsentita" msgid "Non-sexual Nudity" msgstr "Ne-seksuma nudeco" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Nedisponebla ฤ‰e ฤ‰i tiu platformo." msgid "Not followed by anyone youโ€™re following" msgstr "Sekvata de neniu el viaj sekvatoj" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Netrovita" @@ -8333,7 +8325,7 @@ msgstr "Noto pri kundivido" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Atentu: Bluesky estas malfermita kaj publika reto. ฤˆi tiu agordo nur limigas la videblecon de via enhavo en la apo kaj retejo de Bluesky, eble aliaj apoj ne respektos ฤ‰i tiun agordon. Aliaj apoj kaj retejoj povas daลญre montri vian enhavon al elsalutintaj uzantoj." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Noto: ฤˆi tiu afiลo videblas nur al ensalutintaj uzantoj." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Ankoraลญ nenio konservita" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Sciigaj agordoj" @@ -8353,11 +8345,12 @@ msgstr "Sciigaj agordoj" msgid "Notification sounds" msgstr "Sciigaj sonoj" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Ho ve!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "Bone" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Bone" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Restarigi la lernilon" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Unu el la elektitaj ricevontoj ne permesas grupajn babilejojn." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Unu el la elektitaj ricevontoj blokis vin kaj nemesaฤeblas." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Al unu aลญ pli da GIF-oj mankas alt-teksto." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Al unu aลญ pli da bildoj mankas alternativa teksto." @@ -8454,11 +8449,11 @@ msgstr "Unu aลญ pli el viaj elektitaj dosieroj ne estas subtenata." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "Unu aลญ pli el viaj elektitaj dosieroj estas tro grandaj. Maksimuma grando estas {VIDEO_MAX_SIZE_MB}ย MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Unu aลญ pli afiลoj estas tro longaj por konservi kiel malneto. La maksimuma nombro da signoj estas {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {# signo.} other {# signoj.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Al unu aลญ pli da videaฤตoj mankas alternativa teksto." @@ -8471,7 +8466,7 @@ msgstr "Nur {0} povas respondi." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Nur {0} el {1} {2, plural, one {bildo} other {bildoj}} estis aldonitaj; la limo estas {MAX_GALLERY_IMAGES}" @@ -8507,6 +8502,10 @@ msgstr "Povas aliฤi nur tiuj homoj, kiujn {0} sekvas." msgid "Only people the chat owner follows can join" msgstr "Povas aliฤi nur tiujn homoj, kiujn la posedanto de la babilejo sekvas" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Nur WebVTT-dosieroj (.vtt) estas subtenataj" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ve, ฤ‰i tiu profilo ne ekzistas. Provu skani alian." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ups!" @@ -8544,13 +8543,13 @@ msgstr "Ups!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Malfermi la profilbildan kreilon" #: src/view/com/feeds/ComposerPrompt.tsx:201 msgid "Open camera" -msgstr "Malfermi fotilon" +msgstr "Malfermi kameraon" #: src/components/dms/ChatInvite/Root.tsx:104 #: src/components/intents/GroupChatJoinDialog.tsx:453 @@ -8570,21 +8569,22 @@ msgstr "Malfermi la opciojn pri konversacio" msgid "Open draft" msgstr "Malfermi malneton" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Malfermi flankmenuon" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Malfermi emoฤi-elektilon" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Malfermi la informekranon de la fluo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Malfermi la opciomenuon de la fluo" @@ -8627,7 +8627,7 @@ msgstr "Malfermi la paฤon de kontrolada sencimigo" msgid "Open muted words and tags settings" msgstr "Malfermi agordojn de silentigitaj vortoj kaj kradvortoj" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Malfermi pakon" @@ -8699,9 +8699,9 @@ msgstr "Malfermas pliajn detalojn por sencimigo" msgid "Opens alt text dialog" msgstr "Malfermas dialogujon de alternativa teksto" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" -msgstr "Malfermas fotilon de aparato" +msgstr "Malfermas kameraon de aparato" #: src/view/com/composer/videos/SubtitleDialog.tsx:44 msgid "Opens captions and alt text dialog" @@ -8717,7 +8717,7 @@ msgstr "Malfermas redaktilon" #: src/view/com/feeds/ComposerPrompt.tsx:202 msgid "Opens device camera" -msgstr "Malfermi fotilon de aparato" +msgstr "Malfermi kameraon de aparato" #. Accessibility hint for button in composer to add images, a video, or a GIF to a post. #: src/view/com/composer/SelectMediaButton.tsx:517 @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Malfermas procezon de kreado de nova Bluesky-konto" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Malfermas procezon de ensalutado al via ekzistanta Bluesky-konto" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Pasvorto ฤisdatigita!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Paลญzigi" @@ -8925,12 +8925,12 @@ msgstr "Paลญzigi" msgid "Pause GIF" msgstr "Paลญzigi GIF-on" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Paลญzigi videaฤตon" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Homoj" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Homoj, kiujn {ownerName} sekvas, povas peti aliฤi" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Homoj sekvataj de @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Homoj sekvantaj @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Homoj kiujn mi sekvas" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Homoj, kiujn mi sekvas, povas peti aliฤi" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Homoj kiujn vi sekvas" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Bildoj destinitaj por adoltoj." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Alpingli fluon" @@ -9034,7 +9034,7 @@ msgstr "Alpingli fluon" msgid "Pin to home" msgstr "Alpingli al hejmo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Alpingli al hejmo" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Alpinglita" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} alpinglita al hejmo" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Alpinglita al viaj fluoj" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Ludi" @@ -9076,8 +9076,8 @@ msgstr "Ludi {0}" msgid "Play GIF" msgstr "Ludi GIF-on" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Ludi videaฤตon" @@ -9109,11 +9109,11 @@ msgstr "Bonvolu aldoni ฤ‰iujn avertajn etikedojn de la enhavo, kiuj aplikeblas a 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 ฤi alvenos post unu aลญ du minutoj." -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Bonvolu elekti vian identigilon." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Bonvolu elekti vian pasvorton." @@ -9122,7 +9122,7 @@ msgstr "Bonvolu elekti vian pasvorton." 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 "Bonvolu alklaki la ligilon en la retmesaฤo, kiun ni ฤตus sendis al vi, por konfirmi vian novan retpoลtadreson. ฤˆi tio estas grava paลo por permesi al vi daลญre ฤui ฤ‰iujn funkciojn de Bluesky." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Bonvolu plenumi la captcha-kontrolon." @@ -9179,7 +9179,7 @@ msgstr "Bonvolu entajpi la kodon kiun vi ricevis kaj la novan pasvorton kiun vi 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:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Bonvolu entajpi vian retpoลtadreson." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Bonvolu tajpi vian mesaฤon sube:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politiko" @@ -9269,7 +9269,7 @@ msgstr "Politiko" msgid "Porn" msgstr "Pornografio" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Afiลi" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Afiลo" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Afiลi foton" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Afiลi videaฤตon" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Afiลi ฤ‰iujn" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Afiลi ฤ‰iuokaze" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Afiลo blokita" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Afiลo de @{0}" @@ -9340,7 +9340,7 @@ msgstr "Afiลo kaลita de vi" msgid "Post interaction settings" msgstr "Interagaj agordoj de afiลo" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Interagaj agordoj de afiลo" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Afiลo alpinglita" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Afiลo konservita" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Afiลo depinglita" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Afiลoj" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Afiลoj povas esti silentigitaj laลญ sia teksto, siaj etikedoj, aลญ amba msgid "Posts hidden" msgstr "Afiลoj kaลitaj" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Eventuale misgvida ligilo" @@ -9449,20 +9451,21 @@ msgstr "Privateco" msgid "Privacy and security" msgstr "Privateco kaj sekureco" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privateco kaj sekureco" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Agordoj de privateco kaj sekureco" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Regularo pri privateco" msgid "Privacy violation of a minor" msgstr "Malobservo de neplenaฤula privateco" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Traktado de GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Traktado de videaฤตo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Publikaj kaj kundivideblaj listoj por bloki aลญ silentigi uzantojn amase." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publikigi afiลon" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publikigi afiลojn" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publikigi respondojn" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publikigi respondon" @@ -9599,12 +9602,12 @@ msgstr "Citafiลoj malebligitaj" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citaฤตoj" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citaฤตoj de ฤ‰i tiu afiลo" @@ -9647,7 +9650,7 @@ msgstr "Reaktivigi vian konton" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Legi {0, plural, one {# respondon} other {# respondojn}} pli" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Legu blogafiลon" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Legi malpli" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Legi pli" @@ -9687,11 +9690,11 @@ msgstr "Legi la Regularon pri privateco de Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Legi la uzokondiฤ‰ojn de Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Realaj konservacioj." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Realaj homoj." @@ -9721,10 +9724,6 @@ msgstr "Lastaj serฤ‰oj" msgid "Recently used" msgstr "Laste uzitaj" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Rekomenditaj" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Rekonekti" @@ -9748,7 +9747,7 @@ msgstr "Malakcepti babilpeton" msgid "Reject join request" msgstr "Malakcepti aliฤpeton" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Reลargi konversaciojn" @@ -9766,7 +9765,7 @@ msgstr "Reลargi konversaciojn" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Forigi" @@ -9792,8 +9791,8 @@ msgstr "ฤˆu forigi {displayName}?" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Forigi konton" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "Forigi el babilejo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Forigi el miaj fluoj" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "ฤˆu forigi el la rapitatingo?" @@ -9862,7 +9861,7 @@ msgstr "ฤˆu forigi el la rapitatingo?" msgid "Remove from saved feeds" msgstr "Forigi el konservitaj fluoj" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Forigi el konservitaj afiลoj" @@ -9880,8 +9879,8 @@ msgstr "Forigi bildon" msgid "Remove live status" msgstr "Forigi tujelsendan staton" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Forigite el la listo" msgid "Removed from saved feeds" msgstr "Forigite el konservitaj fluoj" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Forigita el konservitaj afiลoj" @@ -9952,7 +9951,7 @@ msgstr "Forigita el konservitaj afiลoj" msgid "Removed from starter pack" msgstr "Forigita el la startpako" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Respondis al vi" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respondoj" @@ -10037,7 +10037,7 @@ msgstr "Respondoj por ฤ‰i tiu afiลo estis malebligitaj." msgid "Reply" msgstr "Respondi" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Respondi" @@ -10098,8 +10098,8 @@ msgstr "Raporti konversacion" msgid "Report dialog" msgstr "Raporta dialogujo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Raporti fluon" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Reafiลita de vi" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Reafiลoj" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Reafiลoj de ฤ‰i tiu afiลo" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Reafiลoj de viaj reafiลoj" @@ -10253,7 +10253,7 @@ msgstr "Aliฤpeto sendita" msgid "Requests" msgstr "Petoj" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Reprovas la lastan agon, kiu eraris" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Revenas al hejmpaฤo" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Revenas al antaลญa paฤo" @@ -10446,27 +10446,27 @@ msgstr "Konservi naskiฤdaton" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Konservi ลanฤojn" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "ฤˆu konservi ลanฤojn?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Konservi malneton" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "ฤˆu konservi malneton?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Konservi QR-kodon" msgid "Save these options for next time" msgstr "Konservi tiujn opciojn por venonta fojo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Konservi al miaj fluoj" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Konservitaj fluoj" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Konservitaj afiลoj" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Konservita al viaj fluoj" @@ -10520,8 +10520,8 @@ msgstr "Konservita al viaj fluoj" msgid "Say hello!" msgstr "Diru saluton!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Diru saluton al iu" @@ -10535,7 +10535,7 @@ msgstr "Skani" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Skani QR-kodon" @@ -10543,15 +10543,15 @@ msgstr "Skani QR-kodon" msgid "Science" msgstr "Scienco" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Rulumi maldekstren" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Rulumi dekstren" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Rulumi al la supro" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Serฤ‰i" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Serฤ‰i afiลojn de @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Serฤ‰u fluojn, kiujn vi volas proponi al aliuloj." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Serฤ‰i pliajn kontojn" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Serฤ‰i pliajn fluojn" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Serฤ‰i GIF-ojn" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Serฤ‰ado nun estas nedisponebla kiam elsalutinta" @@ -10707,17 +10707,22 @@ msgstr "Vidi afiลojn pri #{tag} de uzanto" msgid "See jobs at Bluesky" msgstr "Vidu laborpostenojn ฤ‰e Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Vidi pli" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Vidi pli da proponataj profiloj" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Vidi proponitajn kontojn" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Serฤ‰-ลovilo. Uzu la sagoklavojn por serฤ‰i antaลญen kaj malantaลญen kaj spacoklavon por ludi/paลญzi" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Elekti kategorion \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Elektu {0}" msgid "Select {langName}" msgstr "Elekti {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Elekti koloron" @@ -10764,11 +10769,11 @@ msgstr "Elektu konton" msgid "Select an app language" msgstr "Elektu lingvon de la apo" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Elekti profilbildon" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Elekti emoฤion" @@ -10780,12 +10785,13 @@ msgstr "Elektu opcion" msgid "Select app language" msgstr "Elektu apan lingvon" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Elektu subtekstan dosieron (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Elekti babilejon \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Elektu GIF-on" msgid "Select GIF \"{0}\"" msgstr "Elektu GIF-on \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Elektu anojn por grupa babilejo" @@ -10864,7 +10870,7 @@ msgstr "Elektu ฤ‰efan lingvon" msgid "Select telephone code" msgstr "Elektu telefonkodon" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Elekti emoฤion {emojiName} kiel profilbildon" @@ -10945,7 +10951,8 @@ msgstr "Sendi mesaฤon" msgid "Send post to {name}" msgstr "Sendi afiลon al {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Sendi afiลon al..." @@ -10963,12 +10970,12 @@ msgstr "Sendu la mesaฤon per via telefono" msgid "Send verification email" msgstr "Sendi konfirman retmesaฤon" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Sendi per rekta mesaฤo" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Agordas retpoลtadreson por restarigi pasvorton" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Agordoj" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Agordoj por agado de aliuloj" @@ -11036,49 +11043,49 @@ msgstr "Agordoj por agado de aliuloj" msgid "Settings for allowing others to be notified of your posts" msgstr "Agordoj por permesi al aliuloj ricevi sciigojn pri viaj afiลoj" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Agordoj por sciigoj pri ลatoj" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Agordoj por sciigoj pri mencioj" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Agordoj por sciigoj pri novaj sekvantoj" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Agordoj por sciigoj pri ฤ‰io alia" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Agordoj por sciigoj pri ลatoj de viaj reafiลoj" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Agordoj por sciigoj pri reafiลoj de viaj reafiลoj" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Agordoj por sciigoj pri citaฤตoj" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Agordoj por sciigoj pri respondoj" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Agordoj por sciigoj pri reafiลoj" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Diskonigi malgraลญ tio" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Konigi DID-on de aลญtoro" @@ -11127,7 +11134,7 @@ msgstr "Konigi DID-on de aลญtoro" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialogujo pri ligila konigado" msgid "Share my profile" msgstr "Diskonigi mian profilon" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Konigi URI-on at:// de afiลo" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Konigi QR-kodon" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Konigi ฤ‰i tiun fluon" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Konigi ฤ‰i tiun startpakon" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Konigu ฤ‰i tiun startpakon kaj helpu homojn aliฤi vian komunumon ฤ‰e Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Konigi viajn kontaktojn por trovi amikojn" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Testanto de komunaj preferoj" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Montri" msgid "Show alt text" msgstr "Montri alternativan tekston" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Montri ฤ‰iuokaze" @@ -11274,9 +11281,9 @@ msgstr "Montri liston ฤ‰iuokaze" msgid "Show lists of users to select from" msgstr "Montri listojn de elekteblaj uzantoj" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Montri pli" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Montri averton kaj elfiltri el fluoj" msgid "Show when youโ€™re live" msgstr "Montri kiam vi tujelsendas" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Montri informojn pri kiam ฤ‰i tiu afiลo estis kreita" @@ -11341,15 +11348,15 @@ msgstr "Montri informojn pri kiam ฤ‰i tiu afiลo estis kreita" msgid "Shows other accounts you can switch to" msgstr "Montras aliajn kontojn al kiuj vi povas ลanฤi" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Montras la enhavon" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Montras la enhavon" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "ฤˆu elsaluti?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Ensaluto devigita" @@ -11469,7 +11476,7 @@ msgstr "Preterpasi" msgid "Skip contact sharing and continue to the app" msgstr "Preterpasi kontaktan konigon kaj daลญrigi al la apo" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "ฤˆu preterlasi malplenajn afiลojn?" @@ -11487,7 +11494,7 @@ msgstr "Preterpasi al sekva paลo" msgid "slide" msgstr "lumbilda" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Malpli granda" @@ -11499,7 +11506,7 @@ msgstr "Dormetas la sciigon" msgid "So many thoughts, you should post one" msgstr "Tiom da pensoj, ke vi devas afiลi iu el ili" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Socia komunikilo regata de vi." @@ -11520,7 +11527,7 @@ msgstr "Iuj kontrol-servoj en via listo ne plu disponeblas." msgid "Some of your verifications are invalid." msgstr "Iuj de viaj konfirmoj estas nevalidaj." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Kelkaj aliaj fluoj, kiuj eble plaฤ‰os al vi" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Iu foriris el la grupo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Iu reagis per {0}" @@ -11554,7 +11561,7 @@ msgstr "Iu reagis per {0}" msgid "Someone reacted {0} to {target}" msgstr "Iu reagis per {0} al {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Io misokazis, bonvolu reprovi" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Io misfunkciis. Bonvolu reprovi post momento." msgid "Something went wrong. Please try again." msgstr "Io misfunkciis. Bonvolu reprovi." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "ฤˆu io misfunkciis? Sciigu nin." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Trudmesaฤoj aลญ alia neaลญtentika konduto aลญ trompo" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sporto" @@ -11668,7 +11675,7 @@ msgstr "Komencu konversacion, kaj ฤi aperos ฤ‰i tie." msgid "Start a group chat" msgstr "Komenci grupan babilejon" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Komenci novan babilejon" @@ -11682,17 +11689,17 @@ msgstr "Komenci aldoni homojn" msgid "Start adding people!" msgstr "Komencu aldoni homojn!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Komenci babilejon" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Komenci babili kun {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpako" @@ -11715,12 +11722,16 @@ msgstr "Startpako de vi" msgid "Starter pack is invalid" msgstr "Startpako nevalidas" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startpakoj" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Starterpako ebligas al vi konigi viajn plej ลatatajn fluojn kaj homojn kun viaj amikoj." @@ -11728,7 +11739,7 @@ msgstr "Starterpako ebligas al vi konigi viajn plej ลatatajn fluojn kaj homojn msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Startpako ebligas al vi konigi viajn plej ลatatajn fluojn kaj homojn kun viaj amikoj." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Startpakoj ebligas al vi konigi viajn plej ลatatajn fluojn kaj kontojn kun viaj amikoj." @@ -11742,7 +11753,7 @@ msgstr "Paฤo pri stato" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Paลo {0} el {1}" @@ -11754,7 +11765,7 @@ msgstr "Konservejo vakigita, nun relanฤ‰u la apon." msgid "Stored as part of a secure code for matching with others" msgstr "Konservita kiel parto de sekura kodo por kongrui kun aliaj" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Historio de agoj" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Aboni {publicationTitle} ฤ‰e {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Aboni al @{0} por uzi tiujn etikedojn:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Sukcese konfirmita" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Proponita" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Proponitaj kontoj" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Proponitaj por vi" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sunsubiro" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Subteno por ฤ‰i tiu funkcio en via lando ankoraลญ ne estis ebligita. Bonvolu rekontroli poste." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Suspenditaj kontoj ne povas partopreni en grupa babilejo." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Suspenditaj kontoj ne povas partopreni en babilejo." @@ -11921,8 +11934,8 @@ msgstr "ลœanฤi al {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Igi la konversacion privata." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Tuลetu sube por permesi al Bluesky aliri vian GPS-pozicion. Ni tiam uzos tiujn datumojn por pli precize determini la enhavon kaj funkciojn disponeblajn en via regiono." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tuลeti por detaloj" @@ -11976,7 +11989,7 @@ msgstr "Tuลetu por fermi kuntekstmenuon" msgid "Tap to copy this invite link" msgstr "Tuลetu por kopii ฤ‰i tiun invitligilon" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tuลetu por ignori" @@ -12003,7 +12016,7 @@ msgstr "Tuลetu por forigi vian reagon {0}" msgid "Tap to request access to join this group chat" msgstr "Tuลetu por sendi aliฤpeton al ฤ‰i tiu grupa babilejo" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tuลetu por reprovi" @@ -12016,7 +12029,7 @@ msgstr "Tuลetu por montri {0} reagojn" msgid "Tap to show all reactions" msgstr "Tuลetu por montri ฤ‰iujn reagojn" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tuลetu por vidi reagojn" @@ -12032,7 +12045,7 @@ msgstr "Tasko farita - 10 kontoj sekvataj!" msgid "Task complete - 10 likes!" msgstr "Tasko farita - 10 ลatoj!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Sciigu la algoritmon pri tio, kion vi ลatas" @@ -12060,7 +12073,7 @@ msgstr "Kondiฤ‰oj" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Tiu startpako ne troveblas." msgid "That username is already taken" msgstr "Tiu uzantnomo jam estas uzata" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Jen ฤ‰io, uloj!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Tio estas ฤ‰io!" @@ -12216,7 +12229,7 @@ msgstr "La servilo ลajnas havi problemon. Bonvolu reprovi post kelkaj momentoj. msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "La startpako, kiun vi provas vidi, estas nevalida. Vi povas forigi ฤin." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "La temo de la kuntekstmenuo" @@ -12238,7 +12251,7 @@ msgstr "La konfirmkodo kiun vi entajpis estas nevalida. Bonvolu certiฤi, ke vi msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "La kontrola provizanto ne povis sendi kodon al via telefonnumero. Bonvolu kontroli vian telefonnumeron kaj reprovi." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Etosa" @@ -12266,7 +12279,7 @@ msgstr "Estis problemo ลargante GIF-ojn. Kontrolu vian konekton kaj reprovu." msgid "There was a problem with your internet connection, please try again" msgstr "Estis problemo kun via interreta konekto, bonvolu reprovi denove" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Estis problemo kun via interreta konekto, bonvolu reprovi denove" msgid "There was an issue contacting the server" msgstr "Estis problemo konektante servilon" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Estis problemo konektante servilon, bonvolu kontroli vian interretan konekton kaj reprovu." @@ -12283,8 +12296,8 @@ msgstr "Estis problemo konektante servilon, bonvolu kontroli vian interretan kon msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Estis problemo ลargante sciigojn. Tuลetu ฤ‰i tie por reprovi." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Estis problemo ลargante afiลojn. Tuลeti ฤ‰i tie por reprovi." @@ -12309,7 +12322,7 @@ msgstr "Problemo okazis dum ลarฤi infomojn de via servo" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Estis problemo forigante ฤ‰i tiun fluon. Bonvolu kontroli vian interretan konekton kaj reprovu." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "ฤˆi tiuj agordoj nur aplikas al la Following-fluo." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Tiu homo posedas ฤ‰i tiun babilejon" @@ -12392,7 +12405,7 @@ msgstr "Tiu homo posedas ฤ‰i tiun babilejon" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "ฤˆi tiu {screenDescription} estas markita per flago:" @@ -12408,7 +12421,7 @@ msgstr "La posedanto de la konto markis ฤin kiel \"aลญtomatigita\"." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "ฤˆi tiu konto havas unu aลญ pli provitajn konfirmojn, sed ฤi ne estas nune konfirmita." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "ฤˆi tiu konto petis, ke uzantoj ensalutu por vidi ties profilo." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "ฤˆi tiu fluo malplenas! Eble vi devas sekvi pli da uzantoj aลญ ลanฤi viajn lingvajn agordojn." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "ฤˆi tiu fluo malplenas." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Tiu identigilo estas rezervita. Bonvolu provi alian." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "ฤˆi tiu etikedo estis aplikita de vi." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "ฤˆi tiu etikedilo ne deklaris, kiajn etikedojn ฤi publikigas kaj ฤi povas esti neaktiva." @@ -12621,13 +12634,13 @@ msgstr "ฤˆi tiu listo malplenas." msgid "This message is hidden" msgstr "ฤˆi tiu mesaฤo estas kaลita" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "ฤˆi tiu mesaฤo estas kaลita ฤ‰ar ฤ‰i tiu uzanto blokas vin." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "ฤˆi tiu mesaฤo estas kaลita ฤ‰ar vi blokas ฤ‰i tiun uzanton." @@ -12641,7 +12654,7 @@ msgstr "ฤˆi tiu persono blokas vin" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "ฤˆi tiu afiลo asertas, ke ฤi estis kreita je <0>{0}, sed ฤi estis unue vidita ฤ‰e Bluesky je <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "ฤˆi tiu afiลo asertas, ke ฤi estis kreita je <0>{0}, sed ฤi estis msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "ฤˆi tiu afiลo havas nekonatan tipon de fadenado. Via apo eble estas malaktuala." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "ฤˆi tiu afiลo videblas nur al ensalutintaj uzantoj." @@ -12661,7 +12674,7 @@ msgstr "ฤˆi tiu afiลo estis forigita de ฤia aลญtoro" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "ฤˆi tiu afiลo estos kaลota el fluoj kaj fadenoj. Tio ne povas esti malfarita." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "La aลญtoro de ฤ‰i tiu afiลo malลaltis citafiลojn." @@ -12698,11 +12711,12 @@ msgstr "Tio daลญru nur kelkajn minutojn." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "ฤˆi tiu uzanto ne havas montratan nomon, kaj tial ne povas esti konfirmita." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "ฤˆi tiu uzanto havas neniun sekvanton." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "ฤˆi tiu uzanto blokis vin kaj nemesaฤeblas." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "ฤˆi tiu uzanto blokis vin. Vi ne povas vidi ties enhavon." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "ฤˆi tiu uzanto malebligis babilejojn kaj nemesaฤeblas." @@ -12733,11 +12748,11 @@ msgstr "ฤˆi tiu uzanto estas inkluzivita en la listo <0>{0}, kiun vi silenti msgid "This user is new here. Press for more info about when they joined." msgstr "ฤˆi tiu uzanto novas ฤ‰i tie. Premu por pliaj informoj pri kiam tiu aliฤis." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "ฤˆi tiu uzanto sekvas neniun." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "ฤˆi tiu videaฤตo neludeblas per via aparato. Nepraj videokodekoj (H.264/AAC) eble mankas en via retumilo aลญ operaciumo." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "ฤˆi tio forigos @{0} el la listo de rapidatingo." @@ -12786,7 +12801,7 @@ msgstr "Fadenaj preferoj" msgid "Threaded" msgstr "Fadene" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Agordoj pri fadenoj" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Tro da kontaktoj - vi transpasis la nombron da kontaktoj, kiujn vi eblas importi al viaj amikoj" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Plej popularaj" @@ -12858,7 +12873,7 @@ msgstr "Plej popularaj" msgid "Top replies first" msgstr "La plej popularaj respondoj unue" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Temo" @@ -12893,7 +12908,9 @@ msgstr "Tradukado al la sama lingvo estas nedisponebla sur via aparato." msgid "Tree view" msgstr "Arbovido" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Furoraฤตoj" @@ -12902,13 +12919,15 @@ msgstr "Furoraฤตoj" msgid "Trending GIFs" msgstr "Furoraj GIF-oj" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opcioj pri furoraฤตoj" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Popularaj videaฤตoj" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Trolado" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Fido aperas per interrilatoj, komunumoj kaj komunaj kuntekstoj, do ni ankaลญ estigis <0>fidataj konfirmantoj: organizoj kiuj povas rekte fari konfirmadon." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Ne eblas akiri aliฤpetojn." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Ne eblas trovi elektitan ricevonton." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Ne eblas trovi la elektitan ricevonton." @@ -13024,12 +13045,12 @@ msgstr "Nedisponebla" msgid "Unavailable feed information" msgstr "Nedisponeblaj informoj pri fluo" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "ฤˆu malbloki konton?" msgid "Unblock list" msgstr "Malbloki liston" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Ne sekvi {0}" msgid "Unfollow account" msgstr "Ne sekvi konton" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "ฤˆesas sekvi la uzanton" @@ -13132,7 +13153,7 @@ msgstr "Neetikedita poradolta enhavo" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Neetikedita, perforta aลญ ne-interkonsentita poradolta enhavo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Ne plu ลati" @@ -13192,7 +13213,7 @@ msgstr "Malsilentigi ฤ‰i tiun grupan babilejon" msgid "Unmute thread" msgstr "Malsilentigi fadenon" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Malsilentigi videaฤตon" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Depingli" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Depingli fluon" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Depingli de la hejmpaฤo" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Depingli kontrol-liston" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} depinglita de Hejmo" @@ -13258,11 +13279,11 @@ msgstr "Malaboni de ฤ‰i tiu etikedilo" msgid "Unsubscribed from list" msgstr "Malabonita de listo" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Nesubtenata tonduja enhavo" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Nesubtenata videaฤตa tipo: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "ฤœisdatigado de responda videbleco malsukcesis" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Alลuti foton anstataลญe" @@ -13341,7 +13362,7 @@ msgstr "Alลuti tekstodosieron al:" #: src/view/com/util/UserBanner.tsx:164 #: src/view/com/util/UserBanner.tsx:167 msgid "Upload from Camera" -msgstr "Alลuti el la fotilo" +msgstr "Alลuti el la kamerao" #: src/view/com/util/UserAvatar.tsx:511 #: src/view/com/util/UserBanner.tsx:181 @@ -13355,7 +13376,7 @@ msgstr "Alลuti el la dosieroj" msgid "Upload from Library" msgstr "Alลuti el la biblioteko" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Alลutado de GIF..." @@ -13369,7 +13390,7 @@ msgstr "Alลutado de bildoj..." msgid "Uploading link thumbnail..." msgstr "Alลutado de ligila miniaturo..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Alลutado de videaฤตo..." @@ -13408,7 +13429,7 @@ msgstr "Uzi ฤ‰i tion por registriฤi en la alia aplikaฤตo per via identigilo." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Uzu retpoลtadreson de via konto aลญ alian realan retpoลtadreson kiun vi posedas, por ke KWS aลญ Bluesky kontakteblos vin se necese." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "uzanto" @@ -13510,7 +13531,7 @@ msgstr "Konfirmado malsukcesis, bonvolu reprovi." msgid "Verification settings" msgstr "Konfirmadaj agordoj" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Konfirmadaj agordoj" @@ -13618,34 +13639,34 @@ msgstr "Videaฤตo" msgid "Video failed to process" msgstr "Pritraktado de videaฤตo fiaskis" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Videaฤตo-fluo" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Videaฤตo de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Videaฤตo de {0}. Tuลetu por ludi aลญ paลญzigi la videaฤตon" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videoludoj" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Videaฤตo estas paลญzigita" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Videaฤตo estas ludata" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Videaฤตo netrovita." @@ -13653,7 +13674,7 @@ msgstr "Videaฤตo netrovita." msgid "Video settings" msgstr "Agordoj pri videaฤตoj" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Videaฤตo alลutita" @@ -13662,17 +13683,17 @@ msgstr "Videaฤตo alลutita" msgid "Video: {0}" msgstr "Videaฤตo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videaฤตoj" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videaฤตoj devas esti malpli ol 3 minute longaj." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Vidi" @@ -13691,9 +13712,9 @@ msgstr "Vidi la profilbildon de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Vidi la profilon de {0}" @@ -13724,13 +13745,13 @@ msgstr "Vidi blogafiลon por pli da detaloj" msgid "View debug entry" msgstr "Vidi protokolan eron" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Vidi detalojn" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Vidi tutan fadenon" @@ -13750,18 +13771,18 @@ msgstr "Vidi petojn por aliฤi al ฤ‰i tiu grupa babilejo" msgid "View information about these labels" msgstr "Vidu informojn pri ฤ‰i tiuj etikedoj" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Vidi pli" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Vidi pli da furoraj videaฤตoj" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Vidi afiลon" @@ -13798,15 +13819,15 @@ msgstr "Vidi la invitligilon por ฤ‰i tiu grupa babilejo" msgid "View the labeling service provided by @{0}" msgstr "Vidi la etikedadan servon provizitan de @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Vidi konfirmojn de ฤ‰i tiu uzanto" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Vidi uzantojn, kiuj ลatis ฤ‰i tiun fluon" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Vidi videaฤตon" @@ -13831,7 +13852,7 @@ msgstr "Montru viajn kontrol-listojn" msgid "View your muted accounts" msgstr "Vidi viajn silentigitajn kontojn" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Vidi viajn konfirmojn" @@ -13840,7 +13861,7 @@ msgstr "Vidi viajn konfirmojn" msgid "Views full image" msgstr "Montras la tutan bildon" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Montras videaฤตon plenekrane" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Ni havas retajn problemojn, provu denove" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Ni havas retajn problemojn, provu denove" @@ -14043,7 +14064,7 @@ msgstr "Ni havas retajn problemojn, provu denove" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Ni prezentas novan tavolon de konfirmado ฤ‰e Bluesky โ€” facile videbla kontrolmarko." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Ni estas tre ekscitita, ke vi aliฤis al ni!" @@ -14064,13 +14085,15 @@ msgstr "Ni bedaลญras, sed ni ne povis adrestrovi ฤ‰i tiun liston. Se tio daลญras msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Ni bedaลญras, sed ni ne povis ลargi viajn silentigitajn vortojn nuntempe. Bonvolu provi denove." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Bedaลญrinde, via serฤ‰o ne povis esti plenumita. Bonvolu reprovi post kelkaj minutoj." @@ -14078,7 +14101,7 @@ msgstr "Bedaลญrinde, via serฤ‰o ne povis esti plenumita. Bonvolu reprovi post ke msgid "We're sorry, you cannot access this screen at this time." msgstr "Bedaลญrinde, vi ne povas aliri ฤ‰i tiun ekranon nuntempe." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ni bedaลญras! La afiลo al kiu vi respondas estis forigita." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Kio okazas?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Kiu povas konfirmi?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ups!" @@ -14220,21 +14243,21 @@ msgstr "ฤˆu vi volas bloki ฤ‰i tiun uzanton kaj/aลญ foriri el ฤ‰i tiu konversaci msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "ฤˆu vi volas konservi ฤ‰i tion kiel malneto antaลญ ol vidi viajn malnetojn?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "ฤˆu vi volas konservi ฤ‰i tion kiel malneto por redakti ฤin poste?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Tajpu afiลon" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Tajpu afiลon" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Tajpu vian respondon" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Vi blokas {0}" @@ -14342,7 +14365,7 @@ msgstr "Vi ne plu tujelsendas" msgid "You are not allowed to upload videos." msgstr "Vi ne rajtas alลuti videaฤตojn." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Vi ankoraลญ sekvas neniun" @@ -14362,7 +14385,7 @@ msgstr "Vi estas konfirmita. Vi perdos vian konfirman staton, se vi ลanฤos via msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Vi estas konfirmita. Vi perdos vian konfirman staton, se vi ลanฤos vian identigilon. <0>Eksciu pli." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Vi povas adapti viajn interesojn iam ajn de agordoj pri \"Enhavo kaj aลญdvidaฤตoj\"." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Vi nun povas ensaluti per via nova pasvorto." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Vi povas aldoni ฤis po {MAX_GALLERY_IMAGES, plural, one {# bildon} other {# bildojn}} en afiลo" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Vi povas konservi malnetojn maksimume nur 1000 signojn longajn." @@ -14439,9 +14462,11 @@ msgstr "Vi povas legi babilejan historion sed ne povas sendi novajn mesaฤojn." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Vi povas elekti {MAX_GALLERY_IMAGES, plural, one {# bildon} other {# bildojn}} entute." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Vi povas ฤisdatigi ฤ‰i tion poste en viaj agordoj." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Vi ne povas aldoni pli ol {EMOJI_REACTION_LIMIT, plural, one {# emoฤi-reagon} other {# emoฤi-reagojn}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Vi ankoraลญ ne povas krei grupan babilejon." @@ -14555,7 +14581,7 @@ msgstr "Vi sukcese konfirmis vian retpoลtadreson. Vi povas fermi ฤ‰i tiun dialo msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Vi dumtempe atingis la limon por videaฤตaj alลutoj. Bonvolu reprovi poste." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Vi havas nekonservitajn ลanฤojn al ฤ‰i tiu malneto, ฤ‰u vi volas konservi ilin?" @@ -14563,7 +14589,7 @@ msgstr "Vi havas nekonservitajn ลanฤojn al ฤ‰i tiu malneto, ฤ‰u vi volas konse msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Vi havas nekonservitajn ลanฤojn. ฤˆu vi volas konservi ilin antaลญ ol vidi viajn malnetojn?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Vi ankoraลญ kreis neniun startpakon!" @@ -14614,7 +14640,7 @@ msgstr "Vi eblas aldoni maksimume {STARTER_PACK_MAX_SIZE, plural, one {{STARTER_ msgid "You may only add up to 3 feeds" msgstr "Vi povas aldoni maksimume 3 fluojn" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Vi devas esti babilejan posedanton por forpeli anon." @@ -14622,7 +14648,7 @@ msgstr "Vi devas esti babilejan posedanton por forpeli anon." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Vi devas aฤi almenaลญ 13 jarojn por uzi Bluesky. Legu niajn <0>uzokondiฤ‰ojn por pliaj informoj." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Vi devas sekvi almenaลญ sep aliajn homojn por generi startpakon." @@ -14639,7 +14665,7 @@ msgstr "Vi devas permesi aliron al via aลญdvida biblioteko." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Vi konfirmu vian retpoลtadreson, antaลญ ol vi povos ลalti retpoลtan 2FA-on." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Vi posedas ฤ‰i tiun babilejon" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Vi volu nun relanฤ‰i la apon." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Vi reagis per {0}" @@ -14667,15 +14693,15 @@ msgstr "Vi reagis per {0} al {target}" msgid "You recently changed your birthdate" msgstr "Vi lastatempe ลanฤis vian naskiฤdaton" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Vi respondis" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Vi respondis al {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Vi respondis al vi mem" @@ -14715,11 +14741,11 @@ msgstr "Vi ne povos aliฤi ree, krom se vi estos invitota." msgid "You: {message}" msgstr "Vi: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Vi sekvos la sugestitajn uzantojn kaj fluojn post kiam vi finos krei vian konton!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Vi sekvos la proponitajn uzantojn post kiam vi finos krei vian konton!" @@ -14791,7 +14817,7 @@ msgstr "Vi atingis la finon de la aktiva enhavo." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Vi atingis la finon de via fluo! Trovu pliajn kontojn por sekvi." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Vi atingis la maksimuman nombron da malnetoj" @@ -14799,7 +14825,7 @@ msgstr "Vi atingis la maksimuman nombron da malnetoj" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Vi atingis la maksimuman nombron da permesitaj petoj. Bonvolu reprovi poste." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Vi atingis vian tagan limon por videaฤต-alลutoj (tro da bajtoj)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Vi atingis vian tagan limon por videaฤต-alลutoj (tro da videaฤตoj)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Vi elฤ‰erpis videaฤตojn por spekti. ฤˆu eble estas bona tempo fari paลญzon?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Via konto" @@ -14835,11 +14861,11 @@ msgstr "Via konto estis suspendita" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Via konto ne estas sufiฤ‰e malnova por alลuti videaฤตojn. Bonvolu reprovi poste." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Via konto estas tro nova" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Via konto devas esti almenaลญ 7 tagojn malnova por krei novan grupan babilejon." @@ -14896,7 +14922,7 @@ msgstr "Via retpoลtadreso" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Via retpoลtadreso ลajnas esti nevalida." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Viaj interesoj estis ฤisdatigitaj!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Viaj interesoj helpas nin ekscii, kion vi ลatas!" @@ -14967,11 +14993,11 @@ msgstr "Via pasvorto estis sukcese ลanฤita! Bonvolu ekuzi vian novan pasvorton msgid "Your password must be at least 8 characters long." msgstr "Via pasvorto bezonas almenaลญ 8 signojn." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Via afiลo estis sendita" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Viaj afiลoj estis senditaj" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Via preferata lingvo" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Via profilbildo" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Via profilbildo ฤ‰irkaลญita per samcentraj cirkloj de profilbildoj de aliaj uzantoj" @@ -14992,7 +15018,7 @@ msgstr "Via profilbildo ฤ‰irkaลญita per samcentraj cirkloj de profilbildoj de al msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Via profilo, afiลoj, fluoj kaj listoj ne plu videblos por aliaj uzantoj de Bluesky. Vi povas reaktivigi vian konton iam ajn per ensaluto." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Via respondo estis sendita" @@ -15005,7 +15031,7 @@ msgstr "Via raporto estos sendota al <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Viaj elektitaj interesoj helpas nin havigi al vi enhavon, kiu gravas al vi." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Via fadeno havas malplenajn afiลojn, kiuj estos preterlasitaj. La restantaj afiลoj estos publikigitaj kiel fadeno." diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po index dc8a15938b..cf80c17999 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categorรญa \"{interestsDisplayName}\" (activa)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(contiene contenido incrustado)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# horas}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# me gusta} other {# me gusta}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# miembro} other {# miembros}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# nueva solicitud para unirse} other {# nuevas solicitu #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {# persona reaccionรณ} other {# personas reaccionaron}} โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Cuenta)" @@ -251,36 +252,13 @@ msgstr "{0} aรฑadido al chat" msgid "{0} and {1} added to chat" msgstr "{0} y {1} aรฑadidos al chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} siguiendo" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} te tiene bloqueado" @@ -324,14 +302,6 @@ msgstr "{0} saliรณ" msgid "{0} left the group" msgstr "{0} saliรณ del grupo" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reaccionรณ con {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} y {memberCount, plural, one {# persona mรกs} other {# personas mรกs}} aรฑadidos al chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} te verificรณ" msgid "{following} following" msgstr "{following} siguiendo" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "No se puede aรฑadir a {handle}" @@ -698,7 +660,7 @@ msgstr "No se puede aรฑadir a {handle}" msgid "{handle} can't be messaged" msgstr "No se puede enviar un mensaje a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "No se pueden enviar mensajes a {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# notificacion no leรญda} other {# noti msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contacto encontrado} other {# contactos encontrados}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} se uniรณ a Bluesky hace {timeAgoString}" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} se uniรณ a Bluesky usando un paquete de inicio hace {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# solicitud} other {# solicitudes}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ solicitudes" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "Hace {type} h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} es un verificador de confianza" @@ -842,13 +795,13 @@ msgstr "Verificaciones de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {siguiendo} other {siguiendo}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {citas}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicaciรณn} other {republicaciones}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {guardado} other {guardados}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> te aรฑadiรณ" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Inicia sesiรณn<1> o <2>crea una cuenta<3> <4>para acceder a noticias, deportes, debates polรญticos y todo lo que sucede en Bluesky." @@ -971,7 +924,7 @@ msgstr "30 dรญas" msgid "7 days" msgstr "7 dรญas" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Una colecciรณn de feeds populares que puedes encontrar en Bluesky, incluyendo News, Booksky, Game Dev, Blacksky y Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Se produjo un error de red. Por favor, verifica tu conexiรณn a internet" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Se ha enviado un nuevo cรณdigo" msgid "A new form of verification" msgstr "Una nueva forma de verificar" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Una captura de pantalla del editor de publicaciones con un nuevo botรณn junto al botรณn de publicar que dice \"Borradores\", con un efecto de fuegos artificiales de arcoรญris. Debajo, el texto en el editor dice \"Hey, did you hear the news? Bluesky has drafts now!!!\" [ยกOye, ยฟescuchaste la noticia? ยกBluesky ya tiene borradores!]." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Un destinatario seleccionado no es seguido por el remitente." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "ยกAcceso solicitado! El propietario del grupo revisarรก tu solicitud." msgid "Accessibility" msgstr "Accesibilidad" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Ajustes de accesibilidad" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Cuenta silenciada por una lista" msgid "Account options" msgstr "Opciones de la cuenta" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Cuenta eliminada del acceso rรกpido" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Las cuentas con una marca de verificaciรณn ondeada <0><1/> pueden verificar a otras. Bluesky se encarga de seleccionar a estas cuentas de confianza." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Actividad de otras personas" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Aรฑadir un texto alternativo (opcional)" msgid "Add another account" msgstr "Aรฑadir otra cuenta" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Aรฑadir otra publicaciรณn" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Aรฑadir otra publicaciรณn al hilo" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "Aรฑadir etiqueta de automatizaciรณn a la cuenta" msgid "Add emoji reaction" msgstr "Aรฑadir reacciรณn con emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Aรฑade este feed a tus feeds" msgid "Add to lists" msgstr "Aรฑadir a las listas" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Aรฑadir a publicaciones guardadas" @@ -1400,7 +1360,7 @@ msgstr "Solo para adultos" msgid "Adult content" msgstr "Contenido para adultos" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@ejemplo.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Todas" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "ยกSigues a todos tus amigos!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Todos los idiomas" @@ -1491,11 +1447,6 @@ msgstr "Se mostrarรกn todos los idiomas en tus feeds." msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Todos los feeds que has guardado, en un mismo sitio." @@ -1560,7 +1511,7 @@ msgstr "Permite acceso a los mensajes directos" msgid "Already have a code?" msgstr "ยฟYa tienes un cรณdigo?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "ยฟYa tienes una cuenta?" @@ -1614,7 +1565,7 @@ msgstr "Te hemos enviado un correo electrรณnico a {0} con un cรณdigo de confirma msgid "An error has occurred" msgstr "Se ha producido un error" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Se produjo un error" @@ -1631,7 +1582,7 @@ msgstr "Se produjo un error al obtener cuentas sugeridas." msgid "An error occurred while fetching the feed." msgstr "Error al recuperar el feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Se produjo un error al generar tu paquete de inicio. ยฟQuieres intentarlo de nuevo?" @@ -1640,11 +1591,11 @@ msgstr "Se produjo un error al generar tu paquete de inicio. ยฟQuieres intentarl msgid "An error occurred while hiding suggestion. {0}" msgstr "Se produjo un error al ocultar la sugerencia. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Se produjo un error al cargar el video. Vuelve a intentarlo." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Se produjo un error mientras cargaba el video. Vuelve a intentarlo." @@ -1684,7 +1635,7 @@ msgstr "Se produjo un error. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Una ilustraciรณn que muestra avatares de usuarios saliendo de una libreta de contactos hacia la aplicaciรณn de Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Una ilustraciรณn de varias publicaciones de Bluesky junto con los iconos de republicar, me gusta y comentar" @@ -1705,17 +1656,15 @@ msgstr "Un enlace de invitaciรณn permite a las personas unirse a este chat de gr msgid "An issue not included in these options" msgstr "Un problema no presente en estas opciones" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Se produjo un problema al crear el chat de grupo. Intรฉntalo de nuevo." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Se produjo un problema al iniciar el chat. Intรฉntalo de nuevo." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Se produjo un problema mientras intentaba abrir el chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Cualquiera" @@ -1802,7 +1749,7 @@ msgstr "Cualquier persona que me siga" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Quien lo tenga ya no podrรก unirse ni solicitar unirse. Siempre puedes crear uno nuevo." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "El nombre de la contraseรฑa de app debe tener al menos cuatro caracteres msgid "App passwords" msgstr "Contraseรฑas de app" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contraseรฑas de app" @@ -1891,8 +1838,8 @@ msgstr "Apelar esta decisiรณn" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Aplicar Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archivado desde {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Publicaciรณn archivada" @@ -1980,7 +1927,7 @@ msgstr "ยฟQuieres eliminar esto de tus feeds?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "ยฟEstรกs seguro de que quieres retirar tu solicitud para unirte a {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "ยฟQuieres descartar esta publicaciรณn?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Cuenta automatizada" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "Etiqueta de automatizaciรณn" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Etiqueta de automatizaciรณn" @@ -2050,12 +2002,16 @@ msgstr "Reproducir videos y GIFs automรกticamente" msgid "Available" msgstr "Disponible" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Para publicar o responder, debes verificar tu correo electrรณnico." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Antes de crear un paquete de inicio, debes verificar tu correo electrรณnico." @@ -2135,10 +2091,10 @@ msgstr "Antes de que puedas recibir notificaciones de los posts de {name}, debes #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "Comience el proceso de verificaciรณn de edad completando los campos deba msgid "Beta Feature" msgstr "Funciรณn beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "Fecha de nacimiento" msgid "Birthday" msgstr "Cumpleaรฑos" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Cuentas bloqueadas" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cuentas bloqueadas" @@ -2282,7 +2244,7 @@ msgstr "Si bloqueas a una cuenta no podrรกn responder en tus hilos, mencionarte msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Si bloqueas a una cuenta no podrรกn responder en tus hilos, mencionarte ni interactuar contigo de ninguna manera. No verรกs su contenido y no podrรกn ver el tuyo." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Si bloqueas a un etiquetador aรบn podrรกn seguir aplicando etiquetas a tu cuenta." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no puede confirmar la autenticidad de la fecha declarada." @@ -2330,7 +2293,7 @@ msgstr "Bluesky es una red abierta donde puedes elegir tu proveedor de alojamien msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky es una red abierta en la que puedes elegir el proveedor que quieras. Si estรกs empezando, te recomendamos la opciรณn por defecto, Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "ยกBluesky es mejor con amigos!" @@ -2358,7 +2321,7 @@ msgstr "Tรฉrminos de servicio de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky almacena tus contactos como datos codificados. Eliminar tus contactos borrarรก estos datos inmediatamente." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky elegirรก un conjunto de cuentas recomendadas de personas en su red." @@ -2403,20 +2366,20 @@ msgstr "Reรบne hasta 50 amigos en un solo chat." msgid "Browse custom feeds" msgstr "Explorar feeds personalizados" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Explorar mรกs cuentas" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Ver mรกs feeds en la pรกgina Explorar" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Explorar mรกs sugerencias" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Busca mรกs sugerencias en la pรกgina Explorar" @@ -2425,24 +2388,25 @@ msgstr "Busca mรกs sugerencias en la pรกgina Explorar" msgid "Browse other feeds" msgstr "Explorar otros feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Explorar publicaciones sobre {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Explorar publicaciones etiquetadas con {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Explorar el paquete de inicio {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Explorar el tema {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Explorar el tema {displayName}" @@ -2461,8 +2425,8 @@ msgstr "Botรณn para volver a la lรญnea de tiempo principal" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Por {0}" @@ -2473,9 +2437,9 @@ msgstr "por @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Por <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Al crear una cuenta, aceptas los <0>Tรฉrminos de servicio y la <1>Po msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Al crear una cuenta, aceptas los <0>Tรฉrminos de servicio." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Tuyos" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Cรกmara" @@ -2534,7 +2498,7 @@ msgstr "Se necesita acceso a la cรกmara" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Se necesita acceso a la cรกmara" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Cancelar la reactivaciรณn y cerrar la sesiรณn" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancelar bรบsqueda" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Los cambios en el paquete de inicio no se reflejarรกn en la lista despuรฉs de su creaciรณn. La lista serรก una copia independiente." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat silenciado" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Chat no encontrado." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Los propietarios de un chat no pueden salir de un chat de grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "El destinatario del chat no es seguido por el remitente." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Bandeja de solicitudes de chat" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Solicitudes de chat" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Ajustes de chat" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat no silenciado" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2802,7 @@ msgstr "Elige el mรฉtodo de verificaciรณn del dominio" msgid "Choose Feeds" msgstr "Elija Feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Elige para mi" @@ -2854,7 +2819,7 @@ msgstr "Elige a la gente" msgid "Choose post languages" msgstr "Elegir idiomas de la publicaciรณn" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Elige este color como tu avatar" @@ -2879,7 +2844,7 @@ msgstr "Elige tu propia cronologรญa: encuentra el contenido que mรกs te gusta gr msgid "Choose your password" msgstr "Elige tu contraseรฑa" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Tu nombre de usuario" @@ -2966,7 +2931,7 @@ msgstr "Haz clic aquรญ para ver el enlace de invitaciรณn de este chat de grupo" msgid "Click to open tag menu for {0}" msgstr "Haz clic para abrir el menรบ de etiquetas de {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Clic para reintentar mensaje fallido" @@ -3003,7 +2968,7 @@ msgstr "Clic para reintentar mensaje fallido" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Clic para reintentar mensaje fallido" msgid "Close" msgstr "Cerrar" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Cerrar diรกlogo activo" @@ -3047,7 +3012,7 @@ msgstr "Cerrar banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Cerrar el visor de imagen" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Cerrar el menรบ" @@ -3090,7 +3055,7 @@ msgstr "Cerrar el banner de solicitudes entrantes" msgid "Close this dialog" msgstr "Cierra este diรกlogo" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Cerrar diรกlogo de bienvenida" @@ -3098,7 +3063,7 @@ msgstr "Cerrar diรกlogo de bienvenida" msgid "Closes password update alert" msgstr "Cierra la alerta de actualizaciรณn de contraseรฑa" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Cierra la ventana de redacciรณn y descarta el borrador" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Color" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modo de color" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Cรณmics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directrices de la comunidad" @@ -3141,7 +3106,7 @@ msgstr "Directrices de la comunidad" msgid "Complete onboarding and start using your account" msgstr "Completa la incorporaciรณn y comienza a usar tu cuenta" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa el desafรญo" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Escribir nueva publicaciรณn" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Escribir publicaciones de hasta {0, plural, other {# caracteres}}" @@ -3160,11 +3125,11 @@ msgstr "Escribir publicaciones de hasta {0, plural, other {# caracteres}}" msgid "Compose reply" msgstr "Escribir la respuesta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Comprimiendo GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Comprimiendo video..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Contactar con nuestro equipo de soporte" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contactar con el soporte" @@ -3253,7 +3218,7 @@ msgstr "Contenido y medios" msgid "Content and media" msgstr "Contenido y medios" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Contenido y medios" @@ -3265,10 +3230,6 @@ msgstr "Contenido bloqueado" msgid "Content filters" msgstr "Filtros de contenido" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Contenido de toda la red que podrรญa gustarte." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Idiomas del contenido" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Contenido que promueve o muestra autolesiones" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Advertencia de Contenido" msgid "Content warnings" msgstr "Advertencias de contenido" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fondo del menรบ contextual, haga clic para cerrar el menรบ." @@ -3302,7 +3263,7 @@ msgstr "Fondo del menรบ contextual, haga clic para cerrar el menรบ." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Continuar hilo..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continuar al nombre del grupo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "Conversaciรณn no encontrada." msgid "Copied build version to clipboard" msgstr "Versiรณn de compilaciรณn copiada al portapapeles" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Copiar Contraseรฑa de App" msgid "Copy at:// URI" msgstr "Copiar URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copiar el DID del autor" @@ -3449,10 +3410,10 @@ msgstr "Copiar Link" msgid "Copy link to list" msgstr "Copia el enlace a la lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar el enlace a la publicaciรณn" @@ -3470,8 +3431,8 @@ msgstr "Copiar el enlace al paquete de inicio" msgid "Copy message text" msgstr "Copiar el texto del mensaje" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copiar URI at:// de la publicaciรณn" @@ -3490,7 +3451,7 @@ msgstr "Copiar valor del registro TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Polรญtica de derechos de autor" @@ -3540,11 +3501,11 @@ msgstr "No se pudieron seguir todas las coincidencias. {0}" msgid "Could not leave chat" msgstr "No se pudo salir de este chat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "No se pudo salir del chat." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "No se pudo cargar este feed" @@ -3562,7 +3523,7 @@ msgstr "No se pudo cargar el perfil" msgid "Could not mute chat" msgstr "No se pudo silenciar el chat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "No se pudo eliminar al miembro." @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crear" @@ -3624,26 +3585,26 @@ msgstr "Crear una lista a partir de este paquete de inicio" msgid "Create a QR code for a starter pack" msgstr "Crear un cรณdigo QR para paquete de inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Crea un paquete de inicio" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Crear un paquete de inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crea un paquete de inicio para mรญ" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Crear una cuenta" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Crea una cuenta" @@ -3666,15 +3627,15 @@ msgstr "Crea una cuenta" msgid "Create an account without using this starter pack" msgstr "Crear una cuenta sin usar este paquete de inicio" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Crea un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Crea otro" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Crear chat de grupo" @@ -3743,7 +3704,7 @@ msgstr "Cultura" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Chat actual" @@ -3770,8 +3731,8 @@ msgstr "Sustancias peligrosas o abuso de drogas" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Oscuro" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Oscuro" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema oscuro" @@ -3814,7 +3775,7 @@ msgstr "Rechazar esta sugerencia de idioma" msgid "Deepfake adult content" msgstr "Contenido para adultos deepfake" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Por Defecto" @@ -3894,7 +3855,7 @@ msgstr "Eliminar mi cuenta" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Borrar la publicaciรณn" @@ -3988,7 +3949,7 @@ msgstr "Ajustar quiรฉn puede interactuar con esta publicaciรณn" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Tenue" @@ -4002,7 +3963,7 @@ msgstr "Deshabilitar" msgid "Disable 2FA" msgstr "Desactivar la autenticaciรณn de doble factor" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Desactivar subtรญtulos" @@ -4045,9 +4006,9 @@ msgstr "Deshabilitado" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "ยฟDescartar cambios?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "ยฟDescartar borrador?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "ยฟDescartar publicaciรณn?" @@ -4079,6 +4040,10 @@ msgstr "Desconectar Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Evitar que las aplicaciones muestren mi cuenta a los usuarios desconectados" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Evitar que las aplicaciones muestren mi cuenta a los usuarios desconecta msgid "Discover new custom feeds" msgstr "Descubre nuevos feeds personalizados" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Descubrir nuevos feeds" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descubrir nuevos feeds" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Descartar" @@ -4103,28 +4064,28 @@ msgstr "Descartar" msgid "Dismiss banner" msgstr "Descartar banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Descartar error" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Descartar la guรญa de introducciรณn" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Descartar intereses" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Descartar banner de evento en directo" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Ocultar esta secciรณn" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Descartar esta sugerencia" @@ -4142,7 +4103,7 @@ msgstr "Mostrar insignias de texto alternativo mรกs grandes" msgid "Display name" msgstr "Nombre para mostrar" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Olvรญdate de los trolls y el clickbait. Encuentra personas y conversaciones reales que te importan." @@ -4205,8 +4166,8 @@ msgstr "ยกNo te preocupes! Todos los mensajes y configuraciones existentes estรก #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "ยกNo te preocupes! Todos los mensajes y configuraciones existentes estรก msgid "Done" msgstr "Listo" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Toca dos veces o presiona durante un instante el mensaje para aรฑadir una reacciรณn" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Doble toque para cerrar el diรกlogo" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Pulsa dos veces para indicar que te gusta" @@ -4328,6 +4289,7 @@ msgstr "Trastornos alimentarios" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Editar la imagen" msgid "Edit interaction settings" msgstr "Editar ajustes de interacciรณn" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Modificar los intereses" @@ -4397,7 +4359,7 @@ msgstr "Editar el estado del directo" msgid "Edit moderation list" msgstr "Editar lista de moderaciรณn" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar mis feeds" @@ -4406,6 +4368,11 @@ msgstr "Editar mis feeds" msgid "Edit name" msgstr "Editar nombre" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar las personas" @@ -4444,7 +4411,7 @@ msgstr "Editar lista de usuarios" msgid "Edit who can reply" msgstr "Editar quiรฉn puede responder" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Edita tu paquete de inicio" @@ -4500,8 +4467,8 @@ msgstr "Insertar cรณdigo HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incrustar la publicaciรณn" @@ -4509,7 +4476,7 @@ msgstr "Incrustar la publicaciรณn" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta esta publicaciรณn en tu sitio web. Simplemente copia el siguiente fragmento y pรฉgalo en el cรณdigo HTML de tu sitio web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Reproductor de video incrustado" @@ -4533,7 +4500,7 @@ msgstr "Mostrar contenido para adultos" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Activar subtรญtulos" @@ -4550,12 +4517,13 @@ msgstr "Activar medios externos" msgid "Enable media players for" msgstr "Reproducir multimedia de" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activa las notificaciones de una cuenta visitando su perfil y pulsando el <0>icono de campana <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Activar notificaciones push" @@ -4581,7 +4549,7 @@ msgstr "Activar los videos populares en el feed Discover" msgid "Enabled" msgstr "Activado" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fin del feed" @@ -4608,7 +4576,7 @@ msgstr "Ingresa una palabra o etiqueta" msgid "Enter code" msgstr "Ingresa el cรณdigo" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Entrar en la pantalla completa" @@ -4650,11 +4618,11 @@ msgstr "Ingresa tu nombre de usuario y contraseรฑa" msgid "Enters full screen" msgstr "Entra en pantalla completa" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Ocio" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" @@ -4684,7 +4652,7 @@ msgstr "Se produjo un error al guardar el archivo" msgid "Error receiving captcha response." msgstr "Error al recibir la respuesta del captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Error: {error}" @@ -4696,8 +4664,8 @@ msgstr "Todos pueden responder" msgid "Everybody can reply to this post." msgstr "Todos pueden responder a esta publicaciรณn." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Todos" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Todos" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Todo lo demรกs" @@ -4738,7 +4706,7 @@ msgstr "Excluir a los usuarios que sigues" msgid "Excludes users you follow" msgstr "Excluye a los usuarios que sigues" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Salir de pantalla completa" @@ -4755,11 +4723,11 @@ msgstr "Expandir lista de usuarios" msgid "Expand or collapse the full post you are replying to" msgstr "Expandir o colapsar la publicaciรณn completa a la que estรกs respondiendo" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Expandir el texto de la publicaciรณn" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Amplรญa o reduce el texto de la publicaciรณn" @@ -4802,15 +4770,15 @@ msgstr "Medios explรญcitos o potencialmente perturbadores." msgid "Explicit sexual images." msgstr "Imรกgenes sexuales explรญcitas." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorar" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Explora la aplicaciรณn" @@ -4844,7 +4812,7 @@ msgstr "Medios externos" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Es posible que medios externos permitan que otros sitios recopilen datos sobre ti y tu dispositivo. No se envรญa o solicita informaciรณn hasta que presionas el botรณn de reproducir." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferencias sobre Medios Externos" @@ -4886,7 +4854,7 @@ msgstr "Error al cambiar nombre de usuario. Por favor vuelve a intentarlo." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Error al copiar el enlace" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Error al salir del chat de grupo" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Error al cargar las conversaciones" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Error al cargar los feeds" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Error al cargar las preferencias de feeds" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Error al cargar la configuraciรณn de notificaciones." @@ -5012,14 +4981,14 @@ msgstr "Error al cargar las preferencias." msgid "Failed to load profiles" msgstr "Error al cargar los perfiles" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Error al cargar los feeds sugeridos" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Error al cargar las sugerencias de seguimiento" @@ -5027,12 +4996,12 @@ msgstr "Error al cargar las sugerencias de seguimiento" msgid "Failed to lock group chat" msgstr "Error al bloquear el chat de grupo" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "Error al retirar tu solicitud. Intรฉntalo de nuevo." msgid "Failed to resolve location. Please try again." msgstr "Error al determinar la ubicaciรณn. Intรฉntalo de nuevo." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Error al guardar el borrador" @@ -5191,7 +5160,7 @@ msgstr "Cuenta falsa o bot" msgid "False information about elections" msgstr "Informaciรณn falsa sobre elecciones" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5181,7 @@ msgstr "Creador del feed" msgid "Feed identifier" msgstr "Identificador del feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menรบ de feed" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Comentarios enviados al operador del feed" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "ยกFeeds actualizados!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Creemos que estos feeds te gustarรกn." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Buscar actualizaciones" @@ -5273,34 +5238,22 @@ msgstr "Buscar actualizaciones" msgid "File saved successfully!" msgstr "ยกArchivo guardado exitosamente!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtrar de los feeds" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtrar la bรบsqueda por idioma" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrar la bรบsqueda por idioma (actualmente: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtrar quiรฉn puede recibir notificaciones de tu actividad" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtra de quiรฉn recibes notificaciones" @@ -5352,8 +5305,8 @@ msgstr "Buscar cuentas para seguir" msgid "Find and invite friends" msgstr "Encontrar e invitar amigos" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Buscar contactos" @@ -5387,7 +5340,7 @@ msgstr "Encuentra a tus amigos" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Encuentra a tus amigos en Bluesky verificando tu nรบmero de telรฉfono y haciendo coincidir con tus contactos. Protegemos tu informaciรณn y tรบ controlas lo que sucede a continuaciรณn. <0>Mรกs informaciรณn" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Encuentra a tu gente" @@ -5429,7 +5382,7 @@ msgstr "Enfocar el campo de bรบsqueda" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Seguir {0}" msgid "Follow {displayName}" msgstr "Seguir a {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Seguir {handle}" @@ -5453,11 +5406,11 @@ msgstr "Seguir {handle}" msgid "Follow 10 accounts" msgstr "Sigue 10 cuentas" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Sigue a 10 personas para comenzar" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Sigue 7 cuentas" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Los seguidores pueden unirse" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que conoces" @@ -5544,7 +5497,7 @@ msgstr "Seguidores que conoces" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Siguiendo {0}" msgid "Following {displayName}" msgstr "Siguiendo a {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Siguiendo {handle}" @@ -5578,21 +5531,21 @@ msgstr "Siguiendo {handle}" msgid "Following feed preferences" msgstr "Preferencias del feed de cuentas que sigues" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencias del feed de cuentas que sigues" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Te sigue" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Fuente" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tamaรฑo de fuente" @@ -5612,13 +5565,13 @@ msgstr "Por razones de seguridad, necesitamos enviar un cรณdigo de confirmaciรณn msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por razones de seguridad, no podrรกs volver a verla. Si pierdes esta contraseรฑa de app, tendrรกs que generar una nueva." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Para una mejor experiencia, recomendamos que uses la fuente del tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Para ti" @@ -5628,7 +5581,7 @@ msgstr "Para ti" msgid "Forever" msgstr "Para siempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Olvรญdate del ruido" @@ -5647,11 +5600,11 @@ msgstr "ยฟOlvidaste tu contraseรฑa?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "ยกCuatro burbujas de mensajes representando un chat de grupo. Primer mensaje: \"Did you hear the news? Bluesky has group chats now!\" [ยฟEscuchaste la noticia? ยกBluesky ahora tiene chats de grupo!]. Segundo mensaje: \"omg, no way\" [omg, no me digas]. Tercer mensaje: \"Wow, 50 people in one chat!\" [ยกWow, 50 personas en un chat!]. Cuarto mensaje: \"You can send invite links too!\" [ยกTambiรฉn puedes enviar enlaces de invitaciรณn!]!" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Libera tu feed" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De" @@ -5674,7 +5627,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Genera un paquete de inicio" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "Obtiene ayuda" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Recibe notificaciones cuando se unan a tu paquete de inicio, sobre verificaciรณn y otras actividades." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Recibe una notificaciรณn cuando alguien te siga." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Recibe una notificaciรณn cuando a alguien le guste tu publicaciรณn." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Recibe notificaciones cuando alguien le dรฉ me gusta a tus republicaciones." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Recibe una notificaciรณn cuando alguien te mencione." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Recibe una notificaciรณn cuando alguien cite tus publicaciones." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Recibe una notificaciรณn cuando alguien responda a tus mensajes." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Recibe una notificaciรณn cuando alguien responda a tus publicaciones." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Recibe notificaciones cuando alguien republique tus republicaciones." @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Recibe notificaciones cuando haya actividad en publicaciones a las que estรกs suscrito." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Recibe una notificaciรณn de nuevas publicaciones" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Recibe una notificaciรณn cuando {name} publique" @@ -5799,11 +5752,11 @@ msgstr "Comenzar" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF subido" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Ponle cara a tu perfil" @@ -5813,20 +5766,20 @@ msgstr "Glorificaciรณn de la violencia" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Empezar el directo para" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Nombre del chat de grupo actualizado" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Ajustes del chat de grupo" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Los chats de grupo solo pueden tener un mรกximo de {0, plural, one {# persona} other {# personas}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "El grupo estรก bloqueado" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Nombre del grupo" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "El nombre del grupo es demasiado largo. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {Longitud mรกxima: # carรกcter.} other {Longitud mรกxima: # caracteres.}}" @@ -6077,7 +6031,7 @@ msgstr "Actividades daรฑinas o de alto riesgo" msgid "Harming or endangering minors" msgstr "Daรฑo o puesta en peligro de menores" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Etiqueta" @@ -6098,7 +6052,7 @@ msgstr "ยฟTienes un cรณdigo? <0>Haz clic aquรญ." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "ยฟTenemos mal tu ubicaciรณn? <0>Toca aquรญ para actualizar tu ubicaciรณn con GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "ยฟTienes problemas?" @@ -6114,7 +6068,7 @@ msgstr "Retenido por Bluesky durante 7 dรญas para prevenir abusos y luego elimin msgid "Help" msgstr "Ayuda" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Sube una foto o crea un avatar para que la gente sepa que no eres un bot." @@ -6135,12 +6089,12 @@ msgstr "ยกHola!" msgid "Hi there!" msgstr "ยกHola!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Oculto" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Oculto por tus ajustes de moderaciรณn." @@ -6148,9 +6102,10 @@ msgstr "Oculto por tus ajustes de moderaciรณn." msgid "Hidden list" msgstr "Lista oculta" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Lista oculta" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Ocultar" @@ -6198,7 +6154,7 @@ msgstr "Ocultar respuesta para todos" msgid "Hide reply for me" msgstr "Ocultar la respuesta para mรญ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Ocultar esta tarjeta" @@ -6218,16 +6174,18 @@ msgstr "ยฟOcultar esta respuesta?" msgid "Hide translation" msgstr "Ocultar traducciรณn" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Ocultar las tendencias" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "ยฟQuieres ocultar las tendencias?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "ยฟQuieres ocultar los videos populares?" @@ -6240,7 +6198,7 @@ msgstr "Ocultar lista de usuarios" msgid "Hide verification badges" msgstr "Ocultar las marcas de verificaciรณn" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Oculta el contenido" @@ -6293,8 +6251,8 @@ msgstr "Hmmmm, no conseguimos cargar ese servicio de moderaciรณn." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "ยกEspera! Estamos dando acceso a videos gradualmente, y aรบn estรกs en la lista de espera. ยกVuelve a consultar pronto!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Destacando" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Cรณmo funciona:" @@ -6409,6 +6363,7 @@ msgstr "Si actualizas tu direcciรณn de correo electrรณnico, la verificaciรณn de msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si deseas cambiar tu contraseรฑa, te enviaremos un cรณdigo para verificar que esta es tu cuenta." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Si quieres restringir quiรฉn puede recibir notificaciones de la actividad de tu cuenta, puedes cambiarlo en <0>Configuraciรณn โ†’ Privacidad y Seguridad." @@ -6548,7 +6503,7 @@ msgstr "En la aplicaciรณn, push, todos" msgid "In-app, push, people you follow" msgstr "En la aplicaciรณn, push, personas a las que sigues" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Bandeja de entrada vacรญa" @@ -6564,7 +6519,6 @@ msgstr "La bandeja de entrada estรก vacรญa" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Nombre de usuario o contraseรฑa no vรกlidos" @@ -6683,7 +6633,7 @@ msgstr "Invitar a {name} a unirse a Bluesky" msgid "Invite code" msgstr "Cรณdigo de invitaciรณn" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "No se acepta el cรณdigo de invitaciรณn. Comprueba que lo has introducido correctamente e intรฉntalo de nuevo." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "ยกSolo estรกs tรบ por ahora! Agrega mรกs personas a tu paquete de inicio buscando arriba." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Tarea ID: {0}" @@ -6816,8 +6766,8 @@ msgstr "รšnete a la conversaciรณn" msgid "Journalism" msgstr "Periodismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Seguir editando" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "Sitio web de KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etiquetado por {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etiquetado por el autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiquetas" @@ -6852,7 +6802,7 @@ msgstr "Etiquetas aรฑadidas" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Las etiquetas son anotaciones sobre usuarios y contenido. Pueden usarse para ocultar, advertir y categorizar la red." @@ -6864,7 +6814,7 @@ msgstr "Etiquetas en tu cuenta" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Ajustes de Idiomas" @@ -6874,7 +6824,7 @@ msgstr "Ajustes de Idiomas" msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Mรกs grande" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "รšltima iniciaciรณn justo ahora" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "รšltimo" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Mรกs informaciรณn" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Aprender mรกs" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "Mรกs informaciรณn sobre la importaciรณn de contactos" msgid "Learn more about self hosting your PDS." msgstr "Mรกs informaciรณn sobre cรณmo autoalojar tu PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Mรกs informaciรณn sobre la moderaciรณn aplicada a este contenido" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Mรกs informaciรณn de estos cambios y como puedes compartir tus pensamientos con nosotros leyendo nuestra publicaciรณn de blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Mรกs informaciรณn sobre esta advertencia" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Mรกs informaciรณn en tus <0>ajustes de cuenta." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Aprender mรกs." @@ -6993,8 +6943,8 @@ msgstr "Dejar" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Salir de Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Salir de este chat lo bloquearรก permanentemente y no podrรกs volver a unirte." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Saliste del chat de grupo." @@ -7042,7 +6992,7 @@ msgstr "Saliste del chat de grupo." msgid "left to go." msgstr "quedan." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Dรฉjame escoger" @@ -7057,7 +7007,7 @@ msgstr "ยกVamos!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Claro" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Me gusta" @@ -7076,7 +7026,7 @@ msgstr "Me gusta" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Like ({0, plural, one {# me gusta} other {# me gusta}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Dale \"me gusta\" a 10 publicaciones" @@ -7085,7 +7035,7 @@ msgstr "Dale \"me gusta\" a 10 publicaciones" msgid "Like 10 posts to train the Discover feed" msgstr "Dale \"me gusta\" a 10 publicaciones para entrenar el feed de Descubrimiento." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Dar \"me gusta\" a este feed" @@ -7093,8 +7043,8 @@ msgstr "Dar \"me gusta\" a este feed" msgid "Like this labeler" msgstr "Dar \"me gusta\" a este etiquetador" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Le gusta a" @@ -7111,27 +7061,45 @@ msgstr "Le gusta a" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Le gusta a {0, plural, one {# usuario} other {# usuarios}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Le gusta a {likeCount, plural, one {# usuario} other {# usuarios}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Me gusta" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Me gusta de tus republicaciones" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "\"Me gusta\" en esta publicaciรณn" @@ -7144,7 +7112,7 @@ msgstr "Lineal" msgid "Link copied to clipboard" msgstr "Enlace copiado al portapapeles" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "La lista ya no estรก silenciada" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "EN VIVO" msgid "Live event happening now: {0}" msgstr "Evento en directo ahora mismo: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Evento en directo oculto" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Evento en directo visible" @@ -7279,12 +7247,12 @@ msgstr "La funciรณn en vivo estรก en beta" msgid "Live link" msgstr "Enlace en vivo" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Cargar mรกs" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Cargar mรกs feeds sugeridos" @@ -7292,8 +7260,8 @@ msgstr "Cargar mรกs feeds sugeridos" msgid "Load new notifications" msgstr "Cargar notificaciones nuevas" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Bloquear este chat de grupo" msgid "Locked" msgstr "Bloqueado" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Registro" @@ -7387,7 +7355,7 @@ msgstr "GIF de amor" msgid "Make adjustments to email settings for your account" msgstr "Ajusta la configuraciรณn de correo electrรณnico de tu cuenta" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Haz uno para mi" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "Marcar todo como leรญdo" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Marcar como leรญdo" msgid "Marked all as read" msgstr "Se ha marcado todo como leรญdo" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "En otro momento" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimedia" @@ -7475,7 +7447,7 @@ msgstr "Contenido multimedia almacenado en otro dispositivo" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Medios que pueden ser perturbadores o inapropiados para algunos pรบblicos." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Miembro eliminado del chat de grupo." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "usuarios mencionados" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menciones" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mensaje eliminado" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Error al enviar el mensaje." @@ -7563,15 +7535,15 @@ msgstr "El mensaje es demasiado largo ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH}) msgid "Message options" msgstr "Opciones del mensaje" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mensajes" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Los mensajes de esta persona estรกn ocultos mientras te tenga bloqueado." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Los mensajes de esta persona estรกn ocultos mientras la tengas bloqueada." @@ -7592,7 +7564,7 @@ msgstr "Engaรฑoso" msgid "Missing media" msgstr "Contenido multimedia faltante" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderaciรณn" @@ -7636,7 +7608,7 @@ msgstr "Lista de moderaciรณn actualizada" msgid "Moderation lists" msgstr "Listas de moderaciรณn" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de moderaciรณn" @@ -7645,7 +7617,7 @@ msgstr "Listas de moderaciรณn" msgid "moderation settings" msgstr "ajustes de moderaciรณn" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Estados de moderaciรณn" @@ -7786,7 +7758,7 @@ msgstr "Silenciado" msgid "Muted accounts" msgstr "Cuentas silenciadas" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cuentas silenciadas" @@ -7867,7 +7839,6 @@ msgstr "ยฟNecesitas denunciar una violaciรณn de derechos de autor, una solicitud msgid "Nevermind, create a handle for me" msgstr "Da igual, crea un nombre de usuario por mรญ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nuevo" @@ -7893,11 +7864,11 @@ msgstr "{postsCount, plural, one {nueva publicaciรณn} other {nuevas publicacione #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nuevo chat" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Nueva caracterรญstica" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nuevos seguidores" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nuevo chat de grupo" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nuevo chat de grupo" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nuevo chat de grupo con:" @@ -7966,13 +7937,13 @@ msgstr "Nueva lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Nueva contraseรฑa" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nueva publicaciรณn" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Respuestas nuevas primero" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Noticias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Imagen nueva" msgid "Night" msgstr "Noche" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Sin anuncios, sin rastreo invasivo, sin trampas de interacciรณn. Bluesky respeta tu tiempo y atenciรณn." @@ -8065,6 +8036,11 @@ msgstr "Sin anuncios, sin rastreo invasivo, sin trampas de interacciรณn. Bluesky msgid "No app passwords yet" msgstr "Aรบn no hay contraseรฑas de app" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "Sin caducidad establecida" msgid "No feeds found. Try searching for something else." msgstr "No se encontraron feeds. Intenta buscar algo mรกs." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Aรบn no hay seguidores" @@ -8116,9 +8092,15 @@ msgstr "No hay GIF para mostrar ahora mismo. Intรฉntalo de nuevo en un momento." msgid "No image" msgstr "Sin imagen" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Todavรญa no tiene \"me gusta\"" @@ -8135,7 +8117,12 @@ msgstr "Sin listas" msgid "No longer following {0}" msgstr "Ya no sigues a {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Aรบn no hay contenido multimedia" @@ -8143,7 +8130,7 @@ msgstr "Aรบn no hay contenido multimedia" msgid "No messages yet" msgstr "No hay mensajes aรบn" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Basta de algoritmos llenos de basura para el doomscrolling. Encuentra feeds que funcionen para ti, no contra ti." @@ -8180,16 +8167,21 @@ msgstr "Nadie, excepto el autor, puede citar esta publicaciรณn." msgid "No one can send messages" msgstr "Nadie puede enviar mensajes" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "No hay publicaciones aquรญ" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Aรบn no hay publicaciones" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "No hay citas aรบn" @@ -8198,11 +8190,7 @@ msgstr "No hay citas aรบn" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Aรบn no hay GIF recientes. Elige uno para verlo aquรญ." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Aรบn no hay respuestas" @@ -8217,13 +8205,13 @@ msgstr "Sin resultado" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sin resultados" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "No hay resultados para \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "No se encontraron resultados" msgid "No results found for \"{query}\"" msgstr "No se han encontrado resultados para \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "No se encontraron resultados para \"<0>{query}\"." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "No hay resultados." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Aรบn no hay paquetes de inicio" @@ -8265,7 +8253,7 @@ msgstr "No gracias" msgid "No translation received from your device." msgstr "No se recibiรณ ninguna traducciรณn de tu dispositivo." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Aรบn no hay publicaciones con video" @@ -8278,7 +8266,7 @@ msgstr "Nadie" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nadie ha dado \"me gusta\" a esto todavรญa. ยกQuizรกs deberรญas ser el primero!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Nadie ha citado esto todavรญa. ยกQuizรกs deberรญas ser el primero!" @@ -8298,6 +8286,10 @@ msgstr "Imรกgenes รญntimas no consentidas" msgid "Non-sexual Nudity" msgstr "Desnudez no sexual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "No disponible en esta plataforma." msgid "Not followed by anyone youโ€™re following" msgstr "No lo sigue nadie a quien estรฉs siguiendo" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "No encontrado" @@ -8333,7 +8325,7 @@ msgstr "Nota sobre compartir" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky es una red abierta y pรบblica. Esta configuraciรณn solo limita la visibilidad de tu contenido en la aplicaciรณn y el sitio web de Bluesky. Es posible que otras aplicaciones y sitios web no la respeten y muestren tu contenido a los usuarios que hayan cerrado sesiรณn." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Nota: Esta publicaciรณn solo es visible para los usuarios que han iniciado sesiรณn." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Aรบn no se ha guardado nada" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Ajustes de notificaciones" @@ -8353,11 +8345,12 @@ msgstr "Ajustes de notificaciones" msgid "Notification sounds" msgstr "Sonidos de notificaciรณn" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "ยกQuรฉ problema!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "Aceptar" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Estรก bien" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Reiniciar introducciรณn" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Uno de los destinatarios seleccionados no permite chats de grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Uno de los destinatarios seleccionados te ha bloqueado y no se le puede enviar mensajes." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Falta el texto alternativo en uno o mรกs GIF." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Falta el texto alternativo en una o varias imรกgenes." @@ -8454,11 +8449,11 @@ msgstr "Uno o mรกs de los archivos seleccionados no son compatibles." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "Uno o mรกs de los archivos seleccionados son demasiado grandes. El tamaรฑo mรกximo es de {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Una o mรกs publicaciones son demasiado largas para guardarse como borrador. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {El nรบmero mรกximo de caracteres es #.} other {El nรบmero mรกximo de caracteres es #.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Falta el texto alternativo en uno o mรกs videos." @@ -8471,7 +8466,7 @@ msgstr "Solo {0} puede responder." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Solo se aรฑadieron {0} de {1} {2, plural, one {imagen} other {imรกgenes}}; el lรญmite es {MAX_GALLERY_IMAGES}" @@ -8507,6 +8502,10 @@ msgstr "Solo las personas que sigue {0} pueden unirse." msgid "Only people the chat owner follows can join" msgstr "Solo las personas que sigue el propietario del chat pueden unirse" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Solo se admiten archivos WebVTT (.vtt)" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ups, este perfil no existe. Prueba escaneando otro." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "ยกUy!" @@ -8544,7 +8543,7 @@ msgstr "ยกUy!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Abrir el creador de avatares" @@ -8570,21 +8569,22 @@ msgstr "Abrir las opciones de conversaciรณn" msgid "Open draft" msgstr "Abrir borrador" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Abrir el menรบ lateral" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Abrir el selector de emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Abrir la pantalla de informaciรณn del feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Abrir el menรบ de opciones del feed" @@ -8627,7 +8627,7 @@ msgstr "Abrir pรกgina de depuraciรณn de moderaciรณn" msgid "Open muted words and tags settings" msgstr "Abrir ajustes de palabras y etiquetas silenciadas" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Abrir" @@ -8699,7 +8699,7 @@ msgstr "Abre detalles adicionales para una entrada de depuraciรณn." msgid "Opens alt text dialog" msgstr "Abre el diรกlogo de texto alternativo" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Abrir cรกmara del dispositivo" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Abre el flujo para crear una nueva cuenta de Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Abre el flujo para iniciar sesiรณn en tu cuenta existente de Bluesky" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "ยกContraseรฑa actualizada!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausar" @@ -8925,12 +8925,12 @@ msgstr "Pausar" msgid "Pause GIF" msgstr "Pausar GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausar video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personas" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Las personas que sigue {ownerName} pueden solicitar unirse" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personas seguidas por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personas siguiendo a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Personas a las que sigo" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Las personas que sigo pueden solicitar unirse" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Personas a las que sigues" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Imรกgenes destinadas a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Anclar el feed" @@ -9034,7 +9034,7 @@ msgstr "Anclar el feed" msgid "Pin to home" msgstr "Anclar en inicio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Anclar en inicio" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Anclado" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} anclados en inicio" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Tus feeds anclados" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Reproducir" @@ -9076,8 +9076,8 @@ msgstr "Reproducir {0}" msgid "Play GIF" msgstr "Reproducir GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reproducir video" @@ -9109,11 +9109,11 @@ msgstr "Aรฑade las etiquetas de advertencia sobre el contenido multimedia que va msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "Por favor, revisa la bandeja de entrada de tu correo electrรณnico para obtener mรกs instrucciones. Puede tardar un minuto o dos en llegar." -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Por favor, elige tu identificador." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Por favor, elige tu contraseรฑa." @@ -9122,7 +9122,7 @@ msgstr "Por favor, elige tu contraseรฑa." 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 "Haz clic en el enlace en el correo electrรณnico que te acabamos de enviar para verificar tu nuevo correo electrรณnico. Este es un paso importante para permitir que continรบes disfrutando de todas las caracterรญsticas de Bluesky." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Por favor, completa la verificaciรณn CAPTCHA." @@ -9179,7 +9179,7 @@ msgstr "Ingresa el cรณdigo que recibiste y la nueva contraseรฑa que deseas utili msgid "Please enter the security code we sent to your previous email address." msgstr "Ingresa el cรณdigo de seguridad que te enviamos a tu direcciรณn de correo electrรณnico anterior." -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Introduce tu correo electrรณnico." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Escribe tu mensaje abajo:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Polรญtica" @@ -9269,7 +9269,7 @@ msgstr "Polรญtica" msgid "Porn" msgstr "Pornografรญa" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Publicar" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Publica una foto" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Publica un video" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicar Todo" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Publicar de todas formas" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Publicaciรณn bloqueada" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Publicaciรณn por {0}" @@ -9340,7 +9340,7 @@ msgstr "Publicaciรณn ocultada por ti" msgid "Post interaction settings" msgstr "Ajustes de interacciรณn de la publicaciรณn" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Ajustes de interacciรณn de la publicaciรณn" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Publicaciรณn fijado" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Publicaciรณn guardada" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Publicaciรณn desfijado" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Publicaciones" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Los posts pueden ser silenciados segรบn su texto, sus etiquetas o ambos. msgid "Posts hidden" msgstr "Publicaciones ocultas" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Enlace potencialmente engaรฑoso" @@ -9449,20 +9451,21 @@ msgstr "Privacidad" msgid "Privacy and security" msgstr "Privacidad y seguridad" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidad y Seguridad" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Ajustes de privacidad y seguridad" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Polรญtica de privacidad" msgid "Privacy violation of a minor" msgstr "Violaciรณn de la privacidad de un menor" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Procesando GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Procesando video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Listas pรบblicas y compartibles para bloquear o silenciar a usuarios en grupo." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publicar la publicaciรณn" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publicar las publicaciones" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publicar las respuestas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publicar la respuesta" @@ -9599,12 +9602,12 @@ msgstr "Citas deshabilitadas" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citas" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citas de esta publicaciรณn" @@ -9647,7 +9650,7 @@ msgstr "Reactivar tu cuenta" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Leer {0, plural, one {# respuesta mรกs} other {# respuestas mรกs}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Leer la publicaciรณn del blog (en inglรฉs)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Ver menos" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Ver mรกs" @@ -9687,11 +9690,11 @@ msgstr "Leer las Polรญticas de Privacidad de Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Leer los Tรฉrminos y Condiciones de Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Conversaciones reales." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Personas reales." @@ -9721,10 +9724,6 @@ msgstr "Bรบsquedas recientes" msgid "Recently used" msgstr "Usados recientemente" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomendaciones" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconectar" @@ -9748,7 +9747,7 @@ msgstr "Rechazar la solicitud de chat" msgid "Reject join request" msgstr "Rechazar solicitud para unirse" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Recargar conversaciones" @@ -9766,7 +9765,7 @@ msgstr "Recargar conversaciones" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Eliminar" @@ -9792,8 +9791,8 @@ msgstr "ยฟEliminar a {displayName}?" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Eliminar la cuenta" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "Eliminar del chat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Eliminar de mis feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "ยฟEliminar del acceso rรกpido?" @@ -9862,7 +9861,7 @@ msgstr "ยฟEliminar del acceso rรกpido?" msgid "Remove from saved feeds" msgstr "Eliminar de los feeds guardados" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Eliminar de publicaciones guardadas" @@ -9880,8 +9879,8 @@ msgstr "Eliminar la imagen" msgid "Remove live status" msgstr "Eliminar el estado \"En directo\"" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Eliminado de la lista" msgid "Removed from saved feeds" msgstr "Eliminado de mis feeds guardados" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Eliminada de publicaciones guardadas" @@ -9952,7 +9951,7 @@ msgstr "Eliminada de publicaciones guardadas" msgid "Removed from starter pack" msgstr "Eliminado del paquete de inicio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Te respondiรณ" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respuestas" @@ -10037,7 +10037,7 @@ msgstr "Las respuestas en esta publicaciรณn estan deshabilitadas." msgid "Reply" msgstr "Responder" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -10098,8 +10098,8 @@ msgstr "Denunciar conversaciรณn" msgid "Report dialog" msgstr "Ventana de denuncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Denunciar feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Republicado por ti" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Republicaciones" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Republicaciones de esta publicaciรณn" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Republicaciones de tus republicaciones" @@ -10253,7 +10253,7 @@ msgstr "Solicitado" msgid "Requests" msgstr "Solicitudes" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Reintenta la รบltima acciรณn, que presentรณ un error" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Volver a la pรกgina de inicio" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Volver a la pรกgina anterior" @@ -10446,27 +10446,27 @@ msgstr "Guardar fecha de nacimiento" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Guardar cambios" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "ยฟGuardar cambios?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Guardar borrador" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "ยฟGuardar borrador?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Guardar cรณdigo QR" msgid "Save these options for next time" msgstr "Guardar estas opciones para la prรณxima vez" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Guardar en mis feeds" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feeds guardados" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Publicaciones guardadas" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Guardado en tus feeds" @@ -10520,8 +10520,8 @@ msgstr "Guardado en tus feeds" msgid "Say hello!" msgstr "ยกDi hola!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Saluda a alguien" @@ -10535,7 +10535,7 @@ msgstr "Escanear" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Escanear cรณdigo QR" @@ -10543,15 +10543,15 @@ msgstr "Escanear cรณdigo QR" msgid "Science" msgstr "Ciencia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Desplazar a la izquierda" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Desplazar a la derecha" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Desplazar hacia arriba" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Buscar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Buscar en las publicaciones de @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Buscar feeds que quieras sugerir a otros." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Buscar mรกs cuentas" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Buscar mรกs feeds" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Buscar GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "La bรบsqueda no estรก disponible actualmente cuando has cerrado sesiรณn" @@ -10707,17 +10707,22 @@ msgstr "Ver las publicaciones sobre #{tag} de esta cuenta" msgid "See jobs at Bluesky" msgstr "Ver empleos en Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Ver mรกs" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Ver mรกs perfiles sugeridos" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Ver cuentas sugeridas" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Control deslizante. Usa las flechas del teclado para avanzar o retroceder y la barra espaciadora para reproducir/pausa" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Seleccionar la categorรญa \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Elegir {0}" msgid "Select {langName}" msgstr "Elegir {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecciona un color" @@ -10764,11 +10769,11 @@ msgstr "Seleccionar cuenta" msgid "Select an app language" msgstr "Elegir un idioma para la aplicaciรณn" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selecciona un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selecciona un emoji" @@ -10780,12 +10785,13 @@ msgstr "Elegir una opciรณn" msgid "Select app language" msgstr "Elegir el idioma de la aplicaciรณn" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Seleccionar archivo de subtรญtulos (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Seleccionar chat \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Seleccionar GIF" msgid "Select GIF \"{0}\"" msgstr "Seleccionar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Seleccionar miembros del chat de grupo" @@ -10864,7 +10870,7 @@ msgstr "Elegir el idioma principal" msgid "Select telephone code" msgstr "Seleccionar cรณdigo telefรณnico" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Seleccionar el emoji {emojiName} como tu avatar" @@ -10945,7 +10951,8 @@ msgstr "Enviar mensaje" msgid "Send post to {name}" msgstr "Enviar la publicaciรณn a {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Enviar publicaciรณn a..." @@ -10963,12 +10970,12 @@ msgstr "Envรญa el mensaje desde tu telรฉfono" msgid "Send verification email" msgstr "Enviar correo de verificaciรณn" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Enviar por mensaje directo" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Establece el correo electrรณnico para restablecer la contraseรฑa" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ajustes" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Configuraciรณn para la actividad de otros" @@ -11036,49 +11043,49 @@ msgstr "Configuraciรณn para la actividad de otros" msgid "Settings for allowing others to be notified of your posts" msgstr "Permitir que los demรกs reciban notificaciones de tus publicaciones" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Configuraciรณn para notificaciones de me gusta" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Configuraciรณn para notificaciones de menciones" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Configuraciรณn para notificaciones de nuevos seguidores" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Configuraciรณn para notificaciones de todo lo demรกs" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Configuraciรณn para notificaciones de me gusta de tus republicaciones" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Configuraciรณn para notificaciones de republicaciones de tus republicaciones" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Configuraciรณn para notificaciones de citas" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Configuraciรณn para notificaciones de respuestas" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Configuraciรณn para notificaciones de republicaciones" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Compartir de todas maneras" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Compartir el DID del autor" @@ -11127,7 +11134,7 @@ msgstr "Compartir el DID del autor" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Ventana para compartir enlace" msgid "Share my profile" msgstr "Compartir mi perfil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Compartir el URI at:// de la publicaciรณn" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Compartir cรณdigo QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Compartir este feed" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Compartir este paquete de inicio" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparte este paquete de inicio y ayuda a las personas a unirse a tu comunidad en Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Comparte tus contactos para encontrar amigos" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Probador de Preferencias Compartidas" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Ver" msgid "Show alt text" msgstr "Ver texto alternativo" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Ver de todas maneras" @@ -11274,9 +11281,9 @@ msgstr "Mostrar lista de todas maneras" msgid "Show lists of users to select from" msgstr "Mostrar listas de usuarios para seleccionar" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Ver mรกs" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Mostrar advertencia y filtrar de los feeds" msgid "Show when youโ€™re live" msgstr "Mostrar cuando estรฉs en directo" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Muestra informaciรณn sobre la fecha de creaciรณn de esta publicaciรณn" @@ -11341,15 +11348,15 @@ msgstr "Muestra informaciรณn sobre la fecha de creaciรณn de esta publicaciรณn" msgid "Shows other accounts you can switch to" msgstr "Muestra otras cuentas a las que puedes cambiar" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Muestra el contenido" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Muestra el contenido" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "ยฟCerrar sesiรณn?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Se requiere iniciar sesiรณn" @@ -11469,7 +11476,7 @@ msgstr "Saltar" msgid "Skip contact sharing and continue to the app" msgstr "Omitir la comparticiรณn de contactos y continuar a la aplicaciรณn" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "ยฟOmitir publicaciones vacรญas?" @@ -11487,7 +11494,7 @@ msgstr "Saltar al siguiente paso" msgid "slide" msgstr "diapositiva" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Mรกs pequeรฑo" @@ -11499,7 +11506,7 @@ msgstr "Posponer el recordatorio" msgid "So many thoughts, you should post one" msgstr "Tantas ideas, deberรญas publicar una" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Red social que tรบ controlas." @@ -11520,7 +11527,7 @@ msgstr "Algunos servicios de moderaciรณn de tu lista ya no estรกn disponibles." msgid "Some of your verifications are invalid." msgstr "Algunas de tus verificaciones no son vรกlidas." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Otros feeds que podrรญan gustarte" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Alguien saliรณ del grupo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Alguien reaccionรณ con {0}" @@ -11554,7 +11561,7 @@ msgstr "Alguien reaccionรณ con {0}" msgid "Someone reacted {0} to {target}" msgstr "Alguien reaccionรณ con {0} a {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Se produjo un error. Por favor, intรฉntalo de nuevo" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Algo saliรณ mal. Por favor, intรฉntalo de nuevo en un momento." msgid "Something went wrong. Please try again." msgstr "Se produjo un error. Intรฉntalo de nuevo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "ยฟAlgo va mal? Avรญsanos." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam u otro comportamiento no autรฉntico o engaรฑo" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Deportes" @@ -11668,7 +11675,7 @@ msgstr "Inicia una conversaciรณn y aparecerรก aquรญ." msgid "Start a group chat" msgstr "Iniciar un chat de grupo" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Iniciar un nuevo chat" @@ -11682,17 +11689,17 @@ msgstr "Empieza a aรฑadir personas" msgid "Start adding people!" msgstr "ยกEmpieza a aรฑadir personas!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Iniciar chat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Iniciar chat con {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paquete de inicio" @@ -11715,12 +11722,16 @@ msgstr "Paquete de inicio creado por ti" msgid "Starter pack is invalid" msgstr "El paquete de inicio es invรกlido" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Paquetes de inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Los paquetes de inicio te permiten compartir fรกcilmente tus feeds y personas favoritas con tus amigos." @@ -11728,7 +11739,7 @@ msgstr "Los paquetes de inicio te permiten compartir fรกcilmente tus feeds y per msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Los paquetes de inicio te permiten compartir tus feeds y personas favoritas con tus amigos." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Los paquetes de inicio te permiten compartir tus feeds y personas favoritas con tus amigos." @@ -11742,7 +11753,7 @@ msgstr "Pรกgina de estado" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Paso {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "Almacenamiento limpio, necesitas reiniciar la aplicaciรณn ahora." msgid "Stored as part of a secure code for matching with others" msgstr "Almacenado como parte de un cรณdigo seguro para hacer coincidencias con otros" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Libro de cuentos" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Suscrรญbete a {publicationTitle} en {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Suscrรญbete a @{0} para usar estas etiquetas:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Verificado correctamente" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Sugerido" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Cuentas sugeridas" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Sugerido para ti" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Atardecer" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "ยกLa compatibilidad con esta funciรณn en tu paรญs aรบn no estรก habilitada! Vuelve a comprobarlo mรกs tarde." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Las cuentas suspendidas no pueden participar en un chat de grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Las cuentas suspendidas no pueden participar en el chat." @@ -11921,8 +11934,8 @@ msgstr "Cambiar a {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Lleva la conversaciรณn a un lugar privado." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Toca abajo para permitir que Bluesky acceda a tu ubicaciรณn GPS. Luego usaremos esos datos para determinar con mayor precisiรณn el contenido y las funciones disponibles en tu regiรณn." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Toca para mรกs detalles" @@ -11976,7 +11989,7 @@ msgstr "Toca para cerrar el menรบ contextual" msgid "Tap to copy this invite link" msgstr "Toca para copiar este enlace de invitaciรณn" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Toca para descartar" @@ -12003,7 +12016,7 @@ msgstr "Toca para eliminar tu reacciรณn {0}" msgid "Tap to request access to join this group chat" msgstr "Toca para solicitar acceso para unirte a este chat de grupo" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Toca para reintentar" @@ -12016,7 +12029,7 @@ msgstr "Toca para mostrar las reacciones {0}" msgid "Tap to show all reactions" msgstr "Toca para mostrar todas las reacciones" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Toca para ver las reacciones" @@ -12032,7 +12045,7 @@ msgstr "ยกTarea completada: 10 cuentas seguidas!" msgid "Task complete - 10 likes!" msgstr "ยกTarea completada: 10 me gusta!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Enseรฑa a nuestro algoritmo lo que te gusta" @@ -12060,7 +12073,7 @@ msgstr "Condiciones" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "No se pudo encontrar ese paquete de inicio." msgid "That username is already taken" msgstr "Este nombre de usuario ya estรก en uso" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "ยกEso es todo, amigos!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "ยกSe acabรณ!" @@ -12216,7 +12229,7 @@ msgstr "Parece que hay problemas en el servidor. Vuelve a intentarlo en breve." msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "El paquete de inicio que intentas ver es invรกlido. Puedes eliminar este paquete de inicio en su lugar." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Asunto del menรบ contextual" @@ -12238,7 +12251,7 @@ msgstr "El cรณdigo de verificaciรณn que has proporcionado es invรกlido. Por favo msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "El proveedor de verificaciรณn no pudo enviar un cรณdigo a tu nรบmero de telรฉfono. Verifica tu nรบmero e intรฉntalo de nuevo." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "Hubo un problema al cargar los GIF. Verifica tu conexiรณn e intรฉntalo d msgid "There was a problem with your internet connection, please try again" msgstr "Hubo un problema con tu conexiรณn a internet, intรฉntalo de nuevo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Hubo un problema con tu conexiรณn a internet, intรฉntalo de nuevo" msgid "There was an issue contacting the server" msgstr "Hubo un problema al contactar con el servidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Hubo un problema al contactar con el servidor. Por favor, verifica tu conexiรณn a internet e intรฉntalo de nuevo." @@ -12283,8 +12296,8 @@ msgstr "Hubo un problema al contactar con el servidor. Por favor, verifica tu co msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hubo un problema al obtener las notificaciones. Toca aquรญ para intentar de nuevo." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hubo un problema al obtener las publicaciones. Toca aquรญ para intentar de nuevo." @@ -12309,7 +12322,7 @@ msgstr "Hubo un problema al obtener tu informaciรณn de servicio" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Hubo un problema al eliminar este feed. Por favor, verifica tu conexiรณn a internet e intรฉntalo de nuevo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Estos ajustes solo aplican para el feed Following." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Es el propietario de este chat" @@ -12392,7 +12405,7 @@ msgstr "Es el propietario de este chat" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "No podrรก volver a unirse a menos que lo invites de nuevo." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Esta {screenDescription} ha sido marcada:" @@ -12408,7 +12421,7 @@ msgstr "Esta cuenta ha sido marcada como automatizada por su propietario." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Esta cuenta tiene uno o mรกs intentos de verificaciรณn, pero no actualmente no estรก verificada." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Esta cuenta ha solicitado que los usuarios inicien sesiรณn para ver su perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "ยกEste feed estรก vacรญo! Es posible que necesites seguir a mรกs usuarios o ajustar la configuraciรณn de idioma." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Este feed estรก vacรญo." @@ -12554,7 +12567,7 @@ msgstr "Este grupo estรก bloqueado por una acciรณn de moderaciรณn sobre el propi msgid "This handle is reserved. Please try a different one." msgstr "Este nombre de usuario estรก reservado. Por favor intenta con uno diferente." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Esta imagen no se pudo usar. Prueba con un formato diferente, como .jpg o .png." @@ -12596,7 +12609,7 @@ msgstr "Esta etiqueta fue aplicada por ti." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este etiquetador no ha declarado quรฉ etiquetas publica y puede que no estรฉ activo." @@ -12621,13 +12634,13 @@ msgstr "Esta lista estรก vacรญa" msgid "This message is hidden" msgstr "Este mensaje estรก oculto" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Este mensaje estรก oculto porque este usuario te tiene bloqueado." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Este mensaje estรก oculto porque tienes bloqueado a este usuario." @@ -12641,7 +12654,7 @@ msgstr "Esta persona te tiene bloqueado" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta publicaciรณn declara haber sido creada en <0>{0}, pero fue vista por primera vez por Bluesky en <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Esta publicaciรณn declara haber sido creada en <0>{0}, pero fue vist msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Esta publicaciรณn tiene un tipo de ajustes de respuesta desconocido. Es posible que tu app no estรฉ actualizada." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Esta publicaciรณn solo es visible para los usuarios que han iniciado sesiรณn." @@ -12661,7 +12674,7 @@ msgstr "Esta publicaciรณn fue eliminada por su autor" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta publicaciรณn serรก ocultada de los feeds y hilos. Esto no se puede deshacer." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "El autor de esta publicaciรณn ha deshabilitado las citas." @@ -12698,11 +12711,12 @@ msgstr "Esto solo deberรญa llevar unos minutos." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Este usuario no tiene un nombre para mostrar, por lo tanto no puede ser verificado." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Este usuario no tiene seguidores." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Este usuario te ha bloqueado y no se le puede enviar mensajes." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Este usuario te ha bloqueado. No puedes ver su contenido." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Este usuario ha desactivado el chat y no se le puede enviar mensajes." @@ -12733,11 +12748,11 @@ msgstr "Este usuario estรก incluido en la lista <0>{0} que has silenciado." msgid "This user is new here. Press for more info about when they joined." msgstr "Este usuario es nuevo aquรญ. Presiona para mรกs informaciรณn sobre cuรกndo se uniรณ." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Este usuario no sigue a nadie." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Este video no se puede reproducir en tu dispositivo. Es posible que a tu navegador o sistema le falten los cรณdecs de video necesarios (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Esto eliminarรก de forma irreversible tu cuenta de Bluesky <0>{currentHandle} y todos los datos asociados. Ten en cuenta que esto afectarรก a cualquier otro servicio de <1>AT Protocol que uses con esta cuenta." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Esto eliminarรก @{0} de la lista de acceso rรกpido." @@ -12786,7 +12801,7 @@ msgstr "Preferencias de hilos" msgid "Threaded" msgstr "En hilos" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferencias de hilos" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Demasiados contactos: has excedido el nรบmero de contactos que puedes importar para encontrar a tus amigos" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Destacados" @@ -12858,7 +12873,7 @@ msgstr "Destacados" msgid "Top replies first" msgstr "Respuestas destacadas primero" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tema" @@ -12893,7 +12908,9 @@ msgstr "La traducciรณn al mismo idioma no estรก disponible en tu dispositivo." msgid "Tree view" msgstr "Vista en รกrbol" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendencias" @@ -12902,13 +12919,15 @@ msgstr "Tendencias" msgid "Trending GIFs" msgstr "GIF en tendencia" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opciones de tendencias" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Videos populares" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Trolleo" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "La confianza se construye a partir de las relaciones, las comunidades y los contextos compartidos. Por ello, tambiรฉn nombramos a <0>verificadores de confianza: organizaciones que pueden verificar cuentas directamente." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "No se pueden obtener las solicitudes para unirse." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "No se pudo encontrar a un destinatario seleccionado." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "No se pudo encontrar al destinatario seleccionado." @@ -13024,12 +13045,12 @@ msgstr "No disponible" msgid "Unavailable feed information" msgstr "Informaciรณn del feed no disponible" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "ยฟDesbloquear la cuenta?" msgid "Unblock list" msgstr "Desbloquear la lista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Dejar de seguir a {0}" msgid "Unfollow account" msgstr "Dejar de seguir esta cuenta" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Deja de seguir al usuario" @@ -13132,7 +13153,7 @@ msgstr "Contenido para adultos sin etiquetar" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Contenido para adultos sin etiquetar, abusivo o no consentido" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "No me gusta" @@ -13192,7 +13213,7 @@ msgstr "Dejar de silenciar este chat de grupo" msgid "Unmute thread" msgstr "Dejar de silenciar el hilo" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Activar el sonido del video" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Desfijar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desfijar feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Desfijar de inicio" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Desfijar lista de moderaciรณn" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} desfijado de inicio" @@ -13258,11 +13279,11 @@ msgstr "Darse de baja de este etiquetador" msgid "Unsubscribed from list" msgstr "Dado de baja de la lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Contenido del portapapeles no admitido" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Tipo de video no aceptado: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Actualizar la visibilidad de la respuesta fallรณ" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Sube una foto en su lugar" @@ -13355,7 +13376,7 @@ msgstr "Subir desde tus archivos" msgid "Upload from Library" msgstr "Subir desde la biblioteca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Subiendo GIF..." @@ -13369,7 +13390,7 @@ msgstr "Subiendo imรกgenes..." msgid "Uploading link thumbnail..." msgstr "Subiendo miniatura del enlace..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Subiendo video..." @@ -13408,7 +13429,7 @@ msgstr "Utilรญzala para iniciar sesiรณn en la otra app junto a tu nombre de usua msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Usa la direcciรณn de correo electrรณnico de tu cuenta, u otra direcciรณn real que controles, en caso de que KWS o Bluesky necesiten contactarte." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "usuario" @@ -13510,7 +13531,7 @@ msgstr "Error al verificar, intรฉntalo de nuevo." msgid "Verification settings" msgstr "Ajustes de verificaciรณn" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Ajustes de verificaciรณn" @@ -13618,34 +13639,34 @@ msgstr "Video" msgid "Video failed to process" msgstr "El video no se pudo procesar" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Feed de videos" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Video de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video de {0}. Toca para reproducir o pausar el video" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videojuegos" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video en pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Reproduciendo video" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video no encontrado." @@ -13653,7 +13674,7 @@ msgstr "Video no encontrado." msgid "Video settings" msgstr "Configuraciรณn del video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video subido" @@ -13662,17 +13683,17 @@ msgstr "Video subido" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Los videos deben durar menos de 3 minutos." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Ver" @@ -13691,9 +13712,9 @@ msgstr "Ver el avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Ver el perfil de {0}" @@ -13724,13 +13745,13 @@ msgstr "Ver la entrada del blog para mรกs detalles" msgid "View debug entry" msgstr "Ver entrada de depuraciรณn" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ver detalles" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Ver hilo completo" @@ -13750,18 +13771,18 @@ msgstr "Ver solicitudes entrantes para unirse a este chat de grupo" msgid "View information about these labels" msgstr "Ver informaciรณn sobre estas etiquetas" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Ver mรกs" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Ver mรกs videos populares" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Ver publicaciรณn" @@ -13798,15 +13819,15 @@ msgstr "Ver el enlace de invitaciรณn de este chat de grupo" msgid "View the labeling service provided by @{0}" msgstr "Ver el servicio de etiquetado proporcionado por @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Ver las verificaciones de este usuario" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Ver usuarios a los que les gusta este feed" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Ver el video" @@ -13831,7 +13852,7 @@ msgstr "Ver tus listas de moderaciรณn" msgid "View your muted accounts" msgstr "Ver tus cuentas silenciadas" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Ver tus verificaciones" @@ -13840,7 +13861,7 @@ msgstr "Ver tus verificaciones" msgid "Views full image" msgstr "Muestra la imagen a tamaรฑo completo" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Muestra el video en modo inmersivo" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Estamos teniendo problemas de red, intรฉntalo de nuevo" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Estamos teniendo problemas de red, intรฉntalo de nuevo" @@ -14043,7 +14064,7 @@ msgstr "Estamos teniendo problemas de red, intรฉntalo de nuevo" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Hemos incluido una nueva capa de verificaciรณn en Bluesky: una marca fรกcil de ver." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "ยกEs nuestro placer tenerte aquรญ!" @@ -14064,13 +14085,15 @@ msgstr "Lo sentimos, pero no pudimos resolver esta lista. Si esto persiste, por msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Lo sentimos, pero no pudimos cargar tus palabras silenciadas en este momento. Por favor, intรฉntalo de nuevo." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Lo sentimos, no se pudo completar tu bรบsqueda. Intรฉntalo de nuevo en unos minutos." @@ -14078,7 +14101,7 @@ msgstr "Lo sentimos, no se pudo completar tu bรบsqueda. Intรฉntalo de nuevo en u msgid "We're sorry, you cannot access this screen at this time." msgstr "Lo sentimos, no puedes acceder a esta pantalla en este momento." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "ยกLo sentimos! Se ha eliminado la publicaciรณn a la que estรกs respondiendo." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "ยฟQuรฉ hay de nuevo?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "ยฟQuiรฉn puede verificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "ยกVaya!" @@ -14220,21 +14243,21 @@ msgstr "ยฟQuieres bloquear a este usuario o salir de esta conversaciรณn?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "ยฟQuieres guardarlo como borrador antes de ver tus borradores?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "ยฟQuieres guardarlo como borrador para editarlo mรกs tarde?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Escribe una publicaciรณn" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Escribe una publicaciรณn" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Escribe una respuesta" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Estรกs accediendo a Bluesky desde una regiรณn que legalmente nos exige verificar tu edad antes de permitirte el acceso a la aplicaciรณn." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Tienes bloqueado a {0}" @@ -14342,7 +14365,7 @@ msgstr "Ya no estรกs emitiendo en directo" msgid "You are not allowed to upload videos." msgstr "No tienes permiso para subir videos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Aรบn no sigues a nadie" @@ -14362,7 +14385,7 @@ msgstr "Estรกs verificado. Perderรกs tu estado de verificaciรณn si cambias tu no msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Estรกs verificado. Perderรกs tu estado de verificaciรณn si cambias tu nombre de usuario. <0>Mรกs informaciรณn (en inglรฉs)." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Puedes modificar tus intereses desde los ajustes de \"Contenido y medios\"." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Ahora puedes iniciar sesiรณn con tu nueva contraseรฑa." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Solo puedes aรฑadir hasta {MAX_GALLERY_IMAGES, plural, one {# imagen} other {# imรกgenes}} por publicaciรณn" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Solo puedes guardar borradores de hasta 1000 caracteres." @@ -14439,9 +14462,11 @@ msgstr "Puedes leer el historial del chat, pero no enviar nuevos mensajes." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Puedes seleccionar hasta {MAX_GALLERY_IMAGES, plural, one {# imagen} other {# imรกgenes}} en total." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Puedes cambiar esta opciรณn en Ajustes." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "No puedes aรฑadir mรกs de {EMOJI_REACTION_LIMIT, plural, one {# reacciรณn de emoji} other {# reacciones de emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Aรบn no puedes crear un chat de grupo." @@ -14555,7 +14581,7 @@ msgstr "Has verificado tu direcciรณn de correo electrรณnico correctamente. Puede msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Has alcanzado temporalmente el lรญmite de carga de videos. Intรฉntalo de nuevo mรกs tarde." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Tienes cambios sin guardar en este borrador, ยฟquieres guardarlos?" @@ -14563,7 +14589,7 @@ msgstr "Tienes cambios sin guardar en este borrador, ยฟquieres guardarlos?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Tienes cambios sin guardar. ยฟTe gustarรญa guardarlos antes de ver tus borradores?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "ยกAรบn no has creado un paquete de inicio!" @@ -14614,7 +14640,7 @@ msgstr "No puedes aรฑadir mรกs de {STARTER_PACK_MAX_SIZE, plural, other {{STARTE msgid "You may only add up to 3 feeds" msgstr "Solo puedes aรฑadir hasta 3 feeds" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Debes ser propietario del chat para eliminar a un miembro." @@ -14622,7 +14648,7 @@ msgstr "Debes ser propietario del chat para eliminar a un miembro." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Debes tener al menos 13 aรฑos para usar Bluesky. Lee nuestros <0>Tรฉrminos del servicio para mรกs informaciรณn." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Debes seguir al menos a siete personas mรกs para generar un paquete de inicio." @@ -14639,7 +14665,7 @@ msgstr "Necesitas permitir el acceso a tu biblioteca multimedia." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Necesitas verificar tu direcciรณn de correo electrรณnico antes de activar la autenticaciรณn de doble factor por correo electrรณnico." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Eres el propietario de este chat" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Probablemente quieras reiniciar la aplicaciรณn ahora." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Reaccionaste con {0}" @@ -14667,15 +14693,15 @@ msgstr "Reaccionaste con {0} a {target}" msgid "You recently changed your birthdate" msgstr "Cambiaste tu fecha de nacimiento recientemente" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "No podrรกs volver a unirte a menos que te inviten." msgid "You: {message}" msgstr "Tรบ: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "ยกComenzarรกs a seguir a los usuarios y feeds sugeridos una vez que termines de crear tu cuenta!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "ยกComenzarรกs a seguir a los usuarios sugeridos cuando hayas terminado de crear tu cuenta!" @@ -14791,7 +14817,7 @@ msgstr "Has llegado al final del contenido activo." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ยกHas llegado al fin de tu feed! Encuentra mรกs cuentas para seguir." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Has alcanzado el nรบmero mรกximo de borradores" @@ -14799,7 +14825,7 @@ msgstr "Has alcanzado el nรบmero mรกximo de borradores" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Has alcanzado el nรบmero mรกximo de solicitudes permitidas. Intรฉntalo de nuevo mรกs tarde." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Has alcanzado tu lรญmite diario de carga de videos (demasiados bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Has alcanzado tu lรญmite diario de carga de videos (demasiados videos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Has visto todos los videos que habรญa. ยฟQuรฉ te parece si hacemos una pausa?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Tu cuenta" @@ -14835,11 +14861,11 @@ msgstr "Se ha suspendido tu cuenta" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tu cuenta aรบn no tiene suficiente antigรผedad para subir videos. Intรฉntalo de nuevo mรกs tarde." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Tu cuenta es demasiado nueva" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Tu cuenta debe tener al menos 7 dรญas de antigรผedad para crear un nuevo chat de grupo." @@ -14896,7 +14922,7 @@ msgstr "Tu correo electrรณnico" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Tu correo electrรณnico parece no ser vรกlido." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Se han actualizado tus intereses." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Tus intereses nos ayudan a encontrar aquello que te gusta." @@ -14967,11 +14993,11 @@ msgstr "ยกTu contraseรฑa ha sido cambiada con รฉxito! Por favor, utiliza tu nuev msgid "Your password must be at least 8 characters long." msgstr "La contraseรฑa debe tener al menos 8 caracteres." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Tu publicaciรณn fue enviada" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Tus publicaciones fueron enviadas" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Tu idioma preferido" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Tu foto de perfil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Tu foto de perfil rodeada de cรญrculos concรฉntricos con fotos de perfil de otros usuarios" @@ -14992,7 +15018,7 @@ msgstr "Tu foto de perfil rodeada de cรญrculos concรฉntricos con fotos de perfil msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Tu perfil, publicaciones, feeds y listas dejarรกn de ser visibles para otros usuarios de Bluesky. Puedes reactivar tu cuenta en cualquier momento iniciando sesiรณn." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Tu respuesta fue enviada" @@ -15005,7 +15031,7 @@ msgstr "Se enviarรก tu denuncia a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Los intereses que selecciones nos ayudarรกn a ofrecerte contenido interesante para ti." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Tu hilo tiene publicaciones vacรญas que se omitirรกn. Las publicaciones restantes se publicarรกn como un hilo." diff --git a/src/locale/locales/eu/messages.po b/src/locale/locales/eu/messages.po index a4ceb78569..b110919771 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Basque\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" kategoria (aktiboa)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(blokeatutako mezua ezkutatuta)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(kapsulatutako edukia dauka)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(ezabatutako mezua)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(txat gonbidapen-esteka baliogabea)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(zu sartu aurretik bidalitako mezua)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {ordu #} other {# ordu}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {etiketa # aplikatu zaio zure postari} other {# etiketa aplikatu zaizkio zure postari}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {etiketa # aplikatuta} other {# etiketa aplikatuta}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {gogoko #} other {# gogoko}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {kide #} other {# kide}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {sartzeko eskaera berri #} other {# sartzeko eskaera ber #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {pertsona #-ek} other {# pertsonek}} erreakzionatu du/dute โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Kontua)" @@ -251,36 +252,13 @@ msgstr "{0} txatera gehitu da" msgid "{0} and {1} added to chat" msgstr "{0} eta {1} txatera gehitu dira" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0}-k eta {1}-k gogoko dute hau" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0}-k eta {others, plural, one {beste {1}-k} other {beste {2}-k}} gogoko dute hau" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0}-k eta {othersLabel}-k gogoko dute hau" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} jarraitzen" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0}-k blokeatzen zaitu" @@ -324,14 +302,6 @@ msgstr "{0} alde egin du" msgid "{0} left the group" msgstr "{0}-k taldea utzi du" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0}-k gogoko du hau" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "50etik {0}" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} erreakzioantu du {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} eta {memberCount, plural, one {beste #} other {beste #}} txatera gehitu dira" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}-k, {1}-k eta {others, plural, one {beste {2}-k} other {beste {3}-k}} gogoko dute hau" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}-k,{1}-k eta {othersLabel}-k gogoko dute hau" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName}-k egiaztatu zaitu" msgid "{following} following" msgstr "{following} jarraitzen" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, one {post} other {post}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} ezin da gehitu" @@ -698,7 +660,7 @@ msgstr "{handle} ezin da gehitu" msgid "{handle} can't be messaged" msgstr "{handle} ezin zaio mezua bidali" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "{handle} ezin zaio mezua bidali" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {Elementu bat} other {# elementu}} iraku msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {Kontaktu # aurkitua} other {# kontaktu aurkituta}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {beste {0}} other {beste {1}}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} Bluesky-n sartu zen orain dela {timeAgoString}" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} Bluesky-n sartu zen abio multzo bat erabiliz orain dela {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {karaktere # geratzen da} other {# karaktere geratzen dira}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName}-k erantzun du" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName}-k {originalName}-ri erantzun dio" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName}-k erantzun dizu" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {eskaera #} other {# eskaera}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ eskaera" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "Duela {type} ordu" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} egiaztatzaile fidagarria da" @@ -842,13 +795,13 @@ msgstr "{userName}-ren egiaztapenak" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {jarraitzen} other {jarraitzen}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {aipamen} other {aipamen}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {berpost} other {berpost}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {gordeta} other {gordeta}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {gustoko} other {gustoko}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2>-k gehitu zaitu" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Hasi saioa<1> edo <2>sortu kontu bat<3> <4>Bluesky-n gertatzen den guztia, berriak, kirolak, politika eta abar bilatzeko." @@ -971,7 +924,7 @@ msgstr "30 egun" msgid "7 days" msgstr "7 egun" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Bluesky-n aurki ditzakezun feed ezagunen bilduma bat, besteak beste, News, Booksky, Game Dev, Blacksky eta Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Sareko errore bat gertatu da. Mesedez, egiaztatu zure Interneteko konexi #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Kode berri bat bidali da" msgid "A new form of verification" msgstr "Egiaztatzeko modu berri bat" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Zu sartu aurretik bidalitako mezu bati emandako erantzuna" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Post-konpositorearen pantaila-argazkia, ondoan \"Zirriborroak\" dioen botoi berri batekin, ortzadarraren koloreko su artifizial efektuarekin. Behean, konpositoreko testuak dio: \"Aupa, entzun al dituzu berriak? Bluesky-k zirriborroak ditu orain!!!\"." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Hautatutako hartzailea ez du bidaltzaileak jarraitzen." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Sarbidea eskatu da! Taldearen jabeak zure eskaera berrikusiko du." msgid "Accessibility" msgstr "Erabilerraztasun" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Erabilerraztasun Doikuntzak" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Kontua Mututua Zerrendagatik" msgid "Account options" msgstr "Kontuaren aukerak" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Kontua ezabatua sarrera azkarretik" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Egiaztapen-marka urdin ondulatua <0><1/> duten kontuek beste batzuk egiazta ditzakete. Egiaztatzaile fidagarri hauek Blueskyk hautatzen ditu." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Beste batzuen jarduera" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Jarduera jakinarazpenak" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Gehitu aukerazko testua (hautazkoa)" msgid "Add another account" msgstr "Gehitu beste kontu bat" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Gehitu beste post bat" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Gehitu beste post bat harira" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Gehitu beste bilaketa-iragazki bat" @@ -1253,7 +1213,7 @@ msgstr "Gehitu automatizazio etiketa kontuan" msgid "Add emoji reaction" msgstr "Gehitu emoji erreakzioa" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Gehitu iragazkia" @@ -1338,7 +1298,7 @@ msgstr "Gehitu feed hau zure feedetara" msgid "Add to lists" msgstr "Gehitu zerrendetara" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Gehitu gordetako postetara" @@ -1400,7 +1360,7 @@ msgstr "Heldua" msgid "Adult content" msgstr "Eduki heldua" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "ane@adibidea.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Guztiak" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Lagun guztiak jarraituta!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Hizkuntza guztiak" @@ -1491,11 +1447,6 @@ msgstr "Hizkuntza guztiak erakutsiko dira zure feedetan." msgid "All of these words" msgstr "Hitz hauek guztiak" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "Post guztiak" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Gorde dituzun feed guztiak, leku bakar batean." @@ -1560,7 +1511,7 @@ msgstr "Mezu zuzenetara sarrera baimentzen da" msgid "Already have a code?" msgstr "Dagoeneko kode bat daukazu?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Dagoeneko kontu bat daukazu?" @@ -1614,7 +1565,7 @@ msgstr "Mezu elektroniko bat bidali da {0} helbidera. Behean sar dezakezun berre msgid "An error has occurred" msgstr "Errore bat gertatu da" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Errore bat gertatu da" @@ -1631,7 +1582,7 @@ msgstr "Errore bat gertatu da iradokitako kontuak eskuratzean." msgid "An error occurred while fetching the feed." msgstr "Errore bat gertatu da feeda eskuratzerakoan." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Errore bat gertatu da zure abio multzoa sortzean. Berriro saiatu nahi duzu?" @@ -1640,11 +1591,11 @@ msgstr "Errore bat gertatu da zure abio multzoa sortzean. Berriro saiatu nahi du msgid "An error occurred while hiding suggestion. {0}" msgstr "Errore bat gertatu da iradokizuna ezkutatzean. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Errore bat gertatu da bideoa kargatzean. Mesedez, saiatu berriro geroago." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Errore bat gertatu da bideoa kargatzean. Mesedez, saiatu berriro." @@ -1684,7 +1635,7 @@ msgstr "Errore bat gertatu da. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Kontaktu-liburu batetik Bluesky aplikaziora doazen erabiltzaile-abatarrak erakusten dituen ilustrazioa" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Hainbat Bluesky-ren posten ilustrazioa, berposta, atsegin dut eta iruzkin ikonoekin batera" @@ -1705,17 +1656,15 @@ msgstr "Gonbidapen-esteka batek txat taldean sartzeko aukera ematen dio jendeari msgid "An issue not included in these options" msgstr "Aukera hauetan sartzen ez den arazo bat" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Arazo bat gertatu da txat taldea sortzean. Mesedez, saiatu berriro." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Arazo bat gertatu da txata hastean. Mesedez, saiatu berriro." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Arazo bat gertatu da txata irekitzen saiatzean" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "Arazo bat gertatu da txat taldea abiaraztean. Mesedez, saiatu berriro." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "Edozein data" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Edonor" @@ -1802,7 +1749,7 @@ msgstr "Niri jarraitzen didan edonor" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Daukan edonork ezingo du gehiago sartu edo sartzeko eskaera egin. Beti sor dezakezu berri bat." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Aplikazioaren pasahitzaren izenek 4 karaktere izan behar dituzte gutxien msgid "App passwords" msgstr "Aplikazio pasahitzak" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Aplikazio Pasahitzak" @@ -1891,8 +1838,8 @@ msgstr "Apelatu erabaki hau" msgid "Appeal this label" msgstr "Apelatu etiketa hau" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Aplikatu Tira Eskaera" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "{0}-tik artxibatuta" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Gordetako posta" @@ -1980,7 +1927,7 @@ msgstr "Ziur zaude hau zure feedetatik ezabatu nahi duzula?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Ziur zaude {0}-n sartzeko eskaera bertan behera utzi nahi duzula?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Ziur zaude post hau baztertu nahi duzula?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "Egilea" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Kontu automatizatua" @@ -2033,7 +1985,7 @@ msgstr "Automatikoa" msgid "Automation label" msgstr "Automatizazio etiketa" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatizazio Etiketa" @@ -2050,12 +2002,16 @@ msgstr "Bideo eta GIF erreprodukzio automatikoa" msgid "Available" msgstr "Eskuragarri" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "Abatar sortzailea" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Post bat sortu edo erantzun aurretik, zure posta elektronikoa egiaztatu behar duzu." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Abio multzo bat sortu aurretik, zure posta elektronikoa egiaztatu behar duzu." @@ -2135,10 +2091,10 @@ msgstr "{name}-ren posten jakinarazpenak jaso aurretik, zure helbide elektroniko #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2116,28 @@ msgstr "Bete beheko eremuak adinaren berme prozesua hasteko." msgid "Beta Feature" msgstr "Beta Ezaugarria" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" -msgstr "" +msgstr "Beta ezaugarriak" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Beta ezaugarriak gaituta" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Beta ezaugarriak ezegonkorrak izan daitezke. Aldaketa batzuek aplikazioa berriro kargatzea eska dezakete." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Beta ezaugarriak ezegonkorrak izan daitezke. Aldaketa batzuek aplikazioa berrabiaraztea eska dezakete." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2147,9 @@ msgstr "Jaiotze data" msgid "Birthday" msgstr "Urtebetetzea" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Blokeatua" msgid "Blocked accounts" msgstr "Blokeatutako kontuak" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokeatutako Kontuak" @@ -2282,7 +2244,7 @@ msgstr "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zur msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zurekin elkarreragin. Ez duzu haien edukia ikusiko eta zurea ikustea galaraziko zaie." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokeatzeak ez dio etiketatzaile honi eragotziko etiketak zure kontuan aplikatzea." @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky-k ezin du baieztatu erreklamatutako dataren benetakotasuna." @@ -2330,7 +2293,7 @@ msgstr "Bluesky sare ireki bat da, non zure hostatze-hornitzailea aukeratu dezak msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky sare ireki bat da, non zure hornitzailea aukeratu dezakezun. Berria bazara hemen, Bluesky Sozial aukerarekin jarraitzea gomendatzen dizugu." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky hobea da lagunekin!" @@ -2358,7 +2321,7 @@ msgstr "Bluesky Sozial Zerbitzu Baldintzak" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky-k zure kontaktuak datu kodetu gisa gordetzen ditu. Kontaktuak kentzeak datu horiek berehala ezabatuko ditu." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky-k zure sareko pertsonen artean gomendatutako kontu multzo bat aukeratuko du." @@ -2403,20 +2366,20 @@ msgstr "Bildu 50 lagun arte txat berean." msgid "Browse custom feeds" msgstr "Arakatu feed pertsonalizatuak" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Arakatu kontu gehiago" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Nabigatu feed gehiagotatik Arakatu orrian" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Nabigatu proposamen gehiagotatik" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Nabigatu proposamen gehiagotatik Arakatu orrian" @@ -2425,24 +2388,25 @@ msgstr "Nabigatu proposamen gehiagotatik Arakatu orrian" msgid "Browse other feeds" msgstr "Nabigatu beste feedetatik" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Nabigatu {displayName}-ri buruzko postak" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Nabigatu {displayName}-rekin etiketatutako postak" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Nabigatu {displayName} abio multzoa" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Nabigatu {0} gaia" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Nabigatu {displayName} gaia" @@ -2461,8 +2425,8 @@ msgstr "Hasierako denbora-lerrora itzultzeko botoia" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "{0}-gatik" @@ -2473,9 +2437,9 @@ msgstr "@{0}-gatik" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "<0>{0}-gatik" @@ -2504,11 +2468,11 @@ msgstr "Kontua sortzean <0>Zerbitzu Baldintzak eta <1>Pribatutasun Politika< msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Kontua sortzean <0>Zerbitzu Baldintzak onartzen dituzu." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Zugatik" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2498,7 @@ msgstr "Kamerarako sarbidea behar da" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Kamerarako sarbidea behar da" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Utzi berriro aktibatzea eta amaitu saioa" msgid "Cancel reply" msgstr "Utzi erantzuna" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Utzi bilaketa" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Abio multzoan egindako aldaketak ez dira zerrendan islatuko sortu ondoren. Zerrenda kopia independentea izango da." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Txata mutututa" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Txata ez da aurkitu." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Txat aukerak" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Txataren jabeek ezin dute txat talde bat utzi." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Txataren hartzailea ez du bidaltzaileak jarraitzen." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Txateatzeko eskaeren sarrera-ontzia" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Txateatzeko eskaerak" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Txataren ezarpenak" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Txata desmutututa" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Txatak" @@ -2810,7 +2775,7 @@ msgstr "Egiaztatu <0>{currentEmail} baieztapen kodea duen mezua hartu eta sa #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Itzuli geroago!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2802,7 @@ msgstr "Aukeratu domeinua egiaztatzeko metodoa" msgid "Choose Feeds" msgstr "Aukeratu Feedak" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Aukeratu niretzat" @@ -2854,7 +2819,7 @@ msgstr "Aukeratu Jendea" msgid "Choose post languages" msgstr "Aukeratu posten hizkuntzak" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Aukeratu kolore hau zure abatar gisa" @@ -2879,7 +2844,7 @@ msgstr "Aukeratu zure denbora-lerroa! Komunitateak sortutako feedek maite duzun msgid "Choose your password" msgstr "Aukeratu zure pasahitza" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Aukeratu zure erabiltzaile-izena" @@ -2966,7 +2931,7 @@ msgstr "Egin klik hemen txat talde honetarako gonbidapen-esteka ikusteko" msgid "Click to open tag menu for {0}" msgstr "Egin klik {0} etiketa-menua irekitzeko" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko" @@ -3003,7 +2968,7 @@ msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko" msgid "Close" msgstr "Itxi" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Itxi elkarrizketa-koadro aktiboa" @@ -3047,7 +3012,7 @@ msgstr "Itxi bannerra" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Itxi irudi ikuslea" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Itxi menua" @@ -3090,7 +3055,7 @@ msgstr "Itxi sarrera eskaeren bannerra" msgid "Close this dialog" msgstr "Itxi elkarrizketa-koadro hau" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Itxi ongietorri modala" @@ -3098,7 +3063,7 @@ msgstr "Itxi ongietorri modala" msgid "Closes password update alert" msgstr "Pasahitzak eguneratzeko alerta ixten du" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Post-konpositorea ixten du eta post-zirriborroa baztertzen du" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Kolorea" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Kolore modua" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Komikiak" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Komunitate-gidalerroak" @@ -3141,7 +3106,7 @@ msgstr "Komunitate-gidalerroak" msgid "Complete onboarding and start using your account" msgstr "Osatu sartzea eta hasi zure kontua erabiltzen" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Osatu erronka" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Idatzi post berria" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Idatzi {0, plural, other {# karaktere}} gehienezko postak" @@ -3160,11 +3125,11 @@ msgstr "Idatzi {0, plural, other {# karaktere}} gehienezko postak" msgid "Compose reply" msgstr "Idatzi erantzuna" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIFa konprimitzen..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Bideoa konprimitzen..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Jarri harremanetan gure laguntza-taldearekin" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Jarri laguntzarekin harremanetan" @@ -3253,7 +3218,7 @@ msgstr "Edukiak eta Media" msgid "Content and media" msgstr "Edukiak eta media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Edukiak eta Media" @@ -3265,10 +3230,6 @@ msgstr "Edukia Blokeatuta" msgid "Content filters" msgstr "Eduki-iragazkiak" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Gure ustez gogoko izan dezakezun sareko edukia." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Edukien hizkuntzak" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Autolesioak sustatzen edo irudikatzen dituen edukia" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Edukien Abisua" msgid "Content warnings" msgstr "Edukien abisuak" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Testuinguru-menuaren atzeko planoa, egin klik menua ixteko." @@ -3302,7 +3263,7 @@ msgstr "Testuinguru-menuaren atzeko planoa, egin klik menua ixteko." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Jarraitu haria..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Jarraitu taldearen izenera" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "Ez da elkarrizketa aurkitu." msgid "Copied build version to clipboard" msgstr "Konpilazio bertsioa arbelean kopiatu da" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Esteka arbelean kopiatua" @@ -3376,7 +3337,7 @@ msgstr "Esteka arbelean kopiatua" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Kopiatu Aplikazioaren Pasahitza" msgid "Copy at:// URI" msgstr "Kopiatu at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Kopiatu egilearen DID" @@ -3449,10 +3410,10 @@ msgstr "Kopiatu Esteka" msgid "Copy link to list" msgstr "Kopiatu esteka zerrendara" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopiatu esteka postera" @@ -3470,8 +3431,8 @@ msgstr "Kopiatu abio multzoaren esteka" msgid "Copy message text" msgstr "Kopiatu mezuaren testua" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Kopiatu posta at:// URI" @@ -3490,7 +3451,7 @@ msgstr "Kopiatu TXT erregistroaren balioa" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Copyright Politika" @@ -3540,11 +3501,11 @@ msgstr "Ezin izan dira bat datozen guztiak jarraitu. {0}" msgid "Could not leave chat" msgstr "Ezin izan da txata utzi" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Ezin izan da txata utzi." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Ezin izan da feeda kargatu" @@ -3562,7 +3523,7 @@ msgstr "Ezin izan da profila kargatu" msgid "Could not mute chat" msgstr "Ezin izan da txata mututu" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Ezin izan da kidea kendu." @@ -3606,8 +3567,8 @@ msgstr "behiak txerriak" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Sortu" @@ -3624,26 +3585,26 @@ msgstr "Sortu zerrenda bat abio multzo honetatik" msgid "Create a QR code for a starter pack" msgstr "Sortu QR kodea abio multzo baterako" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Sortu abio multzo bat" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Sortu Abio Multzo bat" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Sortu niretzat abio multzo bat" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Sortu kontua" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Sortu kontu bat" @@ -3666,15 +3627,15 @@ msgstr "Sortu kontu bat" msgid "Create an account without using this starter pack" msgstr "Sortu kontu bat abio multzo hau erabili gabe" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Sortu abatar bat horren ordez" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Sortu beste bat" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Sortu txat taldea" @@ -3741,9 +3702,9 @@ msgstr "Kultura" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Uneko beta ezaugarriak" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Uneko txata" @@ -3770,8 +3731,8 @@ msgstr "Substantzia arriskutsuak edo drogen gehiegizko kontsumoa" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Iluna" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Iluna" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Gai iluna" @@ -3814,7 +3775,7 @@ msgstr "Uko egin hizkuntza-iradokizun honi" msgid "Deepfake adult content" msgstr "Helduentzako eduki faltsua" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Lehenetsia" @@ -3894,7 +3855,7 @@ msgstr "Ezabatu nire kontua" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Ezabatu posta" @@ -3988,7 +3949,7 @@ msgstr "Elkarrizketa: egokitu mezu honekin nork elkarreragin dezakeen" msgid "Dialog: Set search filters" msgstr "Elkarrizketa-koadroa: ezarri bilaketa-iragazkiak" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Lausotu" @@ -4002,7 +3963,7 @@ msgstr "Desgaitu" msgid "Disable 2FA" msgstr "Desgaitu 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Desgaitu azpitituluak" @@ -4045,9 +4006,9 @@ msgstr "Desgaituta" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Baztertu" msgid "Discard changes?" msgstr "Aldaketak baztertu?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Zirriborroa baztertu?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Posta baztertu?" @@ -4079,6 +4040,10 @@ msgstr "Deskonektatu Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Utzi aplikazioei saioa amaitutako erabiltzaileei nire kontua erakusten" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Aurkitu feedak" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Utzi aplikazioei saioa amaitutako erabiltzaileei nire kontua erakusten" msgid "Discover new custom feeds" msgstr "Aurkitu feed pertsonalizatu berriak" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Aurkitu feed berriak" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Aurkitu Feed Berriak" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Baztertu" @@ -4103,28 +4064,28 @@ msgstr "Baztertu" msgid "Dismiss banner" msgstr "Baztertu bannerra" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Baztertu errorea" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Baztertu hasteko gida" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Baztertu interesak" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Baztertu zuzeneko gertaeraren bannerra" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Baztertu atal hau" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Baztertu iradokizun hau" @@ -4142,7 +4103,7 @@ msgstr "Erakutsi aukerazko testu bereizgarri handiagoak" msgid "Display name" msgstr "Bistaratzeko izena" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Utzi troll-ak eta klik egiteko amua. Aurkitu zuretzat garrantzitsuak diren benetako pertsonak eta elkarrizketak." @@ -4205,8 +4166,8 @@ msgstr "Ez kezkatu! Mezu eta ezarpen guztiak gordeta daude eta heldua zarela egi #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Ez kezkatu! Mezu eta ezarpen guztiak gordeta daude eta heldua zarela egi msgid "Done" msgstr "Eginda" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Kolpetxo bikoitza edo luze sakatu erreakzio bat gehitzeko" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Sakatu birritan elkarrizketa-koadroa ixteko" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Kolpetxo bikoitza gogoko emateko" @@ -4328,6 +4289,7 @@ msgstr "Elikadura-nahasmenduak" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Editatu irudia" msgid "Edit interaction settings" msgstr "Editatu interakzio-ezarpenak" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Editatu interesak" @@ -4397,7 +4359,7 @@ msgstr "Zuzeneko egoera editatu" msgid "Edit moderation list" msgstr "Editatu moderazio zerrenda" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editatu Nire Feedak" @@ -4406,6 +4368,11 @@ msgstr "Editatu Nire Feedak" msgid "Edit name" msgstr "Editatu izena" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Editatu {0}-ren jakinarazpenak" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editatu Jendea" @@ -4444,7 +4411,7 @@ msgstr "Editatu erabiltzaile zerrenda" msgid "Edit who can reply" msgstr "Editatu nork erantzun dezakeen" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Editatu zure abio multzoa" @@ -4500,8 +4467,8 @@ msgstr "Txertatu HTML kodea" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Txertatu posta" @@ -4509,7 +4476,7 @@ msgstr "Txertatu posta" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Txertatu post hau zure webgunean. Kopiatu hurrengo kode zatia eta itsatsi zure webguneko HTML kodean." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Bideo erreproduzitzailea txertatua" @@ -4531,9 +4498,9 @@ msgstr "Gaitu helduentzako edukia" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Gaitu beta ezaugarriak" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Gaitu azpitituluak" @@ -4550,12 +4517,13 @@ msgstr "Gaitu kanpoko multimedia" msgid "Enable media players for" msgstr "Gaitu multimedia-erreproduzitzaileak" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Kontu baten jakinarazpenak gaitzeko, bisitatu haren profila eta sakatu <0>kanpai ikonoa <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Gaitu push jakinarazpenak" @@ -4581,7 +4549,7 @@ msgstr "Gaitu joera bideoak zure Aurkitu feedean" msgid "Enabled" msgstr "Gaituta" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Feedaren amaiera" @@ -4608,7 +4576,7 @@ msgstr "Sartu hitz edo etiketa bat" msgid "Enter code" msgstr "Sartu kodea" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Sartu pantaila osoan" @@ -4650,11 +4618,11 @@ msgstr "Sartu zure erabiltzaile-izena eta pasahitza" msgid "Enters full screen" msgstr "Pantaila osora sartzen da" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Entretenimendua" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Errorea" @@ -4684,7 +4652,7 @@ msgstr "Errore bat gertatu da fitxategia gordetzean" msgid "Error receiving captcha response." msgstr "Errore bat gertatu da captcha erantzuna jasotzean." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Errorea: {error}" @@ -4696,8 +4664,8 @@ msgstr "Denek erantzun dezakete" msgid "Everybody can reply to this post." msgstr "Denek erantzun dezakete post honi." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Edonork" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Edonork" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Beste guztia" @@ -4738,7 +4706,7 @@ msgstr "Baztertu jarraitzen dituzun erabiltzaileak" msgid "Excludes users you follow" msgstr "Jarraitzen dituzun erabiltzaileak baztertzen ditu" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Irten pantaila osotik" @@ -4755,11 +4723,11 @@ msgstr "Zabaldu erabiltzaileen zerrenda" msgid "Expand or collapse the full post you are replying to" msgstr "Zabaldu edo tolestu erantzuten ari zaren post osoa" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Zabaldu postaren testua" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Postaren testua zabaldu edo tolesten du" @@ -4802,15 +4770,15 @@ msgstr "Esplizituak edo kezkagarriak izan daitezkeen multimediak." msgid "Explicit sexual images." msgstr "Sexu-irudi esplizituak." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Arakatu" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Arakatu aplikazioa" @@ -4844,7 +4812,7 @@ msgstr "Kanpoko Multimedia" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Kanpoko multimediak webguneek zuri eta zure gailuari buruzko informazioa biltzeko aukera izan dezake. Ez da informaziorik bidali edo eskatzen \"play\" botoia sakatu arte." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Kanpoko Multimedia Hobespenak" @@ -4886,7 +4854,7 @@ msgstr "Ezin izan da handle-a aldatu. Mesedez, saiatu berriro." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Ezin izan da esteka kopiatu" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Ezin izan da txat taldea utzi" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Ezin izan dira elkarrizketak kargatu" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Ezin izan dira feedak kargatu" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Ezin izan dira kargatu feeden hobespenak" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Ezin izan dira jakinarazpenen ezarpenak kargatu." @@ -5012,14 +4981,14 @@ msgstr "Ezin izan da hobespena kargatu." msgid "Failed to load profiles" msgstr "Ezin izan dira profilak kargatu" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Ezin izan dira iradokitako feedak kargatu" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Ezin izan dira kargatu iradokitako jarraipenak" @@ -5027,12 +4996,12 @@ msgstr "Ezin izan dira kargatu iradokitako jarraipenak" msgid "Failed to lock group chat" msgstr "Ezin izan da txat taldea itxi" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Ezin izan dira txat guztiak irakurri gisa markatu" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "Ezin izan da zure eskaera bertan behera utzi. Mesedez, saiatu berriro." msgid "Failed to resolve location. Please try again." msgstr "Ezin izan da kokapena ebatzi. Mesedez, saiatu berriro." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Ezin izan da zirriborroa gorde" @@ -5191,7 +5160,7 @@ msgstr "Kontu faltsua edo bot-a" msgid "False information about elections" msgstr "Hauteskundeei buruzko informazio faltsua" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feeda" @@ -5212,7 +5181,7 @@ msgstr "Feed sortzailea" msgid "Feed identifier" msgstr "Feed identifikatzailea" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Feed menua" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Iritzia feedaren operadoreari bidali zaio" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feedak eguneratuta!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Gogoko izan ditzakezun feedak" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Eskuratu eguneraketa" @@ -5273,34 +5238,22 @@ msgstr "Eskuratu eguneraketa" msgid "File saved successfully!" msgstr "Fitxategia ongi gorde da!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Iragazi egilearen arabera" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Iragazi egilearen arabera (oraingoa: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Iragazi multimediaren arabera" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Iragazi multimediaren arabera (oraingoa: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Feedetatik iragazi" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Iragazi bilaketa hizkuntzaren arabera" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Iragazi bilaketa hizkuntzaren arabera (oraingoa: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "Iragazi bilaketa multimediaren arabera (oraingoa: {currentLabel})" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "Iragazi bilaketa hau {0} arabera" msgid "Filter who can opt to receive notifications for your activity" msgstr "Iragazi nork aukera dezakeen zure jardueraren jakinarazpenak jasotzea" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Iragazi noren jakinarazpenak jasotzen dituzun" @@ -5352,8 +5305,8 @@ msgstr "Aurkitu jarraitu beharreko kontuak" msgid "Find and invite friends" msgstr "Bilatu eta gonbidatu lagunak" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Bilatu Kontaktuak" @@ -5387,7 +5340,7 @@ msgstr "Bilatu zure lagunak" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Aurkitu zure lagunak Bluesky-n zure telefono zenbakia egiaztatuz eta zure kontaktuekin bat etorriz. Zure informazioa babesten dugu eta zuk kontrolatzen duzu zer gertatzen den ondoren. <0>Informazio gehiago" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Aurkitu zure jendea" @@ -5429,7 +5382,7 @@ msgstr "Fokua jarri bilaketa-eremuan" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Jarraitu {0}" msgid "Follow {displayName}" msgstr "Jarraitu {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Jarraitu {handle}" @@ -5453,11 +5406,11 @@ msgstr "Jarraitu {handle}" msgid "Follow 10 accounts" msgstr "Jarraitu 10 kontu" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Jarraitu 10 pertsona hasteko" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Jarraitu 7 kontu" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Jarraitzaileak sar daitezke" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Ezagutzen dituzun @{0}-ren jarraitzaileak" @@ -5544,7 +5497,7 @@ msgstr "Ezagutzen dituzun jarraitzaileak" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Jarraitzen {0}" msgid "Following {displayName}" msgstr "{displayName}-ri jarraitzen" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "{handle}-ri jarraitzen" @@ -5578,21 +5531,21 @@ msgstr "{handle}-ri jarraitzen" msgid "Following feed preferences" msgstr "Jarraitzen dituzun feeden hobespenak" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Jarraitzen dituzun Feeden Hobespenak" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Jarraitzen dizu" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Letra-tipoa" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Letra-tipo tamaina" @@ -5612,13 +5565,13 @@ msgstr "Segurtasun arrazoiengatik, baieztapen kode bat bidali beharko dugu zure msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Segurtasun arrazoiengatik, ezingo duzu hau berriro ikusi. Aplikazioaren pasahitza galtzen baduzu, berri bat sortu beharko duzu." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Esperientzia onena lortzeko, gaiaren letra-tipoa erabiltzea gomendatzen dizugu." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Zuretzat" @@ -5628,7 +5581,7 @@ msgstr "Zuretzat" msgid "Forever" msgstr "Betirako" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Ahaztu zarata" @@ -5647,11 +5600,11 @@ msgstr "Pasahitza ahaztu duzu?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Txat talde bat irudikatzen duten lau mezu-burbuila. Lehen mezua: \"Albistea entzun duzu? Blueskyk txat taldeak ditu orain!\" Bigarren mezua: \"ene, ezinezkoa\" Hirugarren mezua: \"Bai zoragarria, 50 lagun txat berean!\" Laugarren mezua: \"Gonbidapen-estekak ere bidal ditzakezu!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Askatu zure feeda" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Nondik" @@ -5674,7 +5627,7 @@ msgstr "<0/>-tik" msgid "From these people" msgstr "Pertsona hauenak" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Abio multzo bat sortu" @@ -5712,45 +5665,45 @@ msgstr "Germen DM berriro konektatuta" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features weโ€™re testing." -msgstr "" +msgstr "Lortu probatzen ari garen ezaugarri esperimentaletarako sarbide goiztiarra." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Laguntza" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Jaso jakinarazpena abio-multzoan sartzean, egiaztatzean eta bestelako jardueretan." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Jaso jakinarazpenak jendeak jarraitzen zaituenean." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Jaso jakinarazpenak jendeari zure postak gustatzen zaizkionean." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Jaso jakinarazpenak jendeari zure berpostak gustatzen zaizkionean." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Jaso jakinarazpenak jendea aipatzen zaituenean." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Jaso jakinarazpenak jendeak zure postak aipatzen dituenean." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Jaso jakinarazpenak jendeak zure postak erantzuten dituenean." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Jaso jakinarazpenak jendeak zure postak berpostatzen dituenean." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Jaso jakinarazpenak jendeak zure berpostak berpostatzen dituenean." @@ -5762,15 +5715,15 @@ msgstr "Jaso jakinarazpenak jendeak mezu-eskaerak bidaltzen dizkizunean." msgid "Get notifications when people send you messages." msgstr "Jaso jakinarazpenak jendeak mezuak bidaltzen dizkizunean." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Jaso jakinarazpenak harpidetuta zauden postetan jarduera dagoenean." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Jaso jakinarazpenak post berriei buruz" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Jaso jakinarazpenak aukeratzen dituzun kontuetako post eta erantzunen inguruan." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Jaso {name}-ren post berrien jakinarazpenak" @@ -5799,11 +5752,11 @@ msgstr "Hasi" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIFa igo da" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Eman aurpegia zure profilari" @@ -5813,20 +5766,20 @@ msgstr "Indarkeriaren gorazarrea" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Zuzenera joan" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Joan {0}-ren profilera" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Txat taldearen izena eguneratu da" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Txat taldearen ezarpenak" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Txat taldetan gehienez {0, plural, other {# pertsona}} egon daitezke." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Taldea itxita dago" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Taldearen izena" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Talde izena luzeegia da. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {Gehienezko karaktere kopurua # da.}}" @@ -6077,7 +6031,7 @@ msgstr "Jarduera kaltegarriak edo arrisku handikoak" msgid "Harming or endangering minors" msgstr "Adingabeei kalte egitea edo arriskuan jartzea" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Traola" @@ -6098,7 +6052,7 @@ msgstr "Baduzu koderik? <0>Egin klik hemen." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Zure kokapena gaizki ulertu al dugu? <0>Sakatu hemen zure kokapena GPSarekin eguneratzeko." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Arazoak dituzu?" @@ -6114,7 +6068,7 @@ msgstr "Bluesky-k 7 egunez gordetzen du gehiegikeria saihesteko, eta gero ezabat msgid "Help" msgstr "Laguntza" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Lagundu jendeari jakiten ez zarela bot bat argazki bat kargatuz edo abatar bat sortuz." @@ -6135,12 +6089,12 @@ msgstr "Kaixo!" msgid "Hi there!" msgstr "Kaixo!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Ezkutua" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Ezkutatuta zure moderazio doikuntzagatik." @@ -6148,9 +6102,10 @@ msgstr "Ezkutatuta zure moderazio doikuntzagatik." msgid "Hidden list" msgstr "Ezkutuko zerrenda" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Ezkutuko zerrenda" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Ezkutatu" @@ -6198,7 +6154,7 @@ msgstr "Ezkutatu erantzuna guztientzako" msgid "Hide reply for me" msgstr "Ezkutatu erantzuna niretzat" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Ezkutatu txartel hau" @@ -6218,16 +6174,18 @@ msgstr "Ezkutatu erantzun hau?" msgid "Hide translation" msgstr "Ezkutatu itzulpena" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Ezkutatu joera-gaiak" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Joera-gaiak ezkutatu?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Joera-bideoak ezkutatu?" @@ -6240,7 +6198,7 @@ msgstr "Ezkutatu erabiltzaile zerrenda" msgid "Hide verification badges" msgstr "Ezkutatu egiaztapen-bereizgarriak" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Edukia ezkutatzen du" @@ -6293,8 +6251,8 @@ msgstr "Mmmmm, ezin izan dugu kargatu moderazio-zerbitzu hori." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Eutsi! Pixkanaka bideorako sarbidea ematen ari gara, eta ilaran zain zaude oraindik. Begiratu berriro laster!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "Ostatze hornitzailea: {0}" msgid "Hosting provider: Bluesky" msgstr "Ostatze hornitzailea: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Pil-pilean" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Nola funtzionatzen du:" @@ -6409,6 +6363,7 @@ msgstr "Zure helbide elektronikoa eguneratzen baduzu, posta elektronikoaren 2FA msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Pasahitza aldatu nahi baduzu, kode bat bidaliko dizugu zure kontua dela egiaztatzeko." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Zure kontuaren jardueraren jakinarazpenak nork jaso ditzakeen mugatu nahi baduzu, hau alda dezakezu <0>Ezarpenak โ†’ Pribatutasuna eta Segurtasuna atalean." @@ -6548,7 +6503,7 @@ msgstr "Aplikazioan, push, guztiontzat" msgid "In-app, push, people you follow" msgstr "Aplikazioan, push, jarraitzen duzun jendea" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Sarrerako ontzia hutsik" @@ -6564,7 +6519,6 @@ msgstr "Sarrera-ontzia hutsik!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "Sartu" @@ -6573,7 +6527,7 @@ msgstr "Sartu" msgid "Include or exclude matching posts (currently: {0})" msgstr "Sartu edo baztertu bat datozen postak (orain: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Sartu postak edota erantzunak (oraingoa: {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "Sartu data honetatik aurrera egindako postak" msgid "Include posts made until this date" msgstr "Sartu data honetara arte egindako postak" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Sartu emaitza hauek" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Erabiltzaile-izen edo pasahitz baliogabea" @@ -6683,7 +6633,7 @@ msgstr "Gonbidatu {name} Bluesky-rekin bat egitera" msgid "Invite code" msgstr "Gonbidapen kodea" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Ez da gonbidapen kodea onartu. Egiaztatu behar bezala idatzi duzula eta saiatu berriro." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Oraintxe bakarrik zaude! Gehitu jende gehiago zure abio multzoari goiko bilaketan." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Lan ID: {0}" @@ -6816,8 +6766,8 @@ msgstr "Bat egin elkarrizketan" msgid "Journalism" msgstr "Kazetaritza" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Jarraitu editatzen" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "KWS webgunea" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0}-k etiketatua." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Egileak etiketatua." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiketak" @@ -6852,7 +6802,7 @@ msgstr "Etiketak gehitu dira" msgid "Labels applied to this post" msgstr "Post honi aplikatutako etiketak" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Etiketak erabiltzaileei eta edukiei buruzko oharrak dira. Ezkutatzeko, abisatzeko eta sarea sailkatzeko erabil daitezke." @@ -6864,7 +6814,7 @@ msgstr "Etiketak zure kontuan" msgid "Language" msgstr "Hizkuntza" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Hizkuntza Ezarpenak" @@ -6874,7 +6824,7 @@ msgstr "Hizkuntza Ezarpenak" msgid "Languages" msgstr "Hizkuntzak" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Handiagoa" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Azkenekoz orain hasi da" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Azkena" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Ikasi gehiago (ingelesez)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Gehiago Ikasi" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Lortu informazio gehiago <0>bilaketa aurreratua nola erabili jakiteko." @@ -6937,8 +6887,8 @@ msgstr "Lortu informazio gehiago kontaktuak inportatzeari buruz" msgid "Learn more about self hosting your PDS." msgstr "Gehiago ikasi zure PDS auto-hostatzeari buruz." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Gehiago ikasi eduki honi aplikatutako moderazioari buruz" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Aldaketa hauei buruz gehiago jakiteko eta zure iritziak gurekin nola partekatu jakiteko, gure blog-eko argitalpena irakurri." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Gehiago ikasi abisu honi buruz" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Informazio gehiago zure <0>kontuaren ezarpenetan." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Ikasi gehiago." @@ -6993,8 +6943,8 @@ msgstr "Utzi" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Bluesky uzten" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Txat hau uzteak betiko blokeatuko du eta ezingo zara berriro sartu." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Utzi txat taldea." @@ -7042,7 +6992,7 @@ msgstr "Utzi txat taldea." msgid "left to go." msgstr "joateko utzi." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Utzidazu aukeratzen" @@ -7057,7 +7007,7 @@ msgstr "Goazen!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Argia" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Argia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Gogoko" @@ -7076,7 +7026,7 @@ msgstr "Gogoko" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gogoko ({0, plural, one {gogoko #} other {# gogoko}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10 post gogoko egin" @@ -7085,7 +7035,7 @@ msgstr "10 post gogoko egin" msgid "Like 10 posts to train the Discover feed" msgstr "Aurkitu feeda trebatzeko 10 post gogoko egin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Feed hau gogoko dut" @@ -7093,8 +7043,8 @@ msgstr "Feed hau gogoko dut" msgid "Like this labeler" msgstr "Etiketatzaile hau gogoko dut" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Gogoko du" @@ -7111,27 +7061,45 @@ msgstr "Gogoko Du" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Gogoko du {0, plural, one {# erabiltzaileak} other {# erabiltzaileek}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "{0}-k atsegin du" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "{0}-k eta {1}-k atsegin dute" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Gogoko du {likeCount, plural, one {# erabiltzaileak} other {# erabiltzaileek}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Gogoko" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Zure berposten gustokoak" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Gogoko post honetan" @@ -7144,7 +7112,7 @@ msgstr "Lineala" msgid "Link copied to clipboard" msgstr "Esteka arbelean kopiatua" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Zerrenda" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Zerrenda desmutututa" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "ZUZENEAN" msgid "Live event happening now: {0}" msgstr "Zuzeneko gertaera orain gertatzen ari da: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Zuzeneko gertaera ezkutatua" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Zuzeneko gertaera ez ezkutatua" @@ -7279,12 +7247,12 @@ msgstr "Zuzeneko funtzioa betan dago" msgid "Live link" msgstr "Zuzeneko esteka" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Kargatu gehiago" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Kargatu iradokitako feed gehiago" @@ -7292,8 +7260,8 @@ msgstr "Kargatu iradokitako feed gehiago" msgid "Load new notifications" msgstr "Kargatu jakinarazpen berriak" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Itxi txat talde hau" msgid "Locked" msgstr "Itxita" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Erregistroa" @@ -7387,7 +7355,7 @@ msgstr "Maitasun GIFak" msgid "Make adjustments to email settings for your account" msgstr "Egin doikuntzak zure kontuko posta elektronikoaren ezarpenetan" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Egin bat niretzat" @@ -7418,15 +7386,15 @@ msgstr "Eskuz" msgid "Mark all as read" msgstr "Markatu denak irakurri gisa" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Markatu txat guztiak irakurri gisa" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Markatu irakurri gisa" msgid "Marked all as read" msgstr "Denak irakurri gisa markatuta" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Txat guztiak irakurri gisa markatuta" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Eskaera guztiak irakurri gisa markatuta" @@ -7456,8 +7424,12 @@ msgstr "Eskaera guztiak irakurri gisa markatuta" msgid "Maybe later" msgstr "Agian beranduago" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Ni" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimedia" @@ -7475,7 +7447,7 @@ msgstr "Beste gailu batean gordetako multimedia" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Publiko batzuentzat kezkagarriak edo desegokiak izan daitezkeen multimediak." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Kidea txat taldetik kendu da." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "aipatutako erabiltzaileak" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Aipamenak" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mezua ezabatuta" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Ezin izan da bidali mezua." @@ -7563,15 +7535,15 @@ msgstr "Mezua luzeegia da ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Mezuaren aukerak" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mezuak" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Pertsona honen mezuak ezkutatuta daude blokeatzen zaituzten bitartean." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Pertsona honen mezuak ezkutatuta daude blokeatzen dituzun bitartean." @@ -7592,7 +7564,7 @@ msgstr "Engainagarria" msgid "Missing media" msgstr "Falta diren multimediak" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderazioa" @@ -7636,7 +7608,7 @@ msgstr "Moderazio-zerrenda eguneratuta" msgid "Moderation lists" msgstr "Moderazio zerrendak" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderazio Zerrendak" @@ -7645,7 +7617,7 @@ msgstr "Moderazio Zerrendak" msgid "moderation settings" msgstr "moderazio ezarpenak" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderazio-egoerak" @@ -7786,7 +7758,7 @@ msgstr "Mutututa" msgid "Muted accounts" msgstr "Mutututako kontuak" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Mutututako Kontuak" @@ -7867,7 +7839,6 @@ msgstr "Copyright urraketa, eskaera legal edo araudi-betetze arazo baten berri e msgid "Nevermind, create a handle for me" msgstr "Ez dio axola, sortu handle bat niretzako" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Berria" @@ -7893,11 +7864,11 @@ msgstr "{firstAuthorName}-ren {postsCount, plural, one {post berria} other {post #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Txat berria" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Ezaugarri Berria" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Jarraitzaile berriak" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Txat talde berria" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Txat talde berria" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Txat talde berria honekin:" @@ -7966,13 +7937,13 @@ msgstr "Zerrenda berria" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Mezu-eskaera berriak" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Mezu berriak" @@ -7982,12 +7953,12 @@ msgstr "Mezu berriak" msgid "New password" msgstr "Pasahitz berria" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Post berria" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Erantzun berrienak lehenengo" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Berriak" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Hurrengo irudia" msgid "Night" msgstr "Gaua" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Iragarkirik ez, jarraipen inbaditzailerik ez, parte-hartze tranparik ez. Bluesky-k zure denbora eta arreta errespetatzen ditu." @@ -8065,9 +8036,14 @@ msgstr "Iragarkirik ez, jarraipen inbaditzailerik ez, parte-hartze tranparik ez. msgid "No app passwords yet" msgstr "Oraindik ez dago aplikazioen pasahitzik" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "Egilearen iragazkirik ez" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "Momentuz ez dago beta ezaugarririk." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8074,7 @@ msgstr "Iraungitze-datarik ez" msgid "No feeds found. Try searching for something else." msgstr "Ez da feedik aurkitu. Saiatu beste zerbait bilatzen." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Jarraitzailerik ez oraindik" @@ -8116,9 +8092,15 @@ msgstr "Ez dago GIFik erakusteko une honetan. Saiatu berriro une batean." msgid "No image" msgstr "Irudirik ez" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "Hizkuntza-iragazkirik ez" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Ez dago gogokorik oraindik" @@ -8135,7 +8117,12 @@ msgstr "Ez dago zerrendarik" msgid "No longer following {0}" msgstr "Jada ez da {0} jarraitzen" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "Multimedia iragazkirik ez" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Oraindik ez dago multimediarik" @@ -8143,7 +8130,7 @@ msgstr "Oraindik ez dago multimediarik" msgid "No messages yet" msgstr "Oraindik ez dago mezurik" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Zaborrez betetako algoritmo masibo gehiagorik ez. Aurkitu zure alde funtzionatzen duten feedak, ez zure aurka." @@ -8180,16 +8167,21 @@ msgstr "Egileak beste inork ezin du mezu hau aipatu." msgid "No one can send messages" msgstr "Inork ezin ditu mezuak bidali" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "Post-iragazkirik ez" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Ez dago postik hemen" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Oraindik ez dago postik" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Oraindik ez dago aipamenik" @@ -8198,11 +8190,7 @@ msgstr "Oraindik ez dago aipamenik" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Ez dago GIF berririk oraindik. Aukeratu bat hemen ikusteko." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "Erantzunik ez" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Erantzunik ez oraindik" @@ -8217,13 +8205,13 @@ msgstr "Ez dago emaitzarik" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Ez dago emaitzarik" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Emaitzarik ez honentzat: \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "Ez da emaitzarik aurkitu" msgid "No results found for \"{query}\"" msgstr "Ez da emaitzarik aurkitu \"{query}\"-rentzat" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "Ez da emaitzarik aurkitu โ€œ<0>{query}โ€ bilaketarako bilaketa-iragazki aurreratuak aplikatuta." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "Ez da emaitzarik aurkitu โ€œ<0>{query}โ€œ-rentzat." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Ez da emaitzarik aurkitu zure kontsultarako bilaketa-iragazki aurreratuak aplikatuta." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Ez dago emaitzarik." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Ez dago oraindik Abio Multzorik" @@ -8265,7 +8253,7 @@ msgstr "Ez, eskerrik asko" msgid "No translation received from your device." msgstr "Ez da itzulpenik jaso zure gailutik." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Oraindik ez dago bideo postik" @@ -8278,7 +8266,7 @@ msgstr "Inor" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Inork ez du oraindik hau gogoko. Agian lehena izan beharko zenuke!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Inork ez du aipatu hau oraindik. Agian lehena izan beharko zenuke!" @@ -8298,6 +8286,10 @@ msgstr "Baimenik gabeko irudi intimoak" msgid "Non-sexual Nudity" msgstr "Biluztasun ez sexuala" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Bat ere ez" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Ez dago eskuragarri plataforma honetan." msgid "Not followed by anyone youโ€™re following" msgstr "Ez dio jarraitzen zuk jarraitzen diozun inork" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Ez da aurkitu" @@ -8333,7 +8325,7 @@ msgstr "Partekatzeari buruzko oharra" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Oharra: Bluesky sare ireki eta publikoa da. Ezarpen honek zure edukiaren ikusgarritasuna mugatzen du Bluesky aplikazioan eta webgunean, eta baliteke beste aplikazio batzuek ezarpen hau ez errespetatzea. Baliteke zure edukia saioa amaitutako erabiltzaileei erakustea beste aplikazio eta webgune batzuek." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Oharra: Post hau saioa hasi duten erabiltzaileentzat bakarrik ikus daiteke." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Ez da ezer gorde oraindik" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Jakinarazpen-ezarpenak" @@ -8353,11 +8345,12 @@ msgstr "Jakinarazpen-ezarpenak" msgid "Notification sounds" msgstr "Jakinarazpen soinuak" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Ai ez!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "Ados" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Ados" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Sartzea berrezarri" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Hautatutako hartzaileetako batek ez ditu txat taldeak onartzen." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Hautatutako hartzaileetako batek blokeatu zaitu eta ezin zaio mezurik bidali." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "GIF bati edo gehiagori aukerazko testua falta zaio." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Irudi bati edo gehiagori aukerazko testua falta zaio." @@ -8454,11 +8449,11 @@ msgstr "Hautatutako fitxategi bat edo gehiago ez dira onartzen." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "Hautatutako fitxategi bat edo gehiago handiegiak dira. Gehienezko tamaina {VIDEO_MAX_SIZE_MB}ย MB da." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Post bat edo gehiago luzeegiak dira zirriborro gisa gordetzeko. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Gehienezko karaktere kopurua karaktere # da.} other {Gehienezko karaktere kopurua # karaktere dira.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Bideo bati edo gehiagori aukerazko testua falta zaio." @@ -8471,7 +8466,7 @@ msgstr "{0}-k bakarrik erantzun dezake." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "{1}-etik {0} irudi bakarrik gehitu {2, plural, one {da} other {dira}}; muga {MAX_GALLERY_IMAGES} da" @@ -8507,6 +8502,10 @@ msgstr "{0}-k jarraitzen duen jendea bakarrik sar daiteke." msgid "Only people the chat owner follows can join" msgstr "Txataren jabeak jarraitzen duen jendea bakarrik sar daiteke" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "Postak soilik" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "Multimedia duten postak bakarrik" @@ -8519,7 +8518,7 @@ msgstr "Bideoak dituzten postak bakarrik" msgid "Only replies" msgstr "Erantzunak bakarrik" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT (.vtt) fitxategiak soilik onartzen dira" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ene, profil hau ez da existitzen. Saiatu beste bat eskaneatzen." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ups!" @@ -8544,7 +8543,7 @@ msgstr "Ups!" msgid "Open advanced search options" msgstr "Ireki bilaketa-aukera aurreratuak" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Ireki abatar sortzailea" @@ -8570,21 +8569,22 @@ msgstr "Ireki elkarrizketa aukerak" msgid "Open draft" msgstr "Ireki zirriborroa" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Ireki marrazki menua" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Ireki emoji-hautatzailea" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Ireki feedaren informazio pantaila" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Ireki feed aukeren menua" @@ -8627,7 +8627,7 @@ msgstr "Ireki moderazioaren arazketa orria" msgid "Open muted words and tags settings" msgstr "Ireki mutututako hitzen eta etiketen ezarpenak" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Ireki multzoa" @@ -8699,7 +8699,7 @@ msgstr "Arazketa-sarrera baten xehetasun gehigarriak irekitzen ditu" msgid "Opens alt text dialog" msgstr "Aukerazko testuaren elkarrizketa-koadroa irekitzen du" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Kamera irekitzen du gailuan" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Fluxua irekitzen du Bluesky kontu berri bat sortzeko" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Fluxua irekitzen du lehendik duzun Bluesky kontuan saioa hasteko" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Pasahitza eguneratuta!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausa" @@ -8925,12 +8925,12 @@ msgstr "Pausa" msgid "Pause GIF" msgstr "Pausatu GIFa" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausatu bideoa" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Jendea" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "{ownerName} jarraitzen duten pertsonek eska dezakete bat egiteko" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0}-k jarraitzen duen jendea" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "@{0}-ri jarraitzen dion jendea" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Jarraitzen ditudan pertsonak" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Nik jarraitzen ditudan pertsonek eska dezakete bat egiteko" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Jarraitzen duzun jendea" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Helduentzako pentsatutako irudiak." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Ainguratu feeda" @@ -9034,7 +9034,7 @@ msgstr "Ainguratu feeda" msgid "Pin to home" msgstr "Ainguratu hasierara" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Ainguratu Hasierara" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Ainguratua" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} Hasierara ainguratua" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Ainguratua zure feedetara" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Erreproduzitu" @@ -9076,8 +9076,8 @@ msgstr "Erreproduzitu {0}" msgid "Play GIF" msgstr "Erreproduzitu GIFa" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Erreproduzitu bideoa" @@ -9109,11 +9109,11 @@ msgstr "Gehitu posteatzen ari zaren multimediari dagozkion eduki-abisuak." 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Mesedez, zure handle-a aukeratu" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Mesedez, zure pasahitza aukeratu" @@ -9122,7 +9122,7 @@ msgstr "Mesedez, zure pasahitza aukeratu" 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 "Mesedez, egin klik bidali dizugun mezu elektronikoan dagoen estekan zure helbide elektroniko berria egiaztatzeko. Urrats garrantzitsua da hau Bluesky-ren funtzio guztiez gozatzen jarrai dezazun." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Mesedez, bete egiaztapen-captcha." @@ -9179,7 +9179,7 @@ msgstr "Mesedez, sartu jaso duzun kodea eta erabili nahi duzun pasahitz berria." 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:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Mesedez, sartu zure helbide elektronikoa." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Mesedez, idatzi zure mezua jarraian:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politika" @@ -9269,7 +9269,7 @@ msgstr "Politika" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Posteatu" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Posteatu" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Argazki bat posteatu" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Bideo bat posteatu" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Posteatu Dena" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Posteatu hala ere" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Post blokeatuta" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0}-ren posta" @@ -9340,7 +9340,7 @@ msgstr "Zuk Ezkututako Posta" msgid "Post interaction settings" msgstr "Postaren elkarrekintza-ezarpenak" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Postaren Interakzio-Ezarpenak" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Posta ainguratuta" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Posta gordeta" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "Post mota" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Postaren aingura kendu da" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Postak" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "Postak eta erantzunak" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "Postak mututu daitezke testuaren, etiketen edo bietan oinarrituta. Post askotan agertzen diren hitz arruntak saihestea gomendatzen dugu, postik ez erakustea eragin baitezake." @@ -9398,6 +9396,10 @@ msgstr "Postak mututu daitezke testuaren, etiketen edo bietan oinarrituta. Post msgid "Posts hidden" msgstr "Post ezkutuak" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Postak, Erantzunak" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Engainagarria izan daitekeen esteka" @@ -9449,20 +9451,21 @@ msgstr "Pribatutasuna" msgid "Privacy and security" msgstr "Pribatutasuna eta segurtasuna" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Pribatutasuna eta Segurtasuna" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Pribatutasun eta Segurtasun ezarpenak" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Pribatutasun Politika" msgid "Privacy violation of a minor" msgstr "Adingabe baten pribatutasun urraketa" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "GIFa prozesatzen..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Bideoa prozesatzen..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Erabiltzaileen zerrenda publiko eta partekagarriak mututzeko edo blokeatzeko modu masiboan." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Argitaratu posta" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Argitaratu postak" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Argitaratu erantzunak" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Argitaratu erantzuna" @@ -9599,12 +9602,12 @@ msgstr "Post aipamenak desgaituta daude" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Aipamenak" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Post honen aipamenak" @@ -9647,7 +9650,7 @@ msgstr "Berriz aktibatu zure kontua" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Irakurri {0, plural, one {erantzun # gehiago} other {# erantzun gehiago}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Irakurri bilaketa-iragazki aurreratuak nola erabili" @@ -9657,11 +9660,11 @@ msgstr "Irakurri bilaketa-iragazki aurreratuak nola erabili" msgid "Read blog post" msgstr "Irakurri blogeko posta" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Irakurri gutxiago" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Irakurri gehiago" @@ -9687,11 +9690,11 @@ msgstr "Irakurri Bluesky Pribatutasun Politika" msgid "Read the Bluesky Terms of Service" msgstr "Irakurri Bluesky Zerbitzu-Baldintzak" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Benetako elkarrizketak." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Benetako jendea." @@ -9721,10 +9724,6 @@ msgstr "Azken bilaketak" msgid "Recently used" msgstr "Duela gutxi erabilia" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Gomendatua" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Berriro konektatu" @@ -9748,7 +9747,7 @@ msgstr "Baztertu txateatzeko eskaera" msgid "Reject join request" msgstr "Baztertu sartzeko eskaera" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Berriz kargatu elkarrizketak" @@ -9766,7 +9765,7 @@ msgstr "Berriz kargatu elkarrizketak" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Kendu" @@ -9792,8 +9791,8 @@ msgstr "Kendu {displayName}?" msgid "Remove {q}" msgstr "Kendu {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Kendu kontua" @@ -9845,15 +9844,15 @@ msgstr "Kendu iragazkia" msgid "Remove from chat" msgstr "Kendu txatetik" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Kendu nire feedetatik" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Sarrera azkarretik kendu?" @@ -9862,7 +9861,7 @@ msgstr "Sarrera azkarretik kendu?" msgid "Remove from saved feeds" msgstr "Kendu feed gordetatik" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Kendu gordetako postetatik" @@ -9880,8 +9879,8 @@ msgstr "Kendu irudia" msgid "Remove live status" msgstr "Kendu zuzeneko egoera" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Kendu kidea" @@ -9943,7 +9942,7 @@ msgstr "Zerrendatik kenduta" msgid "Removed from saved feeds" msgstr "Gordetako feedetatik kenduta" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Gordetako postetatik kendua" @@ -9952,7 +9951,7 @@ msgstr "Gordetako postetatik kendua" msgid "Removed from starter pack" msgstr "Abio multzotik kenduta" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Zuri erantzunda" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "{senderName}-ren mezuari erantzuna, sakatu bertara mugitzeko" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Erantzun zaion mezua zu sartu aurretik bidali zen" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Mezuari erantzuna, sakatu bertara mugitzeko" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Erantzunak" @@ -10037,7 +10037,7 @@ msgstr "Mezu honen erantzunak desgaituta daude." msgid "Reply" msgstr "Erantzun" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Erantzun" @@ -10098,8 +10098,8 @@ msgstr "Salatu elkarrizketa" msgid "Report dialog" msgstr "Salaketaren elkarrizketa-koadroa" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Salatu feeda" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Zuk berpostatua" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Berpostak" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Berpostatu post hau" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Zure berposten berpostak" @@ -10253,7 +10253,7 @@ msgstr "Eskaera eginda" msgid "Requests" msgstr "Eskaerak" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Azken ekintza berriro saiatzen da, errorea izan duena" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Hasierako orrira itzultzen da" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Aurreko orrialdera itzultzen da" @@ -10446,27 +10446,27 @@ msgstr "Gorde jaiotze data" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Gorde aldaketak" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Gorde aldaketak?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Gorde zirriborroa" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Gorde zirriborroa?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Gorde QR kodea" msgid "Save these options for next time" msgstr "Gorde aukera hauek hurrengo baterako" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Gorde nire feedetan" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Gordetako Feedak" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Gordetako Postak" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Zure feedetan gordeta" @@ -10520,8 +10520,8 @@ msgstr "Zure feedetan gordeta" msgid "Say hello!" msgstr "Esan kaixo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Esan kaixo norbaiti" @@ -10535,7 +10535,7 @@ msgstr "Eskaneatu" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Eskaneatu QR kodea" @@ -10543,15 +10543,15 @@ msgstr "Eskaneatu QR kodea" msgid "Science" msgstr "Zientzia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Joan ezkerrera" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Joan eskuinera" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Joan honek erantzuten dion mezura" @@ -10564,8 +10564,8 @@ msgstr "Joan gora" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Bilatu" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Bilatu @{0}-ren postak" @@ -10612,11 +10612,11 @@ msgstr "Bilatu {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Bilatu besteei iradoki nahi diezun feedak." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Bilatu kontu gehiago" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Bilatu feed gehiago" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Bilatu GIF-ak" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Bilaketa ez dago erabilgarri saioa itxita dagoenean" @@ -10707,17 +10707,22 @@ msgstr "Ikusi erabiltzailearen #{tag} postak" msgid "See jobs at Bluesky" msgstr "Ikusi Bluesky-n lanpostuak" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Ikusi gehiago" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Ikusi iradokitako profil gehiago" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "Ikusi joera-gai gehiago" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Ikusi iradokitako kontuak" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Bilaketa graduatzailea. Erabili gezi-teklak aurrera eta atzera bilatzeko, eta espazioa erreproduzitzeko/pausatzeko" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Hautatu \"{interestsDisplayName}\" kategoria" @@ -10748,7 +10753,7 @@ msgstr "Aukeratu {0}" msgid "Select {langName}" msgstr "Aukeratu {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Aukeratu kolore bat" @@ -10764,11 +10769,11 @@ msgstr "Aukeratu kontua" msgid "Select an app language" msgstr "Aukeratu aplikazioaren hizkuntza bat" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Aukeratu abatar bat" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Aukeratu emoji bat" @@ -10780,12 +10785,13 @@ msgstr "Hautatu aukera bat" msgid "Select app language" msgstr "Aukeratu aplikazioaren hizkuntza" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Aukeratu azpitituluen fitxategia (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Hautatu \"{name}\" txata" @@ -10826,7 +10832,7 @@ msgstr "Aukeratu GIF-a" msgid "Select GIF \"{0}\"" msgstr "Aukeratu GIF-a \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Hautatu txat taldeko kideak" @@ -10864,7 +10870,7 @@ msgstr "Aukeratu hizkuntza nagusia" msgid "Select telephone code" msgstr "Hautatu telefono kodea" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Aukeratu {emojiName} emojia zure abatar gisa" @@ -10945,7 +10951,8 @@ msgstr "Bidali mezua" msgid "Send post to {name}" msgstr "Bidali posta {name}-ri" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Bidali posta hona..." @@ -10963,12 +10970,12 @@ msgstr "Bidali mezua zure telefonotik" msgid "Send verification email" msgstr "Bidali egiaztapen-mezu elektronikoa" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Bidali mezu zuzenaren bidez" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Bidali txataren bidez" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Ezarri zure ostatatze-hornitzailea eskuz" msgid "Sets email for password reset" msgstr "Pasahitza berrezartzeko posta elektronikoa ezartzen du" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Besteen jardueraren ezarpenak" @@ -11036,49 +11043,49 @@ msgstr "Besteen jardueraren ezarpenak" msgid "Settings for allowing others to be notified of your posts" msgstr "Zure posten berri beste batzuei emateko ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Gustoko jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Aipamen jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Jarraitzile berrien jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Beste guztiaren jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Zure berpost gustokoen jakinarazpenen ezarpenak" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Mezu-eskaera berrien jakinarazpenen ezarpenak" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Mezu berrien jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Zure berpost berposten jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Aipamen jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Erantzun jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Berpost jakinarazpenen ezarpenak" @@ -11115,8 +11122,8 @@ msgstr "Partekatu adin-tartea" msgid "Share anyway" msgstr "Partekatu hala ere" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Partekatu egilearen DID" @@ -11125,9 +11132,9 @@ msgstr "Partekatu egilearen DID" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Partekatu iritzia" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Partekatu estekaren elkarrizketa-koadroa" msgid "Share my profile" msgstr "Partekatu nire profila" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Partekatu posta hemen:// URI" @@ -11169,12 +11176,12 @@ msgstr "Partekatu Profila" msgid "Share QR code" msgstr "Partekatu QR kodea" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Partekatu feed hau" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Partekatu bilaketa hau" @@ -11186,8 +11193,8 @@ msgstr "Partekatu abio multzo hau" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Partekatu abio multzo hau eta lagundu jendea zure Bluesky komunitatean sartzen." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,9 +11210,9 @@ msgstr "Partekatu zure kontaktuak lagunak aurkitzeko" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughtsโ€ฆ" -msgstr "" +msgstr "Partekatu zure gogoetakโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Partekatutako Hobespenen Probatzailea" @@ -11219,7 +11226,7 @@ msgstr "Adin tartea partekatzeak zure Apple kontuari lotutako tartea baino ez du msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Adin tartea partekatzeak zure Google kontuari lotutako tartea baino ez du agerian uzten, adibidez, gutxienez 18 urte dituzula. <0>Zure adin zehatza eta urtebetetzea ez dira inoiz partekatzen, eta datu hauek ez dute inoiz gailu hau uzten. Beraz, gailu honetan bakarrik ahalbidetzen du sarbidea. Bestela, <1>gure bazkide fidagarria, KWS, erabil dezakezu, egiaztapena osatzeko eta plataforma guztietan sarbidea gaitzeko." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Erakutsi" msgid "Show alt text" msgstr "Erakutsi aukerazko testua" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Erakutsi hala ere" @@ -11274,8 +11281,8 @@ msgstr "Erakutsi zerrenda hala ere" msgid "Show lists of users to select from" msgstr "Erakutsi aukeran dauden erabiltzaileen zerrendak" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Erakutsi gehiago" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Erakutsi feedetako abisua eta iragazkia" msgid "Show when youโ€™re live" msgstr "Erakutsi zuzenean zaudenean" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Post hau noiz sortu zenari buruzko informazioa erakusten du" @@ -11341,15 +11348,15 @@ msgstr "Post hau noiz sortu zenari buruzko informazioa erakusten du" msgid "Shows other accounts you can switch to" msgstr "Alda ditzakezun beste kontu batzuk erakusten ditu" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Edukia erakusten du" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Edukia erakusten du" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Saioa amaitu?" msgid "Sign up" msgstr "Eman izena" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Saioa hasi behar da" @@ -11469,7 +11476,7 @@ msgstr "Saltatu" msgid "Skip contact sharing and continue to the app" msgstr "Saltatu kontaktuak partekatzea eta jarraitu aplikaziora" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Post hutsak saltatu?" @@ -11487,7 +11494,7 @@ msgstr "Hurrengo urratsera joan" msgid "slide" msgstr "diapositiba" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Txikiagoa" @@ -11499,14 +11506,14 @@ msgstr "Gogorarazpena atzeratzen du" msgid "So many thoughts, you should post one" msgstr "Hainbeste ideia, bat argitaratu beharko zenuke" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Zuk kontrolatzen duzun sare soziala." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Posten gizarte-froga" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11520,7 +11527,7 @@ msgstr "Zure zerrendako moderazio zerbitzu batzuk ez daude jada eskuragarri." msgid "Some of your verifications are invalid." msgstr "Zure egiaztapenetako batzuk baliogabeak dira." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Gustatuko litzaizukeen beste feed batzuk" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Norbaitek taldea utzi du" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Norbaitek erreakzionatu du {0}" @@ -11554,7 +11561,7 @@ msgstr "Norbaitek erreakzionatu du {0}" msgid "Someone reacted {0} to {target}" msgstr "Norbaitek {0} erreakzionatu du {target}-i" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Norbaitek erantzun du" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Arazoren bat izan da. Mesedez, saiatu berriro" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Arazoren bat izan da. Mesedez, saiatu berriro geroago." msgid "Something went wrong. Please try again." msgstr "Arazoren bat izan da. Mesedez, saiatu berriro." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Zerbait gaizki? Jakinaraziguzu." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam-a edo bestelako jokabide edo engainu faltsuak" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Kirolak" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Zure lagunek eta jarraitzaileek gustuko izan dituzten leku postak." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Hasi elkarrizketa bat, eta hemen agertuko da." msgid "Start a group chat" msgstr "Hasi txat talde bat" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Txat berria hasi" @@ -11682,17 +11689,17 @@ msgstr "Hasi jendea gehitzen" msgid "Start adding people!" msgstr "Hasi jendea gehitzen!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Txata hasi" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Txat berria hasi {displayName}-rekin" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Abio Multzoa" @@ -11715,12 +11722,16 @@ msgstr "Zure abio multzoa" msgid "Starter pack is invalid" msgstr "Abio multzoa ez da zuzena" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Abio multzoak" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Abio Multzoak" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Abio multzoek zure gogoko feedak eta jendea zure lagunekin erraz partekatzeko aukera ematen dizu." @@ -11728,7 +11739,7 @@ msgstr "Abio multzoek zure gogoko feedak eta jendea zure lagunekin erraz parteka msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Abio multzoek zure gogoko feedak eta jendea zure lagunekin partekatzeko aukera ematen dizu." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Abio Multzoek zure gogoko feedak eta jendea zure lagunekin partekatzeko aukera ematen dizu." @@ -11742,7 +11753,7 @@ msgstr "Egoera Orria" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "{0}/{1} urratsa" @@ -11754,7 +11765,7 @@ msgstr "Biltegia garbitu da, aplikazioa berrabiarazi behar duzu orain." msgid "Stored as part of a secure code for matching with others" msgstr "Besteekin bat etortzeko kode seguru baten barruan gordeta" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Ipuin liburua" @@ -11787,7 +11798,7 @@ msgstr "Bidali Apelazioa" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Bidali iritzia" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Harpidetu {publicationTitle}-ra {0}-n" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Harpidetu @{0}-ra etiketa hauek erabiltzeko:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Behar bezala egiaztatu da" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Iradokitakoa" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Iradokitako kontuak" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Zuretzat proposatua" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Ilunabarra" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Ezaugarri honen laguntza ez dago oraindik zure herrialdean gaituta! Mesedez, saiatu berriro geroago." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Etenda dauden kontuek ezin dute txat taldean parte hartu." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Etenda dauden kontuek ezin dute txatean parte hartu." @@ -11921,8 +11934,8 @@ msgstr "Aldatu {0}-ra" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Eraman elkarrizketa pribatura." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Sakatu behean Bluesky-k zure GPS kokapena atzitzeko aukera emateko. Ondoren, datu horiek erabiliko ditugu zure eskualdean eskuragarri dauden edukia eta funtzioak zehatzago zehazteko." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Sakatu xehetasunak ikusteko" @@ -11976,7 +11989,7 @@ msgstr "Ukitu testuinguru-menua ixteko" msgid "Tap to copy this invite link" msgstr "Sakatu gonbidapen-esteka hau kopiatzeko" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Sakatu baztertzeko" @@ -12003,7 +12016,7 @@ msgstr "Sakatu zure {0} erreakzioa ezabatzeko" msgid "Tap to request access to join this group chat" msgstr "Sakatu txat talde honetan sartzeko sarbidea eskatzeko" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Sakatu berriro saiatzeko" @@ -12016,7 +12029,7 @@ msgstr "Sakatu {0} erreakzio erakusteko" msgid "Tap to show all reactions" msgstr "Sakatu erreakzio guztiak erakusteko" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Sakatu erreakzioak ikusteko" @@ -12032,7 +12045,7 @@ msgstr "Ataza amaituta - 10-ek jarraitzen dute!" msgid "Task complete - 10 likes!" msgstr "Ataza amaituta - 10-ek gogoko dute!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Irakatsi gure algoritmoari gustatzen zaizuna" @@ -12060,7 +12073,7 @@ msgstr "Baldintzak" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Eskerrik asko zure iritziagatik! Feedaren operadoreari bidali zaio." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Eskerrik asko zure iritziagatik!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "Ezin izan da aurkitu abio multzo hori." msgid "That username is already taken" msgstr "Erabiltzaile-izen hori dagoeneko hartuta dago" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Hori da guztia, lagunok!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Hori da dena!" @@ -12216,7 +12229,7 @@ msgstr "Zerbitzariak arazoak dituela dirudi. Mesedez, saiatu berriro une batzuk msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Ikusten saiatzen ari zaren abio multzoa ez da zuzena. Horren ordez, abio multzo hau ezaba dezakezu." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Testuinguru-menuaren gaia" @@ -12238,7 +12251,7 @@ msgstr "Eman duzun egiaztapen-kodea ez da zuzena. Mesedez, ziurtatu egiaztapen-e msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Egiaztapen-hornitzaileak ezin izan du kodea bidali zure telefono-zenbakira. Mesedez, egiaztatu zure telefono-zenbakia eta saiatu berriro." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Gaia" @@ -12266,7 +12279,7 @@ msgstr "Arazo bat izan da GIFak kargatzen. Egiaztatu konexioa eta saiatu berriro msgid "There was a problem with your internet connection, please try again" msgstr "Arazo bat izan da zure internet konexioarekin, mesedez, saiatu berriro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Arazo bat izan da zure internet konexioarekin, mesedez, saiatu berriro" msgid "There was an issue contacting the server" msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko. Mesedez, egiaztatu Interneteko konexioa eta saiatu berriro." @@ -12283,8 +12296,8 @@ msgstr "Arazo bat izan da zerbitzariarekin harremanetan jartzeko. Mesedez, egiaz msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Arazo bat izan da jakinarazpenak eskuratzean. Sakatu hemen berriro saiatzeko." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Arazo bat izan da postak eskuratzean. Sakatu hemen berriro saiatzeko." @@ -12309,7 +12322,7 @@ msgstr "Arazo bat izan da zure zerbitzu informazioa eskuratzean" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Arazo bat izan da feed hau kentzean. Egiaztatu Interneteko konexioa eta saiatu berriro." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Ezarpen hauek Jarraitzen feedari soilik aplikatzen zaizkio." msgid "These URLs" msgstr "URL hauek" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Txat honen jabeak dira" @@ -12392,7 +12405,7 @@ msgstr "Txat honen jabeak dira" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "Ezin izango dira berriro sartu zuk berriro gonbidatu arte." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} hau markatu da:" @@ -12408,7 +12421,7 @@ msgstr "Kontu hau jabeak automatizatu gisa markatu du." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Kontu honek egiaztapen saiakera bat edo gehiago ditu, baina une honetan ez dago egiaztatuta." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Kontu honen profila saioa hasitako erabiltzaileek bakarrik ikus dezakete." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Feed hau hutsik dago! Baliteke erabiltzaile gehiago jarraitu behar izatea edo hizkuntza-ezarpenak doitzea." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Feed hau hutsik dago." @@ -12554,7 +12567,7 @@ msgstr "Talde hau blokeatuta dago jabearen aurkako moderazio-ekintza baten ondor msgid "This handle is reserved. Please try a different one." msgstr "Handle hau erreserbatuta dago. Mesedez, saiatu beste bat." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Irudi hau ezin izan da erabili. Saiatu beste formatu batekin, adibidez, .jpg edo .png." @@ -12596,7 +12609,7 @@ msgstr "Etiketa hau zuk aplikatu duzu." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Etiketa hau erabiltzaile-kontu osoan aplikatu da eta post guztietan agertuko da." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Etiketatzaile honek ez du deklaratu zein etiketa argitaratzen dituen, eta baliteke aktibo ez egotea." @@ -12621,13 +12634,13 @@ msgstr "Zerrenda hau hutsik dago." msgid "This message is hidden" msgstr "Mezu hau ezkutatuta dago" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Mezu hau ezkutatuta dago erabiltzaile honek blokeatzen zaituelako." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Mezu hau ezkutatuta dago erabiltzaile hau blokeatzen ari zarelako." @@ -12641,7 +12654,7 @@ msgstr "Pertsona honek blokeatzen zaitu" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Post honek <0>{0}-n sortu dela dio, baina Bluesky-k <1>{1}-n ikusi zuen lehen aldiz." @@ -12649,7 +12662,7 @@ msgstr "Post honek <0>{0}-n sortu dela dio, baina Bluesky-k <1>{1}-n iku msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Post honek hari mota ezezagun bat du. Baliteke zure aplikazioa zaharkituta egotea." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Post hau saioa hasi duten erabiltzaileentzat bakarrik ikus daiteke." @@ -12661,7 +12674,7 @@ msgstr "Post hau egileak ezabatu du" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Post hau feed eta harietatik ezkutatuta egongo da. Hau ezin da desegin." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Post honen egileak aipamenak desgaitu ditu." @@ -12698,11 +12711,12 @@ msgstr "Minutu batzuk besterik ez luke iraun behar." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Erabiltzaile honek ez du bistaratzeko izenik, beraz, ezin da egiaztatu." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Erabiltzaile honek ez du jarraitzailerik." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Erabiltzaile honek blokeatu zaitu eta ezin zaio mezurik bidali." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Erabiltzaile honek blokeatu zaitu. Ezin duzu haren edukia ikusi." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Erabiltzaile honek txata desgaitu du eta ezin zaio mezurik bidali." @@ -12733,11 +12748,11 @@ msgstr "Erabiltzaile hau mututu duzun <0>{0} zerrendan sartuta dago." msgid "This user is new here. Press for more info about when they joined." msgstr "Erabiltzaile hau berria da hemen. Sakatu noiz sartu zenari buruzko informazio gehiago lortzeko." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Erabiltzaile hau ez du inor jarraitzen." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Bideo hau ezin da erreproduzitu zure gailuan. Baliteke zure arakatzaileak edo sistemak beharrezko bideo kodekak (H.264/AAC) falta izatea." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Honek atzeraezin ezabatuko du zure Bluesky kontua <0>{currentHandle} eta lotutako datu guztiak. Kontuan izan honek kontu honekin erabiltzen dituzun beste <1>AT Protokolo zerbitzuetan eragina izango duela." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Honek @{0} sarbide azkarreko zerrendatik kenduko du." @@ -12786,7 +12801,7 @@ msgstr "Hariaren Hobespenak" msgid "Threaded" msgstr "Harikatua" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Harien Hobespenak" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Kontaktu gehiegi - zure lagunak aurkitzeko inporta ditzakezun kontaktuen kopurua gainditu duzu" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Joan gora" @@ -12858,7 +12873,7 @@ msgstr "Joan gora" msgid "Top replies first" msgstr "Goiko erantzunak lehenik" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Gaia" @@ -12893,7 +12908,9 @@ msgstr "Hizkuntza bererako itzulpena ez dago erabilgarri zure gailuan." msgid "Tree view" msgstr "Zuhaitz-ikuspegia" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Joera" @@ -12902,13 +12919,15 @@ msgstr "Joera" msgid "Trending GIFs" msgstr "Modako GIFak" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Joera-aukerak" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Joera Bideoak" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Trolling-a" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Konfiantza harremanetatik, komunitateetatik eta partekatutako testuinguruetatik sortzen da, beraz, <0>egiaztatzaile fidagarriak ere gaitzen ari gara: egiaztapena zuzenean jaulki dezaketen erakundeak." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Saiatu beste bilaketa-termino batekin edo kendu iragazki batzuk." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Saiatu beste bilaketa-termino batekin." @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Ezin dira eskuratu sarrera eskaerak." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Ezin da hautatutako hartzailerik aurkitu." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Ezin da hautatutako hartzailea aurkitu." @@ -13024,12 +13045,12 @@ msgstr "Ez dago eskuragarri" msgid "Unavailable feed information" msgstr "Feedaren informazioa ez dago erabilgarri" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Kontua Desblokeatu?" msgid "Unblock list" msgstr "Desblokeatu zerrenda" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "{0} jarraitzen utzi" msgid "Unfollow account" msgstr "Utzi kontua jarraitzeari" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Erabiltzailea jarraitzeari uzten dio" @@ -13132,7 +13153,7 @@ msgstr "Helduentzako etiketarik gabeko edukia" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Etiketarik gabeko, abusuzko edo baimenik gabeko helduentzako edukia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Ez gogoko" @@ -13192,7 +13213,7 @@ msgstr "Desmututu txat talde hau" msgid "Unmute thread" msgstr "Haria ez mututu" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Bideoa ez mututu" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Aingura kendu" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Feedari aingura kendu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Aingura kendu hasieratik" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Moderazio zerrendari aingura kendu" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0}-ri aingura kendu Hasieratik" @@ -13258,11 +13279,11 @@ msgstr "Harpidetza kendu etiketatzaile honi" msgid "Unsubscribed from list" msgstr "Zerrendatik harpidetza kenduta" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Onartzen ez den arbeleko edukia" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Bideo mota bateraezina: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Ezin izan da eguneratu erantzunen ikusgaitasuna" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Kargatu argazki bat ordez" @@ -13355,7 +13376,7 @@ msgstr "Kargatu Fitxategietatik" msgid "Upload from Library" msgstr "Kargatu Liburutegitik" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "GIFa kargatzen..." @@ -13369,7 +13390,7 @@ msgstr "Irudiak kargatzen..." msgid "Uploading link thumbnail..." msgstr "Estekaren miniatura kargatzen..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Bideoa kargatzen..." @@ -13408,7 +13429,7 @@ msgstr "Erabili hau zure handle-arekin batera beste aplikazioan saioa hasteko." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Erabili zure kontuko helbide elektronikoa, edo zuk kontrolatzen duzun beste benetako helbide elektroniko bat, KWS edo Bluesky-k zurekin harremanetan jarri behar badute." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "erabiltzailea" @@ -13510,7 +13531,7 @@ msgstr "Egiaztapena huts egin du, saiatu berriro." msgid "Verification settings" msgstr "Egiaztapen-ezarpenak" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Egiaztapen-Ezarpenak" @@ -13618,34 +13639,34 @@ msgstr "Bideoa" msgid "Video failed to process" msgstr "Ezin izan da prozesatu bideoa" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Bideo Feeda" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "{0}-ren bideoa: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "{0}-ren bideoa. Sakatu bideoa erreproduzitzeko edo pausatzeko" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Bideo-jokoak" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Bideoa geldirik dago" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Bideoa erreproduzitzen ari da" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Ez da bideoa aurkitu." @@ -13653,7 +13674,7 @@ msgstr "Ez da bideoa aurkitu." msgid "Video settings" msgstr "Bideo ezarpenak" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Bideoa kargatuta" @@ -13662,17 +13683,17 @@ msgstr "Bideoa kargatuta" msgid "Video: {0}" msgstr "Bideoa: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Bideoak" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Bideoek 3 minutu baino gutxiago iraun behar dute." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Ikusi" @@ -13691,9 +13712,9 @@ msgstr "Ikusi {0}-ren abatarra" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Ikusi {0}-ren profila" @@ -13724,13 +13745,13 @@ msgstr "Ikusi blogeko argitalpena xehetasun gehiago lortzeko" msgid "View debug entry" msgstr "Ikusi arazketa-sarrera" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ikusi xehetasunak" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Ikusi hari osoa" @@ -13750,18 +13771,18 @@ msgstr "Ikusi txat talde honetan sartzeko sarrerako eskaerak" msgid "View information about these labels" msgstr "Ikusi etiketa hauei buruzko informazioa" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Ikusi gehiago" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Joera-bideo gehiago ikusi" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Ikusi posta" @@ -13798,15 +13819,15 @@ msgstr "Ikusi txat talde honetarako gonbidapen-esteka" msgid "View the labeling service provided by @{0}" msgstr "Ikusi @{0}-k eskaintzen duen etiketa-zerbitzua" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Ikusi erabiltzaile honen egiaztapenak" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Ikusi feed hau gogoko duten erabiltzaileak" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Bideoa ikusi" @@ -13831,7 +13852,7 @@ msgstr "Ikusi zure moderazio zerrendak" msgid "View your muted accounts" msgstr "Ikusi zuk mutututako kontuak" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Ikusi zure egiaztapenak" @@ -13840,7 +13861,7 @@ msgstr "Ikusi zure egiaztapenak" msgid "Views full image" msgstr "Irudi osoa ikusten du" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Bideoa murgiltze moduan ikusten du" @@ -14001,7 +14022,7 @@ msgstr "Zure lagunak aurkitzen ditugunean jakinaraziko dizugu." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "Weโ€™d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Beta ezaugarriak probatzeko duzun esperientziaren berri izatea gustatuko litzaiguke!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Sare arazoak ditugu, saiatu berriro" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Sare arazoak ditugu, saiatu berriro" @@ -14043,7 +14064,7 @@ msgstr "Sare arazoak ditugu, saiatu berriro" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Bluesky-n egiaztapen-geruza berri bat sartzen ari gara โ€” erraz ikusteko egiaztapen-marka bat." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Pozik gaude gurekin bat egin izanagatik!" @@ -14064,13 +14085,15 @@ msgstr "Sentitzen dugu, baina ezin izan dugu zerrenda hau konpondu. Honek jarrai msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Sentitzen dugu, baina momentu honetan ezin izan ditugu kargatu zure mutututako hitzak. Mesedez, saiatu berriro." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." -msgstr "" +msgstr "Barkatu, baina ezin izan da zure bilaketa osatu." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Sentitzen dugu, baina ezin izan da bilaketa osatu. Mesedez, saiatu berriro minutu batzuk barru." @@ -14078,7 +14101,7 @@ msgstr "Sentitzen dugu, baina ezin izan da bilaketa osatu. Mesedez, saiatu berri msgid "We're sorry, you cannot access this screen at this time." msgstr "Sentitzen dugu, momentu honetan ezin zara pantaila honetara sartu." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sentitzen dugu! Erantzuten ari zaren posta ezabatu da." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "zer berri" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Zer da?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Nork egiaztatu dezake?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Aiba!" @@ -14220,21 +14243,21 @@ msgstr "Erabiltzaile hau blokeatu eta/edo elkarrizketa hau utzi nahi duzu?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Zure zirriborroak ikusi aurretik zirriborro gisa gorde nahi al duzu hau?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Zirriborro gisa gorde nahi duzu geroago editatzeko?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Idatzi post bat" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Idatzi posta" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Idatzi zure erantzuna" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Aplikazioan sartzen utzi aurretik zure adina egiaztatzea eskatzen digun eskualde batetik sartzen ari zara Bluesky-ra." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "{0} blokeatzen ari zara" @@ -14342,7 +14365,7 @@ msgstr "Jada ez zaude zuzenean" msgid "You are not allowed to upload videos." msgstr "Ezin dituzu bideoak kargatu." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Ez zara inor jarraitzen ari oraindik" @@ -14362,7 +14385,7 @@ msgstr "Egiaztatuta zaude. Zure egiaztapen-egoera galduko duzu bistaratzeko izen msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Egiaztatuta zaude. Zure egiaztapen-egoera galduko duzu erabiltzaile izena aldatzen baduzu. <0>Ikasi gehiago." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Zure interesak edonoiz doi ditzakezu \"Edukia eta multimedia\" ezarpenetatik." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Orain pasahitz berriarekin saioa hasi dezakezu." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Gehienez {MAX_GALLERY_IMAGES, plural, other {# irudi}} gehi ditzakezu post bakoitzeko" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "1000 karaktere arteko zirriborroak soilik gorde ditzakezu." @@ -14439,9 +14462,11 @@ msgstr "Txat-historia irakurri dezakezu, baina ezin duzu mezu berririk bidali." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Guztira gehienez {MAX_GALLERY_IMAGES, plural, other {# irudi}} hauta ditzakezu." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Geroago eguneratu dezakezu hau zure ezarpenetan." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Ezin duzu {EMOJI_REACTION_LIMIT, plural, one {emoji erreakzio #} other {# emoji erreakzio}} baino gehiago gehitu" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Ezin duzu txat talde bat sortu oraindik." @@ -14555,7 +14581,7 @@ msgstr "Zure helbide elektronikoa behar bezala egiaztatu duzu. Leiho hau itxi de msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Bideoak kargatzeko mugara iritsi zara aldi baterako. Mesedez, saiatu berriro geroago." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Zirriborro honetan gorde gabeko aldaketak dituzu, gorde nahi dituzu?" @@ -14563,7 +14589,7 @@ msgstr "Zirriborro honetan gorde gabeko aldaketak dituzu, gorde nahi dituzu?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Gorde gabeko aldaketak dituzu. Zirriborroak ikusi aurretik gorde nahi dituzu?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Ez duzu oraindik abio multzorik sortu!" @@ -14614,7 +14640,7 @@ msgstr "Gehienez {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} msgid "You may only add up to 3 feeds" msgstr "Gehienez 3 feed gehi ditzakezu" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Txataren jabea izan behar duzu kide bat kentzeko." @@ -14622,7 +14648,7 @@ msgstr "Txataren jabea izan behar duzu kide bat kentzeko." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Gutxienez 13 urte izan behar dituzu Bluesky erabiltzeko. Irakurri gure <0>Zerbitzu Baldintzak informazio gehiago lortzeko." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Gutxienez beste zazpi pertsona jarraitu behar dituzu abio multzo bat sortzeko." @@ -14639,7 +14665,7 @@ msgstr "Zure multimedia liburutegirako sarbidea baimendu behar duzu." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Zure e-posta helbidea egiaztatu behar duzu e-posta bidezko 2FA gaitu aurretik." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Txat honen jabea zara" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Aplikazioa orain berrabiaraztea komeni da." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Erreakzionatu duzu {0}" @@ -14667,15 +14693,15 @@ msgstr "{0} erreakzionatu duzu {target}-i" msgid "You recently changed your birthdate" msgstr "Duela gutxi aldatu duzu jaiotze data" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Erantzun duzu" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "{originalName}-ri erantzun diozu" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Zeure buruari erantzun diozu" @@ -14715,11 +14741,11 @@ msgstr "Ezin izango zara berriro sartu gonbidatuta ez bazaude." msgid "You: {message}" msgstr "Zu: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Iradokitako erabiltzaileak eta feedak jarraituko dituzu zure kontua sortzen amaitzean!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Iradokitako erabiltzaileak jarraituko dituzu kontua sortzen amaitzean!" @@ -14791,7 +14817,7 @@ msgstr "Eduki aktiboaren amaierara iritsi zara." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Zure feedaren amaierara iritsi zara! Bilatu jarraitzeko kontu gehiago." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Gehienezko zirriborro kopurura iritsi zara" @@ -14799,7 +14825,7 @@ msgstr "Gehienezko zirriborro kopurura iritsi zara" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Eskaera kopuru maximoa gainditu duzu. Mesedez, saiatu berriro geroago." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Gehienezko {MAX_FILTERS, plural, one {iragazki #} other {# iragazki}} kopurura iritsi zara. Berriak sortu beharrean, gehitu balio gehiago lehendik dagoen iragazki bati." @@ -14815,11 +14841,11 @@ msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (byte gehiegi)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (bideo gehiegi)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Ikusteko bideorik gabe geratu zara. Agian momentu ona da atsedena hartzeko?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Zure kontua" @@ -14835,11 +14861,11 @@ msgstr "Zure kontua bertan behera utzi da" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Zure kontuak ez du oraindik bideoak kargatzeko adina. Mesedez, saiatu berriro geroago." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Zure kontua berriegia da" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Zure kontuak gutxienez 7 egun izan behar ditu txat talde berri bat sortzeko." @@ -14896,7 +14922,7 @@ msgstr "Zure helbide elektronikoa" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Zure helbide elektronikoa ez dirudi zuzena denik." @@ -14930,8 +14956,8 @@ msgstr "Zure ostataze-hornitzailea ezin da helbide elektroniko batetik atzeman, msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Zure ostatatze-hornitzailea automatikoki hautematen da sartzen duzun erabiltzaile-izenetik." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Zure interesak eguneratu dira!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Zure interesek gustatzen zaizuna aurkitzen laguntzen digute!" @@ -14967,11 +14993,11 @@ msgstr "Zure pasahitza behar bezala aldatu da! Mesedez, erabili zure pasahitz be msgid "Your password must be at least 8 characters long." msgstr "Pasahitzak 8 karaktereko luzera izan behar du gutxienez." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Zure posta bidali da" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Zure postak bidali dira" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Zure hizkuntza hobetsia" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Zure profileko argazkia" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Zure profileko argazkia beste erabiltzaileen profileko argazkien zirkulu zentrokidez inguratuta" @@ -14992,7 +15018,7 @@ msgstr "Zure profileko argazkia beste erabiltzaileen profileko argazkien zirkulu msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Zure profila, postak, feedak eta zerrendak ez dira ikusgai egongo beste Bluesky erabiltzaileentzat. Zure kontua edonoiz aktiba dezakezu saioa hasita." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Zure erantzuna bidali da" @@ -15005,7 +15031,7 @@ msgstr "Zure salaketa <0>{0}-ra bidaliko da." msgid "Your selected interests help us serve you content you care about." msgstr "Aukeratutako interesek gogoko duzun edukia zerbitzatzen laguntzen digute." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Zure hariak saltatuko diren post hutsak ditu. Gainerako postak hari gisa argitaratuko dira." diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po index 4b7ba035cc..7070fbc2d6 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(sisรคltรครค upotettua sisรคltรถรค)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# tunti} other {# tuntia}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# tykkรคys} other {# tykkรคystรค}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} seurattua" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Kรคyttรคjรคlle {handle} ei voi viestiรค" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {seurattu} other {seurattua}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {lainaus} other {lainausta}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {uudelleenjulkaisu} other {uudelleenjulkaisua}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 pรคivรครค" msgid "7 days" msgstr "7 pรคivรครค" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Saavutettavuus" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Saavutettavuusasetukset" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Tili mykistetty listan perusteella" msgid "Account options" msgstr "Tilin valinnat" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Tili poistettu pikakรคytรถstรค" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Lisรครค tekstivastine (valinnainen)" msgid "Add another account" msgstr "Lisรครค toinen tili" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Lisรครค toinen julkaisu" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Lisรครค tรคmรค syรถte syรถtteisiisi" msgid "Add to lists" msgstr "Lisรครค listoihin" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Aikuinen" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Kaikki" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Kaikki tallentamasi syรถtteet yhdessรค paikassa." @@ -1560,7 +1511,7 @@ msgstr "Sallii pรครคsyn yksityisviesteihin" msgid "Already have a code?" msgstr "Onko sinulla jo koodi?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "Osoitteeseen {0} on lรคhetetty sรคhkรถpostiviesti. Siinรค on vahvistusko msgid "An error has occurred" msgstr "On tapahtunut virhe" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Tapahtui virhe" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Aloituspakettiasi luotaessa tapahtui virhe. Haluatko yrittรครค uudelleen?" @@ -1640,11 +1591,11 @@ msgstr "Aloituspakettiasi luotaessa tapahtui virhe. Haluatko yrittรครค uudelleen msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Videota ladattaessa tapahtui virhe. Yritรค myรถhemmin uudelleen." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Videota ladattaesa tapahtui virhe. Yritรค uudelleen." @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Ongelma, joka ei sisรคlly nรคihin vaihtoehtoihin" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Yritettรคessรค avata chattia ilmenei ongelma" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Sovellussalasanojen nimien on oltava vรคhintรครคn 4 merkkiรค pitkiรค" msgid "App passwords" msgstr "Sovellussalasanat" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Sovellussalasanat" @@ -1891,8 +1838,8 @@ msgstr "Valita tรคstรค pรครคtรถksestรค" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arkistoitu ajankohdasta {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Arkistoitu julkaisu" @@ -1980,7 +1927,7 @@ msgstr "Haluatko varmasti poistaa tรคmรคn syรถtteistรคsi?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Haluatko varmasti hylรคtรค tรคmรคn julkaisun?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "Toista videot ja GIF-animaatiot automaattisesti" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Ennen aloituspaketin luomista sinun on vahvistettava sรคhkรถpostiosoitteesi." @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "Syntymรคpรคivรค" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Estetty" msgid "Blocked accounts" msgstr "Estetyt tilit" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Estetyt tilit" @@ -2282,7 +2244,7 @@ msgstr "Estetyt tilit eivรคt voi vastata ketjuihisi, mainita sinua tai olla muut msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Estetyt tilit eivรคt voi vastata ketjuihisi, mainita sinua tai olla muuten vuorovaikutuksessa kanssasi. Et nรคe niiden sisรคltรถรค, eivรคtkรค ne nรคe sinun sisรคltรถรคsi." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Estรคminen ei estรค tรคtรค merkitsijรครค asettamasta merkintรถjรค tilillesi." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ei voi vahvistaa vรคitetyn pรคivรคmรครคrรคn oikeellisuutta." @@ -2330,7 +2293,7 @@ msgstr "Bluesky on avoin verkosto, jossa voit valita hostauspalveluntarjoajasi. msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky on parempi kavereiden kanssa!" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky valitsee joukon suositeltuja tilejรค verkostosi kรคyttรคjistรค." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Selaa lisรครค syรถtteitรค Explore-sivulla" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Selaa lisรครค ehdotuksia" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Selaa lisรครค ehdotuksia Explore-sivulla" @@ -2425,24 +2388,25 @@ msgstr "Selaa lisรครค ehdotuksia Explore-sivulla" msgid "Browse other feeds" msgstr "Selaa muita syรถtteitรค" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Selaa julkaisuja aiheesta {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Selaa julkaisuja tunnisteella {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Selaa aihetta {displayName}" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Kรคyttรคjรคltรค {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Kรคyttรคjรคltรค <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Luomalla tilin hyvรคksyt <0>kรคyttรถehdot ja <1>tietosuojakรคytรคnn msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Luomalla tilin hyvรคksyt <0>kรคyttรถehdot." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Peruuta tilin kรคyttรถรถnpalautus ja kirjaudu ulos" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Peruuta haku" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chatti mykistetty" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chatin asetukset" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chatti mykistetty" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "Valitse verkkotunnuksen vahvistusmenetelmรค" msgid "Choose Feeds" msgstr "Valitse syรถtteet" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Valitse puolestani" @@ -2854,7 +2819,7 @@ msgstr "Valitse kรคyttรคjรคt" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Valitse tรคmรค vรคri profiilikuvaksesi" @@ -2879,7 +2844,7 @@ msgstr "Valitse oma aikajanasi! Yhteisรถn rakentamat syรถtteet auttavat lรถytรคm msgid "Choose your password" msgstr "Valitse salasanasi" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Valitse kรคyttรคjรคtunnuksesi" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Napsauta tรคstรค yrittรครคksesi uudelleen epรคonnistunutta viestin lรคhetystรค" @@ -3003,7 +2968,7 @@ msgstr "Napsauta tรคstรค yrittรครคksesi uudelleen epรคonnistunutta viestin lรคhe #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Napsauta tรคstรค yrittรครคksesi uudelleen epรคonnistunutta viestin lรคhe msgid "Close" msgstr "Sulje" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Sulje aktiivinen valintaikkuna" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "Sulje tรคmรค valintaikkuna" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Sulkee salasanan pรคivityshรคlytyksen" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Vรคritila" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Sarjakuvat" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Yhteisรถohjeet" @@ -3141,7 +3106,7 @@ msgstr "Yhteisรถohjeet" msgid "Complete onboarding and start using your account" msgstr "Suorita kรคyttรถรถnotto loppuun ja aloita tilisi kรคyttรถ" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Suorita haaste loppuun" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Laadi uusi julkaisu" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "Laadi vastaus" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Pakataan videotaโ€ฆ" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Ota yhteys tukeen" @@ -3253,7 +3218,7 @@ msgstr "Sisรคltรถ ja media" msgid "Content and media" msgstr "Sisรคltรถ ja media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Sisรคltรถ ja media" @@ -3265,10 +3230,6 @@ msgstr "Sisรคltรถ estetty" msgid "Content filters" msgstr "Sisรคllรถnsuodattimet" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Sisรคltรถvaroitus" msgid "Content warnings" msgstr "Sisรคltรถvaroitukset" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Kontekstivalikon tausta-alue. Napsauta sulkeaksesi valikon." @@ -3302,7 +3263,7 @@ msgstr "Kontekstivalikon tausta-alue. Napsauta sulkeaksesi valikon." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Jatka ketjuaโ€ฆ" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Ohjelmiston versio kopioitu leikepรถydรคlle" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Kopioi sovellussalasana" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "Kopioi linkki" msgid "Copy link to list" msgstr "Kopioi listan linkki" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopioi julkaisun linkki" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "Kopioi viestin teksti" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "Kopioi TXT-tietueen arvo" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Tekijรคnoikeuskรคytรคntรถ" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Chatista ei voitu poistua" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Syรถtettรค ei voitu ladata" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Chattia ei voitu mykistรครค" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Luo" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Luo QR-koodi aloituspaketille" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Luo aloituspaketti" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Luo aloituspaketti minulle" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Luo tili" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Luo tili" @@ -3666,15 +3627,15 @@ msgstr "Luo tili" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Luo sen sijaan profiilikuva" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Luo toinen" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "Kulttuuri" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Tumma" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Tumma" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tumma teema" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Oletus" @@ -3894,7 +3855,7 @@ msgstr "Poista tilini" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Poista julkaisu" @@ -3988,7 +3949,7 @@ msgstr "Valintaikkuna: sรครคdรค, kuka voi olla vuorovaikutuksessa tรคmรคn julkai msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Himmeรค" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "Poissa kรคytรถstรค" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Hylkรครค" msgid "Discard changes?" msgstr "Hylรคtรครคnkรถ muutokset?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Hylรคtรครคnkรถ luonnos?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Hylรคtรครคnkรถ julkaisu?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Kiellรค sovelluksia nรคyttรคmรคstรค tiliรคni kirjautumattomille kรคyttรคjille" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Kiellรค sovelluksia nรคyttรคmรคstรค tiliรคni kirjautumattomille kรคyttรค msgid "Discover new custom feeds" msgstr "Lรถydรค uusia mukautettuja syรถtteitรค" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Lรถydรค uusia syรถtteitรค" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Hylkรครค" @@ -4103,28 +4064,28 @@ msgstr "Hylkรครค" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Hylkรครค virhe" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Hylkรครค aloitusopas" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "Nรคytรค suuremmat tekstivastineen merkit" msgid "Display name" msgstr "Nรคyttรถnimi" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "Valmis" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Kaksoisnapauta sulkeaksesi valintaikkunan" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Muokkaa kuvaa" msgid "Edit interaction settings" msgstr "Muokkaa vuorovaikutusasetuksia" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Muokkaa syรถtteitรคni" @@ -4406,6 +4368,11 @@ msgstr "Muokkaa syรถtteitรคni" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Muokkaa kรคyttรคjiรค" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Muokkaa, kuka voi vastata" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Muokkaa aloituspakettiasi" @@ -4500,8 +4467,8 @@ msgstr "Upotuksen HTML-koodi" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Upota julkaisu" @@ -4509,7 +4476,7 @@ msgstr "Upota julkaisu" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Upota tรคmรค julkaisu verkkosivustollesi. Kopioi vain seuraava koodinpรคtkรค ja liitรค se sivustosi HTML-koodiin." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Upotettu videosoitin" @@ -4533,7 +4500,7 @@ msgstr "Ota aikuissisรคltรถ kรคyttรถรถn" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "Ota ulkoinen media kรคyttรถรถn" msgid "Enable media players for" msgstr "Ota mediatoistimet kรคyttรถรถn palveluille" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "Kรคytรถssรค" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Syรถtteen loppu" @@ -4608,7 +4576,7 @@ msgstr "Syรถtรค sana tai tunniste" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Siirry koko nรคytรถn tilaan" @@ -4650,11 +4618,11 @@ msgstr "Syรถtรค kรคyttรคjรคtunnuksesi ja salasanasi" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Virhe" @@ -4684,7 +4652,7 @@ msgstr "Tiedostoa tallennettaessa tapahtui virhe" msgid "Error receiving captcha response." msgstr "Virhe captcha-vastauksen vastaanottamisessa." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "Kaikki voivat vastata" msgid "Everybody can reply to this post." msgstr "Kaikki voivat vastata tรคhรคn julkaisuun." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Kaikilta" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Kaikilta" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "Sulje pois seuraamasi kรคyttรคjรคt" msgid "Excludes users you follow" msgstr "Sulkee pois seuraamasi kรคyttรคjรคt" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Poistu koko nรคytรถn tilasta" @@ -4755,11 +4723,11 @@ msgstr "Laajenna kรคyttรคjรคluettelo" msgid "Expand or collapse the full post you are replying to" msgstr "Laajenna tai pienennรค julkaisu, johon olit vastaamassa" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "Siveetรถn tai mahdollisesti hรคiritsevรค media." msgid "Explicit sexual images." msgstr "Siveettรถmรคn seksuaaliset kuvat." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "Ulkoinen media" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Ulkoinen media voi mahdollistaa verkkosivustoille tietojenkeruun sinusta ja laitteestasi. Tietoja ei lรคhetetรค eikรค pyydetรค, ellet paina โ€toistaโ€-painiketta." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Ulkoisten median asetukset" @@ -4886,7 +4854,7 @@ msgstr "Kรคyttรคjรคtunnuksen vaihtaminen epรคonnistui. Yritรค uudelleen." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Syรถtteiden asetusten lataaminen epรคonnistui" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Ehdotettujen syรถtteiden lataaminen epรคonnistui" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Ehdotettujen seurattavien lataaminen epรคonnistui" @@ -5027,12 +4996,12 @@ msgstr "Ehdotettujen seurattavien lataaminen epรคonnistui" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Syรถte" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Syรถtteen valikko" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Syรถtteet pรคivitetty!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Syรถtteet, joista uskomme sinun pitรคvรคn." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "Tiedosto tallennettu onnistuneesti!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Suodata syรถtteistรค" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "Etsi tilejรค seurattavaksi" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Seuraa tiliรค {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "Seuraa 10:tรค tiliรค" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Seuraa 7:รครค tiliรค" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Tuntemasi kรคyttรคjรคn @{0} seuraajat" @@ -5544,7 +5497,7 @@ msgstr "Tuntemasi seuraajat" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Seurataan kรคyttรคjรครค {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "Seuratut-syรถtteen asetukset" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Seuratut-syรถtteen asetukset" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Seuraa sinua" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Fontti" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Fonttikoko" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Turvallisuussyistรค et voi tarkastella tรคtรค enรครค uudelleen. Jos kadotat sovellussalasanan, sinun on luotava uusi." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Parhaan kรคyttรถkokemuksen saavuttamiseksi suosittelemme kรคyttรคmรครคn teemafonttia." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "Ikuinen" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "Unohtuiko salasana?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "Syรถtteestรค <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generoi aloituspaketti" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "Nรคytรค ohje" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Anna profiilillesi kasvot" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Aihetunniste" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Ongelmia?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "Ohje" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Auta ihmisiรค tietรคmรครคn, ettet ole botti, lataamalla palveluun kuva tai luomalla profiilikuva." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "Piilotettu lista" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Piilotettu lista" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Piilota" @@ -6198,7 +6154,7 @@ msgstr "Piilota vastaus kaikilta" msgid "Hide reply for me" msgstr "Piilota vastaus minulta" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "Piilotetaanko tรคmรค vastaus?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Piilota trendaavat aiheet" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Piilotetaanko trendaavat aiheet?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "Piilota kรคyttรคjรคluettelo" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "Hmm, emme pystyneet lataamaan tรคtรค moderointipalvelua." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Odottakaa! Annamme vรคhitellen pรครคsyn videoon, ja olet yhรค odotusjonossa. Tarkista tilanne pian uudelleen!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Jos haluat vaihtaa salasanasi, lรคhetรคmme sinulle koodin vahvistaaksemme, ettรค tรคmรค on tilisi." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Vรครคrรค kรคyttรคjรคtunnus tai salasana" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "Kutsukoodi" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Kutsukoodia ei hyvรคksytty. Tarkista, ettรค syรถtit sen oikein, ja yritรค uudelleen." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Vain sinรค olet nyt tรคssรค! Lisรครค muita kรคyttรคjiรค aloituspakettiisi yllรค olevalla haulla." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Tyรถpaikan tunnus: {0}" @@ -6816,8 +6766,8 @@ msgstr "Liity keskusteluun" msgid "Journalism" msgstr "Journalismi" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Merkinnyt {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Tekijรคn merkitsemรค." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Merkinnรคt" @@ -6852,7 +6802,7 @@ msgstr "Merkinnรคt lisรคtty" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Merkinnรคt ovat kรคyttรคjiรค ja sisรคltรถรค koskevia huomioita. Niitรค voidaan kรคyttรครค verkoston piilottamiseen, varoittamiseen ja luokitteluun." @@ -6864,7 +6814,7 @@ msgstr "Tilisi merkinnรคt" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Kieliasetukset" @@ -6874,7 +6824,7 @@ msgstr "Kieliasetukset" msgid "Languages" msgstr "Kielet" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Suurempi" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Uusimmat" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Lue lisรครค" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Lue lisรครค PDS:n itse hostaamisesta." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Lue lisรครค tรคstรค varoituksesta" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Lue lisรครค." @@ -6993,8 +6943,8 @@ msgstr "Poistu" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Poistutaan Blueskysta" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "jรคljellรค." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Anna minun valita" @@ -7057,7 +7007,7 @@ msgstr "Aloitetaan!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Vaalea" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Vaalea" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Tykkรครค" @@ -7076,7 +7026,7 @@ msgstr "Tykkรครค" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Tykkรครค ({0, plural, one {# tykkรคys} other {# tykkรคystรค}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Tykkรครค 10 julkaisusta" @@ -7085,7 +7035,7 @@ msgstr "Tykkรครค 10 julkaisusta" msgid "Like 10 posts to train the Discover feed" msgstr "Tykkรครค 10 julkaisusta kouluttaaksesi Discover-syรถtettรค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Tykkรครค tรคstรค syรถtteestรค" @@ -7093,8 +7043,8 @@ msgstr "Tykkรครค tรคstรค syรถtteestรค" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Tykรคnneet" @@ -7111,27 +7061,45 @@ msgstr "Tykรคnneet" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Tykรคnnyt {0, plural, one {# kรคyttรคjรค} other {# kรคyttรคjรครค}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Tykรคnnyt {likeCount, plural, one {# kรคyttรคjรค} other {# kรคyttรคjรครค}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Tykkรคykset" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Tรคmรคn julkaisun tykkรคykset" @@ -7144,7 +7112,7 @@ msgstr "Lineaarisesti" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Listan mykistys poistettu" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Lue lisรครค" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Lataa lisรครค ehdotettuja syรถtteitรค" @@ -7292,8 +7260,8 @@ msgstr "Lataa lisรครค ehdotettuja syรถtteitรค" msgid "Load new notifications" msgstr "Lataa uusia ilmoituksia" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Loki" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Tee minulle sellainen" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Merkitse luetuksi" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media, joka voi olla hรคiritsevรครค tai sopimatonta joillekin yleisรถille." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "mainitut kรคyttรคjรคt" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Maininnat" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Viesti poistettu" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Viestit" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderointi" @@ -7636,7 +7608,7 @@ msgstr "Moderointilista pรคivitetty" msgid "Moderation lists" msgstr "Moderointilistat" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderointilistat" @@ -7645,7 +7617,7 @@ msgstr "Moderointilistat" msgid "moderation settings" msgstr "moderointiasetukset" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderointitilat" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "Mykistetyt tilit" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Mykistetyt tilit" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Ei se mitรครคn, luo minulle kรคyttรคjรคtunnus" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Uusi" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Uusi chatti" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "Uusi lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Uusi salasana" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Uusi julkaisu" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Uusimmat vastaukset ensin" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Uutiset" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Seuraava kuva" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "Ei vielรค sovellussalasanoja" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Syรถtteitรค ei lรถydy. Kokeile hakea jotain muuta." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Ei vielรค tykkรคyksiรค" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "Et enรครค seuraa kรคyttรคjรครค {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "Ei vielรค viestejรค" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "Vain tekijรค voi lainata tรคtรค julkaisua." msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Ei vielรค lainauksia" @@ -8198,11 +8190,7 @@ msgstr "Ei vielรค lainauksia" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "Ei tulosta" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Ei tuloksia" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "Tuloksia ei lรถytynyt" msgid "No results found for \"{query}\"" msgstr "Ei tuloksia haulle โ€{query}โ€" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "Ei kiitos" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "Ei keneltรคkรครคn" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Kukaan ei ole vielรค tykรคnnyt tรคstรค. Ehkรค sinun pitรคisi olla ensimmรคinen!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Kukaan ei ole vielรค lainannut tรคtรค. Ehkรค sinun pitรคisi olla ensimmรคinen!" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Ei-seksuaalinen alastomuus" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Ei lรถydy" @@ -8333,7 +8325,7 @@ msgstr "Huomio jakamisesta" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Huomio: Bluesky on avoin ja julkinen verkosto. Tรคmรค asetus rajoittaa vain sisรคltรถsi nรคkyvyyttรค Bluesky-sovelluksessa ja -verkkosivustolla, eivรคtkรค muut sovellukset vรคlttรคmรคttรค noudata tรคtรค asetusta. Sisรคltรถsi voi silti nรคkyรค kirjautumattomille kรคyttรคjille muissa sovelluksissa ja muilla sivustoilla." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Ilmoitusasetukset" @@ -8353,11 +8345,12 @@ msgstr "Ilmoitusasetukset" msgid "Notification sounds" msgstr "Ilmoitusasรครคnet" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Voi ei!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Selvรค" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Kรคyttรถรถnoton nollaus" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Ainakin yhdeltรค GIF-animaatiolta puuttuu tekstivastine." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Ainakin yhdeltรค kuvalta puuttuu tekstivastine." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Ainakin yhdeltรค videolta puuttuu tekstivastine." @@ -8471,7 +8466,7 @@ msgstr "Vain {0} voi vastata." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Vain WebVTT (.vtt) -tiedostoja tuetaan" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Hups!" @@ -8544,7 +8543,7 @@ msgstr "Hups!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Avaa profiilikuvan luontityรถkalu" @@ -8570,21 +8569,22 @@ msgstr "Avaa keskustelun valinnat" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Avaa alavalikko" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Avaa emojinvalitsin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Avaa syรถtteen tietonรคkymรค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Avaa syรถtteen valinnat" @@ -8627,7 +8627,7 @@ msgstr "Avaa moderoinnin vianetsintรคsivu" msgid "Open muted words and tags settings" msgstr "Avaa mykistettyjen sanojen ja tunnisteiden asetukset" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "Avaa vienetsintรคkirjauksen lisรคtiedot" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Avaa laitteen kameran" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Avaa vaiheet uuden Bluesky-tilin luomiseksi" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Avaa vaiheet olemassa olevaan Bluesky-tiliisi kirjautumiseksi" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Salasana pรคivitetty!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pysรคytรค" @@ -8925,12 +8925,12 @@ msgstr "Pysรคytรค" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pysรคytรค video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Kรคyttรคjรคt" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Kรคyttรคjรคt, joita @{0} seuraa" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Kรคyttรคjรคt, jotka seuraavat tiliรค @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Aikuisille tarkoitetut kuvat." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Kiinnitรค syรถte" @@ -9034,7 +9034,7 @@ msgstr "Kiinnitรค syรถte" msgid "Pin to home" msgstr "Kiinnitรค kotinรคkymรครคn" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Kiinnitรค kotinรคkymรครคn" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Kiinnitetty" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Kiinnitetty {0} kotinรคkymรครคn" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Kiinnitetty syรถtteisiisi" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Toista" @@ -9076,8 +9076,8 @@ msgstr "Toista {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Toista video" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Valitse kรคyttรคjรคtunnuksesi." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Valitse salasanasi." @@ -9122,7 +9122,7 @@ msgstr "Valitse salasanasi." msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." msgstr "" -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Tรคydennรค vahvistus-captcha, ole hyvรค." @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Syรถtรค sรคhkรถpostiosoitteesi." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politiikka" @@ -9269,7 +9269,7 @@ msgstr "Politiikka" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Julkaise" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Julkaise" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Julkaise kaikki" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Julkaissut @{0}" @@ -9340,7 +9340,7 @@ msgstr "Piilottamasi julkaisu" msgid "Post interaction settings" msgstr "Julkaisun vuorovaikutusasetukset" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "Julkaisu kiinnitetty" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "Julkaisu irrotettu" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Julkaisut" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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รค." @@ -9398,6 +9396,10 @@ msgstr "Julkaisuja voi mykistรครค tekstin, tunnisteiden tai kummankin perusteell msgid "Posts hidden" msgstr "Julkaisut piilotettu" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Yksityisyys" msgid "Privacy and security" msgstr "Yksityisyys ja turvallisuus" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Yksityisyys ja turvallisuus" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Tietosuojakรคytรคntรถ" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Kรคsitellรครคn videotaโ€ฆ" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Julkisia, jaettavia listoja kรคyttรคjistรค, joita voi mykistรครค tai estรครค massoittain." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Lainausjulkaisut poissa kรคytรถstรค" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Lainaukset" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Tรคmรคn julkaisun lainaukset" @@ -9647,7 +9650,7 @@ msgstr "Palauta tilisi kรคyttรถรถn" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "Lue Blueskyn tietosuojakรคytรคntรถ" msgid "Read the Bluesky Terms of Service" msgstr "Lue Blueskyn kรคyttรถehdot" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Suositellut" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Yhdistรค uudelleen" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Lataa keskustelut uudelleen" @@ -9766,7 +9765,7 @@ msgstr "Lataa keskustelut uudelleen" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Poista" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Poista tili" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Poista syรถtteistรคni" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Poistetaanko pikakรคytรถstรค?" @@ -9862,7 +9861,7 @@ msgstr "Poistetaanko pikakรคytรถstรค?" msgid "Remove from saved feeds" msgstr "Poista tallennetuista syรถtteistรค" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Poista kuva" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Poistettu listasta" msgid "Removed from saved feeds" msgstr "Poistettu tallennetuista syรถtteistรค" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Vastaukset" @@ -10037,7 +10037,7 @@ msgstr "Tรคhรคn julkaisuun vastaaminen on poissa kรคytรถstรค." msgid "Reply" msgstr "Vastaa" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Vastaa" @@ -10098,8 +10098,8 @@ msgstr "Ilmianna keskustelu" msgid "Report dialog" msgstr "Ilmiannon valintaikkuna" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Ilmianna syรถte" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Uudelleenjulkaisit" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Tรคmรคn julkaisun uudelleenjulkaisut" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Yrittรครค uudelleen viimeisintรค toimintoa, joka epรคonnistui" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Palaa kotinรคkymรครคn" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Palaa edelliselle sivulle" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Tallenna muutokset" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Tallenna QR-koodi" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Tallenna syรถtteisiini" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Tallennetut syรถtteet" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Tallennettu syรถtteisiisi" @@ -10520,8 +10520,8 @@ msgstr "Tallennettu syรถtteisiisi" msgid "Say hello!" msgstr "Tervehdi!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Tiede" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Vieritรค alkuun" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Haku" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Hae syรถtteitรค, joita haluat ehdottaa toisille." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Hae GIF-animaatioita" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Katso Blueskyn tyรถpaikat" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Kelauksen liukusรครคdin. Kรคytรค nuolinรคppรคimiรค eteen- ja taaksepรคin kelaamiseen ja vรคlilyรถntiรค toistamiseen tai pysรคyttรคmiseen." #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Valitse vรคri" @@ -10764,11 +10769,11 @@ msgstr "Valitse tili" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Valitse profiilikuva" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Valitse emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Valitse GIF" msgid "Select GIF \"{0}\"" msgstr "Valitse GIF โ€{0}โ€" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Valitse emoji {emojiName} profiikuvaksesi" @@ -10945,7 +10951,8 @@ msgstr "Lรคhetรค viesti" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Lรคhetรค julkaisu kรคyttรคjรคlleโ€ฆ" @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Lรคhetรค vahvistussรคhkรถpostiviesti" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Lรคhetรค yksityisviestillรค" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Asettaa sรคhkรถpostiosoitteen salasanan palautusta varten" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Asetukset" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Jaa kuitenkin" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Jaa linkki -valintaikkuna" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Jaa QR-koodi" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Jaa tรคmรค syรถte" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Jaa tรคmรค aloituspaketti" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Jaa tรคmรค aloituspaketti ja auta muita liittymรครคn yhteisรถรถsi Blueskyssa." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Jaettujen asetusten testeri" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Nรคytรค" msgid "Show alt text" msgstr "Nรคytรค tekstivastine" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Nรคytรค silti" @@ -11274,9 +11281,9 @@ msgstr "Nรคytรค lista silti" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Nรคytรค lisรครค" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Nรคytรค varoitus ja suodata syรถtteistรค" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Kirjaudutaanko ulos?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Sisรครคnkirjautuminen vaaditaan" @@ -11469,7 +11476,7 @@ msgstr "Ohita" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Pienempi" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Muita syรถtteitรค, joista saattaisit pitรครค" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Jokin meni vikaan, yritรค uudelleen" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "Jokin meni vikaan. Yritรค uudelleen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Onko jokin vialla? Kerro meille." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Urheilu" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Aloita uusi chatti" @@ -11682,17 +11689,17 @@ msgstr "Ala lisรคtรค kรคyttรคjiรค" msgid "Start adding people!" msgstr "Ala lisรคtรค kรคyttรคjiรค!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Aloita chatti kรคyttรคjรคn {displayName} kanssa" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Aloituspaketti" @@ -11715,12 +11722,16 @@ msgstr "Oma aloituspakettisi" msgid "Starter pack is invalid" msgstr "Aloituspaketti on virheellinen" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Aloituspaketit" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Aloituspakettien avulla voit jakaa helposti suosikkisyรถtteesi ja -kรคyttรคjรคsi kavareillesi." @@ -11728,7 +11739,7 @@ msgstr "Aloituspakettien avulla voit jakaa helposti suosikkisyรถtteesi ja -kรคyt msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Tilasivu" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Vaihe {0}/{1}" @@ -11754,7 +11765,7 @@ msgstr "Tallennustila tyhjennetty. Sinun on nyt kรคynnistettรคvรค sovellus uudel msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Tilaa @{0} kรคyttรครคksesi nรคitรค merkintรถjรค:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Ehdotuksia sinulle" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Jรคrjestelmรค" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Hylkรครค napauttamalla" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Tehtรคvรค valmis โ€“ 10 seurattua!" msgid "Task complete - 10 likes!" msgstr "Tehtรคvรค valmis โ€“ 10 tykkรคystรค!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Opeta algoritmillemme, mistรค pidรคt" @@ -12060,7 +12073,7 @@ msgstr "Ehdot" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Tรคtรค aloituspakettia ei lรถydy." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Siinรค kaikki, ihmiset!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "Palvelin nรคyttรครค kรคrsivรคn ongelmista. Yritรค hetken kuluttua uudell msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Aloituspaketti, jonka yritit nรคyttรครค, on virheellinen. Voit sen sijaan poistaa tรคmรคn aloituspaketin." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "Antamasi vahvistuskoodi on virheellinen. Varmista, ettรค olet kรคyttรคny msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Teema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Yhteydenotossa palvelimeen ilmeni ongelma" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Yhteydenotossa palvelimeen ilmeni ongelma. Tarkista internetyhteytesi ja yritรค uudelleen." @@ -12283,8 +12296,8 @@ msgstr "Yhteydenotossa palvelimeen ilmeni ongelma. Tarkista internetyhteytesi ja msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ilmoitusten hakemisessa ilmeni ongelma. Napauta tรคstรค yrittรครคksesi uudelleen." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Julkaisujen hakemisessa ilmeni ongelma. Napauta tรคstรค yrittรครคksesi uudelleen." @@ -12309,7 +12322,7 @@ msgstr "Palvelutietojesi hakemisessa ilmeni ongelma" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Tรคmรคn syรถtteen poistamisessa ilmeni ongelma. Tarkista internetyhteytesi ja yritรค uudelleen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Nรคmรค asetukset vaikuttavat vain Seuratut-syรถtteeseen." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Tรคmรค {screenDescription} on liputettu:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Tรคmรค tili on pyytรคnyt, ettรค kรคyttรคjรคt kirjautuvat sisรครคn nรคhdรคkseen profiilin." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Tรคmรค syรถte on tyhjรค! Sinun on ehkรค seurattava useampia kรคyttรคjiรค tai sรครคdettรคvรค kieliasetuksiasi." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Tรคmรค syรถte on tyhjรค." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Tรคmรค kรคyttรคjรคtunnus on varattu. Kokeile toista." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Tรคmรค merkintรค on itse asettamasi." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Tรคmรค merkitsijรค ei ole ilmoittanut, mitรค merkintรถjรค se julkaisee, eikรค vรคlttรคmรคttรค ole aktiivinen." @@ -12621,13 +12634,13 @@ msgstr "Tรคmรค lista on tyhjรค." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Tรคmรค julkaisu vรคittรครค olevansa luotu <0>{0}, mutta ensi kerran se on nรคhty Blueskyssa <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Tรคmรค julkaisu vรคittรครค olevansa luotu <0>{0}, mutta ensi kerran msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Tรคmรค julkaisu piilotetaan syรถtteistรค ja ketjuista. Tรคtรค ei voi kumota." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Tรคmรคn julkaisun tekijรค on poistanut lainausjulkaisut kรคytรถstรค." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Tรคllรค kรคyttรคjรคllรค ei ole yhtรครคn seuraajaa." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Tรคmรค kรคyttรคjรค on estรคnyt sinut. Et voi nรคhdรค hรคnen sisรคltรถรครคn." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Tรคmรค kรคyttรคjรค on listassa <0>{0}, jonka olet mykistรคnyt." msgid "This user is new here. Press for more info about when they joined." msgstr "Tรคmรค kรคyttรคjรค on uusi tรครคllรค. Paina tรคtรค nรคhdรคksesi, milloin hรคn liittyi." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Tรคmรค kรคyttรคjรค ei seuraa ketรครคn." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Tรคmรค poistaa tilin @{0} pikakรคyttรถluettelosta." @@ -12786,7 +12801,7 @@ msgstr "Ketjun asetukset" msgid "Threaded" msgstr "Ketjuna" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Ketjujen asetukset" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Suosituimmat" @@ -12858,7 +12873,7 @@ msgstr "Suosituimmat" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Aihe" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Trendaavat" @@ -12902,12 +12919,14 @@ msgstr "Trendaavat" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Poistetaanko tilin esto?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Lopeta kรคyttรคjรคn {0} seuraaminen" msgid "Unfollow account" msgstr "Lopeta tilin seuraaminen" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "ร„lรค tykkรครค" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "Poista ketjun mykistys" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Poista videon mykistys" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Irrota" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Irrota syรถte" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Irrota kotinรคkymรคstรค" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Irrota moderointilista" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Irrotettu {0} kotinรคkymรคstรค" @@ -13258,11 +13279,11 @@ msgstr "Peruuta merkitsijรคn tilaus" msgid "Unsubscribed from list" msgstr "Listan tilaus peruutettu" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Vastauksen nรคkyvyyden pรคivittรคminen epรคonnistui" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Lataa palveluun sen sijaan kuva" @@ -13355,7 +13376,7 @@ msgstr "Lataa tiedostoista" msgid "Upload from Library" msgstr "Lataa kirjastosta" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "Ladataan kuvia palveluunโ€ฆ" msgid "Uploading link thumbnail..." msgstr "Ladataan linkin pikkukuvaa palveluunโ€ฆ" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Ladataan videota palveluunโ€ฆ" @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "" msgid "Video failed to process" msgstr "Videon kรคsitteleminen epรคonnistui" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videopelit" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Videota ei lรถydy." @@ -13653,7 +13674,7 @@ msgstr "Videota ei lรถydy." msgid "Video settings" msgstr "Videon asetukset" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video ladattu palveluun" @@ -13662,17 +13683,17 @@ msgstr "Video ladattu palveluun" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videot" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "Nรคytรค kรคyttรคjรคn {0} profiilikuva" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Nรคytรค kรคyttรคjรคn {0} profiili" @@ -13724,13 +13745,13 @@ msgstr "Katso blogijulkaisu saadaksesi lisรคtietoja" msgid "View debug entry" msgstr "Nรคytรค vianetsintรคkirjaus" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Nรคytรค lisรคtietoja" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Nรคytรค koko ketju" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "Nรคytรค tietoja nรคistรค merkinnรถistรค" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Nรคytรค kรคyttรคjรคn @{0} tarjoama merkintรคpalvelu" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Nรคytรค tรคstรค syรถtteestรค tykรคnneet kรคyttรคjรคt" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "Nรคytรค moderointilistasi" msgid "View your muted accounts" msgstr "Nรคytรค mykistรคmรคsi tilit" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Meillรค on verkko-ongelmia, yritรค uudelleen" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "Pahoittelemme, mutta emme onnistuneet resolvoimaan tรคtรค listaa. Jos t msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Pahoittelut, mutta emme tรคllรค kertaa onnistuneet lataamaan mykistettyjรค sanojasi. Yritรค uudelleen." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Pahoittelut! Julkaisu, johon olet vastaamassa, on poistettu." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Mitรค kuuluu?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Hupsista!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Kirjoita julkaisu" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Kirjoita vastauksesi" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Sinun ei ole mahdollista ladata videoita palveluun." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Voit nyt kirjautua sisรครคn uudella salasanallasi." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Voit pรคivittรครค tรคmรคn myรถhemmin asetuksistasi." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Olet vรคliaikaisesti saavuttanut videolatausten rajoituksen. Yritรค myรถhemmin uudelleen." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Et ole luonut vielรค aloituspakettia!" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Voit lisรคtรค enintรครคn 3 syรถtettรค" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Sinun on seurattava ainakin seitsemรครค muuta kรคyttรคjรครค, jotta voit luoda aloituspaketin." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Alat seurata ehdotettuja kรคyttรคjiรค ja syรถtteitรค, kun olet saanut tilisi luomisen valmiiksi!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Alat seurata ehdotettuja kรคyttรคjiรค, kun olet saanut tilisi luomisen valmiiksi!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Olet pรครคssyt syรถtteesi loppuun! Etsi lisรครค tilejรค seurattavaksi." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Olet saavuttanut pรคivรคkohtaisen videolatausten rajoituksen (liian mont msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Olet saavuttanut pรคivรคkohtaisen videolatausten rajoituksen (liian monta videota)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Tilisi" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tilisi ei ole riittรคvรคn vanha videoiden lataamiseksi palveluun. Yritรค myรถhemmin uudelleen." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Sรคhkรถpostiosoitteesi on nรคhtรคvรคsti virheellinen." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Profiilisi, julkaisusi, syรถtteesi ja listasi eivรคt enรครค nรคy muille Blueskyn kรคyttรคjille. Voit palauttaa tilisi kรคyttรถรถn milloin tahansa kirjautumalla sisรครคn." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/fr-CA/messages.po b/src/locale/locales/fr-CA/messages.po new file mode 100644 index 0000000000..67dc108953 --- /dev/null +++ b/src/locale/locales/fr-CA/messages.po @@ -0,0 +1,15044 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-11-05 16:01-0800\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: fr_CA\n" +"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2026-07-28 06:05\n" +"Last-Translator: \n" +"Language-Team: French, Canada\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: fr-CA\n" +"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" +"X-Crowdin-File-ID: 11\n" + +#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. +#: src/components/InterestTabs.tsx:333 +msgid "\"{interestsDisplayName}\" category (active)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:902 +msgid "(blocked message hidden)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/getMessageInfo.ts:123 +#: src/components/dms/replyPreview.ts:85 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:105 +msgid "(contains embedded content)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:916 +msgid "(deleted message)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:68 +msgid "(disabled chat invite link)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:77 +msgid "(invalid chat invite link)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:910 +msgid "(message sent before you joined)" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:74 +msgid "(no email)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:107 +msgid "(no text)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:99 +msgid "(quoted post)" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/LabelsOnMe.tsx:57 +msgid "{0, plural, one {# account label} other {# account labels}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "" + +#. placeholder {0}: profile.followersCount ?? 0 +#: src/screens/Profile/ProfileFollowers.tsx:33 +msgid "{0, plural, one {# follower} other {# followers}}" +msgstr "" + +#. placeholder {0}: profile.followsCount ?? 0 +#: src/screens/Profile/ProfileFollows.tsx:33 +msgid "{0, plural, one {# following} other {# following}}" +msgstr "" + +#. placeholder {0}: item.count +#: src/components/contacts/screens/ViewMatches.tsx:268 +msgid "{0, plural, one {# friend found!} other {# friends found!}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:159 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/PostAlerts.tsx:157 +msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/PostAlerts.tsx:164 +msgid "{0, plural, one {# label applied} other {# labels applied}}" +msgstr "" + +#. placeholder {0}: likeCount ?? 0 +#: src/screens/Post/PostLikedBy.tsx:34 +msgid "{0, plural, one {# like} other {# likes}}" +msgstr "" + +#. placeholder {0}: convo.details.memberCount +#: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 +msgid "{0, plural, one {# member} other {# members}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:149 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:180 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "" + +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:224 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "" + +#. placeholder {0}: reactions.length +#. placeholder {1}: groupedReactions.map(g => g.value).join(' ') +#: src/components/dms/MessageItem.tsx:371 +msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" +msgstr "" + +#. placeholder {0}: quoteCount ?? 0 +#: src/screens/Post/PostQuotes.tsx:34 +msgid "{0, plural, one {# quote} other {# quotes}}" +msgstr "" + +#. placeholder {0}: quoteCount ?? 0 +#: src/screens/Post/PostRepostedBy.tsx:34 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:139 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "" + +#. placeholder {0}: numUnreadMessages.numUnread ?? 0 +#. placeholder {0}: numUnreadNotifications ?? 0 +#: src/view/shell/bottom-bar/BottomBar.tsx:251 +#: src/view/shell/bottom-bar/BottomBar.tsx:283 +#: src/view/shell/Drawer.tsx:557 +msgid "{0, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes. +#. placeholder {0}: view.readingTime +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:251 +msgid "{0, plural, one {#m} other {#m}}" +msgstr "" + +#. How many months have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:182 +msgid "{0, plural, one {#mo} other {#mo}}" +msgstr "" + +#. placeholder {0}: draft.meta.replyCount +#: src/view/com/composer/drafts/DraftItem.tsx:143 +msgid "{0, plural, one {1 more post} other {# more posts}}" +msgstr "" + +#. placeholder {0}: profile.followersCount || 0 +#: src/components/ProfileHoverCard/index.web.tsx:444 +#: src/screens/Profile/Header/Metrics.tsx:22 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: profile.followsCount || 0 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/screens/Profile/Header/Metrics.tsx:26 +msgid "{0, plural, one {following} other {following}}" +msgstr "" + +#. placeholder {0}: profile.postsCount || 0 +#: src/screens/Profile/Header/Metrics.tsx:58 +msgid "{0, plural, one {post} other {posts}}" +msgstr "" + +#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack +#. placeholder {0}: starterPack.joinedAllTimeCount || 0 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +msgid "{0, plural, other {# people have}} joined Bluesky via this starter pack!" +msgstr "" + +#. placeholder {0}: starterPack.list.listItemCount - 4 +#: src/components/dialogs/StarterPackDialog.tsx:362 +msgid "{0, plural, other {+# more}}" +msgstr "" + +#. placeholder {0}: aaRegionConfig.minAccessAge +#: src/screens/Signup/StepInfo/index.tsx:314 +msgid "{0, plural, other {You must be # years of age or older to create an account in your region.}}" +msgstr "" + +#. placeholder {0}: i18n.date(d, {timeStyle: ts}) +#. placeholder {1}: i18n.date(d, {dateStyle: 'medium'}) +#: src/lib/strings/time.ts:15 +msgctxt "date and time formatted like this: [time] ยท [date]" +msgid "{0} ยท {1}" +msgstr "" + +#. placeholder {0}: desc.name +#: src/components/moderation/ContentHider.tsx:98 +msgid "{0} (Account)" +msgstr "" + +#. Pattern: {wordValue} in tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:495 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:484 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 +msgid "{0} added to chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +msgid "{0} and {1} added to chat" +msgstr "" + +#. placeholder {0}: profile.followsCount || 0 +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/dms/MessageItem.tsx:724 +msgid "{0} is blocking you" +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle) +#: src/features/liveNow/components/LiveStatusDialog.tsx:84 +msgid "{0} is live" +msgstr "" + +#. placeholder {0}: createFullHandle(draftValue, state.userDomain) +#: src/screens/Signup/StepHandle/index.tsx:211 +msgid "{0} is not available" +msgstr "" + +#. placeholder {0}: codeToLanguageName( expectedSourceLanguage, langPrefs.appLanguage, ) +#: src/lib/translation/index.tsx:314 +msgid "{0} is not supported by your device." +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:83 +msgid "{0} joined" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:84 +msgid "{0} joined the group" +msgstr "" + +#. placeholder {0}: formatCount(i18n, JOINED_THIS_WEEK) +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 +msgid "{0} joined this week" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:96 +msgid "{0} left" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:97 +msgid "{0} left the group" +msgstr "" + +#. placeholder {0}: formatTime(currentTime) +#. placeholder {1}: formatTime(duration) +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 +msgid "{0} of {1}" +msgstr "" + +#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field +#. placeholder {0}: state.name?.length +#: src/screens/StarterPack/Wizard/StepDetails.tsx:56 +msgid "{0} out of 50" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(memberSender) +#. placeholder {1}: reaction.value +#: src/components/dms/MessageItem.tsx:366 +msgid "{0} reacted {1}" +msgstr "" + +#. Accessibility hint for the bottom bar chat icon when the number of unread messages exceeds the cap, with the + symbol already included โ€“ for example, 99+ unread items +#. placeholder {0}: numUnreadMessages.numUnread +#: src/view/shell/bottom-bar/BottomBar.tsx:246 +msgid "{0} unread items" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:57 +msgid "{0} was added" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:58 +msgid "{0} was added to the group" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:70 +msgid "{0} was removed" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:71 +msgid "{0} was removed from the group" +msgstr "" + +#. List formatting: {0}, {1}, {2} +#. placeholder {0}: link(lang) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:113 +msgid "{0}, " +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 +msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" +msgstr "" + +#. placeholder {0}: feed.displayName +#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') +#. placeholder {2}: feed.likeCount || 0 +#: src/view/com/feeds/FeedSourceCard.tsx:189 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#. placeholder {0}: feed.displayName +#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') +#: src/view/com/feeds/FeedSourceCard.tsx:192 +msgid "{0}, a list by {1}" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 +msgid "{0}'s avatar" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/screens/Messages/JoinRequest.tsx:139 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {0}: preview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: joinLinkPreview.memberLimit +#. placeholder {2}: preview.memberLimit +#: src/components/dms/ChatInvite/Card.tsx:62 +#: src/components/intents/GroupChatJoinDialog.tsx:341 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. Badge showing the current image position out of the total number of images in a gallery. +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:532 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" + +#. Displayed when the number of requests exceeds the cap โ€“ for example, 99+ requests +#. placeholder {0}: UNREAD_REQUEST_CAP - 1 +#: src/screens/Messages/components/InboxRequests.tsx:55 +msgid "{0}+" +msgstr "" + +#. Displayed when the number of requests exceeds the cap +#. placeholder {0}: UNREAD_REQUEST_CAP - 1 +#: src/screens/Messages/components/InboxRequests.tsx:30 +msgid "{0}+ requests" +msgstr "" + +#. How many days have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:171 +msgid "{0}d" +msgstr "" + +#. How many hours have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:161 +msgid "{0}h" +msgstr "" + +#. How many minutes have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:151 +msgid "{0}m" +msgstr "" + +#. How many seconds have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:141 +msgid "{0}s" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:38 +msgid "{count, plural, one {# chat update} other {# chat updates}}" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "" + +#: src/screens/Messages/components/InboxRequests.tsx:34 +msgid "{count, plural, one {# request} other {# requests}}" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:484 +msgid "{count, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:427 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + +#: src/components/dms/DateDivider.tsx:60 +msgid "{date} at {time}" +msgstr "" + +#: src/lib/generate-starterpack.ts:104 +#: src/screens/StarterPack/Wizard/index.tsx:189 +msgid "{displayName}'s Starter Pack" +msgstr "" + +#: src/screens/SignupQueued.tsx:219 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "" + +#: src/screens/SignupQueued.tsx:225 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:170 +msgid "{filterCount, plural, one {+# filter} other {+# filters}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:361 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:395 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:304 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:500 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:473 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:328 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:524 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:419 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:448 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:373 +msgid "{firstAuthorLink} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:350 +msgid "{firstAuthorLink} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:407 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:316 +msgid "{firstAuthorLink} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:512 +msgid "{firstAuthorLink} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:485 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:340 +msgid "{firstAuthorLink} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "{firstAuthorLink} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:431 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:460 +msgid "{firstAuthorLink} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:354 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:388 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:297 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:493 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:466 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:321 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:517 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:412 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:441 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:359 +msgid "{firstAuthorName} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:349 +msgid "{firstAuthorName} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:393 +msgid "{firstAuthorName} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:302 +msgid "{firstAuthorName} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:498 +msgid "{firstAuthorName} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:471 +msgid "{firstAuthorName} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:326 +msgid "{firstAuthorName} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:522 +msgid "{firstAuthorName} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:417 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:446 +msgid "{firstAuthorName} verified you" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:572 +msgid "{following} following" +msgstr "" + +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:1158 +msgid "{handle} canโ€™t be added" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:459 +msgid "{handle} can't be messaged" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:1119 +msgid "{handle} canโ€™t be messaged" +msgstr "" + +#: src/features/liveNow/utils.ts:40 +msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" +msgstr "" + +#: src/features/liveNow/utils.ts:44 +msgid "{hours, plural, one {# hour} other {# hours}}" +msgstr "" + +#. Displayed when the number of requests is greater than 20 +#: src/screens/Messages/components/RequestStatus.tsx:69 +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:219 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "" + +#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack +#: src/components/StarterPack/StarterPackCard.tsx:102 +msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:138 +msgid "{MAX_ALT_TEXT, plural, other {Alt text must be less than # characters.}}" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:380 +msgid "{MAX_DESCRIPTION, plural, other {Description is too long. The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:329 +msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 +msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" +msgstr "" + +#. The number of group chat members out of the total number of permitted users. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 +msgid "{memberCount}/{memberLimit}" +msgstr "" + +#: src/features/liveNow/utils.ts:35 +msgid "{minutes, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:65 +msgid "{name} reacted {0} to {target}" +msgstr "" + +#. When the last message in a group chat came from someone other than you. +#: src/components/dms/getMessageInfo.ts:89 +msgid "{name}: {message}" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:76 +msgid "{name}'s favorite feeds and people - join me!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:49 +msgid "{name}'s starter pack" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 +msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:457 +msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:115 +msgid "{profileName} joined Bluesky {timeAgoString} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:112 +msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" +msgstr "" + +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 +msgid "{rank}." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 +msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:811 +msgid "{replierDisplayName} replied" +msgstr "" + +#: src/components/dms/MessageItem.tsx:810 +msgid "{replierDisplayName} replied to {originalName}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:808 +msgid "{replierDisplayName} replied to you" +msgstr "" + +#. The number of requests to join a group chat. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 +msgid "{requestCount, plural, one {# request} other {# requests}}" +msgstr "" + +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 +msgid "{requestCount}+ requests" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:62 +msgid "{userName} is a trusted verifier" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:69 +msgid "{userName} is verified" +msgstr "" + +#. Possessive, meaning "the verifications of {userName}" +#: src/components/verification/VerificationsDialog.tsx:71 +msgid "{userName}'s verifications" +msgstr "" + +#. Number of images beyond the first 3 +#. placeholder {0}: labels.length +#. placeholder {0}: totalNumber - 3 +#: src/components/moderation/PostAlerts.tsx:163 +#: src/view/com/composer/ComposerReplyTo.tsx:278 +msgid "+{0}" +msgstr "" + +#. Indicates the number of additional profiles are in the Starter Pack e.g. +12 +#: src/screens/Search/components/StarterPackCard.tsx:258 +msgid "+{computedTotal}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:569 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[2]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:516 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) +#. placeholder {1}: profile?.followersCount || 0 +#: src/view/shell/Drawer.tsx:155 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) +#. placeholder {1}: profile?.followsCount || 0 +#: src/view/shell/Drawer.tsx:166 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.quoteCount) +#. placeholder {1}: post.quoteCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 +msgid "<0>{0} {1, plural, one {quote} other {quotes}}" +msgstr "" + +#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.repostCount) +#. placeholder {1}: post.repostCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 +msgid "<0>{0} {1, plural, one {repost} other {reposts}}" +msgstr "" + +#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.bookmarkCount) +#. placeholder {1}: post.bookmarkCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 +msgid "<0>{0} {1, plural, one {save} other {saves}}" +msgstr "" + +#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(likeCount) +#: src/screens/PostThread/components/LikesStat.tsx:44 +msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[1]) +#: src/screens/StarterPack/Wizard/index.tsx:503 +#: src/screens/StarterPack/Wizard/index.tsx:557 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:550 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/WhoCanReply.tsx:353 +msgid "<0>{0} members" +msgstr "" + +#. Text identifying the person who added you to a group chat +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 +msgid "<0>{displayName}<1/><2> added you" +msgstr "" + +#: src/screens/Hashtag.tsx:230 +#: src/screens/Search/SearchResults.tsx:412 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:250 +msgid "<0>Tap here to update your location with GPS." +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#: src/screens/StarterPack/Wizard/index.tsx:494 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/lib/strings/handles.ts:38 +#: src/screens/Profile/Header/Handle.tsx:58 +msgid "โš Invalid Handle" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:202 +#: src/components/dialogs/MutedWords.tsx:551 +#: src/components/dialogs/MutedWords.tsx:554 +msgid "24 hours" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:436 +msgid "2FA Confirmation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:241 +#: src/components/dialogs/MutedWords.tsx:565 +#: src/components/dialogs/MutedWords.tsx:568 +msgid "30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:226 +#: src/components/dialogs/MutedWords.tsx:558 +#: src/components/dialogs/MutedWords.tsx:561 +msgid "7 days" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 +msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" +msgstr "" + +#. If last message does not contain text, fall back to "{user} reacted to {a message}" +#: src/components/dms/getReactionInfo.ts:53 +msgid "a message" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:102 +msgid "A network error occurred. Please check your internet connection" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:99 +#: src/components/contacts/screens/VerifyNumber.tsx:155 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 +msgid "A network error occurred. Please check your internet connection." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:143 +msgid "A new code has been sent" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 +msgid "A new form of verification" +msgstr "" + +#: src/components/dms/MessageItem.tsx:821 +msgid "A reply to a message sent before you joined" +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:147 +msgid "A screenshot of a post from @esb.lol, showing the user is currently livestreaming content on Twitch. The post reads: \"Hello! I'm live on Twitch, and I'm testing Bluesky's latest feature too!\"" +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:121 +msgid "A screenshot of a post with a new button next to the share button that allows you to save the post to your bookmarks. The post is from @jcsalterego.bsky.social and reads \"inventing a saturday that immediately follows monday\"." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:114 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:98 +msgid "A screenshot of the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now!!!\"." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:483 +#: src/screens/Settings/AboutSettings.tsx:85 +#: src/screens/Settings/Settings.tsx:264 +#: src/screens/Settings/Settings.tsx:267 +msgid "About" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:100 +msgid "Abusive or discriminatory behavior" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestButtons.tsx:287 +msgid "Accept" +msgstr "" + +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 +msgid "Accept chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 +msgid "Accept Request" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:460 +msgid "Accept this language suggestion" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:119 +msgid "Access requested! The group owner will review your request." +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:45 +#: src/screens/Settings/Settings.tsx:234 +#: src/screens/Settings/Settings.tsx:237 +msgid "Accessibility" +msgstr "" + +#: src/Navigation.tsx:390 +msgid "Accessibility Settings" +msgstr "" + +#: src/Navigation.tsx:406 +#: src/screens/Settings/AccountSettings.tsx:54 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 +msgid "Account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: src/view/com/profile/ProfileMenu.tsx:182 +msgctxt "toast" +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:198 +msgctxt "toast" +msgid "Account followed" +msgstr "" + +#: src/lib/strings/errors.ts:33 +msgid "Account has been suspended" +msgstr "" + +#: src/lib/strings/errors.ts:36 +msgid "Account is deactivated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 +#: src/view/com/profile/ProfileMenu.tsx:152 +msgctxt "toast" +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:123 +#: src/lib/moderation/useModerationCauseDescription.ts:99 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:109 +msgid "Account Muted by List" +msgstr "" + +#: src/screens/Settings/Settings.tsx:646 +msgid "Account options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:681 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:87 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:169 +msgctxt "toast" +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:213 +msgctxt "toast" +msgid "Account unfollowed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:139 +msgctxt "toast" +msgid "Account unmuted" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:100 +msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:214 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 +#: src/components/dialogs/MutedWords.tsx:337 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:388 +#: src/components/dms/AddMembersFlow.tsx:410 +msgid "Add" +msgstr "" + +#. placeholder {0}: 8 - items.length +#: src/screens/StarterPack/Wizard/index.tsx:605 +msgid "Add {0} more to continue" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:63 +msgid "Add {displayName} to starter pack" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:103 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +msgid "Add a content warning" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:114 +msgid "Add a temporary live status to your profile. When someone clicks on your avatar, theyโ€™ll see information about your live event." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:64 +#: src/screens/ProfileList/AboutSection.tsx:82 +msgid "Add a user to this list" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/screens/Deactivated.tsx:184 +msgid "Add account" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/GifAltText.tsx:217 +#: src/view/com/composer/photos/Gallery.tsx:201 +#: src/view/com/composer/photos/Gallery.tsx:236 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103 +msgid "Add alt text" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:115 +msgid "Add alt text (optional)" +msgstr "" + +#: src/screens/Settings/Settings.tsx:584 +#: src/screens/Settings/Settings.tsx:587 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 +msgid "Add another account" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1607 +msgid "Add another post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2273 +msgid "Add another post to thread" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 +msgid "Add another search filter" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 +msgid "Add app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:75 +#: src/screens/Settings/AppPasswords.tsx:83 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 +msgid "Add App Password" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:170 +msgid "Add automation label to account" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.web.tsx:31 +msgid "Add emoji reaction" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 +msgid "Add filter" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:492 +msgid "Add group chat members" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:223 +msgid "Add image" +msgstr "" + +#. Accessibility label for button in composer to add images, a video, or a GIF to a post +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Add media to post" +msgstr "" + +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:72 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:106 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:125 +msgid "Add members" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 +msgid "Add more details (optional)" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:218 +#: src/screens/Settings/LanguageSettings.tsx:223 +msgid "Add more languagesโ€ฆ" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:330 +msgid "Add mute word with chosen settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:120 +msgid "Add muted words and tags" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172 +#: src/screens/ProfileList/AboutSection.tsx:72 +#: src/screens/ProfileList/AboutSection.tsx:90 +msgid "Add people" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:81 +msgid "Add people to list" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:56 +msgid "Add Reaction" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:100 +msgid "Add recommended feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:538 +msgid "Add some feeds to your starter pack!" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:40 +msgid "Add the default feed of only people you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:419 +msgid "Add the following DNS record to your domain:" +msgstr "" + +#: src/components/FeedCard.tsx:338 +msgid "Add this feed to your feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:350 +#: src/view/com/profile/ProfileMenu.tsx:353 +msgid "Add to lists" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:121 +msgid "Add to saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:184 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/com/profile/ProfileMenu.tsx:344 +msgid "Add to starter packs" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:178 +msgid "Add user to list" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:297 +msgid "Add your birthdate" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) +#: src/screens/Messages/ConversationSettings/Member.tsx:109 +msgid "Added by {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:114 +msgid "Added by invite link" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:125 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:221 +msgid "Added to list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:274 +msgid "Added to starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:225 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:230 +msgid "Adding members to list..." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:116 +msgid "Additional details (limit 1000 characters)" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:546 +msgid "Additional details (limit 300 characters)" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 +msgid "Admin" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:155 +msgid "Adult" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:66 +msgid "Adult content" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:129 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:149 +#: src/view/com/composer/labels/LabelsBtn.tsx:123 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:412 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:252 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:134 +#: src/view/com/composer/labels/LabelsBtn.tsx:192 +msgid "Adult Content labels" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:76 +msgid "Adult sexual abuse content" +msgstr "" + +#: src/screens/Moderation/index.tsx:457 +msgid "Advanced" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:72 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:82 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:185 +msgid "Age assurance only takes a few minutes" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:449 +msgid "Age assurance only takes a few minutes." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 +msgid "alice@example.com" +msgstr "" + +#. the default tab in the interests tab bar +#: src/components/dms/ReactionsDialog.tsx:292 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 +#: src/view/screens/Notifications.tsx:86 +msgid "All" +msgstr "" + +#. Tab label showing the total count of reactions on a chat message. +#. placeholder {0}: tab.count +#: src/components/dms/ReactionsDialog.tsx:389 +msgid "All {0}" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:400 +msgid "All accounts have been followed!" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:144 +msgid "All friends followed!" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:255 +msgid "All languages" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:189 +msgid "All languages will be shown in your feeds." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:245 +msgid "All of these words" +msgstr "" + +#: src/view/screens/Feeds.tsx:700 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 +msgid "Allow access to your direct messages" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:451 +msgid "Allow anyone to reply" +msgstr "" + +#: src/screens/Messages/Settings.tsx:156 +#: src/screens/Messages/Settings.tsx:171 +msgid "Allow direct messages from" +msgstr "" + +#: src/screens/Messages/Settings.tsx:202 +#: src/screens/Messages/Settings.tsx:224 +msgid "Allow group chat invites from" +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:128 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:134 +msgid "Allow location access" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:53 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:504 +msgid "Allow people you follow to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:518 +msgid "Allow people you mention to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:636 +msgid "Allow quote posts" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:598 +msgid "Allow users in {0} to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:490 +msgid "Allow your followers to reply" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:201 +msgid "Allows access to direct messages" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:174 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:237 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:243 +msgid "Already have a code?" +msgstr "" + +#: src/components/WelcomeModal.tsx:187 +msgid "Already have an account?" +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Login/ChooseAccountForm.tsx:44 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:76 +#: src/components/images/AutoSizedImage.tsx:205 +#: src/components/images/Gallery/index.tsx:596 +#: src/components/images/ImageLayoutGridItem.tsx:135 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:211 +msgid "ALT" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:55 +#: src/view/com/composer/GifAltText.tsx:160 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128 +#: src/view/com/composer/videos/SubtitleDialog.tsx:41 +#: src/view/com/composer/videos/SubtitleDialog.tsx:59 +#: src/view/com/composer/videos/SubtitleDialog.tsx:110 +#: src/view/com/composer/videos/SubtitleDialog.tsx:114 +msgid "Alt text" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:83 +msgid "Alt Text" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:105 +#: src/view/com/composer/photos/Gallery.tsx:130 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "" + +#. placeholder {0}: i18n.number(MAX_ALT_TEXT) +#: src/view/com/composer/GifAltText.tsx:185 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:149 +msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" +msgstr "" + +#. placeholder {0}: currentAccount?.email || '(no email)' +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:94 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "" + +#. Accessibility label for the dialog shown when the GIF picker hits an unexpected runtime error and falls back to its error boundary. +#: src/components/dialogs/LanguageSelectDialog.tsx:344 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:15 +msgid "An error has occurred" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:433 +msgid "An error occurred while compressing the video." +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:223 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:69 +msgid "An error occurred while fetching suggested accounts." +msgstr "" + +#: src/state/queries/explore-feed-previews.tsx:183 +msgid "An error occurred while fetching the feed." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/ViewMatches.tsx:243 +msgid "An error occurred while hiding suggestion. {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 +msgid "An error occurred while loading the video. Please try again." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:581 +msgid "An error occurred while loading your lists :/" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:104 +msgid "An error occurred while saving the QR code!" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:54 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:82 +#: src/screens/StarterPack/StarterPackScreen.tsx:359 +#: src/screens/StarterPack/StarterPackScreen.tsx:386 +msgid "An error occurred while trying to follow all" +msgstr "" + +#: src/view/com/composer/state/video.ts:485 +msgid "An error occurred while uploading the video. {message}" +msgstr "" + +#: src/view/com/composer/state/video.ts:477 +msgid "An error occurred while uploading the video. Please check your internet connection and try again." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/PhoneInput.tsx:120 +#: src/components/contacts/screens/VerifyNumber.tsx:131 +#: src/components/contacts/screens/VerifyNumber.tsx:184 +msgid "An error occurred. {0}" +msgstr "" + +#: src/components/contacts/components/HeroImage.tsx:28 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:79 +msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 +msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:111 +msgid "An illustration of the Bluesky app with a paper airplane flying out of it, representing inviting friends" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:86 +#: src/components/verification/VerifierDialog.tsx:88 +msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:198 +msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 +msgid "An issue not included in these options" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 +msgid "An issue occurred starting the chat, please try again." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:52 +#: src/components/ProfileCard.tsx:510 +#: src/components/ProfileCard.tsx:532 +#: src/view/com/notifications/NotificationFeedItem.tsx:798 +#: src/view/com/notifications/NotificationFeedItem.tsx:820 +msgid "An issue occurred, please try again." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121 +msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:154 +#: src/lib/moderation/useModerationCauseDescription.ts:145 +msgid "an unknown labeler" +msgstr "" + +#: src/components/WhoCanReply.tsx:374 +msgid "and" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:88 +msgid "Animal sexual abuse" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:130 +msgid "Animal welfare" +msgstr "" + +#: src/lib/interests.ts:52 +msgid "Animals" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:85 +msgid "Animated GIF" +msgstr "" + +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:39 +msgid "Announcing verification on Bluesky" +msgstr "" + +#. Placeholder text for a date picker +#: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 +msgid "Any date" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 +msgid "Anyone" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:135 +msgid "Anyone can interact" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:356 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +msgid "Anyone can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +msgid "Anyone can request to join" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:112 +#: src/screens/Settings/ActivityPrivacySettings.tsx:117 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:478 +msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." +msgstr "" + +#: src/Navigation.tsx:491 +#: src/screens/Settings/AppIconSettings/index.tsx:65 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 +msgid "App Icon" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:107 +#: src/screens/Settings/LanguageSettings.tsx:123 +msgid "App language" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 +msgid "App Password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:147 +msgctxt "toast" +msgid "App password deleted" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 +msgid "App password name must be unique" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 +msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 +msgid "App passwords" +msgstr "" + +#: src/Navigation.tsx:358 +#: src/screens/Settings/AppPasswords.tsx:51 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:169 +#: src/components/moderation/LabelsOnMeDialog.tsx:172 +#: src/components/moderation/ModerationDetailsDialog.tsx:223 +msgid "Appeal" +msgstr "" + +#. placeholder {0}: strings.name +#: src/components/moderation/AppealForm.tsx:93 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:159 +msgid "Appeal label" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 +msgid "Appeal livestream suspension" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:83 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 +#: src/screens/Messages/components/ChatDisabled.tsx:125 +msgctxt "toast" +msgid "Appeal submitted" +msgstr "" + +#: src/screens/Takendown.tsx:114 +#: src/screens/Takendown.tsx:140 +msgid "Appeal suspension" +msgstr "" + +#: src/screens/Takendown.tsx:117 +msgid "Appeal Suspension" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:76 +#: src/screens/Messages/components/ChatDisabled.tsx:79 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:135 +msgid "Appeal this decision" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:219 +msgid "Appeal this label" +msgstr "" + +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 +#: src/screens/Settings/Settings.tsx:226 +#: src/screens/Settings/Settings.tsx:229 +msgid "Appearance" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:52 +#: src/screens/Home/NoFeedsPinned.tsx:94 +msgid "Apply default recommended feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:515 +#: src/screens/Settings/Settings.tsx:517 +msgid "Apply Pull Request" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt, 'medium') +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 +msgid "Archived from {0}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 +msgid "Archived post" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:327 +msgid "Are you really, really sure?" +msgstr "" + +#. placeholder {0}: link(languages[0]) +#. placeholder {1}: link(languages[1]) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:100 +msgid "Are you searching for posts in {0} or {1}?" +msgstr "" + +#. placeholder {0}: link(languages[0]) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:95 +msgid "Are you searching for posts in {0}?" +msgstr "" + +#. List formatting: {0}, {1}, or {2} +#. placeholder {0}: head.map(lang => ( {link(lang)},{' '} )) +#. placeholder {1}: link(last) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:110 +msgid "Are you searching for posts in {0}or {1}?" +msgstr "" + +#. placeholder {0}: appPassword.name +#: src/screens/Settings/AppPasswords.tsx:210 +msgid "Are you sure you want to delete the app password \"{0}\"?" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:183 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:684 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:99 +#: src/screens/Profile/Header/EditProfileDialog.tsx:77 +msgid "Are you sure you want to discard your changes?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:128 +#: src/screens/Messages/ConversationSettings/prompts.tsx:152 +msgid "Are you sure you want to leave {groupName}?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:57 +msgid "Are you sure you want to leave this conversation?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:56 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants." +msgstr "" + +#: src/components/FeedCard.tsx:374 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "" + +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:116 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1743 +msgid "Are you sure you'd like to discard this post?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:452 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:349 +msgid "Are you writing in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/lib/interests.ts:53 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:167 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 +msgid "Assign topic for algo" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:209 +msgid "At least 8 characters" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:338 +msgid "AT Protocol FAQ" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 +msgctxt "Name of app icon variant" +msgid "Aurora" +msgstr "" + +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + +#: src/components/BotAccountAlert.tsx:32 +#: src/components/BotBadge.tsx:65 +msgid "Automated account" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:165 +#: src/screens/Login/components/HostingProviderDialog.tsx:167 +msgid "Automatic" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:155 +#: src/screens/Settings/AccountSettings.tsx:158 +msgid "Automation label" +msgstr "" + +#: src/Navigation.tsx:422 +#: src/screens/Settings/AutomationLabelSettings.tsx:103 +msgid "Automation Label" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:118 +#: src/screens/Settings/ContentAndMediaSettings.tsx:124 +msgid "Autoplay videos and GIFs" +msgstr "" + +#. Shown next to an available username suggestion in the account creation flow +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions/index.native.tsx:69 +#: src/screens/Signup/StepHandle/HandleSuggestions/index.tsx:88 +msgid "Available" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:359 +#: src/components/dms/AddMembersFlow.tsx:527 +#: src/components/dms/AddMembersFlow.tsx:533 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 +#: src/components/moderation/AppealForm.tsx:145 +#: src/components/moderation/AppealForm.tsx:146 +#: src/screens/Login/ChooseAccountForm.tsx:96 +#: src/screens/Login/ChooseAccountForm.tsx:100 +#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:124 +#: src/screens/Login/LoginForm.tsx:511 +#: src/screens/Login/LoginForm.tsx:516 +#: src/screens/Login/SetNewPasswordForm.tsx:157 +#: src/screens/Login/SetNewPasswordForm.tsx:163 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:276 +#: src/screens/Messages/components/InviteLinkDialog.tsx:304 +#: src/screens/Messages/Inbox.tsx:233 +#: src/screens/Profile/Header/Shell.tsx:174 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:273 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:282 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:315 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:87 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:93 +msgid "Back" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:232 +msgid "Back to Chats" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:216 +msgid "Banned activities or security violations" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:227 +msgid "Banned user returning" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:184 +msgid "Based on your device's location, we think you're in <0>{geolocationString}." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236 +msgid "Based on your device's location, we think you're in <0>{region}." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:194 +msgid "Based on your network, we think you're in <0>{geolocationString}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 +msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/view/screens/Lists.tsx:35 +#: src/view/screens/ModerationModlists.tsx:35 +msgid "Before creating a list, you must first verify your email." +msgstr "" + +#: src/lib/hooks/useOpenComposer.tsx:14 +msgid "Before creating a post or replying, you must first verify your email." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:72 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 +msgid "Before creating a starter pack, you must first verify your email." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:260 +msgid "Before you can accept this chat request, you must first verify your email." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:56 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:155 +#: src/components/dms/MessageProfileButton.tsx:60 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 +msgid "Before you can message another user, you must first verify your email." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:319 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:313 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:99 +msgid "Beta Feature" +msgstr "" + +#: src/Navigation.tsx:414 +#: src/screens/Settings/BetaFeaturesSettings.tsx:108 +#: src/screens/Settings/Settings.tsx:248 +#: src/screens/Settings/Settings.tsx:251 +msgid "Beta features" +msgstr "" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:144 +msgctxt "web" +msgid "Beta features may be unstable. Some changes may require reloading the app." +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:149 +msgctxt "native" +msgid "Beta features may be unstable. Some changes may require restarting the app." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:163 +msgid "Birthdate" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:145 +msgid "Birthday" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 +msgid "Block" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 +msgid "Block {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/screens/Messages/components/RequestButtons.tsx:154 +#: src/screens/Messages/components/RequestButtons.tsx:156 +#: src/view/com/profile/ProfileMenu.tsx:464 +#: src/view/com/profile/ProfileMenu.tsx:471 +msgid "Block account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:148 +msgid "Block account?" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:91 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:94 +msgid "Block accounts" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:148 +msgid "Block and delete" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:167 +msgctxt "button" +msgid "Block and leave" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:119 +msgid "Block list" +msgstr "" + +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 +msgid "Block or report" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:114 +msgid "Block these accounts?" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:221 +#: src/components/dms/AfterReportConversationDialog.tsx:224 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 +msgid "Block user" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:182 +msgctxt "button" +msgid "Block user" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:185 +msgid "Block user and/or delete this conversation" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:217 +msgid "Block user and/or leave this conversation" +msgstr "" + +#: src/components/Post/Embed/index.tsx:212 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:329 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:194 +#: src/view/screens/ModerationBlockedAccounts.tsx:95 +msgid "Blocked Accounts" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:163 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:181 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:204 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:116 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:157 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:176 +msgid "Blog" +msgstr "" + +#. Advanced search: Examples of hashtags +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:17 +msgid "bloomscrolling booksky" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:144 +#: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +msgid "Bluesky" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 +msgid "Bluesky cannot confirm the authenticity of the claimed date." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 +msgctxt "Name of app icon variant" +msgid "Bluesky Classicโ„ข" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:235 +msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:214 +#: src/screens/Login/components/HostingProviderDialog.tsx:236 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:162 +msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." +msgstr "" + +#: src/components/ProgressGuide/List.tsx:115 +msgid "Bluesky is better with friends!" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:43 +msgid "Bluesky is more fun with friends" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 +msgid "Bluesky is more fun with friends! Import your contacts to see whoโ€™s already here." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:315 +msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "" + +#: src/screens/Takendown.tsx:213 +msgid "Bluesky Social Terms of Service" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:570 +msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:100 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 +msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:97 +msgid "Bluesky+" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:100 +msgid "Bluesky+ icons" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:54 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/lib/interests.ts:54 +msgid "Books" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:215 +msgid "Breaking site rules" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:167 +#: src/view/com/feeds/ProfileFeedgens.tsx:168 +msgid "Browse custom feeds" +msgstr "" + +#: src/components/FeedInterstitials.tsx:540 +msgid "Browse more accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:670 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:679 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:104 +#: src/screens/Home/NoFeedsPinned.tsx:110 +msgid "Browse other feeds" +msgstr "" + +#: src/components/TrendingTopics.tsx:78 +msgid "Browse posts about {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:86 +msgid "Browse posts tagged with {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:95 +msgid "Browse starter pack {displayName}" +msgstr "" + +#. placeholder {0}: trend.displayName +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 +msgid "Browse topic {0}" +msgstr "" + +#: src/components/TrendingTopics.tsx:132 +msgid "Browse topic {displayName}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:171 +msgid "Business" +msgstr "" + +#: src/screens/Bookmarks.tsx:295 +msgid "Button to go back to the home timeline" +msgstr "" + +#. The owner (creator) of a group chat. +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile( joinLinkPreview.owner, moderationOpts, ).ui('displayName'), ) +#. placeholder {0}: sanitizeHandle(handle, '@') +#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@') +#: src/components/LabelingServiceCard/index.tsx:62 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:177 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 +msgid "By {0}" +msgstr "" + +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') +#: src/components/intents/GroupChatJoinDialog.tsx:379 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 +msgid "By <0>{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:84 +msgid "By <0>{ownerDisplayName}" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:297 +msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:76 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:43 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:63 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:111 +msgid "By you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 +msgid "Camera" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 +#: src/components/contacts/screens/GetContacts.tsx:292 +#: src/components/contacts/screens/GetContacts.tsx:297 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128 +#: src/components/dialogs/InAppBrowserConsent.tsx:99 +#: src/components/dialogs/InAppBrowserConsent.tsx:105 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:200 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:291 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:299 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 +#: src/components/Menu/index.tsx:373 +#: src/components/moderation/BlockDialog.tsx:204 +#: src/components/PostControls/RepostButton.tsx:210 +#: src/components/Prompt.tsx:152 +#: src/components/Prompt.tsx:154 +#: src/components/SendErrorReportDialog.tsx:98 +#: src/components/SendErrorReportDialog.tsx:102 +#: src/features/liveNow/components/GoLiveDialog.tsx:254 +#: src/features/liveNow/components/GoLiveDialog.tsx:260 +#: src/lib/media/picker.tsx:38 +#: src/screens/Deactivated.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:108 +#: src/screens/Messages/ConversationSettings/prompts.tsx:132 +#: src/screens/Messages/ConversationSettings/prompts.tsx:156 +#: src/screens/Messages/ConversationSettings/prompts.tsx:180 +#: src/screens/Profile/Header/EditProfileDialog.tsx:215 +#: src/screens/Profile/Header/EditProfileDialog.tsx:223 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:202 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:209 +#: src/screens/Settings/AppIconSettings/index.tsx:42 +#: src/screens/Settings/AppIconSettings/index.tsx:228 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:143 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:152 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:80 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:87 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:248 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:254 +#: src/screens/Settings/Settings.tsx:309 +#: src/screens/Takendown.tsx:102 +#: src/screens/Takendown.tsx:105 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:44 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:53 +#: src/view/shell/desktop/LeftNav.tsx:228 +msgid "Cancel" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:205 +msgid "Cancel quote post" +msgstr "" + +#: src/screens/Deactivated.tsx:144 +msgid "Cancel reactivation and sign out" +msgstr "" + +#: src/screens/Messages/components/MessageInputReply.tsx:83 +msgid "Cancel reply" +msgstr "" + +#: src/screens/Search/Shell.tsx:592 +msgid "Cancel search" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 +msgid "Cancels signing in so you can check your username" +msgstr "" + +#: src/components/PostControls/index.tsx:108 +#: src/components/PostControls/index.tsx:138 +#: src/components/PostControls/index.tsx:166 +#: src/state/shell/composer/index.tsx:105 +msgid "Cannot interact with a blocked user" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:156 +msgid "Captions (.vtt)" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:41 +#: src/view/com/composer/videos/SubtitleDialog.tsx:57 +msgid "Captions & alt text" +msgstr "" + +#: src/components/images/Gallery/index.tsx:273 +msgid "carousel" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Cashtag {tag}" +msgstr "" + +#. Advanced search: Example of an โ€œall of these wordsโ€ search. Paired with โ€œcows pigsโ€. +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:250 +msgid "cats dogs" +msgstr "" + +#: src/components/Post/Translated/index.tsx:439 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Change" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:37 +msgid "Change app icon" +msgstr "" + +#. placeholder {0}: icon.name +#. placeholder {0}: next.name +#: src/screens/Settings/AppIconSettings/index.tsx:36 +#: src/screens/Settings/AppIconSettings/index.tsx:224 +msgid "Change app icon to \"{0}\"" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:41 +msgid "Change app language" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:96 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:100 +msgid "Change Handle" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:644 +msgid "Change hosting provider" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:445 +msgid "Change moderation service" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:262 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:268 +msgid "Change password" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:165 +msgid "Change password dialog" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:312 +msgid "Change report category" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:390 +msgid "Change report reason" +msgstr "" + +#: src/components/Post/Translated/index.tsx:424 +msgid "Change the source language" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:58 +msgid "Change your password" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:219 +msgid "Changes app icon" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:50 +#: src/components/forms/HostingProvider.tsx:70 +msgid "Changes hosting provider" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:179 +msgid "Changes saved" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:164 +msgid "Changes to the starter pack will not be reflected in the list after creation. The list will be an independent copy." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/Navigation.tsx:509 +#: src/view/shell/bottom-bar/BottomBar.tsx:242 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 +msgid "Chat" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 +msgctxt "toast" +msgid "Chat deleted" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:108 +msgid "Chat ended" +msgstr "" + +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:269 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:104 +msgid "Chat locked" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:146 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:137 +msgid "Chat messages - sound" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:206 +msgctxt "toast" +msgid "Chat muted" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 +msgid "Chat not found." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 +msgid "Chat options" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:290 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:529 +msgid "Chat request inbox" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:62 +#: src/screens/Messages/Inbox.tsx:97 +msgid "Chat requests" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 +#: src/screens/Messages/Settings.tsx:48 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:147 +msgid "Chat Settings" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:115 +msgid "Chat title changed" +msgstr "" + +#. placeholder {0}: data.newName +#: src/components/dms/getSystemMessageInfo.ts:114 +msgid "Chat title changed to {0}" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:106 +msgid "Chat unlocked" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:208 +msgctxt "toast" +msgid "Chat unmuted" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 +msgid "Chats" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:233 +msgid "Check <0>{currentEmail} for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:182 +msgid "Check back later!" +msgstr "" + +#: src/screens/SignupQueued.tsx:79 +#: src/screens/SignupQueued.tsx:83 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:463 +msgid "Check your email for a sign in code and enter it here." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:161 +msgid "Child safety" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:165 +msgid "Child Sexual Abuse Material (CSAM)" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:401 +msgid "Choose domain verification method" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:205 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 +msgid "Choose for me" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:199 +msgid "Choose languages" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Choose People" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:75 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:136 +msgid "Choose post languages" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 +msgid "Choose who can join this group chat and how." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:57 +msgid "Choose who to invite" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:134 +#: src/screens/Login/components/HostingProviderDialog.tsx:155 +msgid "Choose your hosting provider" +msgstr "" + +#: src/view/screens/Feeds.tsx:726 +msgid "Choose your own timeline! Feeds built by the community help you find content you love." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:271 +msgid "Choose your password" +msgstr "" + +#: src/screens/Signup/index.tsx:201 +msgid "Choose your username" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.native.tsx:73 +#: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.tsx:110 +#: src/screens/Search/components/AdvancedSearchDialog/ClearableInput.tsx:59 +msgid "Clear" +msgstr "" + +#: src/screens/Settings/Settings.tsx:507 +msgid "Clear all storage data" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Clear all storage data (restart after this)" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:70 +msgid "Clear date" +msgstr "" + +#. Accessibility label for the X button inside the search input that clears the typed query and returns to the trending feed. +#: src/features/gifPicker/components/GifPickerHeader.tsx:67 +msgid "Clear GIF search" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:134 +#: src/screens/Settings/AboutSettings.tsx:138 +msgid "Clear image cache" +msgstr "" + +#: src/components/forms/SearchInput.tsx:87 +msgid "Clear search query" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:88 +msgid "Click for information" +msgstr "" + +#: src/view/screens/Support.tsx:35 +msgid "click here" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 +msgid "Click here to add people to this group chat" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +msgid "Click here to create or manage an invite link for this group chat" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:327 +msgid "Click here to delete your account" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:318 +msgid "Click here to log out" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:263 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:272 +msgid "Click here to resend the email" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 +msgid "Click here to restart the verification process." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:119 +#: src/ageAssurance/components/NoAccessScreen.tsx:294 +msgid "Click here to update your birthdate" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 +msgid "Click here to update your email" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 +msgid "Click here to view the invite link for this group chat" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:56 +msgid "Click to open tag menu for {0}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:643 +msgid "Click to retry failed message" +msgstr "" + +#. Visible label of the button that dismisses the GIF picker error dialog. +#: src/ageAssurance/components/RedirectOverlay.tsx:265 +#: src/ageAssurance/components/RedirectOverlay.tsx:271 +#: src/ageAssurance/components/RedirectOverlay.tsx:321 +#: src/ageAssurance/components/RedirectOverlay.tsx:327 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:174 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:180 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 +#: src/components/AltBadgeWithDialog.tsx:88 +#: src/components/dialogs/LanguageSelectDialog.tsx:359 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:147 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200 +#: src/components/dialogs/SearchablePeopleList.tsx:340 +#: src/components/dialogs/StarterPackDialog.tsx:187 +#: src/components/dms/AddMembersFlow.tsx:384 +#: src/components/dms/AfterReportConversationDialog.tsx:91 +#: src/components/dms/AfterReportConversationDialog.tsx:96 +#: src/components/dms/AfterReportConversationDialog.tsx:247 +#: src/components/dms/AfterReportConversationDialog.tsx:252 +#: src/components/dms/AfterReportDialog.tsx:94 +#: src/components/dms/AfterReportDialog.tsx:99 +#: src/components/dms/AfterReportDialog.tsx:212 +#: src/components/dms/AfterReportDialog.tsx:217 +#: src/components/dms/EmojiPopup.android.tsx:59 +#: src/components/dms/InitiateChatFlow.tsx:670 +#: src/components/intents/GroupChatJoinDialog.tsx:246 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +#: src/components/NewskieDialog.tsx:169 +#: src/components/NewskieDialog.tsx:175 +#: src/components/ProgressGuide/FollowDialog.tsx:462 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128 +#: src/components/verification/VerificationsDialog.tsx:146 +#: src/components/verification/VerifierDialog.tsx:147 +#: src/components/WhoCanReply.tsx:236 +#: src/components/WhoCanReply.tsx:243 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45 +#: src/features/liveNow/components/EditLiveDialog.tsx:210 +#: src/features/liveNow/components/EditLiveDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:524 +#: src/screens/Messages/components/InviteLinkDialog.tsx:529 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:288 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:293 +#: src/view/com/feeds/MissingFeed.tsx:211 +#: src/view/com/feeds/MissingFeed.tsx:218 +msgid "Close" +msgstr "" + +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:30 +msgid "Close alert" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + +#. Accessibility label for the button that dismisses the GIF picker error dialog. +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:223 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:229 +#: src/components/dialogs/LanguageSelectDialog.tsx:221 +#: src/components/dialogs/LanguageSelectDialog.tsx:322 +#: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:102 +#: src/components/moderation/BlockDialog.tsx:201 +#: src/components/verification/VerificationsDialog.tsx:138 +#: src/components/verification/VerifierDialog.tsx:140 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 +msgid "Close dialog" +msgstr "" + +#: src/view/shell/index.web.tsx:127 +msgid "Close drawer menu" +msgstr "" + +#: src/components/Lightbox/chrome/Header.tsx:47 +msgid "Close image" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:73 +#: src/components/Lightbox/Lightbox.web.tsx:334 +msgid "Close image viewer" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:53 +#: src/components/ContextMenu/Backdrop.ios.tsx:79 +#: src/components/ContextMenu/Backdrop.tsx:45 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 +msgid "Close menu" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:239 +#: src/components/intents/GroupChatJoinDialog.tsx:240 +#: src/components/intents/GroupChatJoinDialog.tsx:276 +#: src/components/intents/GroupChatJoinDialog.tsx:277 +#: src/components/Menu/index.tsx:367 +msgid "Close this dialog" +msgstr "" + +#: src/components/WelcomeModal.tsx:212 +msgid "Close welcome modal" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:31 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1829 +msgid "Closes post composer and discards post draft" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:611 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:949 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:68 +msgid "Color" +msgstr "" + +#: src/components/dialogs/Embed.tsx:150 +#: src/screens/Settings/AppearanceSettings.tsx:79 +msgid "Color mode" +msgstr "" + +#: src/components/dialogs/Embed.tsx:147 +msgid "Color theme" +msgstr "" + +#: src/lib/interests.ts:55 +msgid "Comedy" +msgstr "" + +#: src/lib/interests.ts:56 +msgid "Comics" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 +#: src/Navigation.tsx:348 +#: src/view/screens/CommunityGuidelines.tsx:28 +msgid "Community Guidelines" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:329 +msgid "Complete onboarding and start using your account" +msgstr "" + +#: src/screens/Signup/index.tsx:203 +msgid "Complete the challenge" +msgstr "" + +#: src/lib/hotkeys/index.tsx:66 +#: src/view/com/feeds/ComposerPrompt.tsx:147 +#: src/view/shell/desktop/LeftNav.tsx:587 +msgid "Compose new post" +msgstr "" + +#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 +#: src/view/com/composer/Composer.tsx:1705 +msgid "Compose posts up to {0, plural, other {# characters}} in length" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:63 +msgid "Compose reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2677 +msgid "Compressing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2679 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:88 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:254 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/Prompt.tsx:211 +#: src/components/Prompt.tsx:214 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:186 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:189 +msgid "Confirm" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 +#: src/screens/Login/LoginForm.tsx:442 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:187 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:191 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:244 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:145 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:151 +msgid "Confirmation code" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:132 +msgid "Connecting to service..." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:542 +msgid "Connecting to serviceโ€ฆ" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:138 +#: src/screens/Login/LoginForm.tsx:548 +msgid "Connectingโ€ฆ" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Connection issue" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:404 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:128 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:31 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:109 +msgid "Contact our support team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 +msgid "Contact support" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 +#: src/screens/Settings/FindContactsSettings.tsx:164 +msgid "Contact sync is not available on this device, as the app is unable to access your contacts." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Contact us" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:526 +msgid "Contacts imported" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:499 +msgid "Contacts removed" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:53 +msgid "Content & Media" +msgstr "" + +#: src/screens/Settings/Settings.tsx:206 +#: src/screens/Settings/Settings.tsx:209 +msgid "Content and media" +msgstr "" + +#: src/Navigation.tsx:467 +msgid "Content and Media" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:362 +msgid "Content filters" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:177 +msgid "Content languages" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:102 +#: src/lib/moderation/useModerationCauseDescription.ts:83 +msgid "Content Not Available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:192 +msgid "Content promoting or depicting self-harm" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:70 +#: src/components/moderation/ScreenHider.tsx:98 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:46 +msgid "Content Warning" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:61 +msgid "Content warnings" +msgstr "" + +#: src/components/Menu/index.web.tsx:93 +msgid "Context menu backdrop, click to close the menu." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 +#: src/screens/Onboarding/StepInterests/index.tsx:93 +#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 +msgid "Continue" +msgstr "" + +#. placeholder {0}: account.handle +#: src/components/AccountList.tsx:134 +msgid "Continue as {0} (currently signed in)" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 +msgid "Continue signing in" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:64 +msgid "Continue thread..." +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:598 +msgid "Continue to group name" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:90 +#: src/screens/Onboarding/StepProfile/index.tsx:298 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 +#: src/screens/Signup/BackNextButtons.tsx:61 +msgid "Continue to next step" +msgstr "" + +#: src/screens/Messages/Conversation.tsx:63 +msgid "Conversation" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:321 +msgid "Conversation deleted" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 +msgctxt "toast" +msgid "Conversation deleted" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:172 +#: src/components/dms/AfterReportConversationDialog.tsx:179 +msgctxt "toast" +msgid "Conversation left" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:169 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/screens/Search/Shell.tsx:512 +msgid "Copied link to clipboard" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:97 +#: src/components/PostControls/DiscoverDebug.tsx:36 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 +#: src/lib/sharing.ts:24 +#: src/lib/sharing.ts:42 +msgid "Copied to clipboard" +msgstr "" + +#: src/components/dialogs/Embed.tsx:197 +#: src/screens/Messages/components/CopyTextButton.tsx:71 +#: src/screens/Settings/components/CopyButton.tsx:66 +msgid "Copied!" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:145 +msgid "Copies build version to clipboard" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:256 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:266 +msgid "Copy" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:501 +#: src/view/com/profile/ProfileMenu.tsx:504 +msgid "Copy at:// URI" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 +msgid "Copy author DID" +msgstr "" + +#: src/components/dialogs/Embed.tsx:186 +#: src/components/dialogs/Embed.tsx:202 +msgid "Copy code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:504 +#: src/view/com/profile/ProfileMenu.tsx:510 +#: src/view/com/profile/ProfileMenu.tsx:513 +msgid "Copy DID" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:436 +msgid "Copy host" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copy invite link" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:91 +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/screens/StarterPack/StarterPackScreen.tsx:644 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:122 +msgid "Copy Link" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:164 +msgid "Copy link to list" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 +msgid "Copy link to post" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:290 +msgid "Copy link to profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:637 +msgid "Copy link to starter pack" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:198 +#: src/components/dms/MessageContextMenu.tsx:202 +msgid "Copy message text" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 +msgid "Copy post at:// URI" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +msgid "Copy post text" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:184 +msgid "Copy QR code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:457 +msgid "Copy TXT record value" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 +#: src/Navigation.tsx:353 +#: src/view/screens/CopyrightPolicy.tsx:25 +msgid "Copyright Policy" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:80 +msgid "Could not capture QR code" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:42 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:134 +msgid "Could not connect to feed service" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:121 +msgid "Could not copy โ€“ please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:75 +msgid "Could not download โ€“ please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 +msgid "Could not fetch post" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:183 +msgid "Could not find profile" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 +msgid "Could not follow all matches - please check your network connection." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 +msgid "Could not follow all matches. {0}" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:158 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 +msgid "Could not leave chat" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:282 +msgid "Could not leave chat." +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:72 +msgid "Could not load feed" +msgstr "" + +#: src/screens/ProfileList/components/ErrorScreen.tsx:27 +#: src/screens/ProfileList/index.tsx:80 +#: src/screens/ProfileList/index.tsx:102 +msgid "Could not load list" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 +msgid "Could not mute chat" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:308 +msgid "Could not remove member." +msgstr "" + +#. placeholder {0}: cleanError(error) +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:61 +msgid "Could not share โ€“ please try again" +msgstr "" + +#: src/state/queries/notifications/settings.ts:124 +msgid "Could not update notification settings" +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/GetContacts.tsx:171 +msgid "Could not upload contacts. {0}" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:165 +msgid "Could not upload contacts. You need to re-verify your phone number to proceed" +msgstr "" + +#. Title of the error screen shown when the GIF provider request fails. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:51 +msgid "Couldnโ€™t load GIFs" +msgstr "" + +#: src/components/InternationalPhoneCodeSelect.tsx:80 +msgid "Country code" +msgstr "" + +#. Advanced search: Example of a โ€œnone of these wordsโ€ search. Paired with โ€œcats dogsโ€. +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:268 +msgid "cows pigs" +msgstr "" + +#. Text on button to create a new starter pack +#. Text on button to create a new starter pack +#: src/components/dialogs/StarterPackDialog.tsx:113 +#: src/components/dialogs/StarterPackDialog.tsx:210 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 +msgid "Create" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:166 +#: src/view/com/lists/ProfileLists.tsx:167 +msgid "Create a list" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:620 +msgid "Create a list from this starter pack" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:169 +msgid "Create a QR code for a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 +msgid "Create a starter pack" +msgstr "" + +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 +msgid "Create a Starter Pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +msgid "Create a starter pack for me" +msgstr "" + +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 +#: src/screens/Messages/JoinRequest.tsx:310 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 +#: src/view/shell/bottom-bar/BottomBar.tsx:351 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/NavSignupCard.tsx:48 +#: src/view/shell/NavSignupCard.tsx:53 +msgid "Create account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:87 +#: src/components/dialogs/Signin.tsx:89 +#: src/screens/Hashtag.tsx:236 +#: src/screens/Search/SearchResults.tsx:418 +msgid "Create an account" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +msgid "Create an account without using this starter pack" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:314 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 +msgid "Create another" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:606 +msgid "Create group chat" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:180 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:188 +msgid "Create list" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:626 +msgid "Create list from members" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:148 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:152 +msgid "Create list from starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:367 +msgid "Create moderation list" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:304 +#: src/view/com/auth/SplashScreen.tsx:89 +#: src/view/com/auth/SplashScreen.web.tsx:110 +msgid "Create new account" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:554 +msgid "Create or modify an invite link for this group chat" +msgstr "" + +#. Accessibility label for button to create a moderation report for the selected option +#. placeholder {0}: option.title +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 +msgid "Create report for {0}" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:108 +#: src/components/dialogs/StarterPackDialog.tsx:205 +msgid "Create starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:366 +msgid "Create user list" +msgstr "" + +#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', }) +#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', }) +#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', }) +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:509 +#: src/screens/Settings/AppPasswords.tsx:174 +msgid "Created {0}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:131 +msgid "Creator has been blocked" +msgstr "" + +#: src/lib/interests.ts:57 +msgid "Culture" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:188 +msgid "Current beta features" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:375 +msgid "Current chat" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:152 +#: src/components/dialogs/ServerInput.tsx:154 +msgid "Custom" +msgstr "" + +#: src/components/dialogs/Embed.tsx:140 +msgid "Customization options" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:60 +msgid "Customizes your Bluesky experience" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:200 +msgid "Dangerous challenges or activities" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:204 +msgid "Dangerous substances or drug abuse" +msgstr "" + +#: src/components/dialogs/Embed.tsx:164 +#: src/components/dialogs/Embed.tsx:166 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 +msgctxt "Name of app icon variant" +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:104 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:299 +msgid "Date of birth" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Day" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:177 +#: src/screens/Settings/AccountSettings.tsx:182 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "" + +#: src/screens/Settings/Settings.tsx:472 +msgid "Debug Moderation" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:469 +msgid "Decline this language suggestion" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:84 +msgid "Deepfake adult content" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:154 +msgid "Default" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:73 +msgid "Default icons" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:184 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275 +#: src/screens/Settings/AppPasswords.tsx:213 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:715 +#: src/screens/StarterPack/StarterPackScreen.tsx:794 +msgid "Delete" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:187 +#: src/screens/Settings/AccountSettings.tsx:192 +msgid "Delete account" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:183 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:230 +msgid "Delete account โ€œ{currentHandle}โ€" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:187 +msgid "Delete app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:208 +msgid "Delete app password?" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 +msgid "Delete chat" +msgstr "" + +#: src/screens/Settings/Settings.tsx:479 +msgid "Delete chat declaration record" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:567 +msgid "Delete contacts" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:151 +#: src/components/dms/AfterReportDialog.tsx:195 +#: src/components/dms/AfterReportDialog.tsx:198 +#: src/screens/Messages/components/RequestButtons.tsx:147 +#: src/screens/Messages/components/RequestButtons.tsx:149 +msgid "Delete conversation" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:212 +msgid "Delete for me" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:202 +msgid "Delete list" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:182 +msgid "Delete message" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:209 +msgid "Delete message for me" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:309 +msgid "Delete my account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1717 +msgid "Delete post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:609 +#: src/screens/StarterPack/StarterPackScreen.tsx:785 +msgid "Delete starter pack" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:681 +msgid "Delete starter pack?" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:270 +msgid "Delete this list?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +msgid "Delete this post?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:205 +msgid "Deleted" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 +msgid "Deleted Account" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:286 +msgid "Deleted by Plivo after verification" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:43 +#: src/view/com/feeds/MissingFeed.tsx:76 +#: src/view/com/feeds/MissingFeed.tsx:128 +#: src/view/com/feeds/MissingFeed.tsx:136 +msgid "Deleted list" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:453 +#: src/components/SendErrorReportDialog.tsx:78 +#: src/screens/Profile/Header/EditProfileDialog.tsx:360 +#: src/screens/Profile/Header/EditProfileDialog.tsx:367 +msgid "Description" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:82 +msgid "Description (1000 characters max)" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:156 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:124 +msgid "Descriptive alt text" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 +msgid "Detach quote" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 +msgid "Detach quote post?" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:158 +msgctxt "toast" +msgid "Developer mode disabled" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:152 +msgctxt "toast" +msgid "Developer mode enabled" +msgstr "" + +#: src/screens/Settings/Settings.tsx:291 +#: src/screens/Settings/Settings.tsx:294 +msgid "Developer options" +msgstr "" + +#: src/lib/translation/index.tsx:303 +msgid "Device failed to translate :(" +msgstr "" + +#: src/components/WhoCanReply.tsx:222 +msgid "Dialog: adjust who can interact with this post" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 +msgid "Dialog: Set search filters" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:108 +msgid "Dim" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 +msgid "Disable" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 +msgid "Disable 2FA" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 +msgid "Disable captions" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 +msgid "Disable email 2FA" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:90 +msgid "Disable Email 2FA" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:90 +#: src/screens/Settings/AccessibilitySettings.tsx:95 +msgid "Disable haptic feedback" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +msgid "Disable link" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:628 +msgid "Disable quote posts of this post" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:465 +msgid "Disable replies entirely" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 +msgid "Disable this invite link?" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:35 +#: src/lib/moderation/useLabelBehaviorDescription.ts:45 +#: src/lib/moderation/useLabelBehaviorDescription.ts:71 +#: src/screens/Moderation/index.tsx:402 +msgid "Disabled" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 +#: src/screens/Profile/Header/EditProfileDialog.tsx:79 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 +#: src/view/com/composer/drafts/DraftItem.tsx:242 +#: src/view/com/composer/drafts/DraftsButton.tsx:131 +msgid "Discard" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:98 +#: src/screens/Profile/Header/EditProfileDialog.tsx:76 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1495 +#: src/view/com/composer/drafts/DraftItem.tsx:239 +#: src/view/com/composer/drafts/DraftsButton.tsx:98 +msgid "Discard draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 +msgid "Discard post?" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 +msgid "Disconnect Germ DM" +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:88 +#: src/screens/Settings/components/PwiOptOut.tsx:92 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "" + +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:64 +#: src/view/com/posts/FollowingEmptyState.tsx:69 +#: src/view/com/posts/FollowingEndOfFeed.tsx:65 +#: src/view/com/posts/FollowingEndOfFeed.tsx:70 +msgid "Discover new custom feeds" +msgstr "" + +#: src/view/screens/Feeds.tsx:723 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:398 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 +msgid "Dismiss" +msgstr "" + +#: src/components/contacts/FindContactsBannerNUX.tsx:78 +msgid "Dismiss banner" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2598 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:80 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 +msgid "Dismiss interests" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 +msgid "Dismiss live event banner" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 +msgid "Dismiss this section" +msgstr "" + +#: src/components/FeedInterstitials.tsx:351 +msgid "Dismiss this suggestion" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:70 +#: src/screens/Settings/AccessibilitySettings.tsx:75 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:310 +#: src/screens/Profile/Header/EditProfileDialog.tsx:316 +msgid "Display name" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 +msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:405 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:407 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:525 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 +msgid "Don't have a code or need a new one? <0>Click here." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:269 +msgid "Donโ€™t see a code? <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 +msgid "Don't see an email? <0>Click here to resend." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:26 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:73 +#: src/components/contacts/components/InviteInfo.tsx:79 +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:412 +#: src/components/dialogs/BirthDateSettings.tsx:193 +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200 +#: src/components/dialogs/LanguageSelectDialog.tsx:327 +#: src/components/dialogs/NotificationSettingsDialog.tsx:106 +#: src/components/dialogs/ServerInput.tsx:237 +#: src/components/dialogs/ServerInput.tsx:239 +#: src/components/dms/AfterReportConversationDialog.tsx:164 +#: src/components/dms/AfterReportDialog.tsx:145 +#: src/components/forms/DateField/index.tsx:128 +#: src/components/forms/DateField/index.tsx:145 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:147 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:153 +#: src/lib/media/picker.tsx:37 +#: src/screens/Login/components/HostingProviderDialog.tsx:253 +#: src/screens/Login/components/HostingProviderDialog.tsx:255 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 +#: src/view/com/composer/labels/LabelsBtn.tsx:219 +#: src/view/com/composer/labels/LabelsBtn.tsx:226 +#: src/view/com/composer/videos/SubtitleDialog.tsx:192 +#: src/view/com/composer/videos/SubtitleDialog.tsx:203 +msgid "Done" +msgstr "" + +#: src/components/dms/MessageItem.tsx:541 +msgid "Double tap or long press the message to add a reaction" +msgstr "" + +#: src/components/Dialog/index.tsx:399 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1178 +msgid "Double tap to like" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +msgid "Download Bluesky" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:149 +msgid "Download chat data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:154 +msgctxt "button" +msgid "Download chat data" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 +msgid "Download image" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 +msgid "Doxxing" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120 +#: src/view/com/composer/drafts/DraftsButton.tsx:70 +#: src/view/com/composer/drafts/DraftsButton.tsx:79 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:119 +msgid "Drafts" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:369 +msgid "Drop to add images" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:20 +msgid "Due to laws in your region, certain features on Bluesky are currently restricted until you're able to verify you're an adult." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:162 +msgid "Duration:" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Dusk" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:237 +msgid "e.g. alice" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:317 +msgid "e.g. Alice Lastname" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:388 +msgid "e.g. alice.com" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:370 +msgid "e.g. Great Posters" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:371 +msgid "e.g. Spammers" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:374 +msgid "e.g. The posters who never miss." +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:375 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:196 +msgid "Eating disorders" +msgstr "" + +#: src/screens/Messages/components/EditTextButton.tsx:52 +#: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/Wizard/index.tsx:331 +#: src/screens/StarterPack/Wizard/index.tsx:336 +msgid "Edit" +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:215 +#: src/view/com/lists/ListMembers.tsx:220 +msgctxt "action" +msgid "Edit" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 +msgid "Edit avatar" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:116 +msgid "Edit Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:43 +#: src/screens/Messages/ConversationSettings/prompts.tsx:49 +msgid "Edit group name" +msgstr "" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:86 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:90 +#: src/view/com/composer/photos/Gallery.tsx:218 +msgid "Edit image" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 +msgid "Edit interaction settings" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 +msgid "Edit interests" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 +msgid "Edit link settings" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:191 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:194 +msgid "Edit list details" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:364 +#: src/view/com/profile/ProfileMenu.tsx:384 +msgid "Edit live status" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:364 +msgid "Edit moderation list" +msgstr "" + +#: src/Navigation.tsx:363 +#: src/view/screens/Feeds.tsx:511 +msgid "Edit My Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:544 +msgid "Edit name" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 +msgid "Edit People" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:116 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:266 +msgid "Edit post interaction settings" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:265 +#: src/screens/Profile/Header/EditProfileDialog.tsx:271 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:330 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:308 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:332 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:596 +msgid "Edit starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:493 +#: src/screens/Messages/ConversationSettings/index.tsx:543 +msgid "Edit this group chatโ€™s name" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:363 +msgid "Edit user list" +msgstr "" + +#: src/components/WhoCanReply.tsx:116 +msgid "Edit who can reply" +msgstr "" + +#: src/Navigation.tsx:565 +msgid "Edit your starter pack" +msgstr "" + +#: src/lib/interests.ts:59 +msgid "Education" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:145 +msgid "Either the creator of this list has blocked you or you have blocked the creator." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:223 +msgid "Email" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:65 +msgctxt "toast" +msgid "Email 2FA disabled" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 +msgid "Email 2FA enabled" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:90 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:99 +msgid "Email Resent" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 +msgid "Email sent!" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:260 +msgid "Email sent! <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:183 +msgid "Email verification complete!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:74 +msgid "Email Verified" +msgstr "" + +#: src/components/dialogs/Embed.tsx:178 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:105 +#: src/components/dialogs/Embed.tsx:109 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 +msgid "Embed post" +msgstr "" + +#: src/components/dialogs/Embed.tsx:113 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 +msgid "Embedded video player" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Enable" +msgstr "" + +#. placeholder {0}: externalEmbedLabels[source] +#: src/components/dialogs/EmbedConsent.tsx:96 +msgid "Enable {0} only" +msgstr "" + +#: src/screens/Moderation/index.tsx:389 +msgid "Enable adult content" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:117 +#: src/screens/Settings/BetaFeaturesSettings.tsx:124 +msgid "Enable beta features" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 +msgid "Enable captions" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 +msgid "Enable email 2FA" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:80 +#: src/components/dialogs/EmbedConsent.tsx:86 +msgid "Enable external media" +msgstr "" + +#: src/screens/Settings/ExternalMediaPreferences.tsx:53 +msgid "Enable media players for" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +#: src/view/screens/Storybook/Admonitions.tsx:76 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 +msgid "Enable push notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:629 +msgid "Enable quote posts of this post" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:90 +msgid "Enable this source only" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:134 +#: src/screens/Settings/ContentAndMediaSettings.tsx:148 +msgid "Enable trending topics" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:155 +#: src/screens/Settings/ContentAndMediaSettings.tsx:169 +msgid "Enable trending videos in your Discover feed" +msgstr "" + +#: src/screens/Moderation/index.tsx:400 +msgid "Enabled" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:135 +msgid "End of feed" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:182 +msgid "Ensure you have selected a language for each caption file." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:231 +msgid "Enter 6-digit code that was sent to your phone number" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:136 +msgid "Enter a password" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:136 +#: src/components/dialogs/MutedWords.tsx:137 +msgid "Enter a word or tag" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:64 +msgid "Enter code" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 +msgid "Enter fullscreen" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:226 +msgid "Enter the 6-digit code sent to {prettyNumber}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:382 +msgid "Enter the domain you want to use" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:109 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:337 +msgid "Enter the username or email address you used when you created your account" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:164 +msgid "Enter your birthdate" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:96 +#: src/screens/Signup/StepInfo/index.tsx:243 +msgid "Enter your email address" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:389 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:291 +msgid "Enter your password" +msgstr "" + +#: src/screens/Login/index.tsx:144 +msgid "Enter your username and password" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +msgid "Enters full screen" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 +msgid "Entertainment" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2697 +#: src/view/com/util/error/ErrorScreen.tsx:40 +msgid "Error" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:95 +msgid "Error getting the latest data." +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:201 +msgid "Error message" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:47 +#: src/screens/Settings/components/ExportCarDialog.tsx:80 +msgid "Error occurred while saving file" +msgstr "" + +#: src/screens/Signup/StepCaptcha/index.tsx:127 +msgid "Error receiving captcha response." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:206 +msgid "Error: {error}" +msgstr "" + +#: src/components/WhoCanReply.tsx:85 +msgid "Everybody can reply" +msgstr "" + +#: src/components/WhoCanReply.tsx:279 +msgid "Everybody can reply to this post." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:93 +msgctxt "allow group chat invites from" +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:78 +msgctxt "allow messages from" +msgid "Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 +msgid "Everything else" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 +msgid "Everything look right?" +msgstr "" + +#. Advanced search filter +#. Advanced search filter +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:46 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:57 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:86 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:92 +msgid "Exclude" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:320 +msgid "Exclude users you follow" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:605 +msgid "Excludes users you follow" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 +msgid "Exit fullscreen" +msgstr "" + +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 +msgid "Expand alt text" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:612 +msgid "Expand list of users" +msgstr "" + +#: src/view/com/composer/ComposerReplyTo.tsx:103 +msgid "Expand or collapse the full post you are replying to" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:31 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1054 +msgid "Expands or collapses post text" +msgstr "" + +#: src/lib/api/index.ts:490 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:127 +msgid "Experimental" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:520 +msgid "Expired" +msgstr "" + +#. placeholder {0}: formatDistance(expiryDate, new Date(), { addSuffix: true, }) +#: src/components/dialogs/MutedWords.tsx:589 +msgid "Expires {0}" +msgstr "" + +#. placeholder {0}: timeDiff(Date.now(), label.exp) +#. placeholder {0}: timeDiff(Date.now(), modcause.label.exp) +#: src/components/moderation/LabelsOnMeDialog.tsx:218 +#: src/components/moderation/ModerationDetailsDialog.tsx:294 +msgid "Expires in {0}" +msgstr "" + +#. placeholder {0}: displayDuration(i18n, minutesUntilExpiry) +#. placeholder {1}: i18n.date(expiryDateTime, { hour: 'numeric', minute: '2-digit', hour12: true, }) +#: src/features/liveNow/components/EditLiveDialog.tsx:125 +msgid "Expires in {0} at {1}" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +#: src/lib/moderation/useGlobalLabelStrings.ts:51 +msgid "Explicit or potentially disturbing media." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "" + +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 +msgid "Explore" +msgstr "" + +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 +msgid "Explore the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:329 +#: src/screens/Messages/Settings.tsx:338 +#: src/screens/Settings/components/ExportCarDialog.tsx:130 +msgid "Export my chat data" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:168 +#: src/screens/Settings/AccountSettings.tsx:172 +msgid "Export my data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:97 +msgid "Export my profile data" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:86 +#: src/screens/Settings/ContentAndMediaSettings.tsx:89 +msgid "External media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/screens/Settings/ExternalMediaPreferences.tsx:44 +msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." +msgstr "" + +#: src/Navigation.tsx:382 +#: src/screens/Settings/ExternalMediaPreferences.tsx:35 +msgid "External Media Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:146 +msgid "Extremist content" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:244 +msgctxt "toast" +msgid "Failed to accept chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:92 +#: src/components/dms/MessageContextMenu.tsx:140 +msgid "Failed to add emoji reaction" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 +msgid "Failed to add members" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:239 +msgid "Failed to add to list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:280 +msgid "Failed to add to starter pack" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:605 +msgid "Failed to change handle. Please try again." +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 +#: src/screens/Search/Shell.tsx:513 +msgid "Failed to copy link" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 +msgid "Failed to create app password. Please try again." +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:38 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 +msgid "Failed to create conversation" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 +msgid "Failed to create invite link" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:250 +#: src/screens/StarterPack/Wizard/index.tsx:260 +msgid "Failed to create starter pack" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 +msgctxt "toast" +msgid "Failed to delete chat" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:112 +msgid "Failed to delete message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 +msgid "Failed to delete post, please try again" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:754 +msgid "Failed to delete starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +msgid "Failed to disable invite link" +msgstr "" + +#. placeholder {0}: error?.message +#: src/screens/Profile/components/GermButton.tsx:196 +msgid "Failed to disconnect Germ DM. Error: {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:381 +msgid "Failed to edit group chat name" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 +msgid "Failed to edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 +msgid "Failed to enable invite link" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:143 +msgid "Failed to follow all suggested accounts, please try again" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:148 +msgid "Failed to follow all your friends, please try again" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:236 +msgid "Failed to hide suggestion, please check your internet connection" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Failed to join the group chat. Please try again." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:582 +msgid "Failed to launch SMS app" +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:41 +#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/screens/Messages/ConversationSettings/index.tsx:408 +msgctxt "toast" +msgid "Failed to leave group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:420 +#: src/screens/Messages/Inbox.tsx:202 +msgid "Failed to load conversations" +msgstr "" + +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 +msgid "Failed to load feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:85 +#: src/screens/Messages/Settings.tsx:369 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "Failed to load notification settings." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:22 +msgid "Failed to load past messages" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:66 +msgid "Failed to load preference." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:292 +msgid "Failed to load profiles" +msgstr "" + +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:386 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:433 +msgid "Failed to lock group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:636 +#: src/view/shell/bottom-bar/BottomBar.tsx:447 +msgid "Failed to mark all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:645 +#: src/screens/Messages/Inbox.tsx:304 +#: src/view/shell/bottom-bar/BottomBar.tsx:456 +msgid "Failed to mark all requests as read" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:397 +msgid "Failed to mute group chat" +msgstr "" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#. placeholder {0}: e?.message +#: src/screens/Profile/components/GermButton.tsx:164 +msgid "Failed to reconnect Germ DM. Error: {0}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to reject join request" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:509 +msgid "Failed to remove data due to a network error, please check your internet connection." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/screens/Settings/FindContactsSettings.tsx:515 +msgid "Failed to remove data. {0}" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:77 +#: src/components/dms/MessageContextMenu.tsx:125 +#: src/components/dms/ReactionsDialog.tsx:179 +msgid "Failed to remove emoji reaction" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:258 +msgid "Failed to remove from list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:293 +msgid "Failed to remove from starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 +msgid "Failed to remove group chat member" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:34 +msgid "Failed to remove verification" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:193 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 +msgid "Failed to resolve location. Please try again." +msgstr "" + +#: src/view/com/composer/Composer.tsx:731 +msgid "Failed to save draft" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:319 +msgid "Failed to save image" +msgstr "" + +#. placeholder {0}: String(e) +#: src/lib/media/save-image.ios.ts:27 +#: src/lib/media/save-image.ts:31 +msgid "Failed to save image: {0}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:109 +msgid "Failed to save settings. Please try again." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:147 +msgctxt "toast" +msgid "Failed to save your interests." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137 +msgid "Failed to send email, please try again." +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:52 +msgid "Failed to send report" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:77 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 +#: src/screens/Messages/components/ChatDisabled.tsx:119 +msgid "Failed to submit appeal, please try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 +msgid "Failed to toggle thread mute, please try again" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:442 +msgid "Failed to unlock group chat" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107 +msgid "Failed to unpin list" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82 +msgid "Failed to update email 2FA settings" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 +msgid "Failed to update email, please try again." +msgstr "" + +#: src/components/FeedCard.tsx:316 +msgid "Failed to update feeds" +msgstr "" + +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:110 +msgid "Failed to update settings" +msgstr "" + +#: src/lib/media/video/upload.ts:73 +#: src/lib/media/video/upload.web.ts:73 +#: src/lib/media/video/upload.web.ts:77 +#: src/lib/media/video/upload.web.ts:87 +msgid "Failed to upload video" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:169 +msgid "Failed to verify email, please try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:372 +msgid "Failed to verify handle. Please try again." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 +msgid "Fake account or bot" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55 +msgid "False information about elections" +msgstr "" + +#: src/Navigation.tsx:293 +msgid "Feed" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') +#. placeholder {0}: sanitizeHandle(view.creator.handle, '@') +#: src/components/FeedCard.tsx:170 +#: src/state/queries/feed.ts:127 +#: src/view/com/feeds/FeedSourceCard.tsx:151 +msgid "Feed by {0}" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:153 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:190 +msgid "Feed identifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 +msgid "Feed menu" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Feed toggle" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:74 +msgid "Feed unavailable" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:109 +#: src/view/shell/desktop/RightNav.tsx:110 +#: src/view/shell/Drawer.tsx:427 +msgid "Feedback" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 +msgctxt "toast" +msgid "Feedback sent to feed operator" +msgstr "" + +#: src/Navigation.tsx:545 +#: src/screens/SavedFeeds.tsx:112 +#: src/screens/SavedFeeds.tsx:303 +#: src/screens/Search/SearchResults.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:196 +#: src/view/screens/Feeds.tsx:504 +#: src/view/screens/Profile.tsx:241 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 +msgid "Feeds" +msgstr "" + +#: src/screens/SavedFeeds.tsx:227 +#: src/screens/SavedFeeds.tsx:398 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0>See this guide for more information." +msgstr "" + +#: src/components/FeedCard.tsx:313 +#: src/screens/SavedFeeds.tsx:92 +#: src/screens/SavedFeeds.tsx:271 +msgctxt "toast" +msgid "Feeds updated!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:61 +msgid "Fetch update" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:43 +#: src/screens/Settings/components/ExportCarDialog.tsx:76 +msgid "File saved successfully!" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 +msgid "Filter by author (currently: {currentLabel})" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:69 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:70 +msgid "Filter search by language (currently: {currentLanguageLabel})" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + +#. placeholder {0}: lang.name +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 +msgid "Filter this search by {0}" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:106 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 +msgid "Filter who you receive notifications from" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:78 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 +msgctxt "search" +msgid "Filters" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:335 +msgid "Finalizing" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 +msgid "Finally!" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 +msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." +msgstr "" + +#: src/lib/interests.ts:60 +msgid "Finance" +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:67 +#: src/view/com/posts/CustomFeedEmptyState.tsx:72 +#: src/view/com/posts/FollowingEmptyState.tsx:48 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:49 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 +#: src/screens/Settings/Settings.tsx:217 +#: src/screens/Settings/Settings.tsx:220 +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 +msgid "Find Contacts" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:273 +#: src/components/contacts/screens/GetContacts.tsx:287 +msgid "Find my friends" +msgstr "" + +#. Starter packs suggested to the user for them to follow +#: src/components/ProgressGuide/FollowDialog.tsx:72 +#: src/components/ProgressGuide/FollowDialog.tsx:80 +#: src/components/ProgressGuide/FollowDialog.tsx:448 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:43 +msgid "Find people to follow" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + +#: src/screens/Search/Shell.tsx:765 +msgid "Find posts, users, and feeds on Bluesky" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 +msgid "Find your friends" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 +#: src/screens/Settings/FindContactsSettings.tsx:133 +msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 +msgid "Find your people" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:281 +msgid "Finding friends..." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:206 +msgid "Finish" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 +msgctxt "Name of app icon variant" +msgid "Flat Black" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +msgctxt "Name of app icon variant" +msgid "Flat Blue" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 +msgctxt "Name of app icon variant" +msgid "Flat White" +msgstr "" + +#: src/components/contacts/components/OTPInput.tsx:55 +msgid "Focus code input" +msgstr "" + +#: src/lib/hotkeys/index.tsx:73 +msgid "Focus the search field" +msgstr "" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:548 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 +#: src/screens/VideoFeed/index.tsx:937 +#: src/view/com/notifications/NotificationFeedItem.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:871 +msgid "Follow" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397 +msgid "Follow {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:167 +msgid "Follow {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:916 +msgid "Follow {handle}" +msgstr "" + +#: src/state/shell/progress-guide.tsx:232 +msgid "Follow 10 accounts" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:73 +msgid "Follow 10 people to get started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:114 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:331 +msgid "Follow account" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:276 +#: src/components/contacts/screens/ViewMatches.tsx:291 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:294 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:162 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:169 +#: src/screens/Settings/FindContactsSettings.tsx:465 +#: src/screens/Settings/FindContactsSettings.tsx:475 +#: src/screens/StarterPack/StarterPackScreen.tsx:452 +#: src/screens/StarterPack/StarterPackScreen.tsx:460 +msgid "Follow all" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:291 +msgid "Follow all accounts" +msgstr "" + +#. User is not following this account, click to follow back +#: src/components/ProfileCard.tsx:544 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:871 +msgid "Follow back" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:132 +msgid "Followed all accounts!" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:418 +msgid "Followed all matches" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#: src/components/KnownFollowers.tsx:233 +msgid "Followed by <0>{0}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: serverCount - 1 +#: src/components/KnownFollowers.tsx:219 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#: src/components/KnownFollowers.tsx:206 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#. placeholder {2}: serverCount - 2 +#: src/components/KnownFollowers.tsx:189 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:355 +msgid "Followers can join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:247 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:98 +#: src/screens/Profile/KnownFollowers.tsx:115 +msgid "Followers you know" +msgstr "" + +#. User is following this account, click to unfollow +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:539 +#: src/components/ProfileHoverCard/index.web.tsx:494 +#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 +#: src/screens/VideoFeed/index.tsx:935 +#: src/view/com/notifications/NotificationFeedItem.tsx:842 +#: src/view/com/notifications/NotificationFeedItem.tsx:859 +msgid "Following" +msgstr "" + +#: src/screens/SavedFeeds.tsx:618 +#: src/view/screens/Feeds.tsx:596 +msgctxt "feed-name" +msgid "Following" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#: src/components/ProfileCard.tsx:500 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:791 +msgid "Following {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:66 +msgid "Following {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:915 +msgid "Following {handle}" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:78 +#: src/screens/Settings/ContentAndMediaSettings.tsx:81 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:369 +#: src/screens/Settings/FollowingFeedPreferences.tsx:57 +msgid "Following Feed Preferences" +msgstr "" + +#: src/components/Pills.tsx:213 +#: src/screens/Profile/Header/Handle.tsx:33 +msgid "Follows you" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:126 +msgid "Font" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:146 +msgid "Font size" +msgstr "" + +#: src/lib/interests.ts:61 +msgid "Food" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:106 +msgid "For organizational accounts, use the birthdate of the person who is responsible for the account." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:186 +msgid "For security reasons, weโ€™ll need to send a confirmation code to your email address <0>{currentEmail}." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:208 +msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:128 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:131 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 +msgid "For You" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:187 +#: src/components/dialogs/MutedWords.tsx:572 +#: src/components/dialogs/MutedWords.tsx:575 +msgid "Forever" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 +msgid "Forget the noise" +msgstr "" + +#: src/screens/Login/index.tsx:176 +#: src/screens/Login/index.tsx:192 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:421 +#: src/screens/Login/LoginForm.tsx:428 +msgid "Forgot password?" +msgstr "" + +#. This is alt text for a marketing image which transcribes English text that appears in the image +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:153 +msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 +msgid "Free your feed" +msgstr "" + +#. Filter who you receive notifications from +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +msgid "From" +msgstr "" + +#: src/screens/Hashtag.tsx:123 +msgid "From {sanitizedAuthor}" +msgstr "" + +#: src/screens/Hashtag.tsx:124 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:48 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:30 +msgid "From these people" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +msgid "Generate a starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 +#: src/screens/Messages/components/InviteLinkDialog.tsx:277 +#: src/screens/Messages/components/InviteLinkDialog.tsx:305 +msgid "Generate invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 +msgid "Generate new invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 +msgid "Generate new link" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:86 +#: src/screens/Profile/components/GermButton.tsx:225 +msgid "Germ DM" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:183 +msgid "Germ DM disconnected" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 +msgid "Germ DM Link" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:160 +msgid "Germ DM reconnected" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:132 +msgid "Get early access to experimental features weโ€™re testing." +msgstr "" + +#: src/view/shell/Drawer.tsx:431 +msgid "Get help" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:389 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:316 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:366 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:340 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:348 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:332 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:357 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:375 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:33 +msgid "Get notifications when people send you message requests." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:23 +msgid "Get notifications when people send you messages." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:89 +#: src/components/activity-notifications/SubscribeProfileButton.tsx:90 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:233 +msgid "Get notified of this accountโ€™s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:84 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 +msgid "Get notified when someone posts" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 +#: src/screens/Messages/components/InviteLinkDialog.tsx:219 +#: src/screens/Messages/components/InviteLinkDialog.tsx:226 +msgid "Get started" +msgstr "" + +#: src/components/MediaPreview.tsx:182 +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:93 +msgid "GIF" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2702 +msgid "GIF uploaded" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:256 +msgid "Give your profile a face" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:142 +msgid "Glorification of violence" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:127 +#: src/components/dialogs/LinkWarning.tsx:133 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 +#: src/screens/Login/components/AuthLayout/Header/index.tsx:74 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 +#: src/screens/ProfileList/components/ErrorScreen.tsx:35 +#: src/screens/ProfileList/components/ErrorScreen.tsx:41 +#: src/screens/VideoFeed/components/Header.tsx:163 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 +#: src/view/com/auth/LoggedOut.tsx:127 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go back" +msgstr "" + +#: src/components/Error.tsx:72 +#: src/screens/List/ListHiddenScreen.tsx:228 +#: src/screens/Profile/ErrorState.tsx:63 +#: src/screens/Profile/ErrorState.tsx:67 +#: src/screens/StarterPack/StarterPackScreen.tsx:807 +msgid "Go Back" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:97 +#: src/screens/Onboarding/Layout.tsx:198 +#: src/screens/Signup/BackNextButtons.tsx:36 +msgid "Go back to previous step" +msgstr "" + +#: src/screens/Bookmarks.tsx:296 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/view/com/profile/ProfileMenu.tsx:386 +msgid "Go live" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:106 +#: src/features/liveNow/components/GoLiveDialog.tsx:111 +#: src/features/liveNow/components/GoLiveDialog.tsx:239 +#: src/features/liveNow/components/GoLiveDialog.tsx:248 +msgid "Go Live" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:362 +#: src/view/com/profile/ProfileMenu.tsx:382 +msgid "Go live (disabled)" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:181 +msgid "Go live for" +msgstr "" + +#. placeholder {0}: name.displayName +#: src/screens/PostThread/components/LikesStat.tsx:146 +msgid "Go to {0}'s profile" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:256 +msgid "Go to {firstAuthorName}'s profile" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:93 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:73 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:82 +#: src/screens/Moderation/index.tsx:237 +msgid "Go to account settings" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Messages/components/ChatListItem.tsx:155 +msgid "Go to conversation with {0}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:39 +msgid "Go to feed" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:168 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:194 +#: src/view/shell/desktop/LeftNav.tsx:336 +#: src/view/shell/desktop/LeftNav.tsx:342 +msgid "Go to profile" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:211 +msgid "Go to the group chat named \"{chatName}\"" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:258 +msgid "Go to user's profile" +msgstr "" + +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 +msgid "Go to userโ€™s profile" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105 +msgid "Going live is currently disabled for your account" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:121 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:126 +#: src/screens/Profile/components/GermButton.tsx:253 +#: src/screens/Profile/components/GermButton.tsx:258 +msgid "Got it" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/lib/moderation/useGlobalLabelStrings.ts:50 +#: src/view/com/composer/labels/LabelsBtn.tsx:197 +#: src/view/com/composer/labels/LabelsBtn.tsx:200 +msgid "Graphic Media" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:138 +msgid "Graphic violent content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:169 +msgid "Grooming or predatory behavior" +msgstr "" + +#: src/components/dms/ChatInvite/Card.tsx:51 +#: src/components/intents/GroupChatJoinDialog.tsx:333 +#: src/screens/Messages/JoinRequest.tsx:125 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 +msgid "Group chat invite link dialog" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:424 +msgctxt "toast" +msgid "Group chat locked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:389 +msgctxt "toast" +msgid "Group chat muted" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:376 +msgctxt "toast" +msgid "Group chat name updated" +msgstr "" + +#: src/Navigation.tsx:514 +#: src/screens/Messages/ConversationSettings/index.tsx:113 +msgid "Group chat settings" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:427 +msgctxt "toast" +msgid "Group chat unlocked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:392 +msgctxt "toast" +msgid "Group chat unmuted" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" + +#: src/screens/Messages/Settings.tsx:212 +msgid "Group chats are only available to users 18 and over." +msgstr "" + +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:205 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 +msgid "Group is locked" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 +#: src/screens/Messages/ConversationSettings/prompts.tsx:50 +msgid "Group name" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:730 +#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 +msgid "Hacking or system attacks" +msgstr "" + +#: src/state/shell/progress-guide.tsx:221 +#: src/state/shell/progress-guide.tsx:231 +msgid "Half way there!" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:133 +#: src/screens/Settings/AccountSettings.tsx:138 +msgid "Handle" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:609 +msgid "Handle already taken. Please try a different one." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:197 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:356 +msgid "Handle changed!" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:613 +msgid "Handle too long. Please try a shorter one." +msgstr "" + +#: src/components/FeedCard.tsx:156 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 +msgid "Happening now" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to happy/joyful GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:65 +msgid "Happy GIFs" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:86 +msgid "Haptics" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 +msgid "Harassment or hate" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:189 +msgid "Harmful or high-risk activities" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:162 +msgid "Harming or endangering minors" +msgstr "" + +#: src/Navigation.tsx:498 +msgid "Hashtag" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Hashtag {tag}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:111 +msgid "Hate speech" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 +msgid "Have a code? <0>Click here." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:323 +msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." +msgstr "" + +#: src/screens/Signup/index.tsx:246 +msgid "Having trouble?" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:290 +msgid "Held by Bluesky for 7 days to prevent abuse, then deleted" +msgstr "" + +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:260 +#: src/view/shell/desktop/RightNav.tsx:130 +#: src/view/shell/desktop/RightNav.tsx:133 +#: src/view/shell/Drawer.tsx:440 +msgid "Help" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:259 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 +msgid "Here is your app password!" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:74 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:120 +msgid "Hey there ๐Ÿ‘‹" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:171 +msgid "Hey there!" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:276 +msgid "Hi there!" +msgstr "" + +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 +msgid "Hidden" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:714 +msgid "Hidden by your moderation settings." +msgstr "" + +#: src/components/ListCard.tsx:133 +msgid "Hidden list" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:140 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 +#: src/lib/moderation/useLabelBehaviorDescription.ts:18 +#: src/lib/moderation/useLabelBehaviorDescription.ts:23 +#: src/lib/moderation/useLabelBehaviorDescription.ts:28 +#: src/lib/moderation/useLabelBehaviorDescription.ts:33 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:956 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/components/dialogs/Embed.tsx:124 +msgid "Hide customization options" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:57 +msgid "Hide group chat updates" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:533 +msgid "Hide lists" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:613 +msgid "Hide password" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 +msgid "Hide post for me" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 +msgid "Hide reply for everyone" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 +msgid "Hide reply for me" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 +msgid "Hide this card" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +msgid "Hide this post?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 +msgid "Hide this reply?" +msgstr "" + +#: src/components/Post/Translated/index.tsx:216 +#: src/components/Post/Translated/index.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 +msgid "Hide translation" +msgstr "" + +#: src/components/interstitials/Trending.tsx:126 +msgid "Hide trending topics" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 +msgid "Hide trending topics?" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:136 +msgid "Hide trending videos?" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:947 +msgid "Hide user list" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:88 +#: src/screens/Moderation/VerificationSettings.tsx:97 +msgid "Hide verification badges" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:168 +#: src/components/moderation/PostHider.tsx:94 +msgid "Hides the content" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:76 +msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:122 +msgid "Hmm, it seems we weren't able to compute your level of access. Please try again." +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:141 +msgid "Hmm, it seems your device was unable to share age information with us." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:125 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:113 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:119 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:116 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:110 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "" + +#: src/screens/Moderation/index.tsx:61 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:32 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "" + +#: src/view/com/composer/state/video.ts:447 +msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 +#: src/view/shell/bottom-bar/BottomBar.tsx:196 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 +msgid "Home" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:430 +msgid "Host:" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:138 +#: src/screens/Login/components/HostingProviderDialog.tsx:159 +#: src/screens/Login/ForgotPasswordForm.tsx:80 +#: src/screens/Login/LoginForm.tsx:659 +msgid "Hosting provider" +msgstr "" + +#. placeholder {0}: toNiceHostingUrl(state.pdsUrl) +#: src/screens/Login/LoginForm.tsx:655 +msgid "Hosting provider: {0}" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:657 +msgid "Hosting provider: Bluesky" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:54 +msgid "How it works:" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:63 +#: src/components/dialogs/InAppBrowserConsent.tsx:67 +msgid "How should we open this link?" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:279 +msgid "How we use your number:" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:150 +msgid "Human trafficking" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:267 +msgid "I consent to Bluesky using my contacts for mutual friend discovery and to retain hashed data for matching until I opt out." +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:134 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:137 +msgid "I have a code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:292 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:298 +msgid "I have my own domain" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:55 +msgid "I understand" +msgstr "" + +#. placeholder {0}: currentAccount.handle +#: src/components/contacts/screens/ViewMatches.tsx:578 +msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:246 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:235 +msgid "If none are selected, all languages will be shown in your feeds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:103 +msgid "If you are 18 years of age or older and want to try again, click the button below and use a different verification method if one is available in your region. If you have questions or concerns, <0>our support team can help." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:340 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:116 +msgid "If you believe your birthdate is incorrect, you can update it by <0>clicking here." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:272 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:274 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 +msgid "If you need to update your email, <0>click here." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 +msgid "If you update your email address, email 2FA will be disabled." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:60 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 +#: src/view/screens/Storybook/Admonitions.tsx:90 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:210 +msgid "If you're a developer, you can host your own server." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/components/images/ImageLayoutGridItem.tsx:91 +msgid "Image" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:457 +msgid "Image {0}" +msgstr "" + +#. placeholder {0}: index + 1 +#. placeholder {1}: imgs.length +#: src/components/Lightbox/Lightbox.web.tsx:261 +msgid "Image {0} of {1}" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:442 +msgid "Image {0} of {imageCount}" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:74 +msgid "Image cache cleared" +msgstr "" + +#. Android-only toast message which includes amount of space freed using localized number formatting +#. placeholder {0}: i18n.number( Math.abs(sizeDiffBytes / 1024 / 1024), { notation: 'compact', style: 'unit', unit: 'megabyte', }, ) +#: src/screens/Settings/AboutSettings.tsx:60 +msgid "Image cache cleared, freed {0}" +msgstr "" + +#. placeholder {0}: images.length +#: src/components/images/Gallery/index.tsx:274 +msgid "Image gallery, {0} images" +msgstr "" + +#. Image has been moderated and user has the option of showing it temporarily +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 +msgid "Image is hidden due to your moderation settings." +msgstr "" + +#. Image has been moderated and is not visible to the user +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 +msgid "Image is unavailable." +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:72 +#: src/components/Lightbox/Lightbox.web.tsx:265 +#: src/components/Lightbox/Lightbox.web.tsx:273 +msgid "Image options" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/lib/media/save-image.ios.ts:25 +#: src/lib/media/save-image.ts:29 +msgid "Image saved" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:82 +msgid "Image viewer" +msgstr "" + +#: src/lib/media/save-image.ts:51 +msgid "Images cannot be saved unless permission is granted to access your photo library." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:51 +msgid "Impersonation" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 +msgid "Import contacts" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 +msgid "Import Contacts" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "" + +#: src/components/contacts/FindContactsBannerNUX.tsx:33 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 +msgid "Import contacts to find your friends" +msgstr "" + +#. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) +#: src/screens/Settings/FindContactsSettings.tsx:535 +msgid "Imported on {0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:279 +msgid "In order to provide an age-appropriate experience, we need to know your birthdate. This is a one-time thing, and your data will be kept private." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:30 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:21 +msgid "In-app, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:25 +msgid "In-app, people you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:29 +msgid "In-app, push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:20 +msgid "In-app, push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:24 +msgid "In-app, push, people you follow" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:437 +msgid "Inbox empty" +msgstr "" + +#. Title message shown in chat requests inbox when it's empty +#: src/screens/Messages/Inbox.tsx:219 +msgid "Inbox zero!" +msgstr "" + +#. Advanced search filter +#. Advanced search filter +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 +msgid "Include" +msgstr "" + +#. placeholder {0}: filter.mode === 'exclude' ? l({message: 'Exclude', comment: 'Advanced search filter'}) : l({message: 'Include', comment: 'Advanced search filter'}) +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:44 +msgid "Include or exclude matching posts (currently: {0})" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 +msgid "Include posts and/or replies (currently: {currentLabel})" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:305 +msgid "Include posts made since this date" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:329 +msgid "Include posts made until this date" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:165 +msgid "Incorrect username or password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:124 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:148 +msgid "Input new password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:456 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:136 +msgid "Interaction limited" +msgstr "" + +#: src/screens/Moderation/index.tsx:269 +msgid "Interaction settings" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:33 +msgid "Introducing activity notifications" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:49 +msgid "Introducing drafts" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:56 +msgid "Introducing finding friends via contacts" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 +msgid "Introducing saved posts AKA bookmarks" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:156 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:71 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:157 +msgid "Invalid group chat code." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:615 +msgid "Invalid handle. Please try a different one." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 +msgctxt "toast" +msgid "Invalid interaction settings." +msgstr "" + +#: src/components/contacts/phone-number.ts:33 +#: src/components/contacts/screens/PhoneInput.tsx:142 +msgid "Invalid phone number" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:100 +msgid "Invalid report subject" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:200 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:86 +msgid "Invalid Verification Code" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:587 +msgid "Invite" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:567 +msgid "Invite {name} to join Bluesky" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:193 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:363 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:42 +#: src/components/contacts/components/InviteInfo.tsx:44 +msgid "Invite Friends" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:301 +msgid "Invite friends <0/>" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:193 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 +#: src/screens/Messages/components/InviteLinkDialog.tsx:335 +#: src/screens/Messages/components/InviteLinkDialog.tsx:514 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149 +#: src/screens/Messages/ConversationSettings/index.tsx:557 +msgid "Invite link" +msgstr "" + +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:214 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:127 +msgid "Invite link copied" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:120 +msgid "Invite link created" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:138 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 +msgid "Invite link disabled" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:126 +msgid "Invite link edited" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:132 +msgid "Invite link enabled" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:83 +msgid "Invite people to this starter pack!" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:37 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 +msgid "Invited" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:34 +msgid "Invites, but personal" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:47 +msgid "It looks like some of your contacts have not tried to find you here yet. You can personally invite them by customizing a draft message we will provide." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:373 +msgid "It's correct" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:483 +msgid "It's just <0>{0} right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:478 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#. placeholder {0}: videoState.jobId +#: src/view/com/composer/Composer.tsx:2617 +msgid "Job ID: {0}" +msgstr "" + +#. Link to a page with job openings at Bluesky +#: src/view/com/auth/SplashScreen.web.tsx:181 +msgid "Jobs" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +msgid "Join" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:488 +msgid "Join Bluesky" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:72 +#: src/components/intents/GroupChatJoinDialog.tsx:464 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:189 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:72 +#: src/view/shell/NavSignupCard.tsx:41 +msgid "Join the conversation" +msgstr "" + +#: src/lib/interests.ts:63 +msgid "Journalism" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 +#: src/view/com/composer/drafts/DraftsButton.tsx:135 +msgid "Keep editing" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:230 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 +msgid "KWS website" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName(desc.source!) +#: src/components/moderation/ContentHider.tsx:245 +msgid "Labeled by {0}." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:243 +msgid "Labeled by the author." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:70 +#: src/view/screens/Profile.tsx:234 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:68 +msgid "Labels added" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:78 +msgid "Labels applied to this post" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:195 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:76 +msgid "Labels on your account" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:357 +msgid "Language" +msgstr "" + +#: src/Navigation.tsx:220 +msgid "Language Settings" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:98 +#: src/screens/Settings/Settings.tsx:240 +#: src/screens/Settings/Settings.tsx:243 +msgid "Languages" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:158 +msgid "Larger" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:443 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:179 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:441 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:177 +msgid "Last initiated just now" +msgstr "" + +#: src/screens/Hashtag.tsx:97 +#: src/screens/Search/SearchResults.tsx:95 +#: src/screens/Topic.tsx:64 +msgid "Latest" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:168 +#: src/components/verification/VerifierDialog.tsx:136 +#: src/screens/Moderation/VerificationSettings.tsx:50 +#: src/screens/Profile/Header/EditProfileDialog.tsx:346 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:215 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:279 +msgctxt "english-only-resource" +msgid "Learn more" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:143 +msgid "Learn More" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:273 +msgctxt "english-only-resource" +msgid "Learn more about <0>how to use advanced search." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 +msgid "Learn more about age assurance" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:169 +msgid "Learn more about Bluesky" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:33 +msgid "Learn more about how inviting friends works" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:303 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 +#: src/screens/Settings/FindContactsSettings.tsx:140 +msgctxt "english-only-resource" +msgid "Learn more about importing contacts" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:220 +#: src/screens/Login/components/HostingProviderDialog.tsx:241 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 +msgid "Learn more about the moderation applied to this content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:150 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:90 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:116 +#: src/components/moderation/ScreenHider.tsx:132 +msgid "Learn more about this warning" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:153 +#: src/components/verification/VerifierDialog.tsx:122 +msgctxt "english-only-resource" +msgid "Learn more about verification on Bluesky" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:212 +msgid "Learn more about your Germ DM link" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:90 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:222 +#: src/components/moderation/ContentHider.tsx:253 +#: src/screens/Login/components/HostingProviderDialog.tsx:243 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:591 +msgid "Leave" +msgstr "" + +#. Leave a conversation (reject a chat invitation) +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 +msgctxt "Button" +msgid "Leave" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:109 +#: src/components/dms/MessagesListBlockedFooter.tsx:116 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 +#: src/screens/Messages/components/ChatEnded.tsx:66 +#: src/screens/Messages/components/ChatLocked.tsx:112 +msgid "Leave chat" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:229 +#: src/components/dms/AfterReportConversationDialog.tsx:233 +#: src/components/dms/ConvoMenu.tsx:236 +#: src/components/dms/ConvoMenu.tsx:240 +#: src/components/dms/ConvoMenu.tsx:308 +#: src/components/dms/ConvoMenu.tsx:312 +#: src/components/dms/LeaveConvoPrompt.tsx:53 +msgid "Leave conversation" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:174 +msgctxt "button" +msgid "Leave conversation" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:130 +#: src/screens/Messages/ConversationSettings/prompts.tsx:154 +msgid "Leave group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:590 +msgid "Leave this group chat" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:83 +#: src/components/dialogs/LinkWarning.tsx:91 +msgid "Leaving Bluesky" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:153 +msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:274 +msgid "Left group chat." +msgstr "" + +#: src/screens/SignupQueued.tsx:158 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:177 +#: src/screens/Login/index.tsx:193 +msgid "Let's get your password reset!" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:337 +msgid "Let's go!" +msgstr "" + +#: src/components/dialogs/Embed.tsx:159 +#: src/components/dialogs/Embed.tsx:161 +#: src/screens/Settings/AppearanceSettings.tsx:87 +msgid "Light" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14 +msgctxt "Name of app icon variant" +msgid "Light" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 +msgid "Like" +msgstr "" + +#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form +#. placeholder {0}: post.likeCount || 0 +#: src/components/PostControls/index.tsx:284 +msgid "Like ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:108 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:217 +#: src/state/shell/progress-guide.tsx:222 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 +msgid "Like this feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:149 +msgid "Like this labeler" +msgstr "" + +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 +msgid "Liked by" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:31 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:22 +#: src/view/screens/ProfileFeedLikedBy.tsx:22 +msgid "Liked By" +msgstr "" + +#. placeholder {0}: count || 0 +#. placeholder {0}: feed.likeCount || 0 +#: src/components/FeedCard.tsx:249 +#: src/view/com/feeds/FeedSourceCard.tsx:173 +msgid "Liked by {0, plural, one {# user} other {# users}}" +msgstr "" + +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:96 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 +msgid "Liked by {likeCount, plural, one {# user} other {# users}}" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:158 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 +msgid "Likes" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:200 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 +msgid "Likes of your reposts" +msgstr "" + +#: src/screens/PostThread/components/LikesStat.tsx:39 +msgid "Likes on this post" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:49 +#: src/screens/PostThread/components/HeaderDropdown.tsx:54 +msgid "Linear" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:300 +msgid "Link copied to clipboard" +msgstr "" + +#: src/Navigation.tsx:253 +msgid "List" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:397 +msgid "List avatar" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:48 +msgctxt "toast" +msgid "List blocked" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') +#: src/components/ListCard.tsx:153 +#: src/view/com/feeds/FeedSourceCard.tsx:153 +msgid "List by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:145 +msgid "List by <0/>" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:143 +msgid "List by you" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:127 +msgid "List created, but failed to add some members" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:155 +msgid "List creator" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:93 +msgctxt "toast" +msgid "List deleted" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:446 +msgid "List description" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:466 +msgid "List description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:133 +msgid "List has been hidden" +msgstr "" + +#: src/screens/ProfileList/index.tsx:175 +msgid "List Hidden" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:438 +msgid "List must have a name." +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:33 +msgctxt "toast" +msgid "List muted" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:410 +msgid "List name" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:430 +msgid "List name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:115 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:130 +msgctxt "toast" +msgid "List unblocked" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:101 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:116 +msgctxt "toast" +msgid "List unmuted" +msgstr "" + +#: src/Navigation.tsx:174 +#: src/view/screens/Lists.tsx:60 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 +msgid "Lists" +msgstr "" + +#: src/view/com/lists/MyLists.tsx:72 +msgid "Lists allow you to see content from your favorite people." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:38 +msgid "Lists blocking this user:" +msgstr "" + +#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters +#: src/features/liveNow/components/LiveIndicator.tsx:46 +msgid "LIVE" +msgstr "" + +#. placeholder {0}: feed.title +#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:53 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:54 +msgid "Live event happening now: {0}" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 +msgid "Live event hidden" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 +msgid "Live event unhidden" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 +msgid "Live feature is in beta" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:142 +#: src/features/liveNow/components/EditLiveDialog.tsx:146 +#: src/features/liveNow/components/GoLiveDialog.tsx:137 +#: src/features/liveNow/components/GoLiveDialog.tsx:141 +msgid "Live link" +msgstr "" + +#: src/screens/Search/Explore.tsx:87 +msgid "Load more" +msgstr "" + +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Notifications.tsx:271 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 +#: src/screens/ProfileList/FeedSection.tsx:113 +#: src/view/com/feeds/FeedPage.tsx:168 +msgid "Load new posts" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:254 +msgctxt "placeholder" +msgid "Loading chatโ€ฆ" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575 +msgid "Loading lists..." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:279 +msgid "Loading post interaction settings..." +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60 +msgid "Loading..." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:571 +msgid "Lock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:107 +msgid "Lock group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:105 +msgid "Lock group chat?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:569 +msgid "Lock this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:571 +msgid "Locked" +msgstr "" + +#: src/Navigation.tsx:328 +msgid "Log" +msgstr "" + +#: src/components/AccountList.tsx:189 +msgid "Logged out" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 +msgid "Logged-out visibility" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:142 +msgid "Logo by @sawaratsuki.bsky.social" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:139 +#: src/view/shell/Drawer.tsx:768 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:55 +msgid "Long press to open tag menu for {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:114 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:44 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:84 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:36 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to GIFs about love/affection. +#: src/features/gifPicker/components/GifCategoryPills.tsx:55 +msgid "Love GIFs" +msgstr "" + +#: src/components/dialogs/EmailDialog/index.tsx:39 +msgid "Make adjustments to email settings for your account" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +msgid "Make one for me" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:101 +msgid "Make sure this is where you intend to go!" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:62 +#: src/screens/Settings/ContentAndMediaSettings.tsx:65 +msgid "Manage saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:339 +msgid "Manage verification settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:111 +msgid "Manage your muted words and tags" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:173 +#: src/screens/Login/components/HostingProviderDialog.tsx:174 +msgid "Manual" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:312 +#: src/screens/Messages/Inbox.tsx:318 +msgid "Mark all as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 +#: src/view/shell/bottom-bar/BottomBar.tsx:465 +#: src/view/shell/bottom-bar/BottomBar.tsx:469 +msgid "Mark all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 +#: src/view/shell/bottom-bar/BottomBar.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:477 +msgid "Mark all requests as read" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 +msgid "Mark as read" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:299 +msgid "Marked all as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:633 +#: src/view/shell/bottom-bar/BottomBar.tsx:444 +msgid "Marked all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:642 +#: src/view/shell/bottom-bar/BottomBar.tsx:453 +msgid "Marked all requests as read" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +msgid "Maybe later" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 +#: src/view/screens/Profile.tsx:238 +msgid "Media" +msgstr "" + +#. Example: "Media stored on John's iPhone" +#. placeholder {0}: draft.draft.deviceName +#: src/view/com/composer/drafts/DraftItem.tsx:119 +msgid "Media stored on {0}" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:117 +msgid "Media stored on another device" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:206 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:300 +msgid "Member removed from group chat." +msgstr "" + +#. The heading above the list of chat members. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +msgid "Members" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:106 +msgid "Members can still read chat history but canโ€™t send new messages." +msgstr "" + +#: src/components/WhoCanReply.tsx:320 +msgid "mentioned users" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:179 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 +#: src/view/screens/Notifications.tsx:99 +msgid "Mentions" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:37 +msgid "Mentions of these people" +msgstr "" + +#: src/components/Menu/index.tsx:119 +msgid "Menu" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 +msgctxt "action" +msgid "Message" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:255 +msgctxt "description" +msgid "Message" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/components/dms/MessageProfileButton.tsx:99 +msgid "Message {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +msgid "Message {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:322 +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:111 +msgctxt "toast" +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageItem.tsx:637 +msgid "Message failed to send." +msgstr "" + +#. placeholder {0}: sender?.handle ?? 'unknown' +#. placeholder {1}: message.text +#: src/components/dms/MessageContextMenu.tsx:166 +msgid "Message from @{0}: {1}" +msgstr "" + +#. placeholder {0}: rawError.message +#: src/view/com/posts/PostFeedErrorMessage.tsx:209 +msgid "Message from server: {0}" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:251 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:116 +msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:165 +msgid "Message options" +msgstr "" + +#: src/Navigation.tsx:779 +msgid "Messages" +msgstr "" + +#: src/components/dms/MessageItem.tsx:736 +msgid "Messages from this person are hidden while they are blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:731 +msgid "Messages from this person are hidden while you are blocking them." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 +msgctxt "Name of app icon variant" +msgid "Midnight" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:177 +msgid "Minor harassment or bullying" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 +msgid "Misleading" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:131 +msgid "Missing media" +msgstr "" + +#: src/Navigation.tsx:179 +#: src/screens/Moderation/index.tsx:100 +msgid "Moderation" +msgstr "" + +#: src/screens/Settings/Settings.tsx:190 +#: src/screens/Settings/Settings.tsx:193 +msgid "Moderation and content filters" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:175 +msgid "Moderation details" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:311 +#: src/components/ListCard.tsx:152 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:309 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +msgid "Moderation list by you" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:256 +msgctxt "toast" +msgid "Moderation list created" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:242 +msgctxt "toast" +msgid "Moderation list updated" +msgstr "" + +#: src/screens/Moderation/index.tsx:299 +msgid "Moderation lists" +msgstr "" + +#: src/Navigation.tsx:184 +#: src/view/screens/ModerationModlists.tsx:60 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:257 +msgid "moderation settings" +msgstr "" + +#: src/Navigation.tsx:313 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:253 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:72 +#: src/lib/moderation/useModerationCauseDescription.ts:48 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "" + +#: src/view/shell/desktop/Feeds.tsx:106 +#: src/view/shell/desktop/Feeds.tsx:153 +msgid "More feeds" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:125 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:128 +msgid "More languages..." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 +#: src/view/com/composer/drafts/DraftItem.tsx:190 +#: src/view/com/profile/ProfileMenu.tsx:251 +#: src/view/com/profile/ProfileMenu.tsx:258 +msgid "More options" +msgstr "" + +#: src/screens/SavedFeeds.tsx:488 +msgid "Move feed down" +msgstr "" + +#: src/screens/SavedFeeds.tsx:478 +msgid "Move feed up" +msgstr "" + +#: src/lib/interests.ts:64 +msgid "Movies" +msgstr "" + +#: src/lib/interests.ts:65 +msgid "Music" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:536 +msgid "Mute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:184 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97 +msgctxt "video" +msgid "Mute" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:154 +#: src/components/RichTextTag.tsx:170 +msgid "Mute {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 +#: src/view/com/profile/ProfileMenu.tsx:443 +#: src/view/com/profile/ProfileMenu.tsx:450 +msgid "Mute account" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:83 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:86 +msgid "Mute accounts" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 +msgid "Mute conversation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:262 +msgid "Mute in:" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:109 +msgid "Mute list" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:104 +msgid "Mute these accounts?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:534 +msgid "Mute this group chat" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:194 +msgid "Mute this word for 24 hours" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:233 +msgid "Mute this word for 30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:218 +msgid "Mute this word for 7 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:267 +msgid "Mute this word in post text and tags" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:283 +msgid "Mute this word in tags only" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:179 +msgid "Mute this word until you unmute it" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 +msgid "Mute thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 +msgid "Mute words & tags" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. Itโ€™s your chat." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:536 +msgid "Muted" +msgstr "" + +#: src/screens/Moderation/index.tsx:314 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:189 +#: src/view/screens/ModerationMutedAccounts.tsx:107 +msgid "Muted Accounts" +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:193 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "" + +#. placeholder {0}: cause.source.list.name +#: src/lib/moderation/useModerationCauseDescription.ts:93 +msgid "Muted by \"{0}\"" +msgstr "" + +#: src/screens/Moderation/index.tsx:284 +msgid "Muted words & tags" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:106 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:54 +#: src/components/dialogs/BirthDateSettings.tsx:58 +msgid "My birthdate" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:77 +msgid "My favorite feeds and people - join me!" +msgstr "" + +#: src/view/screens/Feeds.tsx:697 +msgid "My Feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:49 +msgid "My starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:416 +msgid "Name" +msgstr "" + +#: src/lib/interests.ts:66 +msgid "Nature" +msgstr "" + +#. placeholder {0}: record.name +#. placeholder {0}: view.record.name +#: src/components/StarterPack/StarterPackCard.tsx:134 +#: src/components/StarterPack/StarterPackCard.tsx:169 +msgid "Navigate to {0}" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:135 +msgid "Navigate to starter pack" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:144 +#: src/screens/Login/ForgotPasswordForm.tsx:169 +#: src/screens/Login/LoginForm.tsx:555 +msgid "Navigates to the next screen" +msgstr "" + +#: src/view/shell/Drawer.tsx:92 +msgid "Navigates to your profile" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:342 +#: src/components/moderation/ReportDialog/index.tsx:358 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:585 +msgid "Nevermind, create a handle for me" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:398 +msgid "New" +msgstr "" + +#: src/view/screens/Lists.tsx:71 +#: src/view/screens/ModerationModlists.tsx:72 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 +msgctxt "nux-description" +msgid "New" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:569 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:552 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 +#: src/screens/Messages/ChatList.tsx:232 +#: src/screens/Messages/ChatList.tsx:455 +#: src/screens/Messages/ChatList.tsx:456 +#: src/screens/Messages/ChatList.tsx:580 +msgid "New chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 +msgid "New chat with {0}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 +msgid "New chat with {0} and {1}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73 +msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 +msgid "New email address" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:75 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:74 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:85 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:65 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:129 +msgid "New Feature" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:193 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 +msgid "New followers" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 +msgid "New group chat" +msgstr "" + +#. Button used to create a new group chat. +#. Button used to create a new group chat. +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:332 +msgid "New group chat with:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:228 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:236 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:387 +msgid "New handle" +msgstr "" + +#: src/view/screens/Lists.tsx:64 +#: src/view/screens/ModerationModlists.tsx:64 +msgid "New list" +msgstr "" + +#: src/screens/Messages/Settings.tsx:289 +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:281 +msgid "New message requests" +msgstr "" + +#: src/screens/Messages/Settings.tsx:268 +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 +#: src/screens/Settings/NotificationSettings/index.tsx:264 +msgid "New messages" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:130 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:204 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:208 +msgid "New password" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:218 +#: src/screens/ProfileList/index.tsx:237 +#: src/screens/ProfileList/index.tsx:280 +#: src/view/screens/Feeds.tsx:545 +#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Profile.tsx:607 +msgid "New post" +msgstr "" + +#: src/view/com/feeds/FeedPage.tsx:179 +#: src/view/shell/desktop/LeftNav.tsx:598 +msgctxt "action" +msgid "New post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:558 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:543 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:202 +msgid "New starter pack" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:569 +msgid "New to Bluesky? <0>Sign up" +msgstr "" + +#: src/components/NewskieDialog.tsx:122 +msgid "New user info dialog" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:95 +#: src/screens/PostThread/components/HeaderDropdown.tsx:100 +#: src/screens/Settings/ThreadPreferences.tsx:73 +#: src/screens/Settings/ThreadPreferences.tsx:76 +msgid "Newest replies first" +msgstr "" + +#: src/lib/interests.ts:67 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 +msgid "News" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:410 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:599 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/ForgotPasswordForm.tsx:150 +#: src/screens/Login/SetNewPasswordForm.tsx:171 +#: src/screens/Login/SetNewPasswordForm.tsx:177 +#: src/screens/Onboarding/StepFinished/index.tsx:330 +#: src/screens/Onboarding/StepFinished/index.tsx:339 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:198 +#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:384 +#: src/screens/StarterPack/Wizard/index.tsx:391 +msgid "Next" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:218 +msgid "Next image" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:33 +msgid "Night" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 +msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:108 +msgid "No app passwords yet" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:177 +msgid "No beta features at the moment." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:681 +msgid "No contacts found" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:659 +msgid "No contacts with the name โ€œ{query}โ€ found" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:161 +msgid "No custom feeds yet" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:410 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:412 +msgid "No DNS Panel" +msgstr "" + +#: src/view/com/composer/drafts/DraftsListDialog.tsx:143 +msgid "No drafts yet" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:134 +msgid "No expiry set" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:122 +msgid "No feeds found. Try searching for something else." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:216 +msgid "No followers yet" +msgstr "" + +#. Empty-state message shown in the GIF picker when a search returns zero results. Placeholder is the userโ€™s search query. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:25 +msgid "No GIFs found for \"{query}\"." +msgstr "" + +#. Empty-state message shown when the trending/featured GIF feed returns no results (rare, usually a transient provider issue). +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:36 +msgid "No GIFs to show right now. Try again in a moment." +msgstr "" + +#: src/features/liveNow/components/LinkPreview.tsx:64 +msgid "No image" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + +#: src/components/LikedByList.tsx:84 +#: src/view/com/post-thread/PostLikedBy.tsx:84 +#: src/view/screens/Profile.tsx:539 +msgid "No likes yet" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:160 +msgid "No lists" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#: src/components/ProfileCard.tsx:523 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/notifications/NotificationFeedItem.tsx:813 +msgid "No longer following {0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 +msgid "No media yet" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:310 +msgid "No messages yet" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 +msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:563 +msgid "No name" +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:125 +msgid "No notifications yet!" +msgstr "" + +#: src/screens/Messages/Settings.tsx:104 +msgctxt "allow group chat invites from" +msgid "No one" +msgstr "" + +#: src/screens/Messages/Settings.tsx:86 +msgctxt "allow messages from" +msgid "No one" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:130 +#: src/screens/Settings/ActivityPrivacySettings.tsx:135 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 +msgctxt "enable for" +msgid "No one" +msgstr "" + +#: src/components/WhoCanReply.tsx:303 +msgid "No one but the author can quote this post." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "No one can send messages" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + +#: src/screens/Notifications/ActivityList.tsx:43 +msgid "No posts here" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 +msgid "No posts yet" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:114 +msgid "No quotes yet" +msgstr "" + +#. Empty-state message shown in the GIF pickerโ€™s Recents tab before the user has selected any GIFs. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:31 +msgid "No recent GIFs yet. Pick one to see it here." +msgstr "" + +#: src/view/screens/Profile.tsx:470 +msgid "No replies yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:90 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:192 +msgid "No result" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:250 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:469 +#: src/components/ProgressGuide/FollowDialog.tsx:221 +msgid "No results" +msgstr "" + +#. placeholder {0}: interestsDisplayNames[selectedInterest] +#: src/screens/Search/Explore.tsx:817 +msgid "No results for \"{0}\"." +msgstr "" + +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 +msgid "No results found" +msgstr "" + +#: src/view/screens/Feeds.tsx:466 +msgid "No results found for \"{query}\"" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:233 +msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:245 +msgid "No results found for โ€œ<0>{query}โ€." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:239 +msgid "No results found for your query with advanced search filters applied." +msgstr "" + +#: src/screens/Search/Explore.tsx:821 +msgid "No results." +msgstr "" + +#: src/view/screens/Profile.tsx:571 +msgid "No Starter Packs yet" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:100 +#: src/components/dialogs/EmbedConsent.tsx:107 +msgid "No thanks" +msgstr "" + +#: src/lib/translation/index.tsx:308 +msgid "No translation received from your device." +msgstr "" + +#: src/view/screens/Profile.tsx:512 +msgid "No video posts yet" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:471 +msgid "Nobody" +msgstr "" + +#: src/components/LikedByList.tsx:86 +#: src/view/com/post-thread/PostLikedBy.tsx:86 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:116 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:92 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:107 +msgid "Nobody was found. Try searching for someone else." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:80 +msgid "Non-consensual intimate imagery" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 +msgid "None of these words" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" + +#: src/screens/FindContactsFlowScreen.tsx:62 +#: src/screens/Settings/FindContactsSettings.tsx:106 +msgid "Not available on this platform." +msgstr "" + +#: src/components/KnownFollowers.tsx:254 +msgid "Not followed by anyone youโ€™re following" +msgstr "" + +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 +msgid "Not Found" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131 +msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:546 +msgid "Note about sharing" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks.tsx:292 +msgid "Nothing saved yet" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:72 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 +#: src/view/screens/Notifications.tsx:134 +msgid "Notification settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:305 +#: src/screens/Messages/Settings.tsx:318 +msgid "Notification sounds" +msgstr "" + +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 +#: src/screens/Messages/Settings.tsx:255 +#: src/screens/Notifications/ActivityList.tsx:31 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 +#: src/screens/Settings/Settings.tsx:198 +#: src/screens/Settings/Settings.tsx:201 +#: src/view/screens/Notifications.tsx:128 +#: src/view/shell/bottom-bar/BottomBar.tsx:279 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 +msgid "Notifications" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:135 +msgid "now" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 +msgid "Nudity" +msgstr "" + +#: src/components/contacts/phone-number.ts:43 +msgid "Number should be a mobile number" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:14 +#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:34 +msgid "Off" +msgstr "" + +#. Title of the error screen shown when the GIF picker crashes unexpectedly. +#: src/components/dialogs/LanguageSelectDialog.tsx:347 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:22 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "" + +#. Confirm button text. +#: src/components/contacts/screens/GetContacts.tsx:317 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Settings/AppIconSettings/index.tsx:46 +#: src/screens/Settings/AppIconSettings/index.tsx:232 +msgid "OK" +msgstr "" + +#: src/components/BotAccountAlert.tsx:52 +#: src/components/BotAccountAlert.tsx:57 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 +#: src/screens/Login/PasswordUpdatedForm.tsx:35 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +msgid "Okay" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:85 +#: src/screens/PostThread/components/HeaderDropdown.tsx:90 +#: src/screens/Settings/ThreadPreferences.tsx:65 +#: src/screens/Settings/ThreadPreferences.tsx:68 +msgid "Oldest replies first" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:162 +msgid "On" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:86 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/screens/Settings/Settings.tsx:405 +msgid "Onboarding reset" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:939 +msgid "One or more GIFs is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:936 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "One or more of your selected files are not supported." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:446 +msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." +msgstr "" + +#: src/view/com/composer/Composer.tsx:742 +msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" +msgstr "" + +#: src/view/com/composer/Composer.tsx:946 +msgid "One or more videos is missing alt text." +msgstr "" + +#. placeholder {0}: settings.map((rule, i) => ( )) +#: src/components/WhoCanReply.tsx:283 +msgid "Only {0} can reply." +msgstr "" + +#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept +#. placeholder {0}: result.accepted.length +#. placeholder {1}: next.length +#. placeholder {2}: next.length +#: src/view/com/composer/Composer.tsx:235 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can reject join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:155 +msgid "Only followers can join this group chat." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:121 +#: src/screens/Settings/ActivityPrivacySettings.tsx:126 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" + +#: src/lib/media/picker.shared.ts:34 +msgid "Only image files are supported" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:218 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:306 +msgid "Only people the chat owner follows can join" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 +msgid "Only posts with media" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:24 +msgid "Only posts with videos" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:24 +msgid "Only replies" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "" + +#: src/components/Lists.tsx:99 +msgid "Oops, something went wrong!" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +msgid "Oops, this profile doesn't exist. Try scanning another one." +msgstr "" + +#: src/components/Lists.tsx:184 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 +#: src/screens/Settings/AppPasswords.tsx:59 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:108 +#: src/view/screens/Profile.tsx:133 +msgid "Oops!" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:66 +msgid "Open advanced search options" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:308 +msgid "Open avatar creator" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:201 +msgid "Open camera" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Open chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 +msgid "Open chat member options for {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:490 +#: src/screens/Messages/components/ChatListItem.tsx:494 +msgid "Open conversation options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:69 +msgid "Open draft" +msgstr "" + +#: src/components/Layout/Header/index.tsx:168 +msgid "Open drawer menu" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:213 +#: src/view/com/composer/Composer.tsx:2250 +msgid "Open emoji picker" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 +msgid "Open feed info screen" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 +msgid "Open feed options menu" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:28 +msgid "Open full emoji list" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:75 +msgid "Open Germ DM" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:446 +msgid "Open group chat" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 +msgid "Open group chat settings" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:147 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:40 +msgid "Open message options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:470 +msgid "Open moderation debug page" +msgstr "" + +#: src/screens/Moderation/index.tsx:280 +msgid "Open muted words and tags settings" +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:128 +msgid "Open pack" +msgstr "" + +#: src/components/PostControls/PostMenu/index.tsx:67 +msgid "Open post options menu" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 +msgid "Open profile" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "" + +#: src/components/BotAccountAlert.tsx:62 +#: src/components/BotAccountAlert.tsx:71 +msgid "Open settings" +msgstr "" + +#: src/components/PostControls/ShareMenu/index.tsx:98 +msgid "Open share menu" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +msgid "Open starter pack menu" +msgstr "" + +#: src/screens/Settings/Settings.tsx:463 +#: src/screens/Settings/Settings.tsx:477 +msgid "Open storybook page" +msgstr "" + +#: src/screens/Settings/Settings.tsx:456 +msgid "Open system log" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Open this group chat" +msgstr "" + +#. placeholder {0}: feedInfo.displayName +#: src/view/shell/desktop/Feeds.tsx:185 +msgid "Opens {0} feed" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:645 +msgid "Opens a dialog to change the hosting provider you sign in to" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 +msgid "Opens a dialog to choose who can interact with this post" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:40 +msgid "Opens a list of color themes for the QR card" +msgstr "" + +#: src/screens/Log.tsx:74 +msgid "Opens additional details for a debug entry" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:45 +msgid "Opens alt text dialog" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 +msgid "Opens camera on device" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:44 +msgid "Opens captions and alt text dialog" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:134 +msgid "Opens change handle dialog" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:64 +msgid "Opens composer" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:202 +msgid "Opens device camera" +msgstr "" + +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:517 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:305 +#: src/view/com/auth/SplashScreen.tsx:91 +#: src/view/com/auth/SplashScreen.web.tsx:112 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:291 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 +msgid "Opens flow to sign in to your existing Bluesky account" +msgstr "" + +#: src/components/images/Gallery/index.tsx:458 +msgid "Opens full image" +msgstr "" + +#: src/screens/Settings/Settings.tsx:257 +msgid "Opens helpdesk in browser" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:224 +msgid "Opens image picker" +msgstr "" + +#. placeholder {0}: link?.href ?? '' +#: src/components/dialogs/LinkWarning.tsx:113 +msgid "Opens link {0}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:603 +msgid "Opens live status dialog" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:200 +msgid "Opens post language settings" +msgstr "" + +#: src/components/dms/SystemMessageItem.tsx:61 +msgid "Opens profile" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "" + +#. Accessibility hint announced after the GIF picker button label, describing what activating it will do. +#: src/view/com/composer/photos/SelectGifBtn.tsx:45 +msgid "Opens the GIF picker dialog" +msgstr "" + +#: src/view/shell/Drawer.tsx:123 +msgid "Opens the invite friends sheet to share your profile" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:148 +msgid "Opens the post composer" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:70 +msgid "Opens this draft in the composer" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:621 +msgid "Opens this profile" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:308 +msgid "Options:" +msgstr "" + +#: src/screens/Deactivated.tsx:192 +msgid "Or, continue with another account." +msgstr "" + +#: src/screens/Deactivated.tsx:179 +msgid "Or, sign in to one of your other accounts." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:55 +msgid "OTA status: ..." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:51 +msgid "OTA status: Available!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:53 +msgid "OTA status: Error fetching update" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:57 +msgid "OTA status: None available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242 +#: src/view/com/composer/labels/LabelsBtn.tsx:181 +msgid "Other" +msgstr "" + +#: src/components/AccountList.tsx:93 +msgid "Other account" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:181 +msgid "Other child safety issue" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:208 +msgid "Other dangerous content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:119 +msgid "Other harassing or hateful content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 +msgid "Other misleading content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:231 +msgid "Other network rule-breaking" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:92 +msgid "Other sexual violence content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:154 +msgid "Other violent content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:51 +msgid "Our blog post" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:86 +#: src/components/dms/AfterReportConversationDialog.tsx:213 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 +msgid "Our moderation team has received your report." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:54 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:384 +msgid "Owner" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" + +#: src/components/Lists.tsx:204 +#: src/components/Lists.tsx:219 +#: src/view/screens/NotFound.tsx:34 +#: src/view/screens/NotFound.tsx:41 +msgid "Page not found" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:85 +msgid "Party GIFs" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:365 +#: src/screens/Login/LoginForm.tsx:372 +#: src/screens/Settings/AccountSettings.tsx:124 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:284 +#: src/screens/Signup/StepInfo/index.tsx:258 +msgid "Password" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:70 +msgid "Password changed" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:125 +msgid "Password must be at least 8 characters long." +msgstr "" + +#: src/screens/Login/index.tsx:206 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:22 +msgid "Password updated!" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 +msgid "Pause" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32 +msgid "Pause GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 +msgid "Pause video" +msgstr "" + +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Search/SearchResults.tsx:107 +#: src/screens/StarterPack/StarterPackScreen.tsx:195 +msgid "People" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 +msgid "People {ownerName} follows can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 +msgid "People {ownerName} follows can request to join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:240 +msgid "People followed by @{0}" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:233 +msgid "People following @{0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:97 +msgctxt "allow group chat invites from" +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:82 +msgctxt "allow messages from" +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 +msgid "People I follow can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 +msgid "People I follow can request to join" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 +msgid "People you follow" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:524 +msgid "People you mention" +msgstr "" + +#: src/lib/media/save-image.ts:59 +msgid "Permission to access your photo library was denied. Please enable it in your system settings." +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Person toggle" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:60 +msgid "Personalize the message" +msgstr "" + +#: src/lib/interests.ts:68 +msgid "Pets" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:192 +#: src/components/contacts/screens/PhoneInput.tsx:204 +msgid "Phone number" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:304 +msgid "Phone number verified" +msgstr "" + +#: src/lib/interests.ts:69 +msgid "Photography" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:39 +msgid "Pick a color theme" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:165 +msgid "Pictures meant for adults." +msgstr "" + +#: src/components/FeedCard.tsx:364 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 +#: src/screens/SavedFeeds.tsx:559 +msgid "Pin feed" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:151 +#: src/screens/ProfileList/components/Header.tsx:158 +msgid "Pin to home" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 +msgid "Pin to Home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:116 +msgid "Pinned" +msgstr "" + +#. placeholder {0}: info.displayName +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 +msgid "Pinned {0} to Home" +msgstr "" + +#: src/screens/SavedFeeds.tsx:146 +#: src/screens/SavedFeeds.tsx:337 +msgid "Pinned Feeds" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:77 +msgid "Pinned to your feeds" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 +msgid "Play" +msgstr "" + +#. placeholder {0}: link.title +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 +msgid "Play {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32 +msgid "Play GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 +msgid "Play video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 +msgid "Play Video" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:33 +msgid "Plays or pauses the GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169 +msgid "Plays or pauses the video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:109 +msgid "Plays the GIF" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 +msgid "Plays the video" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:111 +msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:189 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:313 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:305 +#: src/screens/Signup/StepInfo/index.tsx:149 +msgid "Please choose your password." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:286 +msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." +msgstr "" + +#: src/screens/Signup/state.ts:325 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/view/com/composer/state/video.ts:471 +msgid "Please confirm your email address to upload videos." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:102 +#: src/screens/Signup/StepInfo/index.tsx:139 +msgid "Please double-check that you have entered your email address correctly." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:56 +msgid "Please enter a password." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:120 +msgid "Please enter a password. It must be at least 8 characters long." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:134 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146 +msgid "Please enter a valid code." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 +msgid "Please enter a valid email address." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:89 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:145 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:66 +msgid "Please enter the code you received and the new password you would like to use." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +msgid "Please enter the security code we sent to your previous email address." +msgstr "" + +#: src/screens/Signup/state.ts:289 +#: src/screens/Signup/StepInfo/index.tsx:122 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:115 +msgid "Please enter your invite code." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 +msgid "Please enter your new email address." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:196 +msgid "Please enter your password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:190 +msgid "Please enter your username" +msgstr "" + +#. placeholder {0}: labeler ? sanitizeHandle(labeler.creator.handle, '@') : label.src +#: src/components/moderation/AppealForm.tsx:120 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:124 +msgid "Please explain why you think your Go Live access was incorrectly disabled." +msgstr "" + +#: src/components/FocusScope/index.tsx:91 +#: src/components/FocusScope/index.tsx:115 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:102 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:304 +msgid "Please select a language" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:32 +msgid "Please select a moderation service" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:29 +msgid "Please select a reason for this report" +msgstr "" + +#. placeholder {0}: account.handle +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:54 +msgid "Please sign in as @{0}" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:107 +msgid "Please use the native app to import your contacts." +msgstr "" + +#: src/screens/FindContactsFlowScreen.tsx:63 +msgid "Please use the native app to sync your contacts." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 +msgid "Please verify your email" +msgstr "" + +#: src/lib/hooks/useCreateSupportLink.ts:29 +msgid "Please write your message below:" +msgstr "" + +#: src/lib/interests.ts:70 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +msgid "Porn" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1895 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/screens/PostThread/index.tsx:560 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 +msgid "Post a photo" +msgstr "" + +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 +msgid "Post a video" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1893 +msgctxt "action" +msgid "Post All" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1554 +msgid "Post anyway" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 +msgid "Post by @{0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 +msgctxt "toast" +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:189 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:116 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109 +#: src/screens/VideoFeed/index.tsx:551 +msgid "Post has been deleted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:127 +#: src/lib/moderation/useModerationCauseDescription.ts:107 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:130 +#: src/lib/moderation/useModerationCauseDescription.ts:116 +msgid "Post Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:685 +msgid "Post interaction settings" +msgstr "" + +#: src/Navigation.tsx:200 +#: src/screens/ModerationInteractionSettings/index.tsx:35 +msgid "Post Interaction Settings" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "" + +#. Accessibility label for button that opens dialog to choose post language settings +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:195 +msgid "Post language selection" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 +msgid "Post link" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:33 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgctxt "toast" +msgid "Post pinned" +msgstr "" + +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgctxt "toast" +msgid "Post unpinned" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 +#: src/screens/StarterPack/StarterPackScreen.tsx:197 +#: src/view/screens/Profile.tsx:236 +msgid "Posts" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:123 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:76 +msgid "Posts hidden" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:89 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:82 +msgid "Potentially misleading link warning" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:292 +msgid "Preferred language" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "Press to attempt reconnection" +msgstr "" + +#: src/components/Error.tsx:56 +#: src/components/Lists.tsx:104 +#: src/screens/Messages/components/MessageListError.tsx:23 +#: src/screens/Messages/JoinRequests.tsx:355 +#: src/screens/Signup/BackNextButtons.tsx:48 +msgid "Press to retry" +msgstr "" + +#: src/components/KnownFollowers.tsx:125 +msgid "Press to view followers of this account that you also follow" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 +msgid "Preview" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:197 +msgid "Previous image" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:141 +#: src/screens/Settings/LanguageSettings.tsx:157 +msgid "Primary language" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:118 +#: src/view/shell/desktop/RightNav.tsx:119 +msgid "Privacy" +msgstr "" + +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 +msgid "Privacy and security" +msgstr "" + +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 +#: src/screens/Settings/ActivityPrivacySettings.tsx:41 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 +msgid "Privacy and Security" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 +#: src/view/screens/Storybook/Admonitions.tsx:94 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 +#: src/Navigation.tsx:338 +#: src/screens/Settings/AboutSettings.tsx:102 +#: src/screens/Settings/AboutSettings.tsx:105 +#: src/view/screens/PrivacyPolicy.tsx:25 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 +msgid "Privacy Policy" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:173 +msgid "Privacy violation of a minor" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2691 +msgid "Processing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2693 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:62 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:956 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:322 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 +msgid "Profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:164 +msgid "Profile banner placeholder" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 +#: src/lib/strings/errors.ts:39 +msgid "Profile not found" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:186 +msgctxt "toast" +msgid "Profile updated" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:223 +msgid "Promoting or selling prohibited items or services" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:160 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:161 +msgid "Psst! You can edit who can interact with this post." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:77 +msgid "Public, sharable lists of users to mute or block in bulk." +msgstr "" + +#. Accessibility label for button to publish a single post +#: src/view/com/composer/Composer.tsx:1879 +msgid "Publish post" +msgstr "" + +#. Accessibility label for button to publish multiple posts in a thread +#: src/view/com/composer/Composer.tsx:1874 +msgid "Publish posts" +msgstr "" + +#. Accessibility label for button to publish multiple replies in a thread +#: src/view/com/composer/Composer.tsx:1863 +msgid "Publish replies" +msgstr "" + +#. Accessibility label for button to publish a single reply +#: src/view/com/composer/Composer.tsx:1868 +msgid "Publish reply" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:31 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:22 +msgid "Push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:26 +msgid "Push, people you follow" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:143 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:121 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:101 +msgid "QR code saved to your camera roll!" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:176 +#: src/components/PostControls/RepostButton.tsx:199 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 +#: src/view/com/composer/drafts/DraftItem.tsx:137 +msgid "Quote post" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 +msgid "Quote post was re-attached" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +msgid "Quote post was successfully detached" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:175 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 +msgid "Quote posts disabled" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:186 +#: src/screens/Post/PostQuotes.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 +msgid "Quotes" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 +msgid "Quotes of this post" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:618 +msgid "Rate limit exceeded โ€“ you've tried to change your handle too many times in a short period. Please wait a minute before trying again." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:109 +msgid "Rate limit exceeded. Please try again later." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 +msgid "Re-attach quote" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 +msgid "Re-enable invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 +msgid "Re-enable link" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.tsx:80 +msgid "React with {emoji}" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:70 +#: src/components/dms/ReactionsDialog.tsx:98 +msgid "Reactions" +msgstr "" + +#: src/screens/Deactivated.tsx:133 +msgid "Reactivate your account" +msgstr "" + +#. placeholder {0}: item.moreReplies +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:93 +msgid "Read {0, plural, one {# more reply} other {# more replies}}" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:276 +msgctxt "english-only-resource" +msgid "Read about how to use advanced search filters" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 +msgid "Read blog post" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1055 +msgid "Read less" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1055 +msgid "Read more" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:72 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:113 +msgid "Read our blog post" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:174 +msgid "Read the Bluesky blog" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:53 +#: src/screens/Signup/StepInfo/Policies.tsx:79 +msgid "Read the Bluesky Privacy Policy" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:46 +#: src/screens/Signup/StepInfo/Policies.tsx:66 +msgid "Read the Bluesky Terms of Service" +msgstr "" + +#: src/components/WelcomeModal.tsx:144 +msgid "Real conversations." +msgstr "" + +#: src/components/WelcomeModal.tsx:142 +msgid "Real people." +msgstr "" + +#: src/screens/Takendown.tsx:158 +#: src/screens/Takendown.tsx:166 +msgid "Reason for appeal" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +msgid "Receive push notifications" +msgstr "" + +#. Accessibility label for the icon-only pill that shows previously selected GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:35 +msgid "Recent GIFs" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:52 +msgid "Recent searches" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:249 +msgid "Recently used" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Reconnect" +msgstr "" + +#. Reject a chat request, this opens a menu with options +#: src/screens/Messages/components/RequestButtons.tsx:136 +msgid "Reject" +msgstr "" + +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 +msgid "Reject chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:424 +#: src/screens/Messages/Inbox.tsx:206 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:193 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 +#: src/components/dialogs/MutedWords.tsx:457 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:386 +#: src/components/FeedCard.tsx:376 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:106 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:113 +#: src/screens/Bookmarks.tsx:258 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:178 +#: src/screens/Moderation/index.tsx:477 +#: src/screens/Settings/Settings.tsx:683 +#: src/view/com/posts/PostFeedErrorMessage.tsx:221 +msgid "Remove" +msgstr "" + +#: src/components/dms/ChatProfileTabs.tsx:153 +msgid "Remove {displayName} from group chat" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:62 +msgid "Remove {displayName} from starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 +msgid "Remove {displayName} from this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:176 +msgid "Remove {displayName}?" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:182 +msgid "Remove {q}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 +msgid "Remove account" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 +msgid "Remove all contacts" +msgstr "" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 +msgid "Remove attachment" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 +msgid "Remove Avatar" +msgstr "" + +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 +msgid "Remove Banner" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:286 +msgid "Remove caption file" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:234 +#: src/screens/Messages/components/MessageInputEmbed.tsx:289 +#: src/screens/Messages/components/MessageInputEmbed.tsx:344 +msgid "Remove embed" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:121 +#: src/view/com/posts/FeedShutdownMsg.tsx:125 +#: src/view/com/posts/PostFeedErrorMessage.tsx:177 +msgid "Remove feed" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:218 +msgid "Remove feed?" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:143 +msgid "Remove filter" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 +msgid "Remove from chat" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 +#: src/screens/SavedFeeds.tsx:549 +msgid "Remove from my feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:677 +msgid "Remove from quick access?" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:174 +#: src/screens/List/ListHiddenScreen.tsx:178 +msgid "Remove from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:120 +#: src/screens/Bookmarks.tsx:252 +msgid "Remove from saved posts" +msgstr "" + +#: src/components/FeedCard.tsx:373 +msgid "Remove from your feeds?" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:227 +msgid "Remove image" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:221 +#: src/features/liveNow/components/EditLiveDialog.tsx:228 +msgid "Remove live status" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 +msgid "Remove member" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:613 +msgid "Remove mute word from your list" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:243 +msgid "Remove profile" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:153 +#: src/components/PostControls/RepostButton.tsx:163 +msgid "Remove repost" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:500 +#: src/screens/Settings/FindContactsSettings.tsx:349 +msgid "Remove suggestion" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:219 +msgid "Remove this feed from your saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:473 +msgid "Remove unavailable moderation services" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 +msgid "Remove user from list" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:48 +#: src/components/verification/VerificationsDialog.tsx:250 +#: src/view/com/profile/ProfileMenu.tsx:416 +#: src/view/com/profile/ProfileMenu.tsx:419 +msgid "Remove verification" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:46 +msgid "Remove your verification for this account?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:240 +msgid "Removed by author" +msgstr "" + +#: src/components/Post/Embed/index.tsx:238 +msgid "Removed by you" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:136 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:246 +msgid "Removed from list" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:98 +msgid "Removed from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:88 +#: src/screens/Bookmarks.tsx:211 +msgid "Removed from saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:287 +msgid "Removed from starter pack" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 +#: src/view/com/posts/FeedShutdownMsg.tsx:45 +msgid "Removed from your feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:187 +msgid "Removed unavailable services" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:32 +msgid "Removed verification" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:541 +msgid "Renew" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:547 +msgid "Renew duration" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:531 +msgid "Renew mute word" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:134 +#: src/view/com/posts/FeedShutdownMsg.tsx:138 +msgid "Replace with Discover" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:39 +msgctxt "description" +msgid "Replied to <0><1/>" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:28 +msgctxt "description" +msgid "Replied to a blocked post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:30 +msgctxt "description" +msgid "Replied to a post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:36 +msgctxt "description" +msgid "Replied to you" +msgstr "" + +#: src/components/dms/MessageItem.tsx:926 +msgid "Replied-to message from {senderName}, tap to scroll to it" +msgstr "" + +#: src/components/dms/MessageItem.tsx:924 +msgid "Replied-to message was sent before you joined" +msgstr "" + +#: src/components/dms/MessageItem.tsx:927 +msgid "Replied-to message, tap to scroll to it" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 +#: src/lib/hooks/useNotificationHandler.ts:172 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 +msgid "Replies" +msgstr "" + +#: src/components/WhoCanReply.tsx:87 +msgid "Replies disabled" +msgstr "" + +#: src/components/WhoCanReply.tsx:281 +msgid "Replies to this post are disabled." +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:182 +#: src/components/dms/MessageContextMenu.tsx:185 +msgid "Reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1891 +msgctxt "action" +msgid "Reply" +msgstr "" + +#. Accessibility label for the reply button, verb form followed by number of replies and noun form +#. placeholder {0}: post.replyCount || 0 +#: src/components/PostControls/index.tsx:240 +msgid "Reply ({0, plural, one {# reply} other {# replies}})" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:136 +#: src/lib/moderation/useModerationCauseDescription.ts:126 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:135 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "Reply Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +msgid "Reply settings are chosen by the author of the thread" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:71 +msgid "Reply sorting" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 +msgctxt "toast" +msgid "Reply visibility updated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +msgid "Reply was successfully hidden" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:220 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:583 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:483 +#: src/view/com/profile/ProfileMenu.tsx:486 +msgid "Report account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:295 +#: src/components/dms/ConvoMenu.tsx:299 +#: src/screens/Messages/components/RequestButtons.tsx:161 +#: src/screens/Messages/components/RequestButtons.tsx:164 +msgid "Report conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 +msgid "Report dialog" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 +msgid "Report feed" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:210 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:213 +msgid "Report list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:217 +msgid "Report message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 +msgid "Report post" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:47 +msgid "Report sent" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:657 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 +msgid "Report starter pack" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:83 +#: src/components/dms/AfterReportConversationDialog.tsx:210 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 +msgid "Report submitted" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:51 +#: src/components/moderation/ReportDialog/copy.ts:65 +msgid "Report this conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:37 +msgid "Report this feed" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:582 +msgid "Report this group chat" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:31 +msgid "Report this list" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:19 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 +msgid "Report this livestream" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:57 +msgid "Report this message" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:25 +msgid "Report this post" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:43 +msgid "Report this starter pack" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:13 +msgid "Report this user" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:154 +#: src/components/PostControls/RepostButton.tsx:165 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 +msgctxt "action" +msgid "Repost" +msgstr "" + +#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form +#. placeholder {0}: repostCount || 0 +#: src/components/PostControls/RepostButton.tsx:78 +msgid "Repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:146 +#: src/components/PostControls/RepostButton.web.tsx:43 +#: src/components/PostControls/RepostButton.web.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:577 +msgid "Repost or quote post" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:31 +msgid "Reposted By" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:78 +#: src/view/com/posts/PostFeedReason.tsx:97 +msgid "Reposted by {reposter}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:78 +#: src/view/com/posts/PostFeedReason.tsx:95 +msgid "Reposted by you" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:165 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 +msgid "Reposts of this post" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:207 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 +msgid "Reposts of your reposts" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:463 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:226 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:232 +msgid "Request code" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request rejected." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:295 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + +#. Incoming message requests +#: src/screens/Messages/components/InboxRequests.tsx:25 +msgid "Requests" +msgstr "" + +#: src/Navigation.tsx:519 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:59 +#: src/screens/Settings/AccessibilitySettings.tsx:64 +msgid "Require alt text before posting" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 +msgid "Require an email code to sign in to your account." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:207 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:310 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:115 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:117 +msgid "Rescind request" +msgstr "" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 +msgid "Resend" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:365 +#: src/components/contacts/screens/VerifyNumber.tsx:382 +msgid "Resend code" +msgstr "" + +#. placeholder {0}: String( clamp(Math.round(timeUntilCanResend / 1000), 0, 30), ).padStart(2, '0') +#: src/components/contacts/screens/VerifyNumber.tsx:372 +msgid "Resend code in <0>00:{0}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:174 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:177 +msgid "Resend email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:124 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:117 +msgid "Resend Verification Email" +msgstr "" + +#: src/screens/Settings/Settings.tsx:499 +#: src/screens/Settings/Settings.tsx:501 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:108 +msgid "Reset code" +msgstr "" + +#: src/screens/Settings/Settings.tsx:484 +#: src/screens/Settings/Settings.tsx:486 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:77 +msgid "Reset password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:422 +msgid "Reset your password by sending a code to your email" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 +msgid "Resync contacts" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:532 +msgid "Retries signing in" +msgstr "" + +#: src/view/com/util/error/ErrorMessage.tsx:56 +#: src/view/com/util/error/ErrorScreen.tsx:93 +msgid "Retries the last action, which errored out" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:28 +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 +#: src/components/contacts/screens/VerifyNumber.tsx:350 +#: src/components/contacts/screens/VerifyNumber.tsx:355 +#: src/components/Error.tsx:60 +#: src/components/Lists.tsx:115 +#: src/components/moderation/ReportDialog/index.tsx:297 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 +#: src/screens/Login/LoginForm.tsx:531 +#: src/screens/Login/LoginForm.tsx:537 +#: src/screens/Messages/ChatList.tsx:429 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/JoinRequests.tsx:361 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:95 +#: src/screens/PostThread/components/ThreadError.tsx:81 +#: src/screens/PostThread/components/ThreadError.tsx:87 +#: src/screens/Signup/BackNextButtons.tsx:54 +#: src/view/com/util/error/ErrorMessage.tsx:55 +#: src/view/com/util/error/ErrorScreen.tsx:91 +#: src/view/screens/Storybook/Admonitions.tsx:64 +msgid "Retry" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:294 +#: src/view/screens/Storybook/Admonitions.tsx:61 +msgid "Retry loading report options" +msgstr "" + +#: src/components/Error.tsx:68 +#: src/screens/List/ListHiddenScreen.tsx:223 +#: src/screens/StarterPack/StarterPackScreen.tsx:801 +msgid "Return to previous page" +msgstr "" + +#: src/view/screens/NotFound.tsx:54 +msgid "Returns to home page" +msgstr "" + +#: src/screens/ProfileList/components/ErrorScreen.tsx:36 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:577 +#: src/screens/VideoFeed/index.tsx:1240 +#: src/view/screens/NotFound.tsx:54 +msgid "Returns to previous page" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:316 +msgid "Returns to the previous step" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:613 +msgid "Reveal password" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:75 +msgid "Sad GIFs" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:309 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 +#: src/components/StarterPack/QrCodeDialog.tsx:210 +#: src/features/liveNow/components/EditLiveDialog.tsx:197 +#: src/features/liveNow/components/EditLiveDialog.tsx:204 +#: src/screens/Messages/ConversationSettings/prompts.tsx:82 +#: src/screens/Profile/Header/EditProfileDialog.tsx:233 +#: src/screens/Profile/Header/EditProfileDialog.tsx:247 +#: src/screens/SavedFeeds.tsx:124 +#: src/screens/SavedFeeds.tsx:315 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:269 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/GifAltText.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:63 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:76 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:173 +msgid "Save" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:193 +msgid "Save birthdate" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:198 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:207 +#: src/screens/SavedFeeds.tsx:120 +#: src/screens/SavedFeeds.tsx:124 +#: src/screens/SavedFeeds.tsx:311 +#: src/screens/SavedFeeds.tsx:315 +#: src/view/com/composer/Composer.tsx:1535 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save changes" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1507 +#: src/view/com/composer/drafts/DraftsButton.tsx:93 +msgid "Save changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1535 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save draft" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1509 +#: src/view/com/composer/drafts/DraftsButton.tsx:95 +msgid "Save draft?" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/MediaPreview.tsx:231 +#: src/components/Post/Embed/ImageContextMenu.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:144 +#: src/components/StarterPack/ShareDialog.tsx:150 +msgid "Save image" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:255 +msgid "Save new handle" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:202 +msgid "Save QR code" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:649 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:655 +msgid "Save these options for next time" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 +msgid "Save to my feeds" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 +msgctxt "link to bookmarks screen" +msgid "Saved" +msgstr "" + +#: src/screens/SavedFeeds.tsx:198 +#: src/screens/SavedFeeds.tsx:375 +msgid "Saved Feeds" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:579 +#: src/screens/Bookmarks.tsx:59 +msgid "Saved Posts" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 +#: src/screens/ProfileList/components/Header.tsx:88 +msgid "Saved to your feeds" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +#: src/view/com/notifications/NotificationFeedItem.tsx:895 +#: src/view/com/notifications/NotificationFeedItem.tsx:920 +msgid "Say hello!" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 +msgid "Say hi to someone" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:43 +msgid "Scam" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:318 +msgid "Scan QR code" +msgstr "" + +#: src/lib/interests.ts:71 +msgid "Science" +msgstr "" + +#: src/components/InterestTabs.tsx:258 +msgid "Scroll left" +msgstr "" + +#: src/components/InterestTabs.tsx:292 +msgid "Scroll right" +msgstr "" + +#: src/components/dms/MessageItem.tsx:820 +msgid "Scroll to the message this is replying to" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:132 +msgid "Scroll to top" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:667 +#: src/components/forms/SearchInput.tsx:51 +#: src/components/forms/SearchInput.tsx:53 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 +#: src/screens/Search/Shell.tsx:753 +#: src/view/shell/bottom-bar/BottomBar.tsx:216 +msgid "Search" +msgstr "" + +#. placeholder {0}: profile.handle +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:259 +#: src/screens/Profile/ProfileSearch.tsx:37 +msgid "Search @{0}'s posts" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:708 +msgid "Search by name or interest" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:356 +msgid "Search contacts" +msgstr "" + +#: src/view/screens/Feeds.tsx:437 +msgid "Search feeds" +msgstr "" + +#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected. +#: src/components/ProgressGuide/FollowDialog.tsx:505 +msgid "Search for \"{interestsDisplayName}\"" +msgstr "" + +#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected. +#: src/components/ProgressGuide/FollowDialog.tsx:500 +msgid "Search for \"{interestsDisplayName}\" (active)" +msgstr "" + +#: src/screens/Search/components/AutocompleteResults.tsx:49 +msgid "Search for โ€œ{searchText}โ€" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:136 +msgid "Search for {q}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:541 +msgid "Search for feeds that you want to suggest to others." +msgstr "" + +#: src/screens/Search/Explore.tsx:373 +msgid "Search for more accounts" +msgstr "" + +#: src/screens/Search/Explore.tsx:452 +msgid "Search for more feeds" +msgstr "" + +#: src/components/dms/components/UserSearchInput.tsx:43 +msgid "Search for people" +msgstr "" + +#. Accessibility label for the GIF search input inside the GIF picker dialog. +#: src/features/gifPicker/components/GifPickerHeader.tsx:40 +msgid "Search GIFs" +msgstr "" + +#: src/screens/Hashtag.tsx:228 +#: src/screens/Search/SearchResults.tsx:410 +msgid "Search is currently unavailable when logged out" +msgstr "" + +#. Placeholder text inside the GIF search input. KLIPY is the third-party GIF provider; keep the brand name as-is. +#: src/features/gifPicker/components/GifPickerHeader.tsx:45 +msgid "Search KLIPY" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:232 +#: src/components/dialogs/LanguageSelectDialog.tsx:233 +msgid "Search languages" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:36 +msgid "Search my posts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:301 +#: src/view/com/profile/ProfileMenu.tsx:304 +msgid "Search posts" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:687 +#: src/components/dms/components/UserSearchInput.tsx:63 +#: src/components/ProgressGuide/FollowDialog.tsx:727 +msgid "Search profiles" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 +msgid "Search query" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:38 +msgid "Search..." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:688 +#: src/components/dms/components/UserSearchInput.tsx:64 +#: src/components/ProgressGuide/FollowDialog.tsx:728 +msgid "Searches for profiles" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 +msgid "Security step required" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:114 +msgid "See {0} posts" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:131 +msgid "See {0} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:122 +msgid "See {tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +msgid "See {tag} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:124 +msgid "See #{tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:142 +msgid "See #{tag} posts by user" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:179 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:475 +msgid "See more suggested profiles" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 +msgid "See suggested accounts" +msgstr "" + +#: src/screens/SavedFeeds.tsx:232 +#: src/screens/SavedFeeds.tsx:403 +msgid "See this guide" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:196 +msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" +msgstr "" + +#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. +#: src/components/InterestTabs.tsx:340 +msgid "Select \"{interestsDisplayName}\" category" +msgstr "" + +#. Accessibility label for a username suggestion in the account creation flow +#. Accessibility label for a username suggestion in the account creation flow +#. placeholder {0}: item.handle +#. placeholder {0}: suggestion.handle +#: src/screens/Signup/StepHandle/HandleSuggestions/index.native.tsx:40 +#: src/screens/Signup/StepHandle/HandleSuggestions/index.tsx:72 +msgid "Select {0}" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:110 +msgid "Select {langName}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:380 +msgid "Select a reason" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:79 +msgid "Select account" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:63 +msgid "Select an app language" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "" + +#: src/components/Select/index.tsx:199 +msgid "Select an option" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:118 +msgid "Select app language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +msgid "Select caption file (.vtt)" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 +msgid "Select chat \"{name}\"" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:195 +#: src/screens/Settings/LanguageSettings.tsx:233 +msgid "Select content languages" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:186 +msgid "Select duration" +msgstr "" + +#. placeholder {0}: labels[filter.field].title +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:102 +msgid "Select filter type (currently: {0})" +msgstr "" + +#: src/screens/Login/index.tsx:166 +msgid "Select from an existing account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:553 +msgid "Select from your lists" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:555 +msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}" +msgstr "" + +#. Accessibility label for the button in the post composer that opens the GIF picker dialog. +#: src/view/com/composer/photos/SelectGifBtn.tsx:38 +msgid "Select GIF" +msgstr "" + +#. Accessibility label for an individual GIF tile in the picker grid. The placeholder is the GIFโ€™s title from the provider. +#. placeholder {0}: gif.title +#: src/features/gifPicker/components/GifPickerItem.tsx:31 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:830 +msgid "Select group chat members" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:151 +msgid "Select how long to mute this word for." +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:71 +#: src/components/LanguageSelect.tsx:41 +#: src/components/LanguageSelect.tsx:42 +msgid "Select language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:273 +msgid "Select language..." +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:267 +msgid "Select languages" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:430 +msgid "Select moderation service" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:91 +msgid "Select post language" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:152 +msgid "Select primary language" +msgstr "" + +#: src/components/InternationalPhoneCodeSelect.tsx:68 +msgid "Select telephone code" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "" + +#: src/components/Post/Translated/index.tsx:446 +msgid "Select the source language" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:77 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:137 +msgid "Select up to 3 languages used in this post" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:251 +msgid "Select what content this mute word should apply to." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:111 +msgid "Select which language to use for the app's user interface." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:181 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:300 +msgid "Select your date of birth" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:69 +#: src/screens/Settings/InterestsSettings.tsx:178 +msgid "Select your interests from the options below" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:145 +msgid "Select your preferred language for translations in your feed." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:426 +msgid "Selecting multiple media types is not supported." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:188 +msgid "Self-harm or dangerous behaviors" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:255 +#: src/components/contacts/screens/PhoneInput.tsx:260 +msgid "Send code" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:199 +msgid "Send email" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:60 +#: src/components/SendErrorReportDialog.tsx:64 +#: src/screens/Settings/AboutSettings.tsx:125 +#: src/screens/Settings/AboutSettings.tsx:128 +msgid "Send error report" +msgstr "" + +#: src/view/shell/Drawer.tsx:420 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:324 +msgid "Send message" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:146 +msgid "Send post to {name}" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 +msgid "Send post to..." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:818 +msgid "Send report to {title}" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:63 +msgid "Send the message from your phone" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124 +msgid "Send verification email" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" + +#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) +#: src/components/dms/MessageContextMenu.tsx:175 +msgid "Sent at {0}" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:283 +msgid "Sent to our phone number verification provider Plivo" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:174 +#: src/screens/Login/components/HostingProviderDialog.tsx:200 +msgid "Server address" +msgstr "" + +#. placeholder {0}: icon.name +#: src/screens/Settings/AppIconSettings/index.tsx:176 +msgid "Set app icon to {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:99 +msgid "Set new password" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:481 +msgid "Set precisely which groups of people can reply to your post" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:48 +msgid "Set up your account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:431 +msgid "Set who can reply to your post" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:286 +msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:352 +msgid "set your hosting provider manually" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:486 +msgid "Set your hosting provider manually" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:104 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:215 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 +msgid "Settings" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:220 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:293 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:233 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Messages/Settings.tsx:280 +#: src/screens/Settings/NotificationSettings/index.tsx:276 +msgid "Settings for notifications for new message requests" +msgstr "" + +#: src/screens/Messages/Settings.tsx:259 +#: src/screens/Settings/NotificationSettings/index.tsx:259 +msgid "Settings for notifications for new messages" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:246 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:198 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:209 +msgid "Settings for repost notifications" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:103 +msgctxt "toast" +msgid "Settings saved" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:169 +msgid "Sexual activity or erotic nudity." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "" + +#: src/components/Link.tsx:428 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/screens/Hashtag.tsx:130 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/StarterPack/StarterPackScreen.tsx:447 +#: src/screens/Topic.tsx:89 +msgid "Share" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:62 +msgid "Share age range" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:549 +msgid "Share anyway" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 +msgid "Share author DID" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:158 +#: src/screens/Settings/BetaFeaturesSettings.tsx:165 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 +msgid "Share feedback" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 +msgid "Share image" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:120 +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/features/inviteFriends/components/ActionButtons.tsx:28 +msgid "Share link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:74 +msgid "Share link dialog" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 +msgid "Share post at:// URI" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:141 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:156 +msgid "Share Profile" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:129 +#: src/components/StarterPack/ShareDialog.tsx:139 +msgid "Share QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 +msgid "Share this feed" +msgstr "" + +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 +msgid "Share this search" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:440 +msgid "Share this starter pack" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:86 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 +#: src/screens/StarterPack/StarterPackScreen.tsx:646 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:292 +msgid "Share via..." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:232 +msgid "Share your contacts to find friends" +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 +msgid "Share your thoughtsโ€ฆ" +msgstr "" + +#: src/Navigation.tsx:323 +msgid "Shared Preferences Tester" +msgstr "" + +#. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 +msgid "Sharing your age range reveals only the range associated with your Apple Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." +msgstr "" + +#. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 +msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:217 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:140 +msgid "Show" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:48 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 +#: src/features/liveNow/components/LiveStatusDialog.tsx:318 +#: src/features/liveNow/components/LiveStatusDialog.tsx:322 +#: src/screens/List/ListHiddenScreen.tsx:194 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 +msgid "Show anyway" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 +msgid "Show automation label" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Show badge" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:64 +msgid "Show badge and filter from feeds" +msgstr "" + +#: src/components/dialogs/Embed.tsx:125 +msgid "Show customization options" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:57 +msgid "Show group chat updates" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 +msgid "Show less like this" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:190 +msgid "Show list anyway" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:534 +msgid "Show lists of users to select from" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 +msgid "Show more like this" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:15 +msgid "Show more replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:99 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:108 +#: src/screens/Settings/FollowingFeedPreferences.tsx:118 +msgid "Show quote posts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:72 +#: src/screens/Settings/FollowingFeedPreferences.tsx:82 +msgid "Show replies" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:45 +msgid "Show replies as" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +msgid "Show reply for everyone" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:90 +#: src/screens/Settings/FollowingFeedPreferences.tsx:100 +msgid "Show reposts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:133 +#: src/screens/Settings/FollowingFeedPreferences.tsx:143 +msgid "Show samples of your saved feeds in your Following feed" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show warning" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:59 +msgid "Show warning and filter from feeds" +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 +msgid "Show when youโ€™re live" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 +msgid "Shows information about when this post was created" +msgstr "" + +#: src/screens/Settings/Settings.tsx:124 +msgid "Shows other accounts you can switch to" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:169 +#: src/components/moderation/PostHider.tsx:94 +msgid "Shows the content" +msgstr "" + +#: src/components/dialogs/Signin.tsx:98 +#: src/components/dialogs/Signin.tsx:100 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 +#: src/screens/Hashtag.tsx:231 +#: src/screens/Login/index.tsx:143 +#: src/screens/Login/index.tsx:165 +#: src/screens/Login/LoginForm.tsx:274 +#: src/screens/Login/LoginForm.tsx:554 +#: src/screens/Login/LoginForm.tsx:560 +#: src/screens/Messages/JoinRequest.tsx:290 +#: src/screens/Messages/JoinRequest.tsx:296 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBar.tsx:364 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255 +#: src/view/shell/NavSignupCard.tsx:58 +#: src/view/shell/NavSignupCard.tsx:63 +msgid "Sign in" +msgstr "" + +#. placeholder {0}: account.handle +#: src/components/AccountList.tsx:135 +msgid "Sign in as {0}" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:84 +msgid "Sign in asโ€ฆ" +msgstr "" + +#: src/screens/Deactivated.tsx:195 +#: src/screens/Deactivated.tsx:201 +msgid "Sign in or create an account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:76 +msgid "Sign in or create your account to join the conversation!" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:216 +msgid "Sign in to accept invite." +msgstr "" + +#: src/components/AccountList.tsx:70 +msgid "Sign in to account that is not listed" +msgstr "" + +#: src/components/dialogs/Signin.tsx:47 +msgid "Sign in to Bluesky or create a new account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:215 +msgid "Sign in to request access to this group chat." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:274 +#: src/screens/Settings/Settings.tsx:276 +#: src/screens/Settings/Settings.tsx:308 +#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:97 +#: src/screens/Takendown.tsx:88 +#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:282 +#: src/view/shell/desktop/LeftNav.tsx:285 +msgid "Sign out" +msgstr "" + +#: src/screens/Takendown.tsx:91 +msgid "Sign Out" +msgstr "" + +#: src/screens/Settings/Settings.tsx:305 +#: src/view/shell/desktop/LeftNav.tsx:224 +msgid "Sign out?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:572 +msgid "Sign up" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:96 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "" + +#. placeholder {0}: account.handle +#: src/lib/hooks/useAccountSwitcher.ts:42 +#: src/screens/Login/ChooseAccountForm.tsx:54 +msgid "Signed in as @{0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:299 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:302 +msgid "Since" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:163 +#: src/components/contacts/screens/VerifyNumber.tsx:205 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:86 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:90 +#: src/screens/Onboarding/StepFinished/index.tsx:295 +#: src/screens/Onboarding/StepFinished/index.tsx:317 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:281 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:105 +#: src/screens/StarterPack/Wizard/index.tsx:206 +msgid "Skip" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:160 +#: src/components/contacts/screens/VerifyNumber.tsx:202 +msgid "Skip contact sharing and continue to the app" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1552 +msgid "Skip empty posts?" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:288 +#: src/screens/Onboarding/StepFinished/index.tsx:314 +msgid "Skip introduction and start using your account" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:278 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102 +msgid "Skip to next step" +msgstr "" + +#: src/components/images/Gallery/index.tsx:441 +msgid "slide" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:150 +msgid "Smaller" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 +msgid "Snoozes the reminder" +msgstr "" + +#: src/view/com/composer/drafts/DraftsListDialog.tsx:155 +msgid "So many thoughts, you should post one" +msgstr "" + +#: src/components/WelcomeModal.tsx:146 +msgid "Social media you control." +msgstr "" + +#. Name for a feature flag +#: src/analytics/features/index.ts:84 +msgid "Social proofing on posts" +msgstr "" + +#: src/lib/interests.ts:58 +msgid "Software Dev" +msgstr "" + +#: src/screens/Moderation/index.tsx:466 +msgid "Some moderation services in your list are no longer available." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:122 +msgid "Some of your verifications are invalid." +msgstr "" + +#: src/components/FeedInterstitials.tsx:633 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:88 +msgid "Some people can reply" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:86 +msgid "Someone joined" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:87 +msgid "Someone joined the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:99 +msgid "Someone left" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:100 +msgid "Someone left the group" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:368 +msgid "Someone reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:67 +msgid "Someone reacted {0} to {target}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:813 +msgid "Someone replied" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:60 +msgid "Someone was added" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:61 +msgid "Someone was added to the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:73 +msgid "Someone was removed" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:74 +msgid "Someone was removed from the group" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:103 +msgid "Something wasn't quite right with the data you're trying to report. Please contact support." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 +msgid "Something went wrong" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 +#: src/components/moderation/ReportDialog/index.tsx:289 +#: src/screens/Deactivated.tsx:86 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +#: src/view/screens/Storybook/Admonitions.tsx:56 +msgid "Something went wrong, please try again" +msgstr "" + +#: src/screens/Moderation/index.tsx:112 +#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Settings/BetaFeaturesSettings.tsx:80 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 +msgid "Something went wrong, please try again." +msgstr "" + +#: src/components/Lists.tsx:185 +msgid "Something went wrong!" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:28 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:247 +msgid "Something went wrong. Please try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 +msgid "Something wrong? Let us know." +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:231 +msgid "Sorry, we're unable to load account suggestions at this time." +msgstr "" + +#: src/App.tsx:139 +#: src/App.web.tsx:118 +msgid "Sorry! Your session expired. Please sign in again." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:45 +msgid "Sort replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:52 +msgid "Sort replies by" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:49 +msgid "Sort replies to the same post by:" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:197 +#: src/components/moderation/ModerationDetailsDialog.tsx:272 +msgid "Source: <0>{sourceName}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 +msgid "Spam" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:36 +msgid "Spam or other inauthentic behavior or deception" +msgstr "" + +#: src/lib/interests.ts:72 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 +msgid "Sports" +msgstr "" + +#. Description of a feature flag (Social proofing on posts) +#: src/analytics/features/index.ts:90 +msgid "Spot posts your friends and follows have liked." +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 +msgid "Start a conversation, and it will appear here." +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:192 +msgid "Start a new chat" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:104 +#: src/screens/ProfileList/FeedSection.tsx:82 +msgid "Start adding people" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:110 +#: src/screens/ProfileList/FeedSection.tsx:88 +msgid "Start adding people!" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:831 +msgid "Start chat" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:428 +#: src/components/dms/InitiateChatFlow.tsx:1087 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 +#: src/screens/StarterPack/Wizard/index.tsx:197 +msgid "Starter Pack" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#: src/components/StarterPack/StarterPackCard.tsx:91 +msgid "Starter pack by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 +msgid "Starter pack by <0/>" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:90 +#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:765 +msgid "Starter pack is invalid" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:105 +msgid "Starter packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/view/screens/Profile.tsx:569 +msgid "Starter Packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:110 +#: src/screens/Settings/AboutSettings.tsx:113 +msgid "Status Page" +msgstr "" + +#. placeholder {0}: state.activeStep + 1 +#. placeholder {0}: state.activeStepIndex + 1 +#. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' +#. placeholder {1}: state.totalSteps +#: src/screens/Onboarding/Layout.tsx:226 +#: src/screens/Signup/index.tsx:189 +msgid "Step {0} of {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:410 +msgid "Storage cleared, you need to restart the app now." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:294 +msgid "Stored as part of a secure code for matching with others" +msgstr "" + +#: src/Navigation.tsx:308 +#: src/screens/Settings/Settings.tsx:465 +msgid "Storybook" +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182 +msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:122 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128 +#: src/components/moderation/AppealForm.tsx:154 +#: src/components/moderation/AppealForm.tsx:155 +#: src/components/SendErrorReportDialog.tsx:90 +#: src/components/SendErrorReportDialog.tsx:95 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:133 +msgid "Submit" +msgstr "" + +#: src/screens/Takendown.tsx:76 +msgid "Submit appeal" +msgstr "" + +#: src/screens/Takendown.tsx:80 +msgid "Submit Appeal" +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 +msgid "Submit feedback" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:508 +#: src/components/moderation/ReportDialog/index.tsx:569 +#: src/components/moderation/ReportDialog/index.tsx:576 +msgid "Submit report" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:75 +msgid "Subscribe" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:447 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:476 +msgid "Subscribe on {0}" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:475 +msgid "Subscribe to {publicationTitle} on {0}" +msgstr "" + +#. placeholder {0}: labelerInfo.creator.handle +#: src/screens/Profile/Sections/Labels.tsx:232 +msgid "Subscribe to @{0} to use these labels:" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:252 +msgid "Subscribe to account activity" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356 +msgid "Subscribe to Labeler" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:322 +msgid "Subscribe to this labeler" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:63 +msgid "Subscribe to this list" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:252 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:160 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 +msgid "Success!" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:131 +msgid "Successfully joined the group chat!" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:37 +msgid "Successfully verified" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:432 +msgid "Suggested" +msgstr "" + +#: src/screens/Search/Explore.tsx:369 +msgid "Suggested accounts" +msgstr "" + +#. Accounts suggested to the user for them to follow +#: src/components/FeedInterstitials.tsx:472 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:143 +msgid "Suggestive" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Sunlight" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 +msgctxt "Name of app icon variant" +msgid "Sunrise" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 +msgctxt "Name of app icon variant" +msgid "Sunset" +msgstr "" + +#: src/Navigation.tsx:333 +#: src/view/screens/Support.tsx:25 +#: src/view/screens/Support.tsx:28 +msgid "Support" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:236 +msgid "Support for this feature in your country has not been enabled yet! Please check back later." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 +msgid "Suspended accounts cannot participate in chat." +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:47 +#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:135 +#: src/screens/Settings/Settings.tsx:624 +#: src/view/shell/desktop/LeftNav.tsx:262 +msgid "Switch account" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:124 +msgid "Switch accounts" +msgstr "" + +#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) +#: src/view/shell/desktop/LeftNav.tsx:364 +msgid "Switch to {0}" +msgstr "" + +#: src/components/dialogs/Embed.tsx:154 +#: src/components/dialogs/Embed.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 +msgid "System" +msgstr "" + +#: src/screens/Log.tsx:49 +#: src/screens/Settings/AboutSettings.tsx:117 +#: src/screens/Settings/AboutSettings.tsx:120 +#: src/screens/Settings/Settings.tsx:458 +msgid "System log" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:291 +msgid "Tags only" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:110 +msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." +msgstr "" + +#: src/components/dms/MessageItem.tsx:682 +msgid "Tap for details" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:90 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:45 +msgid "Tap for more information" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:326 +msgid "Tap here to update your location with GPS." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:54 +#: src/components/ContextMenu/Backdrop.ios.tsx:80 +#: src/components/ContextMenu/Backdrop.tsx:46 +msgid "Tap to close context menu" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + +#: src/components/ProgressGuide/Toast.tsx:159 +msgid "Tap to dismiss" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:469 +msgid "Tap to join this group chat immediately" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:200 +msgid "Tap to remove" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/ReactionsDialog.tsx:216 +msgid "Tap to remove your {0} reaction" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:468 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:647 +msgid "Tap to retry" +msgstr "" + +#. placeholder {0}: tab.value +#: src/components/dms/ReactionsDialog.tsx:362 +msgid "Tap to show {0} reactions" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:361 +msgid "Tap to show all reactions" +msgstr "" + +#: src/components/dms/MessageItem.tsx:394 +msgid "Tap to view reactions" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 +msgid "Targeted harassment" +msgstr "" + +#: src/state/shell/progress-guide.tsx:236 +msgid "Task complete - 10 follows!" +msgstr "" + +#: src/state/shell/progress-guide.tsx:226 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:109 +msgid "Teach our algorithm what you like" +msgstr "" + +#: src/lib/interests.ts:73 +msgid "Tech" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:368 +msgid "Tell us a bit about yourself" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:70 +msgid "Tell us a little more" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:214 +msgid "Temporarily deactivate your account" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:125 +#: src/view/shell/desktop/RightNav.tsx:126 +msgid "Terms" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:181 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 +#: src/Navigation.tsx:343 +#: src/screens/Settings/AboutSettings.tsx:94 +#: src/screens/Settings/AboutSettings.tsx:97 +#: src/view/screens/TermsOfService.tsx:25 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 +msgid "Terms of Service" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:275 +msgid "Text & tags" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:118 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +msgid "Text input field" +msgstr "" + +#: src/view/com/posts/ShowLessFollowup.tsx:39 +msgid "Thank you for your feedback! It has been sent to the feed operator." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 +msgid "Thanks for your feedback!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:77 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:233 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:224 +msgid "Thanks! You're all set." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:500 +msgid "That contains the following:" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:115 +#: src/screens/StarterPack/StarterPackScreen.tsx:116 +#: src/screens/StarterPack/StarterPackScreen.tsx:160 +#: src/screens/StarterPack/StarterPackScreen.tsx:161 +#: src/screens/StarterPack/Wizard/index.tsx:116 +#: src/screens/StarterPack/Wizard/index.tsx:126 +msgid "That starter pack could not be found." +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:90 +msgid "That username is already taken" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:142 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1212 +msgid "That's everything!" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:422 +msgid "The account will be able to interact with you after unblocking." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:39 +#: src/screens/Settings/AppIconSettings/index.tsx:225 +msgid "The app will be restarted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:139 +#: src/lib/moderation/useModerationCauseDescription.ts:129 +msgid "The author of this thread has hidden this reply." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:169 +msgid "The birthdate you've entered means you are under 18 years old. Certain content and features may be unavailable to you." +msgstr "" + +#: src/screens/Moderation/index.tsx:415 +msgid "The Bluesky web application" +msgstr "" + +#: src/view/screens/CommunityGuidelines.tsx:32 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "" + +#: src/view/screens/CopyrightPolicy.tsx:29 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:107 +msgid "The Discover feed" +msgstr "" + +#: src/state/shell/progress-guide.tsx:227 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:332 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:70 +msgid "The feed has been replaced with Discover." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:64 +msgid "The following labels were applied to this post." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:63 +msgid "The following labels were applied to your account." +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:168 +msgid "The following services are enabled for your account: {allowedServices}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:43 +msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:23 +msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 +msgid "The post youโ€™re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:29 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:468 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB}ย MB. Please try again with a smaller file." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:41 +#: src/lib/strings/errors.ts:18 +msgid "The server appears to be experiencing issues. Please try again in a few moments." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:775 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "" + +#: src/components/ContextMenu/index.tsx:507 +msgid "The subject of the context menu" +msgstr "" + +#: src/view/screens/Support.tsx:31 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "" + +#: src/view/screens/TermsOfService.tsx:29 +msgid "The Terms of Service have been moved to" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:89 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:115 +#: src/components/contacts/screens/VerifyNumber.tsx:113 +#: src/components/contacts/screens/VerifyNumber.tsx:165 +msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:137 +msgid "Theme" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:106 +msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again." +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 +msgid "There is no invite link for this group chat." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "" + +#. Body message of the error screen shown when the GIF provider request fails. Encourages the user to retry. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:56 +msgid "There was a problem loading GIFs. Check your connection and try again." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:149 +#: src/components/intents/GroupChatJoinDialog.tsx:195 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 +msgid "There was a problem with your internet connection, please try again" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 +#: src/screens/ProfileList/components/Header.tsx:91 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 +#: src/screens/SavedFeeds.tsx:99 +#: src/screens/SavedFeeds.tsx:278 +msgid "There was an issue contacting the server" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:133 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "" + +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:180 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:60 +msgid "There was an issue fetching your app passwords" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:185 +#: src/view/com/lists/ProfileLists.tsx:184 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:109 +msgid "There was an issue fetching your service info" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:153 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 +#: src/view/com/posts/FeedShutdownMsg.tsx:53 +#: src/view/com/posts/FeedShutdownMsg.tsx:74 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#. placeholder {0}: e.toString() +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:432 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:475 +#: src/screens/Messages/ConversationSettings/Member.tsx:71 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:114 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:127 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:92 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:257 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:157 +#: src/view/com/profile/ProfileMenu.tsx:174 +#: src/view/com/profile/ProfileMenu.tsx:187 +#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:218 +msgid "There was an issue! {0}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:241 +#: src/screens/List/ListHiddenScreen.tsx:67 +#: src/screens/List/ListHiddenScreen.tsx:81 +#: src/screens/List/ListHiddenScreen.tsx:103 +#: src/screens/ProfileList/components/Header.tsx:106 +#: src/screens/ProfileList/components/Header.tsx:120 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:121 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:135 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:38 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:53 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "" + +#. Body of the error screen shown when the GIF picker crashes unexpectedly. Encourages the user to report the issue. +#: src/components/dialogs/LanguageSelectDialog.tsx:349 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:27 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "" + +#: src/screens/SignupQueued.tsx:133 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:660 +msgid "These are your default settings" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:51 +msgid "These domains" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:44 +msgid "These hashtags" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:66 +msgid "These settings only apply to the Following feed." +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 +msgid "These URLs" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:353 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:177 +msgid "They wonโ€™t be able to rejoin unless you invite them again." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:116 +msgid "This {screenDescription} has been flagged:" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:89 +msgid "This account has a checkmark because it's been verified by trusted sources." +msgstr "" + +#: src/components/BotAccountAlert.tsx:27 +msgid "This account has been marked as automated by its owner." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:94 +msgid "This account has one or more attempted verifications, but it is not currently verified." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This account has requested that users sign in to view their profile." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:33 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:56 +msgid "This action can be undone at any time." +msgstr "" + +#: src/components/moderation/AppealForm.tsx:96 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 +#: src/screens/Messages/components/ChatDisabled.tsx:138 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "This author has chosen to make their posts visible only to people who are signed in." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:244 +msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below." +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:48 +msgid "This chat has ended" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:301 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:376 +#: src/screens/Messages/components/ChatLocked.tsx:69 +msgid "This chat is locked" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:437 +msgid "This chat is locked by a moderation action" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:17 +msgid "This chat was disconnected" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:106 +msgid "This code is invalid. Resend to get a new code." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:145 +msgid "This confirmation code is not valid. Please try again." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "" + +#. placeholder {0}: externalEmbedLabels[source] +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:104 +#: src/lib/moderation/useModerationCauseDescription.ts:85 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:122 +msgid "This content is not viewable without a Bluesky account." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This conversation is locked." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:156 +msgid "This conversation is with a deleted or a deactivated account. Press for options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:240 +msgid "This draft will be permanently deleted." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 +msgid "This email is already associated with your account." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:280 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:283 +msgid "This exact phrase" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:56 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:166 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:61 +msgid "This feature is not available while using an app password. Please sign in with your main password." +msgstr "" + +#: src/lib/strings/errors.ts:30 +msgid "This feature is not available while using an App Password. Please sign in with your main password." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:128 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:60 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "" + +#: src/components/StarterPack/Main/PostsList.tsx:41 +#: src/screens/Profile/ProfileFeed/index.tsx:170 +#: src/screens/ProfileList/FeedSection.tsx:78 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:104 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:72 +msgid "This group is locked by a moderation action on the owner" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:611 +msgid "This handle is reserved. Please try a different one." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:140 +msgid "This image could not be used. Try a different format like .jpg or .png." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:62 +msgid "This information is private and not shared with other users." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:161 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:236 +msgid "This invite link is invalid" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 +msgid "This is just a one-time security check, since we haven't seen this account on this device before." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:171 +#: src/features/liveNow/components/GoLiveDialog.tsx:161 +msgid "This is not a valid link" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:173 +msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:254 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:184 +msgid "This label was applied by you." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/ModerationDetailsDialog.tsx:231 +msgid "This label was applied to the entire user account and will appear on all posts." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:219 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:95 +msgid "This link is taking you to the following website:" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/screens/List/ListHiddenScreen.tsx:155 +msgid "This list โ€“ created by <0>{0} โ€“ contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:150 +msgid "This list โ€“ created by you โ€“ contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:100 +msgid "This list is empty." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:335 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 +msgid "This message is hidden because this user is blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 +msgid "This message is hidden because you are blocking this user." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:41 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:84 +msgid "This person is blocking you" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt) +#. placeholder {1}: niceDate(i18n, indexedAt) +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "" + +#: src/components/WhoCanReply.tsx:274 +msgid "This post has an unknown type of threadgate on it. Your app may be out of date." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 +msgid "This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks.tsx:248 +msgid "This post was deleted by its author" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1127 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:547 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 +msgid "This screen is only available for group conversations." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "" + +#: src/features/liveNow/index.tsx:203 +msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:469 +msgid "This should create a domain record at:" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:214 +msgid "This should only take a few minutes." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:94 +msgid "This user does not have a display name, and therefore cannot be verified." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:217 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:99 +#: src/lib/moderation/useModerationCauseDescription.ts:76 +msgid "This user has blocked you. You cannot view their content." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 +msgid "This user has disabled chat and cannot be messaged." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:79 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:111 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:49 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:196 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 +msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:65 +msgid "This video canโ€™t be previewed in your browser. It will still be uploaded." +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 +msgid "This will create a new list with the same name, description, and members as this starter pack." +msgstr "" + +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:454 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:330 +msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} and all associated data. Note that this will affect any other <1>AT Protocol services you use with this account." +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Settings/Settings.tsx:678 +msgid "This will remove @{0} from the quick access list." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:25 +#: src/screens/PostThread/components/HeaderDropdown.tsx:28 +msgid "Thread options" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:70 +#: src/screens/Settings/ContentAndMediaSettings.tsx:73 +msgid "Thread preferences" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:35 +msgid "Thread Preferences" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:59 +#: src/screens/PostThread/components/HeaderDropdown.tsx:64 +msgid "Threaded" +msgstr "" + +#: src/Navigation.tsx:376 +msgid "Threads Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:134 +msgid "Threats or incitement" +msgstr "" + +#. placeholder {0}: Number(time) || 0 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 +msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:68 +msgid "Title" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:71 +msgid "Title (100 characters max)" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:100 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 +msgid "To disable your email 2FA method, please verify your access to <0>{0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:315 +msgid "To log out, <0>click here. Or if youโ€™d prefer, you can <1>delete your account." +msgstr "" + +#: src/components/dms/DateDivider.tsx:27 +msgid "Today" +msgstr "" + +#: src/screens/Moderation/index.tsx:392 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:186 +msgid "Toggles the sound" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:123 +msgid "Too many attempts. Please wait a few minutes and try again." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:176 +msgid "Too many codes sent. Please wait a few minutes and try again." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:156 +msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends" +msgstr "" + +#: src/screens/Hashtag.tsx:86 +#: src/screens/Search/SearchResults.tsx:83 +#: src/screens/Topic.tsx:58 +msgid "Top" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:75 +#: src/screens/PostThread/components/HeaderDropdown.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:57 +#: src/screens/Settings/ThreadPreferences.tsx:60 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:503 +msgid "Topic" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:191 +#: src/components/dms/MessageContextMenu.tsx:194 +#: src/components/Post/Translated/index.tsx:150 +#: src/components/Post/Translated/index.tsx:157 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 +msgid "Translate" +msgstr "" + +#: src/components/Post/Translated/index.tsx:326 +msgid "Translated" +msgstr "" + +#: src/components/Post/Translated/index.tsx:113 +msgid "Translating" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 +msgid "Translatingโ€ฆ" +msgstr "" + +#: src/lib/translation/index.tsx:305 +msgid "Translation to the same language is unavailable on your device." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:87 +#: src/screens/Settings/ThreadPreferences.tsx:92 +msgid "Tree view" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 +msgid "Trending" +msgstr "" + +#. Accessibility label for the icon-only pill that shows currently trending/featured GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:45 +msgid "Trending GIFs" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 +msgid "Trending options" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 +msgid "Trolling" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 +msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:260 +msgid "Try a different search term or remove some filters." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:262 +msgid "Try a different search term." +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "" + +#: src/view/com/util/error/ErrorScreen.tsx:97 +msgctxt "action" +msgid "Try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:171 +msgid "Try again in a moment." +msgstr "" + +#: src/components/Post/Translated/index.tsx:229 +#: src/components/Post/Translated/index.tsx:242 +msgid "Try Google Translate" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "" + +#: src/lib/interests.ts:74 +msgid "TV" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:32 +msgid "Twilight" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 +msgid "Two-factor authentication (2FA)" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:445 +msgid "Type:" +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:86 +msgid "Unable to access location. You'll need to visit your system settings to enable location services for Bluesky." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:30 +#: src/lib/strings/errors.ts:11 +msgid "Unable to connect. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:96 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:141 +msgid "Unable to contact your service. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:66 +#: src/screens/Login/index.tsx:100 +#: src/screens/Login/LoginForm.tsx:169 +#: src/screens/Login/SetNewPasswordForm.tsx:77 +#: src/screens/Signup/index.tsx:89 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:700 +msgid "Unable to delete" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 +msgid "Unable to find the selected recipient." +msgstr "" + +#: src/lib/strings/errors.ts:42 +msgid "Unable to resolve handle" +msgstr "" + +#: src/screens/Settings/Settings.tsx:524 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:526 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:43 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:127 +msgid "Unavailable feed information" +msgstr "" + +#: src/components/dms/MessageItem.tsx:747 +#: src/components/dms/MessagesListBlockedFooter.tsx:97 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:427 +#: src/screens/ProfileList/components/Header.tsx:166 +#: src/screens/ProfileList/components/Header.tsx:173 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 +msgid "Unblock {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:463 +#: src/view/com/profile/ProfileMenu.tsx:469 +msgid "Unblock account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +msgid "Unblock Account?" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:242 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:245 +msgid "Unblock list" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 +#: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 +msgid "Undo" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:43 +msgctxt "Button label to undo saving/removing a post from saved posts." +msgid "Undo" +msgstr "" + +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 +msgid "Undo repost" +msgstr "" + +#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun +#. placeholder {0}: repostCount || 0 +#: src/components/PostControls/RepostButton.tsx:68 +msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:396 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:329 +msgid "Unfollow account" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:919 +msgid "Unfollows the user" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:492 +msgid "Unfortunately, none of your subscribed labelers supports this report type." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:263 +msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:247 +msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:209 +msgid "Unknown verifier" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 +msgid "Unlabeled adult content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68 +msgid "Unlabeled, abusive, or non-consensual adult content" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 +msgid "Unlike" +msgstr "" + +#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun +#. placeholder {0}: post.likeCount || 0 +#: src/components/PostControls/index.tsx:276 +msgid "Unlike ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:91 +msgid "Unlock chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:568 +msgid "Unlock this group chat" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:180 +#: src/screens/ProfileList/components/Header.tsx:187 +msgid "Unmute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:183 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 +msgctxt "video" +msgid "Unmute" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:153 +#: src/components/RichTextTag.tsx:169 +msgid "Unmute {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 +#: src/view/com/profile/ProfileMenu.tsx:442 +#: src/view/com/profile/ProfileMenu.tsx:448 +msgid "Unmute account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:272 +msgid "Unmute conversation" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:252 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:255 +msgid "Unmute list" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:533 +msgid "Unmute this group chat" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 +msgid "Unmute thread" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 +msgid "Unmute video" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:151 +#: src/screens/ProfileList/components/Header.tsx:158 +msgid "Unpin" +msgstr "" + +#: src/components/FeedCard.tsx:355 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 +#: src/screens/SavedFeeds.tsx:467 +msgid "Unpin feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 +msgid "Unpin from home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 +msgid "Unpin from profile" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:225 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:228 +msgid "Unpin moderation list" +msgstr "" + +#. placeholder {0}: info.displayName +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 +msgid "Unpinned {0} from Home" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:78 +msgid "Unpinned from your feeds" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:105 +msgid "Unpinned list" +msgstr "" + +#: src/screens/Settings/Settings.tsx:491 +#: src/screens/Settings/Settings.tsx:493 +msgid "Unsnooze email reminder" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:354 +msgid "Unsubscribe" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:202 +#: src/screens/List/ListHiddenScreen.tsx:212 +msgid "Unsubscribe from list" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:321 +msgid "Unsubscribe from this labeler" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:90 +msgid "Unsubscribed from list" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.tsx:127 +msgid "Unsupported clipboard content" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1644 +msgid "Unsupported video type: {mimeType}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:323 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:326 +msgid "Until" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:61 +#: src/screens/Settings/components/OTAInfo.tsx:77 +msgid "Update" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(profile, true) +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:138 +msgid "Update {0} in Lists" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 +#: src/screens/Settings/AccountSettings.tsx:110 +#: src/screens/Settings/AccountSettings.tsx:118 +msgid "Update email" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:142 +msgid "Update in Lists" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 +#: src/screens/Messages/components/InviteLinkDialog.tsx:275 +#: src/screens/Messages/components/InviteLinkDialog.tsx:303 +msgid "Update invite link" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:544 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:565 +msgid "Update to {domain}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 +msgid "Update your email" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:208 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:252 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:41 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:106 +msgid "Update your location" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 +msgctxt "toast" +msgid "Updating quote attachment failed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 +msgctxt "toast" +msgid "Updating reply visibility failed" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:312 +msgid "Upload a photo instead" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:485 +msgid "Upload a text file to:" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:494 +#: src/view/com/util/UserAvatar.tsx:497 +#: src/view/com/util/UserBanner.tsx:164 +#: src/view/com/util/UserBanner.tsx:167 +msgid "Upload from Camera" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 +msgid "Upload from Files" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:505 +#: src/view/com/util/UserAvatar.tsx:509 +#: src/view/com/util/UserBanner.tsx:175 +#: src/view/com/util/UserBanner.tsx:179 +msgid "Upload from Library" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2684 +msgid "Uploading GIF..." +msgstr "" + +#: src/lib/api/index.ts:327 +#: src/lib/api/index.ts:354 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:426 +#: src/lib/api/index.ts:450 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2686 +msgid "Uploading video..." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:67 +msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:576 +msgid "Use default provider" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:78 +#: src/components/dialogs/InAppBrowserConsent.tsx:84 +msgid "Use in-app browser" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:104 +#: src/screens/Settings/ContentAndMediaSettings.tsx:110 +msgid "Use in-app browser to open links" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:88 +#: src/components/dialogs/InAppBrowserConsent.tsx:94 +msgid "Use my default browser" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:57 +msgid "Use recommended" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 +msgid "Use this to sign in to the other app along with your handle." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:278 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + +#: src/view/screens/Profile.tsx:396 +msgid "user" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:155 +msgctxt "toast" +msgid "User blocked" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:91 +#: src/lib/moderation/useModerationCauseDescription.ts:64 +msgid "User Blocked" +msgstr "" + +#. placeholder {0}: cause.source.list.name +#: src/lib/moderation/useModerationCauseDescription.ts:56 +msgid "User Blocked by \"{0}\"" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:77 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:74 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:97 +msgid "User Blocks You" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:303 +msgid "User list by {0}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(view.creator.handle, '@') +#: src/state/queries/feed.ts:171 +msgid "User List by {0}" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:301 +msgid "User list by you" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:255 +msgctxt "toast" +msgid "User list created" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:241 +msgctxt "toast" +msgid "User list updated" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:257 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:241 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:245 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:305 +msgid "Username or email" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:315 +msgid "Username or email address" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:337 +msgid "users followed by <0>@{0}" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:324 +msgid "users following <0>@{0}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:451 +msgid "Value:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:40 +msgid "Verification failed, please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:344 +msgid "Verification settings" +msgstr "" + +#: src/Navigation.tsx:208 +#: src/screens/Moderation/VerificationSettings.tsx:34 +msgid "Verification Settings" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:43 +msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:105 +msgid "Verified by:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:85 +#: src/components/verification/VerificationCreatePrompt.tsx:87 +#: src/view/com/profile/ProfileMenu.tsx:426 +#: src/view/com/profile/ProfileMenu.tsx:429 +msgid "Verify account" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:64 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 +msgctxt "action" +msgid "Verify code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:546 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:567 +msgid "Verify DNS Record" +msgstr "" + +#. Dialog title when a user is verifying their email address by entering a code they have been sent +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 +msgid "Verify email code" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:62 +msgid "Verify email dialog" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:65 +msgid "Verify now" +msgstr "" + +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:34 +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:52 +msgid "Verify now using KWS" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:175 +#: src/components/contacts/screens/VerifyNumber.tsx:217 +msgid "Verify phone number" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:547 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:569 +msgid "Verify Text File" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:52 +msgid "Verify this account?" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 +msgid "Verify your age" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 +#: src/screens/Settings/AccountSettings.tsx:84 +#: src/screens/Settings/AccountSettings.tsx:104 +msgid "Verify your email" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Verifying" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:165 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:75 +msgid "Verifying your age assurance status" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:307 +msgid "Verifying..." +msgstr "" + +#. placeholder {0}: env.APP_VERSION +#: src/screens/Settings/AboutSettings.tsx:144 +#: src/screens/Settings/AboutSettings.tsx:173 +msgid "Version {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:162 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:390 +msgid "Video failed to process" +msgstr "" + +#: src/Navigation.tsx:571 +msgid "Video Feed" +msgstr "" + +#. placeholder {0}: author.handle +#: src/components/VideoPostCard.tsx:121 +msgid "Video from {0}: {text}" +msgstr "" + +#. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) +#: src/screens/VideoFeed/index.tsx:1174 +msgid "Video from {0}. Tap to play or pause the video" +msgstr "" + +#: src/lib/interests.ts:62 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 +msgid "Video Games" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1173 +msgid "Video is paused" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1173 +msgid "Video is playing" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2704 +msgid "Video uploaded" +msgstr "" + +#. placeholder {0}: embed.alt +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:95 +msgid "Video: {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:239 +msgid "Videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 +#: src/view/com/composer/SelectMediaButton.tsx:440 +msgid "Videos must be less than 3 minutes long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1234 +msgctxt "Action to view the post the user just created" +msgid "View" +msgstr "" + +#. placeholder {0}: view.source.title +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:340 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:670 +msgid "View {0}" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/Shell.tsx:256 +msgid "View {0}'s avatar" +msgstr "" + +#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle +#. placeholder {0}: info.creatorHandle +#. placeholder {0}: profile.handle +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 +#: src/screens/Search/components/SearchProfileCard.tsx:37 +#: src/screens/VideoFeed/index.tsx:880 +#: src/view/com/notifications/NotificationFeedItem.tsx:619 +msgid "View {0}'s profile" +msgstr "" + +#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle) +#: src/components/ProfileCard.tsx:150 +msgid "View {0}โ€™s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 +msgid "View {displayName}โ€™s profile" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:478 +msgid "View {publicationTitle}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:479 +msgid "View blocked user's profile" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:170 +msgid "View blogpost for more details" +msgstr "" + +#: src/screens/Log.tsx:72 +msgid "View debug entry" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 +msgid "View details" +msgstr "" + +#: src/view/com/posts/ViewFullThread.tsx:31 +#: src/view/com/posts/ViewFullThread.tsx:65 +msgid "View full thread" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +msgid "View incoming group chat requests" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:51 +msgid "View information about these labels" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 +msgid "View more" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:227 +msgid "View more trending videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1229 +msgid "View post" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:465 +#: src/components/ProfileHoverCard/index.web.tsx:485 +#: src/components/ProfileHoverCard/index.web.tsx:512 +#: src/view/com/posts/PostFeedErrorMessage.tsx:183 +#: src/view/com/util/PostMeta.tsx:92 +#: src/view/com/util/PostMeta.tsx:120 +msgid "View profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:163 +msgid "View profile banner" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:340 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:448 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:479 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:670 +msgid "View publication" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:108 +msgid "View the avatar" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:555 +msgid "View the invite link for this group chat" +msgstr "" + +#. placeholder {0}: labeler.creator.handle +#: src/components/LabelingServiceCard/index.tsx:164 +msgid "View the labeling service provided by @{0}" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:103 +msgid "View this user's verifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +msgid "View users who like this feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:398 +msgid "View video" +msgstr "" + +#: src/screens/Moderation/index.tsx:324 +msgid "View your blocked accounts" +msgstr "" + +#: src/screens/Moderation/index.tsx:264 +msgid "View your default post interaction settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +msgid "View your feeds and explore more" +msgstr "" + +#: src/screens/Moderation/index.tsx:294 +msgid "View your moderation lists" +msgstr "" + +#: src/screens/Moderation/index.tsx:309 +msgid "View your muted accounts" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:102 +msgid "View your verifications" +msgstr "" + +#: src/components/images/AutoSizedImage.tsx:222 +#: src/components/images/AutoSizedImage.tsx:254 +msgid "Views full image" +msgstr "" + +#: src/components/VideoPostCard.tsx:120 +msgid "Views video in immersive mode" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:126 +msgid "Violence" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:127 +msgid "Violent or threatening content" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:122 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:296 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +msgid "Volume" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:142 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:49 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 +msgid "Watch now" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:253 +msgid "We apply the highest privacy standards, and never share or sell your contact information." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:141 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:147 +msgid "We could not find this list. It was probably deleted." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:348 +msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." +msgstr "" + +#: src/screens/Hashtag.tsx:260 +msgid "We couldn't find any results for that tag." +msgstr "" + +#: src/screens/Topic.tsx:166 +msgid "We couldn't find any results for that topic." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:134 +msgid "We couldn't load this conversation" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldnโ€™t load this conversationโ€™s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 +msgid "We couldnโ€™t load this conversationโ€™s settings" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:482 +msgid "We couldnโ€™t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:244 +msgid "We delete hashes after matches are made" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:67 +msgid "We don't store your friends' phone numbers or send any messages" +msgstr "" + +#: src/screens/SignupQueued.tsx:163 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:197 +msgid "We have partnered with <0>KWS to handle age verification. When you click \"Begin\" below, KWS will email you instructions to complete the verification process. If your email address has already been used to verify your age for another game or service that uses KWS, you wonโ€™t need to do it again. When youโ€™re done, you'll be brought back to continue using Bluesky." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/intents/VerifyEmailIntentDialog.tsx:102 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:184 +msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:241 +msgid "We never keep plain phone numbers" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:247 +msgid "We only suggest follows if both people consent" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:171 +msgid "We recommend selecting at least two interests." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/view/com/composer/state/video.ts:451 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:19 +msgid "We were unable to load the age assurance configuration for your region, probably due to a network error. Some content and features may be unavailable temporarily. Please try again later." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:41 +msgid "We were unable to load your birthdate preferences. Please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:492 +msgid "We were unable to load your configured labelers at this time." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:305 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:217 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + +#: src/screens/SignupQueued.tsx:167 +msgid "We will let you know when your account is ready." +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:531 +msgid "We will notify you when we find your friends." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 +msgid "Weโ€™d love to hear about your experience testing beta features!" +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:62 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:140 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:83 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:311 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:223 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:151 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:127 +#: src/components/ProgressGuide/FollowDialog.tsx:195 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:321 +msgid "Weโ€™re having network issues, try again" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 +msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." +msgstr "" + +#: src/screens/Signup/index.tsx:140 +msgid "Weโ€™re so excited to have you join us!" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:117 +msgid "We're sorry, but based on the data shared by your device, you are not old enough to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:227 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:218 +msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance." +msgstr "" + +#: src/screens/ProfileList/index.tsx:88 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:387 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 +msgid "Weโ€™re sorry, but your search could not be completed." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 +msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:62 +msgid "We're sorry, you cannot access this screen at this time." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1125 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:223 +#: src/view/screens/NotFound.tsx:44 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:220 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:123 +msgid "Weโ€™re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:64 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:77 +msgid "Weโ€™re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:62 +msgid "Weโ€™re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:257 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:165 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + +#: src/screens/Deactivated.tsx:117 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:59 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:44 +msgid "What do you want to call your starter pack?" +msgstr "" + +#. Advanced search: Example of an โ€œexact phraseโ€ search +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:285 +msgid "whatโ€™s up" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 +#: src/view/com/feeds/ComposerPrompt.tsx:192 +msgid "What's up?" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 +msgid "When you tap on a check, youโ€™ll see which organizations have granted verification." +msgstr "" + +#: src/components/WhoCanReply.tsx:226 +msgid "Who can interact with this post?" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 +msgid "Who can join this group chat and how" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 +#: src/components/WhoCanReply.tsx:116 +msgid "Who can reply" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 +msgid "Who can verify?" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:80 +#: src/screens/Messages/ChatList.tsx:409 +#: src/screens/Messages/Inbox.tsx:191 +msgid "Whoops!" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:126 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 +msgid "Whoops! Trending videos failed to load." +msgstr "" + +#: src/screens/Takendown.tsx:169 +msgid "Why are you appealing?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:52 +#: src/components/moderation/ReportDialog/copy.ts:66 +msgid "Why should this conversation be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:38 +msgid "Why should this feed be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:32 +msgid "Why should this list be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:20 +msgid "Why should this livestream be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:58 +msgid "Why should this message be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:26 +msgid "Why should this post be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:44 +msgid "Why should this starter pack be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:14 +msgid "Why should this user be reviewed?" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:51 +msgid "Would you like to block this user and/or delete this conversation?" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:47 +msgid "Would you like to block this user and/or leave this conversation?" +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:110 +msgid "Would you like to save this as a draft before viewing your drafts?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1523 +msgid "Would you like to save this as a draft to edit later?" +msgstr "" + +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 +msgid "Write a post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1704 +msgid "Write post" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 +#: src/view/com/composer/Composer.tsx:1606 +msgid "Write your reply" +msgstr "" + +#: src/lib/interests.ts:75 +msgid "Writers" +msgstr "" + +#. placeholder {0}: verifyError.did +#: src/screens/Settings/components/ChangeHandleDialog.tsx:368 +msgid "Wrong DID returned from server. Received: {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 +msgid "Wrong kind of conversation" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:147 +#: src/features/liveNow/components/GoLiveDialog.tsx:142 +msgid "www.mylivestream.tv" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to affirmation/agreement GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:95 +msgid "Yes GIFs" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:105 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:107 +msgid "Yes, deactivate" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:348 +msgid "Yes, delete my account" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:712 +msgid "Yes, delete this starter pack" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 +msgid "Yes, detach" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 +msgid "Yes, hide" +msgstr "" + +#: src/screens/Deactivated.tsx:139 +msgid "Yes, reactivate my account" +msgstr "" + +#: src/components/dms/DateDivider.tsx:29 +msgid "Yesterday" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:61 +msgid "You are a trusted verifier" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:174 +msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/dms/MessageItem.tsx:720 +msgid "You are blocking {0}" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:81 +msgid "You are blocking the chat owner" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:83 +msgid "You are blocking this person" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:46 +msgid "You are creating an account on" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:108 +msgid "You are currently blocked from using the Go Live feature. To appeal this moderation decision, please submit the form below." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:400 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + +#: src/screens/SignupQueued.tsx:160 +msgid "You are in line." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:113 +#: src/features/liveNow/components/EditLiveDialog.tsx:118 +msgid "You are Live" +msgstr "" + +#: src/features/liveNow/index.tsx:371 +msgid "You are no longer live" +msgstr "" + +#: src/view/com/composer/state/video.ts:444 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:195 +msgid "You are not following anyone yet" +msgstr "" + +#: src/features/liveNow/index.tsx:315 +msgid "You are now live!" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:66 +msgid "You are verified" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:341 +msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:210 +msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 +msgid "You can adjust your interests at any time from \"Content and media\" settings." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:211 +msgid "You can also <0>temporarily deactivate your account instead. Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:60 +#: src/view/com/posts/FollowingEndOfFeed.tsx:61 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:139 +msgid "You can also download your chat data as a \"JSONL\" file. This file only includes chat messages that you have sent and does not include chat messages that you have received." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:250 +msgid "You can always opt out and delete your data" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:134 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:165 +#: src/screens/Messages/Settings.tsx:216 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150 +msgid "You can now choose to be notified when specific people post. If thereโ€™s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:154 +msgid "You can now invite friends with a link or QR code. Share the link anywhere, or let them scan the code to join you on Bluesky." +msgstr "" + +#: src/screens/Login/index.tsx:207 +#: src/screens/Login/PasswordUpdatedForm.tsx:25 +msgid "You can now sign in with your new password." +msgstr "" + +#. Toast shown when the user tries to add more images but the post gallery is already at the cap +#: src/view/com/composer/Composer.tsx:222 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1528 +msgid "You can only save drafts up to 1000 characters." +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:116 +msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:443 +msgid "You can only select one GIF at a time." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:437 +msgid "You can only select one video at a time." +msgstr "" + +#: src/screens/Deactivated.tsx:125 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:93 +msgid "You can read chat history but canโ€™t send new messages." +msgstr "" + +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:429 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 +msgid "You can update this later from your settings." +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:81 +#: src/components/dms/MessageContextMenu.tsx:129 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 +msgid "You cannot create a group chat yet." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:54 +#: src/lib/strings/errors.ts:27 +msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:103 +msgid "You don't follow any users who follow @{name}." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:589 +msgid "You don't have any lists yet." +msgstr "" + +#: src/screens/SavedFeeds.tsx:153 +#: src/screens/SavedFeeds.tsx:343 +msgid "You don't have any pinned feeds." +msgstr "" + +#: src/screens/SavedFeeds.tsx:205 +#: src/screens/SavedFeeds.tsx:381 +msgid "You don't have any saved feeds." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:312 +msgid "You got here first" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +msgid "You have been previously removed from this group and canโ€™t join it using this link." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:93 +#: src/lib/moderation/useModerationCauseDescription.ts:58 +#: src/lib/moderation/useModerationCauseDescription.ts:66 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "You have completed the Age Assurance process, but based on the results, we cannot be sure that you are 18 years of age or older. Due to laws in your region, certain features on Bluesky must remain restricted until you're able to verify you're an adult." +msgstr "" + +#: src/view/screens/Notifications.tsx:291 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:89 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:113 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:117 +msgid "You have hidden this post" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:131 +msgid "You have hidden this post." +msgstr "" + +#: src/components/BotAccountAlert.tsx:26 +msgid "You have marked this account as automated. You can remove it at any time from your account settings." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:124 +#: src/lib/moderation/useModerationCauseDescription.ts:100 +msgid "You have muted this account." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:94 +msgid "You have muted this user" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:71 +#: src/view/com/lists/MyLists.tsx:81 +msgid "You have no lists." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:102 +msgid "You have no starter packs." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:155 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:168 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "" + +#: src/components/Lists.tsx:62 +msgid "You have reached the end" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:188 +msgid "You have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1518 +msgid "You have unsaved changes to this draft, would you like to save them?" +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:105 +msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +msgid "You haven't created a starter pack yet!" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:159 +msgid "You haven't created any lists yet." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:160 +msgid "You haven't made any custom feeds yet." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:407 +msgid "You haven't muted any words or tags yet" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:138 +#: src/lib/moderation/useModerationCauseDescription.ts:128 +msgid "You hid this reply." +msgstr "" + +#. placeholder {0}: getTimeAgo(lastInitiatedAt, new Date(), {format: 'long'}) +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:240 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + +#: src/components/NewskieDialog.tsx:107 +msgid "You joined Bluesky {timeAgoString} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:104 +msgid "You joined Bluesky using a starter pack {timeAgoString} ago" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:83 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:88 +#: src/components/moderation/ModerationDetailsDialog.tsx:210 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:80 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:101 +msgid "You may only add up to 3 feeds" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:318 +msgid "You must be a chat owner to remove a member." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:177 +msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:89 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:472 +msgid "You need to allow access to your media library." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 +msgid "You need to verify your email address before you can enable email 2FA." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:349 +msgid "You own this chat" +msgstr "" + +#. placeholder {0}: currentAccount?.handle +#: src/screens/Deactivated.tsx:120 +msgid "You previously deactivated @{0}." +msgstr "" + +#: src/screens/Settings/Settings.tsx:421 +msgid "You probably want to restart the app now." +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:361 +msgid "You reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:63 +msgid "You reacted {0} to {target}" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:92 +#: src/components/dialogs/BirthDateSettings.tsx:102 +msgid "You recently changed your birthdate" +msgstr "" + +#: src/components/dms/MessageItem.tsx:806 +msgid "You replied" +msgstr "" + +#: src/components/dms/MessageItem.tsx:805 +msgid "You replied to {originalName}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:803 +msgid "You replied to yourself" +msgstr "" + +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:105 +msgid "You requested to join" +msgstr "" + +#: src/screens/Settings/Settings.tsx:306 +#: src/view/shell/desktop/LeftNav.tsx:225 +msgid "You will be signed out of all your accounts." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:140 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 +msgid "You will no longer receive notifications for this thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 +msgid "You will now receive notifications for this thread" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:101 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:129 +msgid "You wonโ€™t be able to rejoin unless youโ€™re invited." +msgstr "" + +#. When the last message in a chat was made by you. +#: src/components/dms/getMessageInfo.ts:82 +msgid "You: {message}" +msgstr "" + +#: src/screens/Signup/index.tsx:158 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:163 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "" + +#. placeholder {0}: listItemsCount - 8 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:243 +msgid "You'll follow these people and {0} others" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +msgid "You'll follow these people right away" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:314 +msgid "You'll need to go to the System Settings for Bluesky and give permission if you want to use this feature." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:172 +msgid "You'll start receiving notifications for {0}!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:281 +msgid "You'll stay updated with these feeds" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:133 +msgid "You're all set!" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:127 +msgid "You're all set! However, certain features may still be restricted until you're able to verify you're an adult." +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "Youโ€™re in control" +msgstr "" + +#: src/screens/SignupQueued.tsx:130 +msgid "You're in line" +msgstr "" + +#: src/screens/Deactivated.tsx:81 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." +msgstr "" + +#: src/components/moderation/AppealForm.tsx:73 +msgid "You've already appealed this label and it's being reviewed by our moderation team." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:128 +#: src/lib/moderation/useModerationCauseDescription.ts:109 +msgid "You've chosen to hide a word or tag within this post." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:313 +msgid "You've denied access to your contacts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:237 +msgid "You've found some people to follow" +msgstr "" + +#: src/components/FocusScope/index.tsx:112 +msgid "You've reached the end of the active content." +msgstr "" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:42 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "" + +#: src/view/com/composer/Composer.tsx:729 +msgid "You've reached the maximum number of drafts" +msgstr "" + +#: src/lib/hooks/useCleanError.ts:68 +msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 +msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." +msgstr "" + +#: src/components/FocusScope/index.tsx:88 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:455 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:459 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1221 +msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" +msgstr "" + +#: src/screens/Signup/index.tsx:199 +msgid "Your account" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:128 +msgid "Your account has been deleted, see ya! โœŒ๏ธ" +msgstr "" + +#: src/screens/Takendown.tsx:142 +msgid "Your account has been suspended" +msgstr "" + +#: src/view/com/composer/state/video.ts:463 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:836 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:837 +msgid "Your account must be at least 7 days old to create a new group chat." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:107 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Takendown.tsx:210 +msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." +msgstr "" + +#: src/screens/Takendown.tsx:150 +msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:287 +msgid "Your birth date" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:45 +msgid "Your chats have been disabled" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:70 +msgid "Your choice will be remembered for future links. You can change it at any time in settings." +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:380 +msgid "Your contact {firstAuthorLink} is on Bluesky" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:378 +msgid "Your contact {firstAuthorName} is on Bluesky" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:454 +msgid "Your contact {name}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(currentAccount?.handle || '', '@') +#: src/screens/Settings/components/ChangeHandleDialog.tsx:531 +msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." +msgstr "" + +#: src/screens/Moderation/index.tsx:231 +msgid "Your declared age is under 18. Some settings below may be disabled. If this was a mistake, you may edit your birthdate in your <0>account settings." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:252 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:256 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +msgid "Your email" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:82 +#: src/screens/Signup/state.ts:297 +#: src/screens/Signup/StepInfo/index.tsx:129 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 +msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." +msgstr "" + +#: src/state/shell/progress-guide.tsx:216 +msgid "Your first like!" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:496 +msgid "Your followers" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:41 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#. placeholder {0}: createFullHandle(subdomain, host) +#: src/screens/Settings/components/ChangeHandleDialog.tsx:247 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:182 +msgid "Your hosting provider canโ€™t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:188 +msgid "Your hosting provider is detected automatically from the username you enter." +msgstr "" + +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 +#: src/screens/Settings/ContentAndMediaSettings.tsx:94 +#: src/screens/Settings/ContentAndMediaSettings.tsx:97 +#: src/screens/Settings/InterestsSettings.tsx:49 +msgid "Your interests" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:138 +msgctxt "toast" +msgid "Your interests have been updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 +msgid "Your interests help us find what you like!" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:356 +msgid "Your location has been updated." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "Your muted words" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:72 +msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:156 +msgid "Your password must be at least 8 characters long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1225 +msgid "Your post was sent" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1222 +msgid "Your posts were sent" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:289 +msgid "Your preferred language" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 +msgid "Your profile picture" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 +msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1224 +msgid "Your reply was sent" +msgstr "" + +#. placeholder {0}: state.selectedLabeler?.creator.displayName +#: src/components/moderation/ReportDialog/index.tsx:519 +msgid "Your report will be sent to <0>{0}." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:63 +msgid "Your selected interests help us serve you content you care about." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1553 +msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 +msgid "Your username and password will be shared with <0>{host}. If you donโ€™t recognize this provider, double-check your username." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:67 +msgid "Your verifications" +msgstr "" diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 4f03316043..0b9ea0f444 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: French\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Catรฉgorie ยซย {interestsDisplayName}ย ยป (active)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(message bloquรฉ masquรฉ)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(avec un contenu intรฉgrรฉ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(message supprimรฉ)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(lien dโ€™invitation invalide ร  une discussion)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(message envoyรฉ avant votre arrivรฉe)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# heure} other {# heures}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# รฉtiquette appliquรฉe} other {# รฉtiquettes appliquรฉes}} ร  votre poste" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# รฉtiquette appliquรฉe} other {# รฉtiquettes appliquรฉes}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# compte} other {# comptes}} ont aimรฉ" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membre} other {# membres}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# nouvelle demande dโ€™ajout} other {# nouvelles demand #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {# personne a} other {# personnes ont}} rรฉagi โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (compte)" @@ -251,36 +252,13 @@ msgstr "{0} ajoutรฉยทe ร  la discussion" msgid "{0} and {1} added to chat" msgstr "{0} et {1} ajoutรฉยทeยทs ร  la discussion" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} et {1} aiment รงa" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} et {others, plural, one {{1} autre} other {{2} autres}} aiment รงa" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} et {othersLabel} aiment รงa" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} abonnements" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} vous a bloquรฉยทe" @@ -324,14 +302,6 @@ msgstr "{0} est partiยทe" msgid "{0} left the group" msgstr "{0} a quittรฉ le groupe" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} aime รงa" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} sur 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} a rรฉagi avec {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} et {memberCount, plural, one {# autre} other {# autres}} ajoutรฉยทeยทs ร  la discussion" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1} et {others, plural, one {{2} autre} other {{3} autres}} aiment รงa" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1}, et {othersLabel} aiment รงa" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} a vรฉrifiรฉ votre compte" msgid "{following} following" msgstr "{following} abonnements" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, one {post} other {posts}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} ne peut รชtre ajoutรฉยทe" @@ -698,7 +660,7 @@ msgstr "{handle} ne peut รชtre ajoutรฉยทe" msgid "{handle} can't be messaged" msgstr "{handle} ne peut รชtre contactรฉ par message" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "{handle} ne peut รชtre contactรฉยทe par message" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# รฉlรฉment non lu} other {# รฉlรฉments msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {Un contact trouvรฉ} other {# contacts trouvรฉs}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} autre} other {{1} autres}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} a rejoint Bluesky il y a {timeAgoString}" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} a rejoint Bluesky ร  lโ€™aide dโ€™un kit de dรฉmarrage il y a {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, one {# caractรจre restant} other {# caractรจres restants}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} a rรฉpondu" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} a rรฉpondu ร  {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} vous a rรฉpondu" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# demande} other {# demandes}}" msgid "{requestCount}+ requests" msgstr "+ de {requestCount} demandes" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "il y a {type}โ€ฏh" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} est un vรฉrificateur de confiance" @@ -842,13 +795,13 @@ msgstr "Vรฉrifications de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+ย {0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+โ€ฏ{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {abonnement} other {abonnements}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citation} other {citations}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} other {reposts}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, one {conservรฉ} other {conservรฉs}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "<0>{0} {likeCount, plural, one {mention} other {mentions}} ยซย Jโ€™aimeย ยป" +msgstr "<0>{0} {likeCount, plural, one {ont aimรฉ} other {ont aimรฉ}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> vous a ajoutรฉยทe" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Se connecter<1> ou <2>crรฉer un compte<3><4> pour rechercher des actualitรฉs, du sport, de la politique, et tout ce qui se passe dโ€™autre en ce moment sur Bluesky." @@ -971,7 +924,7 @@ msgstr "30 jours" msgid "7 days" msgstr "7 jours" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Une collection de fils dโ€™actu populaires que vous pouvez trouver sur Bluesky, tels que News, Booksky, Game Dev, Blacksky et Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Une erreur rรฉseau est survenue. Veuillez vรฉrifier votre connexion Inte #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Un nouveau code a รฉtรฉ envoyรฉ" msgid "A new form of verification" msgstr "Une nouvelle forme de vรฉrification" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Une rรฉponse ร  un message envoyรฉ avant votre arrivรฉe" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Une capture dโ€™รฉcran dโ€™une fenรชtre de rรฉdaction avec un nouveau bouton aux cรดtรฉs du bouton de publication appelรฉ ยซย Brouillonsย ยป, avec un effet dโ€™arc-en-ciel. En dessous, on y lit le texte dans la fenรชtre de rรฉdaction (traduit depuis lโ€™anglais) ยซย Hey, tโ€™as entendu la nouvelleย ? Bluesky a des brouillons dรฉsormaisย !!!ย ยป" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Un des comptes destinataires nโ€™est pas suivi par le compte expรฉditeur." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Accรจs demandรฉย ! Le compte propriรฉtaire du groupe examinera votre dem msgid "Accessibility" msgstr "Accessibilitรฉ" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Paramรจtres dโ€™accessibilitรฉ" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Compte masquรฉ par liste" msgid "Account options" msgstr "Options de compte" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Compte supprimรฉ de lโ€™accรจs rapide" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Les comptes avec une coche bleue รฉmaillรฉeย <0><1/>ย peuvent en vรฉrifier dโ€™autres. Ces vรฉrificateurs de confiance sont sรฉlectionnรฉs par Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Activitรฉ des autres" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Notifications dโ€™activitรฉ" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Ajouter un texte alt (facultatif)" msgid "Add another account" msgstr "Ajouter un autre compte" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Ajouter un autre post" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Ajouter un autre post au fil de discussion" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Ajouter un autre filtre de recherche" @@ -1253,7 +1213,7 @@ msgstr "Ajouter une รฉtiquette dโ€™automatisation au compte" msgid "Add emoji reaction" msgstr "Ajouter une rรฉaction รฉmoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Ajouter un filtre" @@ -1338,7 +1298,7 @@ msgstr "Ajouter ce fil ร  vos fils dโ€™actu" msgid "Add to lists" msgstr "Ajouter ร  des listes" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Ajouter aux posts conservรฉs" @@ -1400,7 +1360,7 @@ msgstr "Adulte" msgid "Adult content" msgstr "Contenu pour adultes" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Toutes" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Tous les amis ont รฉtรฉ suivis avec succรจsย !" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Toutes les langues" @@ -1491,11 +1447,6 @@ msgstr "Toutes les langues seront affichรฉes dans vos fils dโ€™actu." msgid "All of these words" msgstr "Tous ces mots" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "Tous les posts" - #: src/view/screens/Feeds.tsx:700 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." @@ -1560,7 +1511,7 @@ msgstr "Permet dโ€™accรฉder ร  vos messages privรฉs" msgid "Already have a code?" msgstr "Avez-vous dรฉjร  un codeย ?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Vous avez dรฉjร  un compteย ?" @@ -1614,7 +1565,7 @@ msgstr "Un e-mail a รฉtรฉ envoyรฉ ร  {0}. Il comprend un code de confirmation qu msgid "An error has occurred" msgstr "Une erreur sโ€™est produite" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Une erreur sโ€™est produite" @@ -1631,7 +1582,7 @@ msgstr "Il y a eu un problรจme lors de la rรฉcupรฉration des comptes suggรฉrรฉs. msgid "An error occurred while fetching the feed." msgstr "Une erreur sโ€™est produite lors de la rรฉcupรฉration du fil dโ€™actu." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Une erreur sโ€™est produite lors de la gรฉnรฉration de votre kit de dรฉmarrage. Vous voulez rรฉessayerย ?" @@ -1640,11 +1591,11 @@ msgstr "Une erreur sโ€™est produite lors de la gรฉnรฉration de votre kit de dรฉm msgid "An error occurred while hiding suggestion. {0}" msgstr "Une erreur sโ€™est produite lors du masquage de la suggestion. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Une erreur sโ€™est produite lors du chargement de la vidรฉo. Veuillez rรฉessayer plus tard." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Une erreur sโ€™est produite lors du chargement de la vidรฉo. Veuillez rรฉessayer." @@ -1684,7 +1635,7 @@ msgstr "Une erreur sโ€™est produite. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Une illustration qui montre des avatars dโ€™utilisateurยทiceยทs qui sโ€™envolent dโ€™un carnet dโ€™adresse vers lโ€™app Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Une illustration de plusieurs posts de Bluesky ร  cรดtรฉ des icรดnes de repost, de ยซย Jโ€™aimeย ยป et de commentaires" @@ -1705,17 +1656,15 @@ msgstr "Un lien dโ€™invitation permet ร  des personnes de rejoindre cette discus msgid "An issue not included in these options" msgstr "Un problรจme qui ne fait pas partie de ces options" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Un problรจme est survenu lors de la crรฉation de la discussion de groupe, veuillez rรฉessayer." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Un problรจme est survenu lors du dรฉmarrage de la discussion, veuillez rรฉessayer." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Un problรจme est survenu lors de lโ€™ouverture de la discussion" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "Un problรจme est survenu lors du dรฉmarrage de la discussion de groupe, veuillez rรฉessayer." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "Nโ€™importe quelle date" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Nโ€™importe qui" @@ -1802,7 +1749,7 @@ msgstr "Quiconque qui me suit" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Quiconque lโ€™avait ne pourra plus rejoindre la discussion ou demander ร  la rejoindre. Vous pourrez toujours en crรฉer un nouveau." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Les noms de mots de passe dโ€™application doivent comporter au moins 4 c msgid "App passwords" msgstr "Mots de passe dโ€™application" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Mots de passe dโ€™application" @@ -1891,8 +1838,8 @@ msgstr "Faire appel de cette dรฉcision" msgid "Appeal this label" msgstr "Faire appel de cette รฉtiquette" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Appliquer la pull request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archive datรฉe du {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Post archivรฉ" @@ -1980,7 +1927,7 @@ msgstr "รŠtes-vous sรปr de vouloir supprimer cela de vos fils dโ€™actuย ?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "รŠtes-vous sรปr de vouloir retirer votre demande ร  rejoindre {0}ย ?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "รŠtes-vous sรปr de vouloir abandonner ce postย ?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurores" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "Auteurยทrice" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Compte automatisรฉ" @@ -2033,7 +1985,7 @@ msgstr "Automatique" msgid "Automation label" msgstr "ร‰tiquette dโ€™automatisation" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "ร‰tiquette dโ€™automatisation" @@ -2050,12 +2002,16 @@ msgstr "Lire automatiquement les vidรฉos et les GIFs" msgid "Available" msgstr "Disponible" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "Crรฉateur dโ€™avatar" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Veuillez vรฉrifier votre e-mail avant de crรฉer un post ou de rรฉpondre." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Veuillez vรฉrifier votre e-mail avant de crรฉer un kit de dรฉmarrage." @@ -2135,10 +2091,10 @@ msgstr "Avant de pouvoir recevoir des notifications pour les posts de {name}, vo #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "Commencez la vรฉrification dโ€™รขge en complรฉtant les champs ci-dessous msgid "Beta Feature" msgstr "Fonction en bรชta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "Fonctionnalitรฉs bรชta" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Fonctionnalitรฉs bรชta activรฉes" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "Date de naissance" msgid "Birthday" msgstr "Date de naissance" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Bloquรฉ" msgid "Blocked accounts" msgstr "Comptes bloquรฉs" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Comptes bloquรฉs" @@ -2282,7 +2244,7 @@ msgstr "Les comptes bloquรฉs ne peuvent pas rรฉpondre ร  vos discussions, vous m msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Les comptes bloquรฉs ne peuvent pas rรฉpondre ร  vos discussions, vous mentionner ou interagir avec vous. Vous ne verrez pas leur contenu et ils ne pourront pas voir le vรดtre." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Le blocage nโ€™empรชche pas cet รฉtiqueteur de placer des รฉtiquettes sur votre compte." @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ne peut pas confirmer lโ€™authenticitรฉ de la date dรฉclarรฉe." @@ -2330,7 +2293,7 @@ msgstr "Bluesky est un rรฉseau ouvert oรน vous pouvez choisir votre hรฉbergeur. msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky est un rรฉseau ouvert oรน vous pouvez choisir votre propre hรฉbergeur. Si tout cela est nouveau pour vous, nous vous recommandons de rester sur le choix par dรฉfaut Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky est meilleur entre amiยทeยทsย !" @@ -2358,7 +2321,7 @@ msgstr "Conditions gรฉnรฉrales de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky stocke vos contacts sous forme de donnรฉes encodรฉes qui seront supprimรฉes immรฉdiatement si vous dรฉcidez plus tard de retirer vos contacts." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky choisira un ensemble de comptes recommandรฉs parmi les personnes de votre rรฉseau." @@ -2403,20 +2366,20 @@ msgstr "Rรฉunissez jusquโ€™ร  50 amis au sein dโ€™une seule discussion." msgid "Browse custom feeds" msgstr "Parcourir les fils dโ€™actu personnalisรฉs" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Parcourir plus de comptes" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Parcourir dโ€™autres fils dโ€™actu sur la page ยซย Explorerย ยป" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Parcourir dโ€™autres suggestions" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Parcourir dโ€™autres suggestions sur la page ยซย Explorerย ยป" @@ -2425,24 +2388,25 @@ msgstr "Parcourir dโ€™autres suggestions sur la page ยซย Explorerย ยป" msgid "Browse other feeds" msgstr "Parcourir dโ€™autres fils dโ€™actu" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Parcourir des posts qui parlent de {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Parcourir des posts avec le mot-clรฉ {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Parcourir le kit de dรฉmarrage {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Parcourir le sujet {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Parcourir le sujet {displayName}" @@ -2461,8 +2425,8 @@ msgstr "Bouton pour revenir ร  la page dโ€™accueil" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Par {0}" @@ -2473,9 +2437,9 @@ msgstr "par @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Par <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "En crรฉant un compte, vous acceptez les <0>Conditions gรฉnรฉrales et msgid "By creating an account you agree to the <0>Terms of Service." msgstr "En crรฉant un compte, vous acceptez les <0>Conditions gรฉnรฉrales." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Par vous" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Camรฉra" @@ -2534,7 +2498,7 @@ msgstr "Accรจs ร  lโ€™appareil photo nรฉcessaire" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Accรจs ร  lโ€™appareil photo nรฉcessaire" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Annuler la rรฉactivation et se dรฉconnecter" msgid "Cancel reply" msgstr "Annuler la rรฉponse" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Annuler la recherche" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Les changements ultรฉrieurs dans ce kit de dรฉmarrage ne seront pas rรฉpercutรฉs sur la liste aprรจs sa crรฉation. La liste sera une copie indรฉpendante." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Discussion en sourdine" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Discussion introuvable." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Options de discussion" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Les propriรฉtaires dโ€™une discussion ne peuvent pas en partir." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Le compte destinataire de la discussion nโ€™est pas suivi par le compte expรฉditeur." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Demandes de discussion en attente" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Demandes de discussion" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Paramรจtres de discussion" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Discussion sans sourdine" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Discussions" @@ -2837,7 +2802,7 @@ msgstr "Sรฉlectionnez une mรฉthode de vรฉrification de domaine" msgid "Choose Feeds" msgstr "Choisissez des fils dโ€™actu" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Choisir pour moi" @@ -2854,7 +2819,7 @@ msgstr "Choisissez des personnes" msgid "Choose post languages" msgstr "Choisir les langues du post" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Choisir cette couleur comme avatar" @@ -2879,7 +2844,7 @@ msgstr "Construisez votre propre page dโ€™accueilย ! Abonnez-vous ร  des fils d msgid "Choose your password" msgstr "Choisissez votre mot de passe" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Votre pseudo" @@ -2966,7 +2931,7 @@ msgstr "Cliquez ici pour voir le lien dโ€™invitation pour cette discussion de gr msgid "Click to open tag menu for {0}" msgstr "Cliquez pour ouvrir le menu de mot-clรฉ pour {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Cliquer pour rรฉessayer lโ€™envoi รฉchouรฉ du message" @@ -3003,7 +2968,7 @@ msgstr "Cliquer pour rรฉessayer lโ€™envoi รฉchouรฉ du message" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Cliquer pour rรฉessayer lโ€™envoi รฉchouรฉ du message" msgid "Close" msgstr "Fermer" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Fermer le dialogue actif" @@ -3047,7 +3012,7 @@ msgstr "Fermer la banniรจre" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Ferme lโ€™aperรงu dโ€™image" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Fermer le menu" @@ -3090,7 +3055,7 @@ msgstr "Ferme la banniรจre des demandes entrantes" msgid "Close this dialog" msgstr "Fermer ce dialogue" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Fermer la fenรชtre de bienvenue" @@ -3098,7 +3063,7 @@ msgstr "Fermer la fenรชtre de bienvenue" msgid "Closes password update alert" msgstr "Ferme la notification de mise ร  jour du mot de passe" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Ferme la fenรชtre de rรฉdaction et abandonne le brouillon de post" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Couleur" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Mode de couleur" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Bandes dessinรฉes" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Rรจgles de bonne conduite" @@ -3141,7 +3106,7 @@ msgstr "Rรจgles de bonne conduite" msgid "Complete onboarding and start using your account" msgstr "Terminez le didacticiel et commencez ร  utiliser votre compte" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Complรฉter le dรฉfi" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "ร‰crire un nouveau post" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Permet dโ€™รฉcrire des posts de {0, plural, other {# caractรจres}} maximum" @@ -3160,11 +3125,11 @@ msgstr "Permet dโ€™รฉcrire des posts de {0, plural, other {# caractรจres}} maxim msgid "Compose reply" msgstr "Rรฉdiger une rรฉponse" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Compression du GIF en coursโ€ฆ" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Compression de la vidรฉo en coursโ€ฆ" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Contacter notre รฉquipe support" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contacter le support" @@ -3253,7 +3218,7 @@ msgstr "Contenu et mรฉdias" msgid "Content and media" msgstr "Contenu et mรฉdias" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Contenu et mรฉdias" @@ -3265,10 +3230,6 @@ msgstr "Contenu bloquรฉ" msgid "Content filters" msgstr "Filtres de contenu" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Du contenu provenant des quatre coins du rรฉseau que nous pensons que vous pourriez aimer." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Langues des contenus" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Contenu promouvant ou illustrant de lโ€™automutilation" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Avertissement sur le contenu" msgid "Content warnings" msgstr "Avertissements sur le contenu" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Menu contextuel en arriรจre-plan, cliquez pour fermer le menu." @@ -3302,7 +3263,7 @@ msgstr "Menu contextuel en arriรจre-plan, cliquez pour fermer le menu." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Poursuivre le fil de discussionโ€ฆ" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continuer vers le nom du groupe" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "Discussion introuvable." msgid "Copied build version to clipboard" msgstr "Version de build copiรฉe dans le presse-papier" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Lien copiรฉ dans le presse-papier" @@ -3376,7 +3337,7 @@ msgstr "Lien copiรฉ dans le presse-papier" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Copier le mot de passe dโ€™application" msgid "Copy at:// URI" msgstr "Copier lโ€™URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copier le DID de lโ€™auteurยทice" @@ -3449,10 +3410,10 @@ msgstr "Copier le lien" msgid "Copy link to list" msgstr "Copier le lien vers la liste" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copier le lien vers le post" @@ -3470,8 +3431,8 @@ msgstr "Copier le lien vers le kit de dรฉmarrage" msgid "Copy message text" msgstr "Copier le texte du message" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copier lโ€™URI at:// du post" @@ -3490,7 +3451,7 @@ msgstr "Copier la valeur du registre TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politique sur les droits dโ€™auteur" @@ -3540,11 +3501,11 @@ msgstr "ร‰chec du suivi de tous les contacts trouvรฉs. {0}" msgid "Could not leave chat" msgstr "Impossible de se retirer de la discussion" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Impossible de partir de la discussion." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Impossible de charger le fil dโ€™actu" @@ -3562,7 +3523,7 @@ msgstr "Impossible de charger le profil" msgid "Could not mute chat" msgstr "Impossible de mettre la discussion en sourdine" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Impossible de retirer le membre." @@ -3606,8 +3567,8 @@ msgstr "vaches cochons" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crรฉer" @@ -3624,26 +3585,26 @@ msgstr "Crรฉer une liste ร  partir de ce kit de dรฉmarrage" msgid "Create a QR code for a starter pack" msgstr "Crรฉer un code QR pour un kit de dรฉmarrage" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Crรฉer un kit de dรฉmarrage" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Crรฉer un kit de dรฉmarrage" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crรฉer un kit de dรฉmarrage pour moi" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Sโ€™inscrire" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Crรฉer un compte" @@ -3666,15 +3627,15 @@ msgstr "Crรฉer un compte" msgid "Create an account without using this starter pack" msgstr "Crรฉer un compte sans utiliser ce kit de dรฉmarrage" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Crรฉer plutรดt un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Crรฉer un autre" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Crรฉer une discussion de groupe" @@ -3743,7 +3704,7 @@ msgstr "Culture" msgid "Current beta features" msgstr "Fonctionnalitรฉs bรชta disponibles" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Discussion actuelle" @@ -3770,8 +3731,8 @@ msgstr "Abus de substances dangereuses ou drogues" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Sombre" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Sombre" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Thรจme sombre" @@ -3814,7 +3775,7 @@ msgstr "Refuser cette suggestion de langue" msgid "Deepfake adult content" msgstr "Deepfake de contenu pour adultes" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Par dรฉfaut" @@ -3894,7 +3855,7 @@ msgstr "Supprimer mon compte" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Supprimer le post" @@ -3988,7 +3949,7 @@ msgstr "Une boรฎte de dialogueย : rรฉglez qui peut interagir avec ce post" msgid "Dialog: Set search filters" msgstr "Boรฎte de dialogue : dรฉfinir les filtres de recherche" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Attรฉnuรฉ" @@ -4002,7 +3963,7 @@ msgstr "Dรฉsactiver" msgid "Disable 2FA" msgstr "Dรฉsactiver le 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Dรฉsactiver les sous-titres" @@ -4045,9 +4006,9 @@ msgstr "Dรฉsactivรฉ" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Abandonner" msgid "Discard changes?" msgstr "Abandonner les changementsย ?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Abandonner le brouillonย ?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Abandonner ce postย ?" @@ -4079,6 +4040,10 @@ msgstr "Dรฉconnecter de Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Empรชcher les applis de montrer mon compte aux personnes non connectรฉes" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Dรฉcouvrir des fils dโ€™actu" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Empรชcher les applis de montrer mon compte aux personnes non connectรฉes msgid "Discover new custom feeds" msgstr "Dรฉcouvrir des fils dโ€™actu personnalisรฉs" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Dรฉcouvrir de nouveaux fils dโ€™actu" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Dรฉcouvrir de nouveaux fils dโ€™actu" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ignorer" @@ -4103,28 +4064,28 @@ msgstr "Ignorer" msgid "Dismiss banner" msgstr "Ignorer la banniรจre" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Ignorer lโ€™erreur" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Annuler le guide de dรฉmarrage" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Ignorer les centres dโ€™intรฉrรชt" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Ignorer la banniรจre du direct" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Ignorer cette section" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Ignorer cette suggestion" @@ -4142,7 +4103,7 @@ msgstr "Afficher des badges de texte alt plus grands" msgid "Display name" msgstr "Nom dโ€™affichage" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Oubliez les trolls et les contenus racoleurs. Trouvez des vrais humains et des sujets de conversations qui vous intรฉressent." @@ -4205,8 +4166,8 @@ msgstr "Pas dโ€™inquiรฉtudeย ! Tous les messages existants et vos paramรจtres so #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Pas dโ€™inquiรฉtudeย ! Tous les messages existants et vos paramรจtres so msgid "Done" msgstr "Terminรฉ" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Tapez deux fois ou appuyez longtemps sur le message pour ajouter une rรฉaction" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tapez deux fois pour fermer cette boรฎte de dialogue" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Tapez deux fois pour aimer" @@ -4328,6 +4289,7 @@ msgstr "Troubles alimentaires" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Modifier lโ€™image" msgid "Edit interaction settings" msgstr "Modifier les paramรจtres dโ€™interaction" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Modifier les centres dโ€™intรฉrรชt" @@ -4397,7 +4359,7 @@ msgstr "Modifier le statut ยซย En directย ยป" msgid "Edit moderation list" msgstr "Modifier la liste de modรฉration" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Modifier mes fils dโ€™actu" @@ -4406,6 +4368,11 @@ msgstr "Modifier mes fils dโ€™actu" msgid "Edit name" msgstr "Modifier le nom" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Modifier les notifications de {0}" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Modifier les personnes" @@ -4444,7 +4411,7 @@ msgstr "Modifier la liste de comptes" msgid "Edit who can reply" msgstr "Modifier qui peut rรฉpondre" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Modifier votre kit de dรฉmarrage" @@ -4500,8 +4467,8 @@ msgstr "Code HTML ร  intรฉgrer" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Intรฉgrer le post" @@ -4509,7 +4476,7 @@ msgstr "Intรฉgrer le post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Intรฉgrez ce post ร  votre site web. Il suffit de copier lโ€™extrait suivant et de le coller dans le code HTML de votre site web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Lecteur vidรฉo intรฉgrรฉ" @@ -4533,7 +4500,7 @@ msgstr "Activer le contenu pour adultes" msgid "Enable beta features" msgstr "Activer des fonctionnalitรฉs bรชta" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Activer les sous-titres" @@ -4550,12 +4517,13 @@ msgstr "Activer les mรฉdias externes" msgid "Enable media players for" msgstr "Activer les lecteurs mรฉdias pour" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activez les notifications pour un compte en visitant leur profil puis en appuyant sur lโ€™<0>icรดne de cloche <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Activer les alertes (notifs push)" @@ -4581,7 +4549,7 @@ msgstr "Activer les vidรฉos tendances dans votre fil Discover" msgid "Enabled" msgstr "Activรฉ" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fin du fil dโ€™actu" @@ -4608,7 +4576,7 @@ msgstr "Saisir un mot ou un mot-clรฉ" msgid "Enter code" msgstr "Entrer le code" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Passer en plein รฉcran" @@ -4650,11 +4618,11 @@ msgstr "Entrez votre pseudo et votre mot de passe" msgid "Enters full screen" msgstr "Passe en mode plein รฉcran" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Divertissement" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Erreur" @@ -4684,7 +4652,7 @@ msgstr "ร‰chec lors de lโ€™enregistrement du fichier" msgid "Error receiving captcha response." msgstr "Erreur de rรฉception de la rรฉponse captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Erreurย : {error}" @@ -4696,8 +4664,8 @@ msgstr "Tout le monde peut rรฉpondre" msgid "Everybody can reply to this post." msgstr "Tout le monde peut rรฉpondre ร  ce post." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Tout le monde" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Tout le monde" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Divers" @@ -4738,7 +4706,7 @@ msgstr "Exclure les comptes que vous suivez" msgid "Excludes users you follow" msgstr "Exclut les comptes que vous suivez" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Quitter le plein รฉcran" @@ -4755,11 +4723,11 @@ msgstr "Dรฉvelopper la liste des comptes" msgid "Expand or collapse the full post you are replying to" msgstr "Dรฉveloppe ou rรฉduit le post complet auquel vous rรฉpondez" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Dรฉvelopper le post" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Dรฉveloppe ou rรฉduit le texte du post" @@ -4802,15 +4770,15 @@ msgstr "Mรฉdias explicites ou potentiellement dรฉrangeants." msgid "Explicit sexual images." msgstr "Images sexuelles explicites." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorer" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Explorer lโ€™app" @@ -4844,7 +4812,7 @@ msgstr "Mรฉdia externe" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Les mรฉdias externes peuvent permettre ร  des sites web de collecter des informations sur vous et votre appareil. Aucune information nโ€™est envoyรฉe ou demandรฉe tant que vous nโ€™appuyez pas sur le bouton de lecture." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Prรฉfรฉrences sur les mรฉdias externes" @@ -4886,7 +4854,7 @@ msgstr "Le changement de pseudo a รฉchouรฉ. Veuillez rรฉessayer." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "ร‰chec de la copie du lien" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "ร‰chec du retrait de la discussion de groupe" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "ร‰chec du chargement des conversations" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "ร‰chec du chargement des fils dโ€™actu" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "ร‰chec du chargement des fils dโ€™actu" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "ร‰chec du chargement des paramรจtres de notification." @@ -5012,14 +4981,14 @@ msgstr "ร‰chec du chargement des prรฉfรฉrences." msgid "Failed to load profiles" msgstr "ร‰chec du chargement des profils" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "ร‰chec du chargement des fils dโ€™actu suggerรฉs" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "ร‰chec du chargement des suivis suggรฉrรฉs" @@ -5027,12 +4996,12 @@ msgstr "ร‰chec du chargement des suivis suggรฉrรฉs" msgid "Failed to lock group chat" msgstr "ร‰chec du verrouillage de la discussion de groupe" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "ร‰chec du marquage de toutes les discussions comme lues" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "ร‰chec de lโ€™annulation de votre demande. Veuillez rรฉessayer." msgid "Failed to resolve location. Please try again." msgstr "ร‰chec de la gรฉolocalisation. Veuillez rรฉessayer." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "ร‰chec de lโ€™enregistrement du brouillon" @@ -5191,7 +5160,7 @@ msgstr "Faux compte ou bot" msgid "False information about elections" msgstr "Fausses infos concernant des รฉlections" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Fil dโ€™actu" @@ -5212,7 +5181,7 @@ msgstr "Fil dโ€™actu crรฉรฉ par" msgid "Feed identifier" msgstr "Identifiant du fil dโ€™actu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu du fil dโ€™actu" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Commentaires envoyรฉs au fournisseur du fil dโ€™actu" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Fils dโ€™actu mis ร  jourย !" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Fils dโ€™actu qui pourraient vous plaire." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Rechercher des mises ร  jour" @@ -5273,34 +5238,22 @@ msgstr "Rechercher des mises ร  jour" msgid "File saved successfully!" msgstr "Fichier enregistrรฉ avec succรจsย !" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Filtrer par auteurยทice" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtrer par auteurยทice (actuellementย : {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Filtrer par mรฉdia" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Filtrer par mรฉdia (actuellementย : {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtrer des fils dโ€™actu" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtrer les rรฉsultats par langue" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrer les rรฉsultats par langue (actuellementย : {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "Filtrer les rรฉsultats par mรฉdia (actuellement : {currentLabel})" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "Filtrer cette recherche par {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtrer qui peut dรฉcider de recevoir des notifications pour votre activitรฉ" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtrer de qui vous recevrez des notifications" @@ -5352,8 +5305,8 @@ msgstr "Trouver des comptes ร  suivre" msgid "Find and invite friends" msgstr "Trouver et inviter des amis" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Rechercher des contacts" @@ -5387,7 +5340,7 @@ msgstr "Retrouver vos amis" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Retrouvez vos amis sur Bluesky en vรฉrifiant votre numรฉro de tรฉlรฉphone et en utilisant vos contacts. Nous protรฉgeons vos informations et vous avez la main sur ce qui se passe ensuite. <0>En savoir plus (en anglais)" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Retrouvez vos pairs" @@ -5429,7 +5382,7 @@ msgstr "Mettre en focus le champ de recherche" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Suivre {0}" msgid "Follow {displayName}" msgstr "Sโ€™abonner ร  {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Suivre {handle}" @@ -5453,11 +5406,11 @@ msgstr "Suivre {handle}" msgid "Follow 10 accounts" msgstr "Suivre 10 comptes" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Suivez 10 personnes pour commencer" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Suivre 7 comptes" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Accessible aux comptes abonnรฉs" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Abonnรฉยทeยทs de @{0} que vous connaissez" @@ -5544,7 +5497,7 @@ msgstr "Abonnรฉยทeยทs que vous connaissez" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Suit {0}" msgid "Following {displayName}" msgstr "Abonnรฉยทe ร  {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Suit {handle}" @@ -5578,21 +5531,21 @@ msgstr "Suit {handle}" msgid "Following feed preferences" msgstr "Prรฉfรฉrences du fil des abonnements" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Prรฉfรฉrences du fil des abonnements" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Vous suit" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Police de caractรจres" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Taille de police" @@ -5612,13 +5565,13 @@ msgstr "Pour des raisons de sรฉcuritรฉ, nous devrons envoyer un code de confirma msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Pour des raisons de sรฉcuritรฉ, vous ne pouvez consulter ceci quโ€™une seule fois. Si vous perdez ce mot de passe dโ€™application, vous devrez en gรฉnรฉrer un nouveau." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Pour une meilleure expรฉrience, nous vous recommandons dโ€™utiliser la police thรฉmatique." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Pour vous" @@ -5628,7 +5581,7 @@ msgstr "Pour vous" msgid "Forever" msgstr "Pour toujours" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Oubliez le bruit" @@ -5647,11 +5600,11 @@ msgstr "Mot de passe oubliรฉย ?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Quatre bulles de message reprรฉsentant une discussion de groupe. Premier message (en anglais dans le texte)ย : ยซย Tu as entendu la nouvelle ? Bluesky propose maintenant des discussions de groupe !ย ยป Deuxiรจme message : ยซย oh, tu dรฉconnesย ยป Troisiรจme message : ยซย Wow, 50 personnes dans une seule discussionย !ย ยป Quatriรจme message : ยซย Tu peux mรชme envoyer des liens dโ€™invitationย !ย ยป" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Libรฉrez votre fil dโ€™actu" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Provenant de" @@ -5674,7 +5627,7 @@ msgstr "Tirรฉ de <0/>" msgid "From these people" msgstr "De ces comptes" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Gรฉnรฉrer un kit de dรฉmarrage" @@ -5718,39 +5671,39 @@ msgstr "Accรฉdez en avant-premiรจre aux fonctionnalitรฉs expรฉrimentales que nou msgid "Get help" msgstr "Obtenir de lโ€™aide" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Notifier quand quelquโ€™un sโ€™inscrit avec un de vos kits de dรฉmarrage, quand votre compte est vรฉrifiรฉ, etc." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Notifier quand des comptes vous suivent." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Notifier quand des comptes aiment vos posts." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Notifier quand des comptes aiment vos reposts." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Notifier quand des comptes vous mentionnent." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Notifier quand des comptes vous citent." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Notifier quand des comptes rรฉpondent ร  vos posts." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Notifier quand des comptes republient vos posts." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Notifier quand des comptes repostent vos reposts." @@ -5762,15 +5715,15 @@ msgstr "Notifier quand des comptes vous envoient des demandes de message." msgid "Get notifications when people send you messages." msgstr "Notifier quand des comptes vous envoient des messages." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Notifier quand il y a de lโ€™activitรฉ sur des posts auxquels vous vous รชtes abonnรฉยทe." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Recevoir une notification ร  chaque nouveau post" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Recevez des notifications ร  chaque nouveau post ou nouvelle rรฉponse des comptes que vous choisissez." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Recevoir des notifications pour les nouveaux posts de {name}" @@ -5799,11 +5752,11 @@ msgstr "Cโ€™est parti" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF envoyรฉ" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Donner ร  votre profil un visage" @@ -5813,20 +5766,20 @@ msgstr "Glorification de la violence" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Passer en direct pendant" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Se rendre sur le profil de {0}" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Nom de la discussion de groupe modifiรฉ" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Paramรจtres de la discussion de groupe" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Les discussions de groupe ne peuvent avoir quโ€™un maximum de {0, plural, other {# personnes}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Le groupe est verrouillรฉ" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Nom du groupe" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Le nom du groupe est trop long. La taille maximum est de {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {# caractรจre.} other {# caractรจres.}}" @@ -6077,7 +6031,7 @@ msgstr "Activitรฉs nรฉfastes ou ร  haut risque" msgid "Harming or endangering minors" msgstr "Contenu nรฉfaste ou dangereux pour des mineurs" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Mot-clรฉ" @@ -6098,7 +6052,7 @@ msgstr "Vous avez un codeย ? <0>Cliquez ici." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "On se trompe sur votre positionย ? <0>Tapez ici pour la mettre ร  jour via GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Un souciย ?" @@ -6114,7 +6068,7 @@ msgstr "Conservรฉ par Bluesky pendant 7 jours pour รฉviter les abus, puis suppri msgid "Help" msgstr "Aide" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Aidez les gens ร  savoir que vous nโ€™รชtes pas un bot en envoyant une image ou en crรฉant un avatar." @@ -6135,12 +6089,12 @@ msgstr "Bonjourย !" msgid "Hi there!" msgstr "Bonjourย !" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Masquรฉ" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Masquรฉ par vos paramรจtres de modรฉration." @@ -6148,9 +6102,10 @@ msgstr "Masquรฉ par vos paramรจtres de modรฉration." msgid "Hidden list" msgstr "Liste cachรฉe" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Liste cachรฉe" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Cacher" @@ -6198,7 +6154,7 @@ msgstr "Cacher cette rรฉponse pour tout le monde" msgid "Hide reply for me" msgstr "Cacher cette rรฉponse pour moi" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Cacher cette carte" @@ -6218,16 +6174,18 @@ msgstr "Cacher cette rรฉponseย ?" msgid "Hide translation" msgstr "Masquer la traduction" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Cacher les tendances" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Cacher les tendancesย ?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Cacher les vidรฉos tendancesย ?" @@ -6240,7 +6198,7 @@ msgstr "Cacher la liste des comptes" msgid "Hide verification badges" msgstr "Masquer les badges de vรฉrification" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Cache ce contenu" @@ -6293,8 +6251,8 @@ msgstr "Hmm, nous nโ€™avons pas pu charger ce service de modรฉration." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Attendezย ! Nous donnons progressivement accรจs ร  la vidรฉo et vous faites toujours la queue. Revenez bientรดtย !" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "Hรฉbergeurย : {0}" msgid "Hosting provider: Bluesky" msgstr "Hรฉbergeurย : Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Populaire" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Comment รงa marcheย :" @@ -6409,6 +6363,7 @@ msgstr "Si vous mettez ร  jour votre adresse e-mail, la 2FA par e-mail sera dรฉs msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si vous souhaitez modifier votre mot de passe, nous vous enverrons un code pour vรฉrifier quโ€™il sโ€™agit bien de votre compte." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Si vous voulez restreindre qui peut recevoir des notifications concernant votre propre activitรฉ, vous pouvez le faire depuis <0>Paramรจtres โ†’ Confidentialitรฉ et sรฉcuritรฉ." @@ -6548,7 +6503,7 @@ msgstr "Dans lโ€™app., alertes, de tout le monde" msgid "In-app, push, people you follow" msgstr "Dans lโ€™app., alertes, des comptes suivis" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Boรฎte de rรฉception vide" @@ -6564,7 +6519,6 @@ msgstr "Cโ€™est videย !" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "Inclure" @@ -6573,7 +6527,7 @@ msgstr "Inclure" msgid "Include or exclude matching posts (currently: {0})" msgstr "Inclure ou exclure les posts correspondants (actuellementย : {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Inclure les posts et/ou les rรฉponses (actuellementย : {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "Inclure les posts publiรฉs depuis cette date" msgid "Include posts made until this date" msgstr "Inclure les posts publiรฉs avant cette date" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Inclure ces rรฉsultats" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Pseudo ou mot de passe incorrect" @@ -6683,7 +6633,7 @@ msgstr "Inviter {name} ร  rejoindre Bluesky" msgid "Invite code" msgstr "Code dโ€™invitation" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Code dโ€™invitation refusรฉ. Vรฉrifiez que vous lโ€™avez saisi correctement et rรฉessayez." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Il nโ€™y a que vous pour lโ€™instantย ! Ajoutez dโ€™autres personnes ร  votre kit de dรฉmarrage en effectuant une recherche ci-dessus." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID de jobย : {0}" @@ -6816,8 +6766,8 @@ msgstr "Participez ร  la conversation" msgid "Journalism" msgstr "Journalisme" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Revenir ร  lโ€™รฉdition" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "Site de KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "ร‰tiquetรฉ par {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "ร‰tiquetรฉ par lโ€™auteurยทice." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "ร‰tiquettes" @@ -6852,7 +6802,7 @@ msgstr "ร‰tiquettes ajoutรฉes" msgid "Labels applied to this post" msgstr "ร‰tiquettes appliquรฉes ร  ce post" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Les รฉtiquettes sont des annotations sur les comptes et le contenu. Elles peuvent รชtre utilisรฉes pour masquer, avertir et catรฉgoriser le rรฉseau." @@ -6864,7 +6814,7 @@ msgstr "ร‰tiquettes sur votre compte" msgid "Language" msgstr "Langue" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Paramรจtres linguistiques" @@ -6874,7 +6824,7 @@ msgstr "Paramรจtres linguistiques" msgid "Languages" msgstr "Langues" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Plus grande" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Dรฉmarrรฉ la derniรจre fois ร  lโ€™instant" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Dernier" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "En savoir plus (en anglais)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "En savoir plus" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "En savoir plus sur <0>comment utiliser la recherche avancรฉe (en anglais)." @@ -6937,8 +6887,8 @@ msgstr "En savoir plus sur lโ€™import de contacts (en anglais)" msgid "Learn more about self hosting your PDS." msgstr "En savoir plus sur lโ€™auto-hรฉbergement de PDS (en anglais)." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "En savoir plus sur la modรฉration appliquรฉe ร  ce contenu" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Apprenez-en plus sur ces changements et sur la maniรจre dont vous pouvez partager vos rรฉflexions avec nous en lisant notre article de blog (en anglais)." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "En savoir plus sur cet avertissement" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "En savoir plus dans vos <0>paramรจtres de compte." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "En savoir plus." @@ -6993,8 +6943,8 @@ msgstr "Se retirer" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Vous quittez Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Partir de cette discussion la verrouillera dรฉfinitivement et vous ne pourrez plus la rejoindre." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "A quittรฉ la discussion de groupe." @@ -7042,7 +6992,7 @@ msgstr "A quittรฉ la discussion de groupe." msgid "left to go." msgstr "devant vous dans la file." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Laissez-moi choisir" @@ -7057,7 +7007,7 @@ msgstr "Allons-yย !" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Clair" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Clair" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Aimer" @@ -7076,7 +7026,7 @@ msgstr "Aimer" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Aimer ({0, plural, one {# ont aimรฉ} other {# ont aimรฉ}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Aimer 10 posts" @@ -7085,7 +7035,7 @@ msgstr "Aimer 10 posts" msgid "Like 10 posts to train the Discover feed" msgstr "Aimez 10 posts afin de former le fil dโ€™actu ยซย Discoverย ยป" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Aimer ce fil dโ€™actu" @@ -7093,8 +7043,8 @@ msgstr "Aimer ce fil dโ€™actu" msgid "Like this labeler" msgstr "Aimer cet รฉtiqueteur" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Aimรฉ par" @@ -7111,27 +7061,45 @@ msgstr "Aimรฉ par" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Aimรฉ par {0, plural, one {# compte} other {# comptes}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Aimรฉ par {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Aimรฉ par {0} et {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Aimรฉ par {likeCount, plural, one {# compte} other {# comptes}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Posts aimรฉs" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "ยซย Jโ€™aimeย ยป de vos reposts" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Mentions ยซ Jโ€™aime ยป sur ce post" @@ -7144,7 +7112,7 @@ msgstr "Linรฉaire" msgid "Link copied to clipboard" msgstr "Lien copiรฉ dans le presse-papiers" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Liste" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste rรฉaffichรฉe" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "Direct en coursย : {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Direct masquรฉ" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Direct rรฉaffichรฉ" @@ -7279,12 +7247,12 @@ msgstr "La fonction ยซย En directย ยป est en bรชta" msgid "Live link" msgstr "Lien vers le direct" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Charger plus" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Charger dโ€™autres fils dโ€™actu suggรฉrรฉs" @@ -7292,8 +7260,8 @@ msgstr "Charger dโ€™autres fils dโ€™actu suggรฉrรฉs" msgid "Load new notifications" msgstr "Charger les nouvelles notifications" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Verrouiller cette discussion de groupe" msgid "Locked" msgstr "Verrouillรฉe" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Journaux" @@ -7387,7 +7355,7 @@ msgstr "GIFs dโ€™amour" msgid "Make adjustments to email settings for your account" msgstr "Ajuster les paramรจtres dโ€™e-mail pour votre compte" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "En faire un pour moi" @@ -7418,15 +7386,15 @@ msgstr "Manuel" msgid "Mark all as read" msgstr "Tout marquer comme lus" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marquer toutes les discussions comme lues" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Marquรฉ comme lu" msgid "Marked all as read" msgstr "Tout marquรฉ comme lus" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Toutes les discussions marquรฉes comme lues" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Toutes les demandes marquรฉes comme lues" @@ -7456,8 +7424,12 @@ msgstr "Toutes les demandes marquรฉes comme lues" msgid "Maybe later" msgstr "Peut-รชtre plus tard" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Moi" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Mรฉdia" @@ -7475,7 +7447,7 @@ msgstr "Mรฉdia stockรฉ sur un autre appareil" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Mรฉdias qui peuvent รชtre perturbants ou inappropriรฉs pour certains publics." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Membre retirรฉ de la discussion de groupe." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "comptes mentionnรฉs" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mentions" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Message supprimรฉ" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "ร‰chec de lโ€™envoi du message." @@ -7563,15 +7535,15 @@ msgstr "Le message est trop long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Options de message" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Messages" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Les messages de ce compte resteront masquรฉs tant que vous resterez bloquรฉยทe par celui-ci." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Les messages de ce compte resteront masquรฉs tant quโ€™il restera bloquรฉ." @@ -7592,7 +7564,7 @@ msgstr "Trompeur" msgid "Missing media" msgstr "Mรฉdia manquant" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Modรฉration" @@ -7636,7 +7608,7 @@ msgstr "Liste de modรฉration mise ร  jour" msgid "Moderation lists" msgstr "Listes de modรฉration" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listes de modรฉration" @@ -7645,7 +7617,7 @@ msgstr "Listes de modรฉration" msgid "moderation settings" msgstr "paramรจtres de modรฉration" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "ร‰tats de modรฉration" @@ -7786,7 +7758,7 @@ msgstr "En sourdine" msgid "Muted accounts" msgstr "Comptes masquรฉs" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Comptes masquรฉs" @@ -7867,7 +7839,6 @@ msgstr "Besoin de signaler une violation de droit dโ€™auteur, un problรจme de co msgid "Nevermind, create a handle for me" msgstr "Peu importe, crรฉez un pseudo pour moi" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nouveau" @@ -7893,11 +7864,11 @@ msgstr "{postsCount, plural, one {Nouveau post} other {Nouveaux posts}} de {firs #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nouvelle discussion" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Nouvelle fonctionnalitรฉ" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nouveaux comptes abonnรฉs" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nouvelle discussion de groupe" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nouvelle discussion de groupe" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nouvelle discussion de groupe avecย :" @@ -7966,13 +7937,13 @@ msgstr "Nouvelle liste" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Nouvelles demandes de message" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Nouveaux messages" @@ -7982,12 +7953,12 @@ msgstr "Nouveaux messages" msgid "New password" msgstr "Nouveau mot de passe" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nouveau post" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Rรฉponses les plus rรฉcentes en premier" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Actualitรฉs" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Image suivante" msgid "Night" msgstr "Nuit" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Pas de publicitรฉ, pas de traรงage intrusif, pas de piรจge ร  engagement. Bluesky respecte votre temps et votre attention." @@ -8065,6 +8036,11 @@ msgstr "Pas de publicitรฉ, pas de traรงage intrusif, pas de piรจge ร  engagement msgid "No app passwords yet" msgstr "Aucun mot de passe dโ€™application" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "Sans filtre dโ€™auteurยทrice" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "Pas de fonctionnalitรฉ bรชta pour le moment." @@ -8098,7 +8074,7 @@ msgstr "Pas dโ€™expiration dรฉfinie" msgid "No feeds found. Try searching for something else." msgstr "Aucun fil dโ€™actu nโ€™a รฉtรฉ trouvรฉ. Essayez de chercher autre chose." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Aucun compte abonnรฉ pour lโ€™instant" @@ -8116,9 +8092,15 @@ msgstr "Pas de GIFs ร  afficher actuellement. Veuillez rรฉessayer plus tard." msgid "No image" msgstr "Pas dโ€™image" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "Sans filtre de langue" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Pas encore de mentions ยซย jโ€™aimeย ยป" @@ -8135,7 +8117,12 @@ msgstr "Aucune liste" msgid "No longer following {0}" msgstr "Ne suit plus {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "Sans filtre de mรฉdia" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Aucun mรฉdia pour lโ€™instant" @@ -8143,7 +8130,7 @@ msgstr "Aucun mรฉdia pour lโ€™instant" msgid "No messages yet" msgstr "Pas encore de messages" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Libรฉrez-vous des algorithmes toxiques pleins de contenus nuisibles. Optez pour des fils dโ€™actu qui vous enrichissent au lieu de vous exploiter." @@ -8180,16 +8167,21 @@ msgstr "Personne dโ€™autre que lโ€™auteurยทice ne peut citer ce post." msgid "No one can send messages" msgstr "Personne ne peut envoyer de message" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "Sans filtre de type" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Pas de posts ici" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Aucun post pour lโ€™instant" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Pas encore de citations" @@ -8198,11 +8190,7 @@ msgstr "Pas encore de citations" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Pas de GIFs rรฉcents pour lโ€™instant. Choisissez-en un pour le voir ici." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "Aucune rรฉponse" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Aucune rรฉponse pour lโ€™instant" @@ -8217,13 +8205,13 @@ msgstr "Aucun rรฉsultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Aucun rรฉsultat" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Aucun rรฉsultat pour ยซย {0}ย ยป." @@ -8236,23 +8224,23 @@ msgstr "Aucun rรฉsultat trouvรฉ" msgid "No results found for \"{query}\"" msgstr "Aucun rรฉsultat trouvรฉ pour ยซย {query}ย ยป" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "Aucun rรฉsultat trouvรฉ pour ยซย <0>{query}ย ยป en utilisant les filtres de recherche avancรฉs." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "Aucun rรฉsultat trouvรฉ pour ยซย <0>{query}ย ยป." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Aucun rรฉsultat trouvรฉ pour votre requรชte en utilisant les filtres de recherche avancรฉs." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Aucun rรฉsultat." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Aucun kit de dรฉmarrage pour lโ€™instant" @@ -8265,7 +8253,7 @@ msgstr "Non merci" msgid "No translation received from your device." msgstr "Aucune traduction reรงue depuis votre appareil." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Aucun post vidรฉo pour lโ€™instant" @@ -8278,7 +8266,7 @@ msgstr "Personne" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Personne nโ€™a encore mis ยซย jโ€™aimeย ยป. Peut-รชtre devriez-vous ouvrir la voieย !" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Personne nโ€™a encore citรฉ. Peut-รชtre devriez-vous ouvrir la voieย !" @@ -8298,6 +8286,10 @@ msgstr "Imagerie intime sans consentement" msgid "Non-sexual Nudity" msgstr "Nuditรฉ non sexuelle" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Aucun" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Indisponible sur cette plateforme." msgid "Not followed by anyone youโ€™re following" msgstr "Pas suivi par quiconque que vous suivez" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Introuvable" @@ -8333,7 +8325,7 @@ msgstr "Note sur le partage" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Remarqueย : Bluesky est un rรฉseau ouvert et public. Ce paramรจtre limite uniquement la visibilitรฉ de votre contenu sur lโ€™application et le site Web de Bluesky, et dโ€™autres applications peuvent ne pas respecter ce paramรจtre. Votre contenu peut toujours รชtre montrรฉ aux personnes non connectรฉes par dโ€™autres applications et sites Web." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Noteย : Ce post nโ€™est visible quโ€™aux personnes connectรฉes." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Rien nโ€™a encore รฉtรฉ conservรฉ" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Paramรจtres de notification" @@ -8353,11 +8345,12 @@ msgstr "Paramรจtres de notification" msgid "Notification sounds" msgstr "Sons de notification" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Oh nonย !" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "OK" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Rรฉinitialiser le didacticiel" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Un des comptes destinataires sรฉlectionnรฉs nโ€™autorise pas les discussions de groupe." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Un des comptes destinataires sรฉlectionnรฉs vous a bloquรฉ et ne pourra pas รชtre contactรฉ." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Un ou plusieurs GIFs nโ€™ont pas de texte alt." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Une ou plusieurs images nโ€™ont pas de texte alt." @@ -8454,11 +8449,11 @@ msgstr "Un ou plusieurs des fichiers sรฉlectionnรฉs ne sont pas pris en charge." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "Un ou plusieurs des fichiers sรฉlectionnรฉs sont trop gros. La taille maximale est de {VIDEO_MAX_SIZE_MB}ย Mo." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Un ou plusieurs posts sont trop longs pour รชtre enregistrรฉs comme brouillons. La limite est {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {dโ€™un caractรจre} other {de # caractรจres}} maximum." -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Une ou plusieurs vidรฉos nโ€™ont pas de texte alt." @@ -8471,7 +8466,7 @@ msgstr "Seul {0} peut rรฉpondre." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Seulement {0} des {1} {2, plural, one {image} other {images}} ont รฉtรฉ ajoutรฉes ; la limite est de {MAX_GALLERY_IMAGES} images" @@ -8507,6 +8502,10 @@ msgstr "Seules les personnes auxquelles {0} est abonnรฉยทe peuvent rejoindre la msgid "Only people the chat owner follows can join" msgstr "Seuls les personnes abonnรฉes au compte propriรฉtaire de la discussion peuvent la rejoindre" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "Seulement les posts" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "Uniquement les posts avec des mรฉdias" @@ -8519,7 +8518,7 @@ msgstr "Uniquement les posts avec des vidรฉos" msgid "Only replies" msgstr "Uniquement les rรฉponses" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Seuls les fichiers WebVTT (.vtt) sont pris en charge" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Oups, ce profil nโ€™existe pas. Essayez dโ€™en scanner un autre." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Oupsย !" @@ -8544,7 +8543,7 @@ msgstr "Oupsย !" msgid "Open advanced search options" msgstr "Ouvrir les options de recherches avancรฉes" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Ouvre le crรฉateur dโ€™avatar" @@ -8570,21 +8569,22 @@ msgstr "Ouvrir les options de conversation" msgid "Open draft" msgstr "Ouvrir le brouillon" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Ouvre le menu latรฉral" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Ouvrir le sรฉlecteur dโ€™emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Ouvrir lโ€™รฉcran des infos sur le fil dโ€™actu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Ouvrir le menu des options de fil dโ€™actu" @@ -8627,7 +8627,7 @@ msgstr "Ouvrir la page de dรฉbogage de modรฉration" msgid "Open muted words and tags settings" msgstr "Ouvrir les paramรจtres des mots masquรฉs et mots-clรฉs" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Ouvrir le kit" @@ -8699,7 +8699,7 @@ msgstr "Ouvre des dรฉtails supplรฉmentaires pour une entrรฉe de dรฉbug" msgid "Opens alt text dialog" msgstr "Ouvre la boรฎte de dialogue sur le texte alt" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Ouvre lโ€™appareil photo de lโ€™appareil" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Ouvre le flux de crรฉation dโ€™un nouveau compte Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Ouvre le parcours pour vous connecter ร  votre compte Bluesky existant" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Mot de passe mis ร  jourย !" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Mettre en pause" @@ -8925,12 +8925,12 @@ msgstr "Mettre en pause" msgid "Pause GIF" msgstr "Mettre en pause le GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Mettre en pause la vidรฉo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personnes" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Les personnes que {ownerName} peuvent demander ร  rejoindre" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personnes suivies par @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personnes qui suivent @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Comptes suivis" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Les personnes que je suis peuvent demander ร  rejoindre" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Comptes que vous suivez" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Images destinรฉes aux adultes." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "ร‰pingler le fil dโ€™actu" @@ -9034,7 +9034,7 @@ msgstr "ร‰pingler le fil dโ€™actu" msgid "Pin to home" msgstr "Ajouter ร  lโ€™accueil" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Ajouter ร  lโ€™accueil" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "ร‰pinglรฉ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} ajoutรฉ ร  lโ€™accueil" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "ร‰pinglรฉ ร  vos fils dโ€™actu" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Lire" @@ -9076,8 +9076,8 @@ msgstr "Lire {0}" msgid "Play GIF" msgstr "Lire le GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Lancer la vidรฉo" @@ -9109,11 +9109,11 @@ msgstr "Veuillez ajouter toute รฉtiquette dโ€™avertissement de contenu pertinent 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Veuillez choisir votre pseudo." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Veuillez choisir votre mot de passe." @@ -9122,7 +9122,7 @@ msgstr "Veuillez choisir votre mot de passe." 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 "Veuillez cliquer sur le lien dans lโ€™e-mail que nous venons de vous envoyer pour vรฉrifier votre nouvelle adresse. Cโ€™est une รฉtape importante permettant de continuer ร  profiter de toutes les fonctionnalitรฉs de Bluesky." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Veuillez complรฉter le captcha de vรฉrification." @@ -9179,7 +9179,7 @@ msgstr "Entrez le code que vous avez reรงu et le nouveau mot de passe que vous s 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:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Veuillez entrer votre e-mail." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Veuillez รฉcrire votre message ci-dessousย :" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politique" @@ -9269,7 +9269,7 @@ msgstr "Politique" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Poster" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Publier une photo" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Publier une vidรฉo" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Tout poster" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Poster quand mรชme" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Post bloquรฉ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Post de @{0}" @@ -9340,7 +9340,7 @@ msgstr "Post cachรฉ par vous" msgid "Post interaction settings" msgstr "Paramรจtres dโ€™interaction du post" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Paramรจtres dโ€™interaction du post" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Post รฉpinglรฉ" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Post conservรฉ" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "Type de post" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Post dรฉsรฉpinglรฉ" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Posts" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "Posts et rรฉponses" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Les posts peuvent รชtre masquรฉs en fonction de leur texte, de leurs mot msgid "Posts hidden" msgstr "Posts cachรฉs" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Posts, rรฉponses" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Lien potentiellement trompeur" @@ -9449,20 +9451,21 @@ msgstr "Vie privรฉe" msgid "Privacy and security" msgstr "Confidentialitรฉ et sรฉcuritรฉ" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Confidentialitรฉ et sรฉcuritรฉ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Paramรจtres de confidentialitรฉ et sรฉcuritรฉ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Politique de confidentialitรฉ" msgid "Privacy violation of a minor" msgstr "Violation de la vie privรฉe dโ€™un mineur" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Traitement du GIF en coursโ€ฆ" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Traitement de la vidรฉo en coursโ€ฆ" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Listes publiques et partageables de comptes ร  masquer ou ร  bloquer." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publier le post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publier les posts" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publier les rรฉponses" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publier la rรฉponse" @@ -9599,12 +9602,12 @@ msgstr "Citations dรฉsactivรฉes" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citations" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citations de ce post" @@ -9647,7 +9650,7 @@ msgstr "Rรฉactiver votre compte" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Lire {0, plural, one {une autre rรฉponse} other {# autres rรฉponses}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Dรฉcouvrez-en plus sur les filtres de recherche avancรฉs (en anglais)" @@ -9657,11 +9660,11 @@ msgstr "Dรฉcouvrez-en plus sur les filtres de recherche avancรฉs (en anglais)" msgid "Read blog post" msgstr "Lire lโ€™article de blog (en anglais)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Lire moins" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Lire plus" @@ -9687,11 +9690,11 @@ msgstr "Lire la politique de confidentialitรฉ de Bluesky (en anglais)" msgid "Read the Bluesky Terms of Service" msgstr "Lire les conditions gรฉnรฉrales de Bluesky (en anglais)" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Des vraies conversations." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Des vrais humains." @@ -9721,10 +9724,6 @@ msgstr "Recherches rรฉcentes" msgid "Recently used" msgstr "Utilisรฉ rรฉcemment" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recommandรฉ" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Se reconnecter" @@ -9748,7 +9747,7 @@ msgstr "Dรฉcliner la demande de discussion" msgid "Reject join request" msgstr "Rejeter la demande ร  rejoindre" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Rafraรฎchir les conversations" @@ -9766,7 +9765,7 @@ msgstr "Rafraรฎchir les conversations" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Supprimer" @@ -9792,8 +9791,8 @@ msgstr "Retirer {displayName}ย ?" msgid "Remove {q}" msgstr "Supprimer {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Supprimer compte" @@ -9845,15 +9844,15 @@ msgstr "Supprimer le filtre" msgid "Remove from chat" msgstr "Supprimer de la discussion" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Supprimer de mes fils dโ€™actu" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Supprimer de lโ€™accรจs rapideย ?" @@ -9862,7 +9861,7 @@ msgstr "Supprimer de lโ€™accรจs rapideย ?" msgid "Remove from saved feeds" msgstr "Supprimer des fils dโ€™actu enregistrรฉs" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Retirer des posts conservรฉs" @@ -9880,8 +9879,8 @@ msgstr "Supprimer lโ€™image" msgid "Remove live status" msgstr "Supprimer le statut ยซย En directย ยป" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Retirer le membre" @@ -9943,7 +9942,7 @@ msgstr "Supprimรฉ de la liste" msgid "Removed from saved feeds" msgstr "Supprimรฉ de vos fils dโ€™actu enregistrรฉs" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Retirรฉ des posts conservรฉs" @@ -9952,7 +9951,7 @@ msgstr "Retirรฉ des posts conservรฉs" msgid "Removed from starter pack" msgstr "Compte retirรฉ du kit de dรฉmarrage" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "en rรฉponse ร  vous" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Message de {senderName} ร  lโ€™origine de la rรฉponse, appuyer pour lโ€™atteindre" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Le message concernรฉ a รฉtรฉ envoyรฉ avant votre arrivรฉe" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Message ร  lโ€™origine de la rรฉponse, appuyer pour lโ€™atteindre" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Rรฉponses" @@ -10037,7 +10037,7 @@ msgstr "Les rรฉponses ร  ce post sont dรฉsactivรฉes." msgid "Reply" msgstr "Rรฉpondre" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Rรฉpondre" @@ -10098,8 +10098,8 @@ msgstr "Signaler la conversation" msgid "Report dialog" msgstr "Fenรชtre de dialogue de signalement" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Signaler le fil dโ€™actu" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Republiรฉ par vous" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Reposts" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Reposts de ce post" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Reposts de vos reposts" @@ -10253,7 +10253,7 @@ msgstr "Demandรฉe" msgid "Requests" msgstr "Demandes" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Rรฉessaye la derniรจre action, qui a รฉchouรฉ" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Retour ร  la page dโ€™accueil" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Retour ร  la page prรฉcรฉdente" @@ -10446,27 +10446,27 @@ msgstr "Enregistrer la date de naissance" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Enregistrer les modifications" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Enregistrer les modificationsย ?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Enregistrer le brouillon" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Enregistrer le brouillonย ?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Enregistrer le code QR" msgid "Save these options for next time" msgstr "Enregistrer ces choix pour la prochaine fois" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Enregistrer dans mes fils dโ€™actu" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Fils dโ€™actu enregistrรฉs" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Posts conservรฉs" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Enregistrรฉ ร  mes fils dโ€™actu" @@ -10520,8 +10520,8 @@ msgstr "Enregistrรฉ ร  mes fils dโ€™actu" msgid "Say hello!" msgstr "Dites bonjourย !" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Dites bonjour ร  quelquโ€™un" @@ -10535,7 +10535,7 @@ msgstr "Scanner" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Scanner un QR code" @@ -10543,15 +10543,15 @@ msgstr "Scanner un QR code" msgid "Science" msgstr "Science" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Dรฉfiler ร  gauche" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Dรฉfiler ร  droite" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Faire dรฉfiler jusquโ€™au message ร  lโ€™origine de cette rรฉponse" @@ -10564,8 +10564,8 @@ msgstr "Remonter en haut" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Recherche" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Rechercher dans les posts de @{0}" @@ -10612,11 +10612,11 @@ msgstr "Rechercher {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Recherchez des fils dโ€™actu que vous voulez suggรฉrer ร  dโ€™autres personnes." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Rechercher plus de comptes" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Rechercher plus de fils dโ€™actu" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Rechercher des GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "La recherche est indisponible en ce moment sans connexion ร  un compte" @@ -10707,17 +10707,22 @@ msgstr "Voir les posts #{tag} de ce compte" msgid "See jobs at Bluesky" msgstr "Voir les offres dโ€™emploi chez Bluesky (en anglais)" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Voir plus" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Voir plus de profils suggรฉrรฉs" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "Voir plus de tendances" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Voir les comptes suggรฉrรฉs" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Curseur de recherche. Utiliser les touches de flรจches pour avancer ou reculer, et Espace pour la lecture/pause." #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Sรฉlectionner la catรฉgorie ยซย {interestsDisplayName}ย ยป" @@ -10748,7 +10753,7 @@ msgstr "Sรฉlectionner {0}" msgid "Select {langName}" msgstr "Sรฉlectionner {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Sรฉlectionner une couleur" @@ -10764,11 +10769,11 @@ msgstr "Sรฉlectionner un compte" msgid "Select an app language" msgstr "Sรฉlectionner une langue pour lโ€™appli." -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Sรฉlectionner un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Sรฉlectionner un emoji" @@ -10780,12 +10785,13 @@ msgstr "Sรฉlectionner une option" msgid "Select app language" msgstr "Sรฉlectionner la langue de lโ€™appli." -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Sรฉlectionnez le fichier de sous-titres (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Sรฉlectionner la discussion ยซย {name}ย ยป" @@ -10826,7 +10832,7 @@ msgstr "Sรฉlectionner le GIF" msgid "Select GIF \"{0}\"" msgstr "Sรฉlectionner le GIF ยซย {0}ย ยป" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Sรฉlectionner les membres du groupe" @@ -10864,7 +10870,7 @@ msgstr "Sรฉlectionner la langue principale" msgid "Select telephone code" msgstr "Sรฉlectionner un code tรฉlรฉphonique" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Sรฉlectionner lโ€™emoji {emojiName} comme avatar" @@ -10945,7 +10951,8 @@ msgstr "Envoyer le message" msgid "Send post to {name}" msgstr "Envoyer le post ร  {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Envoyer le post ร โ€ฆ" @@ -10963,11 +10970,11 @@ msgstr "Envoyer le message depuis votre tรฉlรฉphone" msgid "Send verification email" msgstr "Envoyer lโ€™e-mail de vรฉrification" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "Envoyer par message privรฉ" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "Sรฉlectionner votre hรฉbergeur manuellement" msgid "Sets email for password reset" msgstr "Dรฉfinit lโ€™e-mail pour la rรฉinitialisation du mot de passe" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Paramรจtres" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Paramรจtres des notifications dโ€™activitรฉ dโ€™autres comptes" @@ -11036,49 +11043,49 @@ msgstr "Paramรจtres des notifications dโ€™activitรฉ dโ€™autres comptes" msgid "Settings for allowing others to be notified of your posts" msgstr "Paramรจtres autorisant les autres ร  รชtre notifiรฉ de vos posts" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Paramรจtres des notifications ยซย Jโ€™aimeย ยป" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Paramรจtres des notifications de mentions" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Paramรจtres des notifications de nouveaux comptes abonnรฉs" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Paramรจtres des notifications diverses" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Paramรจtres des notifications ยซย Jโ€™aimeย ยป de vos reposts" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Paramรจtres des notifications de nouvelles demandes de messages" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Paramรจtres des notifications de nouveaux messages" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Paramรจtres des notifications des reposts de vos reposts" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Paramรจtres des notifications de citations" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Paramรจtres des notifications de rรฉponses" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Paramรจtres des notifications de reposts" @@ -11115,8 +11122,8 @@ msgstr "Partager votre tranche dโ€™รขge" msgid "Share anyway" msgstr "Partager quand mรชme" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Partager le DID de lโ€™auteur" @@ -11127,7 +11134,7 @@ msgstr "Partager le DID de lโ€™auteur" msgid "Share feedback" msgstr "Donner son avis" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialogue pour le partage dโ€™un lien" msgid "Share my profile" msgstr "Partager mon profil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Partager lโ€™URI at:// du post" @@ -11169,12 +11176,12 @@ msgstr "Partager le profil" msgid "Share QR code" msgstr "Partager le code QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Partager ce fil dโ€™actu" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Partager cette recherche" @@ -11186,8 +11193,8 @@ msgstr "Partagez ce kit de dรฉmarrage" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Partagez ce kit de dรฉmarrage et aidez les gens ร  rejoindre votre communautรฉ sur Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Partager vos contacts pour retrouver des amis" msgid "Share your thoughtsโ€ฆ" msgstr "Partagez-nous ce que vous avez sur le cล“urโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Testeur de prรฉfรฉrences partagรฉes" @@ -11219,7 +11226,7 @@ msgstr "Partager votre tranche dโ€™รขge ne rรฉvรจle que celle associรฉe ร  votre msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Partager votre tranche dโ€™รขge ne rรฉvรจle que celle associรฉe ร  votre compte Google โ€” par exemple, le fait que vous ayez au moins 18 ans. <0>Votre รขge exact et votre date de naissance ne nous seront jamais partagรฉes, et cette donnรฉe reste sur votre appareil. En contrepartie de quoi, cela nโ€™activera votre accรจs que sur cet appareil. Vous pouvez sinon <1>passer par notre partenaire de confiance KWS pour complรฉter votre vรฉrification dโ€™รขge et activer votre accรจs quelle que soit la plateforme." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Afficher" msgid "Show alt text" msgstr "Voir le texte alt" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Afficher quand mรชme" @@ -11274,8 +11281,8 @@ msgstr "Afficher quand mรชme la liste" msgid "Show lists of users to select from" msgstr "Afficher des listes au sein desquels choisir" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Voir plus" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Afficher lโ€™avertissement et filtrer des fils dโ€™actu" msgid "Show when youโ€™re live" msgstr "Rendez visibles vos streams" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Affiche plus dโ€™informations sur la date de crรฉation de ce post" @@ -11341,15 +11348,15 @@ msgstr "Affiche plus dโ€™informations sur la date de crรฉation de ce post" msgid "Shows other accounts you can switch to" msgstr "Affiche les autres comptes vers lesquels vous pouvez basculer" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Affiche le contenu" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Affiche le contenu" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Se dรฉconnecterย ?" msgid "Sign up" msgstr "Sโ€™inscrire" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Connexion requise" @@ -11469,7 +11476,7 @@ msgstr "Ignorer" msgid "Skip contact sharing and continue to the app" msgstr "Sauter le partage de contacts et continuer vers lโ€™app" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Ignorer les posts videsย ?" @@ -11487,7 +11494,7 @@ msgstr "Sauter ร  lโ€™รฉtape dโ€™aprรจs" msgid "slide" msgstr "diapo" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Plus petite" @@ -11499,7 +11506,7 @@ msgstr "Repousse le rappel" msgid "So many thoughts, you should post one" msgstr "Tellement dโ€™idรฉes que รงa vaudrait le coup dโ€™en publier une" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Un rรฉseau oรน vous avez la main." @@ -11520,7 +11527,7 @@ msgstr "Certains services de modรฉration de votre liste ne sont plus disponibles msgid "Some of your verifications are invalid." msgstr "Certaines de vos vรฉrifications ne sont pas valides." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Quelques autres fils dโ€™actu qui pourraient vous intรฉresser" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Quelquโ€™un a quittรฉ le groupe" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Quelquโ€™un a rรฉagi avec {0}" @@ -11554,7 +11561,7 @@ msgstr "Quelquโ€™un a rรฉagi avec {0}" msgid "Someone reacted {0} to {target}" msgstr "Quelquโ€™un a rรฉagi {0} ร  {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Quelquโ€™un a rรฉpondu" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Quelque chose nโ€™a pas marchรฉ, veuillez rรฉessayer" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Quelque chose nโ€™a pas marchรฉ. Veuillez rรฉessayer plus tard." msgid "Something went wrong. Please try again." msgstr "Quelque chose nโ€™a pas marchรฉ. Veuillez rรฉessayer." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Un problรจmeย ? Dites-nous tout." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam, comportements inauthentiques ou dรฉceptifs" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sports" @@ -11668,7 +11675,7 @@ msgstr "Dรฉmarrez une conversation, et elle apparaรฎtra ici." msgid "Start a group chat" msgstr "Dรฉmarrer une discussion de groupe" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Dรฉmarrer une nouvelle discussion" @@ -11682,17 +11689,17 @@ msgstr "Commencer ร  ajouter des personnes" msgid "Start adding people!" msgstr "Commencez ร  ajouter des personnesย !" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Dรฉmarrer la discussion" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Dรฉmarrer une discussion avec {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Kit de dรฉmarrage" @@ -11715,12 +11722,16 @@ msgstr "Kit de dรฉmarrage par vous" msgid "Starter pack is invalid" msgstr "Le kit de dรฉmarrage nโ€™est pas valide" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Kits de dรฉmarrage" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Kits de dรฉmarrage" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Les kits de dรฉmarrage vous permettent de partager facilement vos fils dโ€™actu et vos personnes prรฉfรฉrรฉes avec vos amiยทeยทs." @@ -11728,7 +11739,7 @@ msgstr "Les kits de dรฉmarrage vous permettent de partager facilement vos fils d msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Les kits de dรฉmarrage vous permettent de partager vos fils dโ€™actu prรฉfรฉrรฉs et vos personnes favorites." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Les kits de dรฉmarrage vous permettent de partager vos fils dโ€™actu et vos personnes prรฉfรฉrรฉes avec vos amiยทeยทs." @@ -11742,7 +11753,7 @@ msgstr "ร‰tat du service" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "ร‰tape {0} sur {1}" @@ -11754,7 +11765,7 @@ msgstr "Stockage effacรฉ, vous devez redรฉmarrer lโ€™application maintenant." msgid "Stored as part of a secure code for matching with others" msgstr "Stockรฉ sous forme de code sรฉcurisรฉ (hashรฉ) pour retrouver dโ€™autres comptes" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Historique" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Sโ€™abonner ร  {publicationTitle} sur {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonnez-vous ร  @{0} pour utiliser ces รฉtiquettesย :" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Vรฉrification rรฉussie" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Suggestion" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Comptes suggรฉrรฉs" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Suggรฉrรฉs pour vous" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Coucher du soleil" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Cette fonctionnalitรฉ nโ€™a pas encore รฉtรฉ activรฉe dans votre paysย ! Veuillez revenir plus tard." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Les comptes suspendus ne peuvent pas participer ร  une discussion de groupe." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Les comptes suspendus ne peuvent pas participer ร  une discussion." @@ -11921,8 +11934,8 @@ msgstr "Basculer vers {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Systรจme" @@ -11945,7 +11958,7 @@ msgstr "Passez ร  une conversation privรฉe." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Appuyez ci-dessous pour autoriser Bluesky ร  accรฉder ร  votre position GPS. Nous lโ€™utiliserons pour dรฉterminer plus prรฉcisรฉment quels contenus et quelles fonctionnalitรฉs sont disponibles dans votre rรฉgion." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tapez ici pour plus de dรฉtails" @@ -11976,7 +11989,7 @@ msgstr "Taper pour fermer le menu contextuel" msgid "Tap to copy this invite link" msgstr "Appuyez pour copier ce lien dโ€™invitation" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Appuyer pour annuler" @@ -12003,7 +12016,7 @@ msgstr "Appuyer pour supprimer votre rรฉaction {0}" msgid "Tap to request access to join this group chat" msgstr "Appuyez pour demander l'accรจs ร  cette discussion de groupe" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Appuyer pour rรฉessayer" @@ -12016,7 +12029,7 @@ msgstr "Appuyer sur afficher {0} rรฉactions" msgid "Tap to show all reactions" msgstr "Appuyer pour afficher toutes les rรฉactions" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Appuyer pour voir les rรฉactions" @@ -12032,7 +12045,7 @@ msgstr "Tรขche accomplie - 10 abonnementsย !" msgid "Task complete - 10 likes!" msgstr "Tรขche accomplie - 10 posts aimรฉsย !" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Apprendre ร  notre algorithme ce que vous aimez" @@ -12060,7 +12073,7 @@ msgstr "Conditions gรฉnรฉrales" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Ce kit de dรฉmarrage nโ€™a pas pu รชtre trouvรฉ." msgid "That username is already taken" msgstr "Ce pseudo est dรฉjร  utilisรฉ" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Et voilร , cโ€™est toutย !" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Cโ€™est toutย !" @@ -12216,7 +12229,7 @@ msgstr "Le serveur semble rencontrer des problรจmes. Veuillez rรฉessayer ultรฉri msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Le kit de dรฉmarrage que vous essayez de consulter nโ€™est pas valide. Vous pouvez supprimer ce kit de dรฉmarrage ร  la place." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Le sujet du menu contextuel" @@ -12238,7 +12251,7 @@ msgstr "Le code de vรฉrification que vous avez fourni nโ€™est pas valide. Assure msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Le fournisseur de vรฉrification nโ€™a pas rรฉussi ร  envoyer de code ร  votre numรฉro de tรฉlรฉphone. Vรฉrifiez votre numรฉro et rรฉessayez." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Thรจme" @@ -12266,7 +12279,7 @@ msgstr "Un problรจme est survenu lors du chargement des GIFs. Vรฉrifiez votre co msgid "There was a problem with your internet connection, please try again" msgstr "Il y a un problรจme avec votre connexion Internet, veuillez rรฉessayer" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Il y a un problรจme avec votre connexion Internet, veuillez rรฉessayer" msgid "There was an issue contacting the server" msgstr "Il y a eu un problรจme de connexion au serveur" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Il y a eu un problรจme de connexion au serveur, vรฉrifiez votre connexion Internet et rรฉessayez." @@ -12283,8 +12296,8 @@ msgstr "Il y a eu un problรจme de connexion au serveur, vรฉrifiez votre connexio msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Il y a eu un problรจme lors de la rรฉcupรฉration des notifications. Appuyez ici pour rรฉessayer." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Il y a eu un problรจme lors de la rรฉcupรฉration des posts. Appuyez ici pour rรฉessayer." @@ -12309,7 +12322,7 @@ msgstr "Il y a eu un problรจme lors de la rรฉcupรฉration de vos informations de msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Il y a eu un problรจme lors de la suppression de ce fil dโ€™actu. Vรฉrifiez votre connexion internet et rรฉessayez." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Ces paramรจtres sโ€™appliquent seulement pour votre fil dโ€™abonnements. msgid "These URLs" msgstr "Ces URLs" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Ce compte est propriรฉtaire de la discussion" @@ -12392,7 +12405,7 @@ msgstr "Ce compte est propriรฉtaire de la discussion" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "Ce compte ne pourra pas revenir ร  moins quโ€™il soit ร  nouveau rรฉinvitรฉ." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Ce {screenDescription} a รฉtรฉ signalรฉย :" @@ -12408,7 +12421,7 @@ msgstr "Ce compte a รฉtรฉ marquรฉ comme automatisรฉ par la personne qui le contr msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Ce compte a une ou plusieurs tentatives de vรฉrifications, mais nโ€™est pas actuellement vรฉrifiรฉ." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Ce compte a demandรฉ aux personnes de se connecter pour voir son profil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Ce fil dโ€™actu est videย ! Vous devriez peut-รชtre suivre plus de comptes ou ajuster vos paramรจtres de langue." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Ce fil dโ€™actu est vide." @@ -12554,7 +12567,7 @@ msgstr "Ce groupe est verrouillรฉ par une dรฉcision de modรฉration concernant so msgid "This handle is reserved. Please try a different one." msgstr "Ce pseudo est rรฉservรฉ. Veuillez utiliser un pseudo diffรฉrent." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Impossible dโ€™utiliser cette image. Essayez avec un autre format, comme .jpg ou .png." @@ -12596,7 +12609,7 @@ msgstr "Cette รฉtiquette a รฉtรฉ apposรฉe par vous." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Cette รฉtiquette a รฉtรฉ appliquรฉe sur lโ€™intรฉgralitรฉ du compte et apparaรฎtra sur tous les posts." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Cet รฉtiqueteur nโ€™a pas dรฉclarรฉ les รฉtiquettes quโ€™il publie et peut ne pas รชtre actif." @@ -12621,13 +12634,13 @@ msgstr "Cette liste est vide." msgid "This message is hidden" msgstr "Ce message est cachรฉ" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Ce message est cachรฉ car vous รชtes bloquรฉยทe par ce compte." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Ce message est cachรฉ car vous avez bloquรฉ ce compte." @@ -12641,7 +12654,7 @@ msgstr "Cette personne vous a bloquรฉe" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Ce post dรฉclare avoir รฉtรฉ crรฉรฉ le <0>{0}, mais a รฉtรฉ vu pour la premiรจre fois par Bluesky le <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Ce post dรฉclare avoir รฉtรฉ crรฉรฉ le <0>{0}, mais a รฉtรฉ vu pour msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Ce post a un type inconnu de restriction de fil. Votre appli. nโ€™est peut-รชtre pas ร  jour." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Ce post nโ€™est visible quโ€™aux personnes connectรฉes." @@ -12661,7 +12674,7 @@ msgstr "Ce post a รฉtรฉ supprimรฉ par son auteurยทice" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ce post sera masquรฉ des fils dโ€™actu et des fils de discussion. Cโ€™est irrรฉversible." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Lโ€™auteurยทice de ce post a dรฉsactivรฉ les citations." @@ -12698,11 +12711,12 @@ msgstr "Cela ne devrait prendre que quelques minutes." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Ce compte nโ€™a pas de nom dโ€™affichage, et ne peut donc pas รชtre vรฉrifiรฉ." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Ce compte nโ€™a pas dโ€™abonnรฉยทeยทs." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Ce compte vous a bloquรฉ et ne peut pas รชtre contactรฉ." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Ce compte vous a bloquรฉ. Vous ne pouvez pas voir son contenu." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Ce compte a dรฉsactivรฉ les discussions et ne peut pas รชtre contactรฉ." @@ -12733,11 +12748,11 @@ msgstr "Ce compte est inclus dans la liste <0>{0} que vous avez masquรฉe." msgid "This user is new here. Press for more info about when they joined." msgstr "Ce compte est nouveau ici. Appuyez pour obtenir plus dโ€™informations sur sa date dโ€™arrivรฉe." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Ce compte ne suit personne." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Cette vidรฉo ne peut pas รชtre lue sur votre appareil. Votre navigateur ou votre systรจme nโ€™a peut-รชtre pas le codec nรฉcessaire (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Cela supprimera dรฉfinitivement votre compte Bluesky <0>{currentHandle} et toutes les donnรฉes qui y sont associรฉes. Notez que cela affectera aussi tous les services <1>AT Protocol que vous utilisez avec ce compte." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Cela supprimera @{0} de la liste dโ€™accรจs rapide." @@ -12786,7 +12801,7 @@ msgstr "Prรฉfรฉrences des fils de discussion" msgid "Threaded" msgstr "Sous forme de fils" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Prรฉfรฉrences des fils de discussion" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Trop de contacts โ€”ย vous avez dรฉpassรฉ le nombre de contacts que vous pouvez importer pour trouver vos amis" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Meilleur" @@ -12858,7 +12873,7 @@ msgstr "Meilleur" msgid "Top replies first" msgstr "Meilleures rรฉponses en premier" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Sujet" @@ -12893,7 +12908,9 @@ msgstr "La traduction vers la mรชme langue nโ€™est pas disponible sur votre appa msgid "Tree view" msgstr "Vue arborescente" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendances" @@ -12902,13 +12919,15 @@ msgstr "Tendances" msgid "Trending GIFs" msgstr "GIFs tendance" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Paramรจtres des tendances" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Vidรฉos tendances" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "La confiance รฉmerge de relations, de communautรฉs et dโ€™un contexte partagรฉ, donc nous dรฉsignons รฉgalement des <0>vรฉrificateurs de confianceย : des organisations qui peuvent vรฉrifier des comptes directement." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Essayez un autre terme de recherche ou supprimez certains filtres." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Essayez un autre terme de recherche." @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Impossible de rรฉcupรฉrer les demandes ร  rejoindre." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Impossible de trouver un des comptes destinataires sรฉlectionnรฉs." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Impossible de trouver le compte destinataire sรฉlectionnรฉ." @@ -13024,12 +13045,12 @@ msgstr "Indisponible" msgid "Unavailable feed information" msgstr "Informations sur le fil dโ€™actu indisponible" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Dรฉbloquer le compteย ?" msgid "Unblock list" msgstr "Dรฉbloquer la liste" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Se dรฉsabonner de {0}" msgid "Unfollow account" msgstr "Se dรฉsabonner du compte" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Se dรฉsabonne du compte" @@ -13132,7 +13153,7 @@ msgstr "Contenu pour adultes non-รฉtiquetรฉ" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Non-รฉtiquetรฉ, abusif ou sans consentement" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Retirer la mention ยซย Jโ€™aimeย ยป" @@ -13192,7 +13213,7 @@ msgstr "Enlever la sourdine de cette discussion de groupe" msgid "Unmute thread" msgstr "Rรฉafficher ce fil de discussion" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Rรฉtablir le son de la vidรฉo" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Dรฉsรฉpingler" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Dรฉsรฉpingler le fil dโ€™actu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Dรฉsรฉpingler de lโ€™accueil" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Supprimer la liste de modรฉration" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} retirรฉ de la page dโ€™accueil" @@ -13258,11 +13279,11 @@ msgstr "Se dรฉsabonner de cet รฉtiqueteur" msgid "Unsubscribed from list" msgstr "Dรฉsabonnรฉ de la liste" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Contenu ร  coller non supportรฉ" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Type de vidรฉo non pris en chargeย : {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "La mise ร  jour de la visibilitรฉ de la rรฉponse a รฉchouรฉ" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Envoyer plutรดt une photo" @@ -13355,7 +13376,7 @@ msgstr "Envoyer ร  partir de fichiers" msgid "Upload from Library" msgstr "Envoyer ร  partir de la photothรจque" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Envoi du GIF en coursโ€ฆ" @@ -13369,7 +13390,7 @@ msgstr "Envoi des images en coursโ€ฆ" msgid "Uploading link thumbnail..." msgstr "Envoi de la miniature du lien en coursโ€ฆ" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Envoi de la vidรฉo en coursโ€ฆ" @@ -13408,7 +13429,7 @@ msgstr "Utilisez-le pour vous connecter ร  lโ€™autre application avec votre pseu msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Utilisez lโ€™adresse e-mail de votre compte, ou une autre adresse e-mail vรฉritable que vous contrรดlez, au cas oรน KWS ou Bluesky auraient besoin de vous contacter." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "compte" @@ -13510,7 +13531,7 @@ msgstr "La vรฉrification a รฉchouรฉ, veuillez rรฉessayer." msgid "Verification settings" msgstr "Paramรจtres de vรฉrification" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Paramรจtres de vรฉrification" @@ -13618,34 +13639,34 @@ msgstr "Vidรฉo" msgid "Video failed to process" msgstr "Le traitement de la vidรฉo a รฉchouรฉ" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Fil de vidรฉos" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Vidรฉo de {0}ย : {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Vidรฉo de {0}. Tapez pour lire ou mettre en pause la vidรฉo" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Jeux vidรฉo" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Vidรฉo en pause" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Vidรฉo en cours de lecture" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Vidรฉo non trouvรฉe." @@ -13653,7 +13674,7 @@ msgstr "Vidรฉo non trouvรฉe." msgid "Video settings" msgstr "Paramรจtres vidรฉo" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Vidรฉo envoyรฉe" @@ -13662,17 +13683,17 @@ msgstr "Vidรฉo envoyรฉe" msgid "Video: {0}" msgstr "Vidรฉoย : {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Vidรฉos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Les vidรฉos doivent durer moins de 3 minutes." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Voir" @@ -13691,9 +13712,9 @@ msgstr "Voir lโ€™avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Voir le profil de {0}" @@ -13724,13 +13745,13 @@ msgstr "Voir lโ€™article de blog (en anglais) pour plus de dรฉtails" msgid "View debug entry" msgstr "Afficher lโ€™entrรฉe de dรฉbogage" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Voir les dรฉtails" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Voir le fil de discussion entier" @@ -13750,18 +13771,18 @@ msgstr "Voir les demandes entrantes pour rejoindre cette discussion de groupe" msgid "View information about these labels" msgstr "Voir les informations sur ces รฉtiquettes" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Voir plus" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Voir plus de vidรฉos tendances" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Voir le post" @@ -13798,15 +13819,15 @@ msgstr "Voir le lien dโ€™invitation pour cette discussion de groupe" msgid "View the labeling service provided by @{0}" msgstr "Voir le service dโ€™รฉtiquetage fourni par @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Voir les vรฉrifications de ce compte" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Voir les comptes qui ont aimรฉ ce fil dโ€™actu" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Voir la vidรฉo" @@ -13831,7 +13852,7 @@ msgstr "Consulter vos listes de modรฉration" msgid "View your muted accounts" msgstr "Consulter vos comptes masquรฉs" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Voir vos vรฉrifications" @@ -13840,7 +13861,7 @@ msgstr "Voir vos vรฉrifications" msgid "Views full image" msgstr "Affiche lโ€™image complรจte" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Affiche la vidรฉo en mode immersif" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Nous avons des soucis de rรฉseau, rรฉessayez" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Nous avons des soucis de rรฉseau, rรฉessayez" @@ -14043,7 +14064,7 @@ msgstr "Nous avons des soucis de rรฉseau, rรฉessayez" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Nous introduisons un nouveau niveau de vรฉrification sur Bluesky โ€” une coche facile ร  voir." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Nous sommes ravis de vous accueillirย !" @@ -14064,13 +14085,15 @@ msgstr "Nous sommes dรฉsolรฉs, mais nous nโ€™avons pas pu charger cette liste. S msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Nous sommes dรฉsolรฉs, mais nous nโ€™avons pas pu charger vos mots masquรฉs pour le moment. Veuillez rรฉessayer." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "Nous sommes dรฉsolรฉs, mais votre recherche nโ€™a pas pu aboutir." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Nous sommes dรฉsolรฉs, mais votre recherche nโ€™a pu aboutir. Veuillez rรฉessayer dans quelques minutes." @@ -14078,7 +14101,7 @@ msgstr "Nous sommes dรฉsolรฉs, mais votre recherche nโ€™a pu aboutir. Veuillez r msgid "We're sorry, you cannot access this screen at this time." msgstr "Nous sommes dรฉsolรฉs, vous ne pouvez pas accรฉder ร  cet รฉcran actuellement." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Nous sommes dรฉsolรฉsย ! Le post auquel vous rรฉpondez a รฉtรฉ supprimรฉ." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "quoi de neuf" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Quoi de neufย ?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Qui peut vรฉrifierย ?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Oupsย !" @@ -14220,21 +14243,21 @@ msgstr "Souhaitez-vous bloquer ce compte ou partir de cette conversationย ?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Voulez-vous enregistrer รงa comme brouillon avant dโ€™aller les consulterย ?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Voulez-vous enregistrer รงa comme brouillon ร  modifier plus tardย ?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "ร‰crire un post" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Rรฉdiger un post" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Rรฉdigez votre rรฉponse" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Vous vous connectez ร  Bluesky depuis une rรฉgion qui nous oblige lรฉgalement ร  vรฉrifier votre รขge avant de vous laisser accรฉder ร  lโ€™application." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Vous avez bloquรฉ {0}" @@ -14342,7 +14365,7 @@ msgstr "Vous nโ€™รชtes plus en direct" msgid "You are not allowed to upload videos." msgstr "Vous nโ€™รชtes pas autorisรฉ ร  envoyer des vidรฉos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Vous ne suivez personne pour lโ€™instant" @@ -14362,7 +14385,7 @@ msgstr "Votre compte est vรฉrifiรฉ. Il perdra son statut de vรฉrification si vou msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Votre compte est vรฉrifiรฉ. Il perdra son statut de vรฉrification si vous changez votre pseudo. <0>En savoir plus (en anglais)." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Vous pouvez modifier vos centres dโ€™intรฉrรชt ร  tout moment depuis les paramรจtres ยซย Contenu et mรฉdiasย ยป." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Vous pouvez maintenant vous connecter avec votre nouveau mot de passe." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Vous ne pouvez ajouter que {MAX_GALLERY_IMAGES, plural, other {# images}} par post au maximum" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Les brouillons enregistrรฉs ne peuvent contenir que 1000 caractรจres maximum." @@ -14439,9 +14462,11 @@ msgstr "Vous pouvez lire lโ€™historique de la discussion mais pas envoyer de nou msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Vous pouvez sรฉlectionner jusqu'ร  {MAX_GALLERY_IMAGES, plural, other {# images}} au total." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Vous pourrez changer รงa plus tard depuis vos paramรจtres." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Vous ne pouvez pas ajouter plus {EMOJI_REACTION_LIMIT, plural, one {dโ€™une rรฉaction} other {de # rรฉactions}} emoji" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Vous ne pouvez pas encore crรฉer de discussions de groupe." @@ -14555,7 +14581,7 @@ msgstr "Vous avez vรฉrifiรฉ votre adresse e-mail avec succรจs. Vous pouvez ferme msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Vous avez temporairement atteint la limite dโ€™envoi de vidรฉos. Veuillez rรฉessayer plus tard." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Vous avez des modifications non-enregistrรฉes dans ce brouillon, voulez-vous les enregistrerย ?" @@ -14563,7 +14589,7 @@ msgstr "Vous avez des modifications non-enregistrรฉes dans ce brouillon, voulez- msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Vous avez des modifications non-enregistrรฉes. Voulez-vous les sauvegarder avant de consulter vos brouillonsย ?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Vous nโ€™avez pas encore crรฉรฉ de kit de dรฉmarrageย !" @@ -14614,7 +14640,7 @@ msgstr "Vous ne pouvez ajouter que {STARTER_PACK_MAX_SIZE, plural, one {{STARTER msgid "You may only add up to 3 feeds" msgstr "Vous ne pouvez ajouter que 3 fils dโ€™actu au maximum" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Vous devez รชtre propriรฉtaire de la discussion pour en retirer un membre." @@ -14622,7 +14648,7 @@ msgstr "Vous devez รชtre propriรฉtaire de la discussion pour en retirer un membr msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Vous devez avoir au moins 13 ans pour utiliser Bluesky. Lisez nos <0>Conditions gรฉnรฉrales pour plus dโ€™informations." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Vous devez suivre au moins sept autres personnes pour gรฉnรฉrer un kit de dรฉmarrage." @@ -14639,7 +14665,7 @@ msgstr "Vous devez autoriser lโ€™accรจs ร  votre mรฉdiathรจque." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Vous devez vรฉrifier votre adresse e-mail avant de pouvoir utiliser la 2FA par e-mail." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Vous รชtes propriรฉtaire de cette discussion" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Vous voulez sans doute redรฉmarrer lโ€™appli. maintenant." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Vous avez rรฉagi avec {0}" @@ -14667,15 +14693,15 @@ msgstr "Vous avez rรฉagi {0} ร  {target}" msgid "You recently changed your birthdate" msgstr "Vous avez changรฉ rรฉcemment de date de naissance" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Vous avez rรฉpondu" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Vous avez rรฉpondu ร  {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Vous avez rรฉpondu ร  vous-mรชme" @@ -14715,11 +14741,11 @@ msgstr "Vous ne pourrez plus la rejoindre ร  moins dโ€™y รชtre invitรฉยทe." msgid "You: {message}" msgstr "Vousย : {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Vous suivrez les comptes et fils dโ€™actu suggรฉrรฉs une fois que vous aurez crรฉรฉ votre compteย !" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Vous suivrez les comptes suggรฉrรฉs une fois que vous aurez crรฉรฉ votre compteย !" @@ -14791,7 +14817,7 @@ msgstr "Vous รชtes arrivรฉ ร  la fin du contenu actuel." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Vous avez atteint la fin de votre fil dโ€™actuย ! Trouvez dโ€™autres comptes ร  suivre." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Vous avez atteint le nombre maximum de brouillons" @@ -14799,7 +14825,7 @@ msgstr "Vous avez atteint le nombre maximum de brouillons" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Vous avez atteint le nombre maximum de requรชtes autorisรฉes. Veuillez rรฉessayer plus tard." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Vous avez atteint le maximum de {MAX_FILTERS, plural, one {# filtre} other {# filtres}}. Ajoutez dโ€™autres paramรจtres ร  un filtre existant au lieu dโ€™en crรฉer de nouveaux." @@ -14815,11 +14841,11 @@ msgstr "Vous avez atteint votre limite quotidienne dโ€™envoi de vidรฉos (trop d msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Vous avez atteint votre limite quotidienne dโ€™envoi de vidรฉos (trop de vidรฉos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Vous รชtes venus ร  bout de vidรฉos ร  regarder. Peut-รชtre est-ce un bon moment pour prendre une pauseย ?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Votre compte" @@ -14835,11 +14861,11 @@ msgstr "Votre compte a รฉtรฉ suspendu" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Votre compte nโ€™est pas encore assez ancien pour envoyer des vidรฉos. Veuillez rรฉessayer plus tard." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Votre compte est trop rรฉcent" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Votre compte doit avoir รฉtรฉ crรฉรฉ il y a au moins 7 jours pour pouvoir crรฉer une discussion de groupe." @@ -14896,7 +14922,7 @@ msgstr "Votre e-mail" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Votre e-mail semble รชtre invalide." @@ -14930,8 +14956,8 @@ msgstr "Votre hรฉbergeur ne peut pas รชtre dรฉtectรฉ ร  partir dโ€™une adresse e msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Votre hรฉbergeur est dรฉtectรฉ automatiquement ร  partir du pseudo que vous saisissez." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Vos centres dโ€™intรฉrรชt ont รฉtรฉ mis ร  jourย !" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Vos centres dโ€™intรฉrรชt nous aident ร  trouver ce que vous aimezย !" @@ -14967,11 +14993,11 @@ msgstr "Votre mot de passe a รฉtรฉ modifiรฉ avec succรจsย ! Nโ€™oubliez pas dโ€™ msgid "Your password must be at least 8 characters long." msgstr "Votre mot de passe doit comporter au moins 8 caractรจres." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Votre post a รฉtรฉ envoyรฉ" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Vos posts ont รฉtรฉ envoyรฉs" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Votre langue prรฉfรฉrรฉe" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Votre photo de profil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Votre photo de profil entourรฉe de cercles concentriques dโ€™autres photos de profils" @@ -14992,7 +15018,7 @@ msgstr "Votre photo de profil entourรฉe de cercles concentriques dโ€™autres phot msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Votre profil, vos posts, vos fils dโ€™actu et vos listes ne seront plus visibles par dโ€™autres personnes sur Bluesky. Vous pouvez rรฉactiver votre compte ร  tout moment en vous connectant." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Votre rรฉponse a รฉtรฉ envoyรฉe" @@ -15005,7 +15031,7 @@ msgstr "Votre signalement sera envoyรฉ ร  <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Votre sรฉlection de centres dโ€™intรฉrรชt nous aide ร  vous proposer des contenus qui vous tiennent ร  cล“ur." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Votre fil de discussion contient des posts vides qui seront ignorรฉs. Les posts restants seront publiรฉs sous forme de fil de discussion." diff --git a/src/locale/locales/fy/messages.po b/src/locale/locales/fy/messages.po index 16f81121bb..d169d462fb 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Frisian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "โ€˜{interestsDisplayName}โ€™ kategory (aktyf)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(befettet ynsletten ynhรขld)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# oere} other {# oeren}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# mei-โ€™k-wol-oer} other {# mei-โ€™k-wol-oers}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} folgjend" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} fan 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reagearre {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} hat dy ferifiearre" msgid "{following} following" msgstr "{following} folgjend" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} kin gjin priveeberjocht รปntfange" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# net-lรชzen item} other {# net-lรชzen msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}o lyn" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} is in fertroude ferifiearder" @@ -842,13 +795,13 @@ msgstr "Ferifikaasjes fan {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {folgjend} other {folgjend}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {sitaat} other {sitaten}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {opnij pleatsing} other {opnij pleatsingen}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Meld dy oan<1>of <2>meitsje in account oan<3><4>om te sykjen nei nijs, sport, polityk en al wat der op Bluesky bart." @@ -971,7 +924,7 @@ msgstr "30 dagen" msgid "7 days" msgstr "7 dagen" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "In nij ferifikaasjeformulier" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Tagonklikheid" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Tagonklikheidsynstellingen" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Account negearre troch list" msgid "Account options" msgstr "Accountopsjes" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Account รบt flugge tagong fuortsmiten" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Accounts mei in skulpe blau finkje <0><1/> kinne oaren ferifiearje. Dizze fertroude ferifiearders binne troch Bluesky selektearre." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Aktiviteiten fan oaren" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Alt-tekst tafoegje (opsjoneel)" msgid "Add another account" msgstr "Noch in account tafoegje" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Noch in berjocht tafoegje" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Emoji-reaksje tafoegje" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Dizze feed oan dyn feeds tafoegje" msgid "Add to lists" msgstr "Oan listen tafoegje" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Folwoeksene" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Alles" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Alle talen" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Alle feeds dyโ€™tsto bewarre hast, byinoar op ien plak." @@ -1560,7 +1511,7 @@ msgstr "Stiet tagong ta priveeberjochten ta" msgid "Already have a code?" msgstr "Hasto al in koade?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "Der is in e-mailberjocht ferstjoerd nei {0}. Dizze befettet in befรชstig msgid "An error has occurred" msgstr "Der is in flater bard" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Der is in flater bard" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "Der is in flater bard by it opheljen fan de feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Der is in flater bard by it generearjen fan dyn startpakket. Wolsto it opnij probearje?" @@ -1640,11 +1591,11 @@ msgstr "Der is in flater bard by it generearjen fan dyn startpakket. Wolsto it o msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Der is in flater bard wylst it laden fan de fideo. Probearje it letter opnij." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Der is in flater bard wylst it laden fan de fideo. Probearje it nochris." @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "In probleem net fermeld yn dizze opsjes" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Der is in flater bard by it iepenjen fan de chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "Elkenien dyโ€™t my folget" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "App-wachtwurdnammen moatte minimaal 4 tekens lang wรชze" msgid "App passwords" msgstr "App-wachtwurden" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App-wachtwurden" @@ -1891,8 +1838,8 @@ msgstr "Beswier tsjin dizze beslissing meitsje" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Pull-fersyk tapasse" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Argivearre fan {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Argivearre berjocht" @@ -1980,7 +1927,7 @@ msgstr "Bisto wis datsto dit รบt dyn feeds fuortsmite wolst?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Bisto wis datsto dit berjocht fuortsmite wolst?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "Fideoโ€™s en GIFโ€™s automatysk รดfspylje" msgid "Available" msgstr "Beskikber" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Do moatst earst dyn e-mailadres befรชstigje eardatsto in berjocht makkest of antwurdest." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Do moatst earst dyn e-mailadres befรชstigje eardatsto in startpakket makkest." @@ -2135,10 +2091,10 @@ msgstr "Eardatsto meldingen รปntfange kinst foar berjochten fan {name}, moatsto #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "Start it leeftiidsferifikaasjeproses troch de รปndersteande fjilden yn t msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "Jierdei" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Blokkearre" msgid "Blocked accounts" msgstr "Blokkearre accounts" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokkearre accounts" @@ -2282,7 +2244,7 @@ msgstr "Blokkearre accounts kinne net reagearje op dyn petearen, dy net fermelde msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blokkearre accounts kinne net reagearje op dyn petearen, dy net fermelde en net op in oare manier mei dy kommunisearje. Do sjochst harren tekst net en sy dy fan dy ek net." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokkearjen wjerhรขld dizze labeler der net fan om labels op dyn account te pleatsen." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kin de wierheid fan dizze datum net befรชstigje." @@ -2330,7 +2293,7 @@ msgstr "Bluesky is in iepen netwurk dรชrโ€™tsto sels dyn hostingprovider รบtsykj msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky is in iepen netwurk dรชrโ€™tsto sels dyn hostingprovider รบtsykje kinst. Asto hjir noch mar krekt bist, riede wy dy oan de standert opsje โ€˜Bluesky Socialโ€™ oan te hรขlden." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky is noch nofliker mei freonen!" @@ -2358,7 +2321,7 @@ msgstr "Tsjinstbetingsten fan Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky sil in oantal oanrekommandearre brรปkers kieze รบt de minsken yn dyn netwurk." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Blรชdzje troch feeds op de รปntdekkingsside" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Blรชdzje troch mear suggestjes" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Blรชdzje troch mear suggestjes op de รปntdekkingsside" @@ -2425,24 +2388,25 @@ msgstr "Blรชdzje troch mear suggestjes op de รปntdekkingsside" msgid "Browse other feeds" msgstr "Blรชdzje troch oare feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Berjochten oer {displayName} besjen." -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Berjochten labele mei {displayName} besjen" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Startpakket {displayName} besjen" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Underwerp {0} besjen" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "It รปnderwerp {displayName} besjen" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Troch {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Troch <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Mei it oanmeitsjen fan in account giesto akkoard mei de <0>Tsjinstbeting msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Mei it oanmeitsjen fan in account giesto akkoard mei de <0>Tsjinstbetingsten." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Troch dy" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Weraktivearring annulearje en รดfmelde" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Sykopdracht annulearje" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat negearre" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Chatfersyk Postfek YN" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Chatfersiken" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chatynstellingen" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat net mear negearre" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2802,7 @@ msgstr "Domeinferifikaasjemetoade kieze" msgid "Choose Feeds" msgstr "Feeds kieze" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Foar my kieze" @@ -2854,7 +2819,7 @@ msgstr "Persoanen kieze" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Dizze kleur as dyn avatar kieze" @@ -2879,7 +2844,7 @@ msgstr "Kies dyn eigen tiidline! Feeds makke troch de mienskip helpe dy om ynhรข msgid "Choose your password" msgstr "Dyn wachtwurd kieze" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Dyn brรปkershandle kieze" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Klik om mislearre priveeberjocht opnij te probearjen" @@ -3003,7 +2968,7 @@ msgstr "Klik om mislearre priveeberjocht opnij te probearjen" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Klik om mislearre priveeberjocht opnij te probearjen" msgid "Close" msgstr "Slute" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Aktive dialoochfinster slute" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Menu slute" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "Dit dialoochfinster slute" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Slรบt warskรดging foar bywurkjen wachtwurd" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Slรบt opstellen berjocht en negearret konsept" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Kleurmodus" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Strips" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Mienskipsrjochtlinen" @@ -3141,7 +3106,7 @@ msgstr "Mienskipsrjochtlinen" msgid "Complete onboarding and start using your account" msgstr "Foltรดgje de yntroduksje en begjin mei it brรปken fan dyn account" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Foltรดgje de รบtdaging" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Nij berjocht opstelle" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Do kinst berjochten opstelle mei in lingte fan maksimaal {0, plural, other {# karakters}}" @@ -3160,11 +3125,11 @@ msgstr "Do kinst berjochten opstelle mei in lingte fan maksimaal {0, plural, oth msgid "Compose reply" msgstr "Antwurd opstelle" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Fideo komprimearjeโ€ฆ" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Kontakt opnimme mei stipe" @@ -3253,7 +3218,7 @@ msgstr "Ynhรขld & media" msgid "Content and media" msgstr "Ynhรขld en media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Ynhรขld en media" @@ -3265,10 +3230,6 @@ msgstr "Ynhรขld blokkearre" msgid "Content filters" msgstr "Ynhรขldsfilters" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Ynhรขld fan oer it netwurk wรชrfan wy tinke datsto der wol oer meist." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Ynhรขldswarskรดging" msgid "Content warnings" msgstr "Ynhรขldswarskรดgingen" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Kontekstmenu-eftergrรปn, klik om it menu te sluten." @@ -3302,7 +3263,7 @@ msgstr "Kontekstmenu-eftergrรปn, klik om it menu te sluten." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Fierder lรชzeโ€ฆ" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Buildferzje nei klamboerd kopiearre" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "App-wachtwurd kopiearje" msgid "Copy at:// URI" msgstr "at:// URI kopiearje" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Auteur-DID kopiearje" @@ -3449,10 +3410,10 @@ msgstr "Keppeling kopiearje" msgid "Copy link to list" msgstr "Keppeling nei list kopiearje" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Keppeling nei berjocht kopiearje" @@ -3470,8 +3431,8 @@ msgstr "Keppeling nei startpakket kopiearje" msgid "Copy message text" msgstr "Berjochttekst kopiearje" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Berjocht at:// URI kopiearje" @@ -3490,7 +3451,7 @@ msgstr "TXT-recordwearde kopiearje" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Auteursrjochtbelied" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Kin chat net ferlitte" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Kin feed net lade" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Kin chat net negearje" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Oanmeitsje" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Meitsje in QR-koade foar in startpakket" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Meitsje in startpakket" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Meitsje in startpakket foar my" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Registrearje" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "In account oanmeitsje" @@ -3666,15 +3627,15 @@ msgstr "In account oanmeitsje" msgid "Create an account without using this starter pack" msgstr "In account oanmeitsje sรปnder gebrรปk fan dit startpakket" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Yn stee dรชrfan in avatar meitsje" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Noch ien oanmeitsje" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "Kultuer" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Tsjuster" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Donker" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Donker tema" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Standert" @@ -3894,7 +3855,7 @@ msgstr "Myn account fuortsmite" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Berjocht fuortsmite" @@ -3988,7 +3949,7 @@ msgstr "Dialooch: oanpasse waโ€™t op dit berjocht reagearje mei" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Dรดvje" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "2FA รบtskeakelje" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "Utskeakele" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Fuortsmite" msgid "Discard changes?" msgstr "Wizigingen fuortsmite?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Konsept fuortsmite?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Berjocht fuortsmite?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Apps รปntmoedigje om myn account te toanen oan รดfmelde brรปkers" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Apps รปntmoedigje om myn account te toanen oan รดfmelde brรปkers" msgid "Discover new custom feeds" msgstr "Nije personalisearre feeds รปntdekke" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Nije feeds รปntdekke" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Slute" @@ -4103,28 +4064,28 @@ msgstr "Slute" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Flater negearje" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Starthantlieding รดfslute" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Ynteressen negearje" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Dizze seksje slute" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "Gruttere alt-tekstbadges toane" msgid "Display name" msgstr "Werjeftenamme" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "Meitsje dy gjin soargen! Alle besteande berjochten en ynstellingen wurde #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Meitsje dy gjin soargen! Alle besteande berjochten en ynstellingen wurde msgid "Done" msgstr "Dien" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Tik dรปbeld of druk lang op in berjocht, om in reaksje ta te foegjen" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tik dรปbeld om de dialooch te sluten" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Tik dรปbeld om der wol oer te meien" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Ofbylding bewurkje" msgid "Edit interaction settings" msgstr "Ynteraksje-ynstellingen bewurkje" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Ynteressen bewurkje" @@ -4397,7 +4359,7 @@ msgstr "Live-status bewurkje" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Myn feeds bewurkje" @@ -4406,6 +4368,11 @@ msgstr "Myn feeds bewurkje" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Persoanen bewurkje" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Waโ€™t reagearje kin bewurkje" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Dyn startpakket bewurkje" @@ -4500,8 +4467,8 @@ msgstr "HTML-koade ynslute" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Berjocht ynslute" @@ -4509,7 +4476,7 @@ msgstr "Berjocht ynslute" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Nim dit bericht op yn dyn website. Kopiearje ienfรขldichwei it folgjende fragmint en plak it yn de HTML-koade fan dyn website." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Yntegrearre fideospiler" @@ -4533,7 +4500,7 @@ msgstr "Ynhรขld foar folwoeksenen ynskeakelje" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "Eksterne media ynskeakelje" msgid "Enable media players for" msgstr "Mediaspilers ynskeakelje foar" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Skeakelje meldingen yn foar in account troch harren profyl te besykjen en op it <0>belpiktogram <1/> te drukken." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Pushmeldingen ynskeakelje" @@ -4581,7 +4549,7 @@ msgstr "Populรชre fideoโ€™s yn dyn Discover-feed ynskeakelje" msgid "Enabled" msgstr "Ynskeakele" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Ein fan feed" @@ -4608,7 +4576,7 @@ msgstr "Fier in wurd of tag yn" msgid "Enter code" msgstr "Koade ynfiere" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Folslein skerm iepenje" @@ -4650,11 +4618,11 @@ msgstr "Fier dyn brรปkersnamme en wachtwurd yn" msgid "Enters full screen" msgstr "Iepenet folslein skerm" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Ferdivedaasje" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Flater" @@ -4684,7 +4652,7 @@ msgstr "Der is in flater bard by it bewarjen fan it bestรขn" msgid "Error receiving captcha response." msgstr "Flater by รปntfangen fan captcha-antwurd." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Flater: {error}" @@ -4696,8 +4664,8 @@ msgstr "Elkenien kin reagearje" msgid "Everybody can reply to this post." msgstr "Elkenien kin reagearje op dit berjocht." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Elkenien" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Elkenien" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Al it oare" @@ -4738,7 +4706,7 @@ msgstr "Brรปkers รบtslute dyโ€™tsto folgest" msgid "Excludes users you follow" msgstr "Slรบt brรปkers dyโ€™tsto folgest รบt" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Folslein skerm slute" @@ -4755,11 +4723,11 @@ msgstr "Brรปkerslist รบtklappe" msgid "Expand or collapse the full post you are replying to" msgstr "Ut- of ynklappe fan it folsleine berjocht dรชrโ€™tsto op reagearrest" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Berjochttekst รบtklappe" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Klapt berjochttekst รบt of yn" @@ -4802,15 +4770,15 @@ msgstr "Eksplisite of mooglik oanstjitjaande media." msgid "Explicit sexual images." msgstr "Eksplisite seksuele รดfbyldingen." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Untdekke" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "Eksterne media" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Eksterne media kinne websites tastean om ynformaasje oer dy en dyn apparaat te sammeljen. Der wurdt gjin ynformaasje ferstjoerd of frege oantsto op de knop โ€˜รดfspyljeโ€™ drukst." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Eksterne-mediafoarkarren" @@ -4886,7 +4854,7 @@ msgstr "Kin handle net wizigje. Probearje nochris." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Laden van konversaasjes mislearre" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Laden fan feedfoarkarren is mislearre" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Meldingsynstellingen lade mislearre." @@ -5012,14 +4981,14 @@ msgstr "Laden fan foarkar mislearre." msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Laden fan foarstelde feeds is mislearre" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "It is net slagge om in list te laden mei folchsuggestjes" @@ -5027,12 +4996,12 @@ msgstr "It is net slagge om in list te laden mei folchsuggestjes" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5181,7 @@ msgstr "Feedmakker" msgid "Feed identifier" msgstr "Feedidentifikator" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Feedmenu" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds bywurke!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds dรชrโ€™tsto neffens รบs wol oer meist." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Update ophelje" @@ -5273,34 +5238,22 @@ msgstr "Update ophelje" msgid "File saved successfully!" msgstr "Bestรขn mei sukses bewarre!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filterje op feeds" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filter sykje op taal" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filter sykje op taal (op dit stuit: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filter waโ€™t kieze kin meldingen foar dyn aktiviteit te รปntfangen" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filter fan waโ€™tsto meldingen รปntfangst" @@ -5352,8 +5305,8 @@ msgstr "Sykje accounts om te folgjen" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "{0} folgje" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle} folgje" @@ -5453,11 +5406,11 @@ msgstr "{handle} folgje" msgid "Follow 10 accounts" msgstr "10 accounts folgje" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "7 accounts folgje" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Folgers fan @{0} dyโ€™tsto kinst" @@ -5544,7 +5497,7 @@ msgstr "Folgers dyโ€™tsto kinst" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Folget {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Do folgest {handle}" @@ -5578,21 +5531,21 @@ msgstr "Do folgest {handle}" msgid "Following feed preferences" msgstr "Folchfeedfoarkarren" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Folchfeedfoarkarren" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Folget dy" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Lettertype" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Lettergrutte" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Om feilichheidsredenen kinsto dit net mear besjen. Do moatst in nij app-wachtwurd generearje asto dit app-wachtwurd kwytrekkest." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Foar de beste รปnderfining riede wy dy oan it temalettertype te brรปken." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Foar dy" @@ -5628,7 +5581,7 @@ msgstr "Foar dy" msgid "Forever" msgstr "Foar altyd" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "Wachtwurd ferjitten?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Fan" @@ -5674,7 +5627,7 @@ msgstr "Fan <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "In startpakket generearje" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "Krij help" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Untfang meldingen wannearโ€™t minsken dy folgje." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Untfang meldingen wannearโ€™t minsken wol oer dyn berjochten meie." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Untfang meldingen wannearโ€™t minsken dy neame." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Untfang meldingen wannearโ€™t minsken dyn berjochten sitearje." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Untfang meldingen wannearโ€™t minsken op dyn berjochten reagearje." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Untfang meldingen wannearโ€™t minsken dyn berjochten opnij pleatse." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Meldingen oer nije berjochten รปntfange" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Meldingen oer nije berjochten fan {name} รปntfange" @@ -5799,11 +5752,11 @@ msgstr "Oan de slach" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Jou dyn profyl in gesicht" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Gean live foar" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6052,7 @@ msgstr "Hasto in koade? <0>Klik hjir." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Hasto problemen?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "Help" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Lit minsken witte datsto gjin bot bist troch in foto op te laden of in avatar te meitsjen." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Ferstoppe" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Ferstoppe troch dyn moderaasjeynstellingen." @@ -6148,9 +6102,10 @@ msgstr "Ferstoppe troch dyn moderaasjeynstellingen." msgid "Hidden list" msgstr "Ferburgen list" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Ferburgen list" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Ferstopje" @@ -6198,7 +6154,7 @@ msgstr "Reaksje foar elkenien ferstopje" msgid "Hide reply for me" msgstr "Reaksje foar my ferstopje" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Dizze kaart ferstopje" @@ -6218,16 +6174,18 @@ msgstr "Dizze reaksje ferstopje?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Populรชre รปnderwerpen ferstopje" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Populรชre รปnderwerpen ferstopje?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Populรชre fideoโ€™s ferstopje?" @@ -6240,7 +6198,7 @@ msgstr "Brรปkerslist ferstopje" msgid "Hide verification badges" msgstr "Ferifikaasjebadges ferstopje" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Ferstoppet de ynhรขld" @@ -6293,8 +6251,8 @@ msgstr "Hmm, wy koene dy moderaasjetsjinst net lade." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Wachtsje even! Wy jouwe stadichoan tagong ta fideo en do stiest noch hieltyd yn de rige. Kom fluch werom!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Populรชr" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "Asto dyn e-mailadres bywurkest, wurdt e-mail-2FA รบtskeakele." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Asto dyn wachtwoord wizigje wolst stjoere wy dy in koade om te ferifiearjen dat dit dyn account is." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Asto beheine wolst waโ€™t meldingen foar de aktiviteit fan dyn account รปntfange kin, kinsto dit wizigje yn <0>Ynstellingen โ†’ Privacy en Befeiliging." @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "Postfek YN nul!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Unjildige brรปkersnamme of wachtwurd" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "Utnรปgingskoade" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Utnรปgingskoade net akseptearre. Kontrolearje oftsto dizze korrekt ynfierd hast en probearje it opnij." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Do bist no noch de iennige! Foegje mear persoanen ta oan dyn startpakket troch hjirboppe te sykjen." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Taak-ID: {0}" @@ -6816,8 +6766,8 @@ msgstr "Doh mei oan it petear" msgid "Journalism" msgstr "Sjoernalistyk" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "KWS-website" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Labele troch {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Labele troch de auteur." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Labels" @@ -6852,7 +6802,7 @@ msgstr "Labels tafoege" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Labels binne oantekeningen oer brรปkers en ynhรขld. Se kinne brรปkt wurde om it te ferstopjen, te warskรดgjen en it netwurk te kategorisearjen." @@ -6864,7 +6814,7 @@ msgstr "Labels op dyn account" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Taalynstellingen" @@ -6874,7 +6824,7 @@ msgstr "Taalynstellingen" msgid "Languages" msgstr "Talen" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Grutter" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Lรชst start, sakrekt" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Lรชste" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Mear ynfo" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Mear ynfo oer it sels hosten fan dyn PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Mear info oer de moderaasje tapast op dizze ynhรขld" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Lรชs mear oer dizze wizigingen en hoeโ€™tsto dyn tinzen mei รบs diele kinst troch รบs blogberjocht te lรชzen." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Mear ynfo oer dizze warskรดging" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Mear ynformaasje yn dyn <0>accountynstellingen." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Mear ynfo." @@ -6993,8 +6943,8 @@ msgstr "Ferlitte" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Bluesky ferlitte" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "noch te gean." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lit my kieze" @@ -7057,7 +7007,7 @@ msgstr "Los!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Ljocht" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Ljocht" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Mei โ€™k wol oer" @@ -7076,7 +7026,7 @@ msgstr "Mei โ€™k wol oer" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Mei โ€™k wol oer ({0, plural, one {# mei-โ€™k-wol-oer} other {# mei-โ€™k-wol-oers}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Mei wol oer 10 berjochten" @@ -7085,7 +7035,7 @@ msgstr "Mei wol oer 10 berjochten" msgid "Like 10 posts to train the Discover feed" msgstr "Mei wol oer 10 berjochten om de Untdekken-feed te trainen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Mei wol oer dizze feed" @@ -7093,8 +7043,8 @@ msgstr "Mei wol oer dizze feed" msgid "Like this labeler" msgstr "Mei wol oer dizze labeler" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Mei hjir wol oer" @@ -7111,27 +7061,45 @@ msgstr "Mei โ€™k wol oer troch" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Mei โ€™k wol oer troch {0, plural, one {# brรปker} other {# brรปkers}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Mei โ€™k wol oer troch {likeCount, plural, one {# brรปker} other {# brรปkers}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Mei-โ€™k-wol-oers" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Mei-โ€™k-wol-oers fan dyn opnij-pleatsingen" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Mei-โ€™k-wol-oers op dit berjocht" @@ -7144,7 +7112,7 @@ msgstr "Lineรชr" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "List" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "List net-negearre" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "Live-keppeling" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Mear lade" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Mear foarstelde feeds lade" @@ -7292,8 +7260,8 @@ msgstr "Mear foarstelde feeds lade" msgid "Load new notifications" msgstr "Nije meldingen lade" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Lochboek" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "E-mailynstellingen foar dyn account oanpasse" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Meitsje ien foar my" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "Alles as lรชzen markearje" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "As lรชzen markearje" msgid "Marked all as read" msgstr "Alles as lรชzen markearre" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "Miskien letter" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Media" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media dyโ€™t foar bepaalde doelgroepen oanstjitjouwend of รปngepast wรชze kinne." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "fermelde brรปkers" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Fermeldingen" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Berjocht fuortsmiten" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "Berjochtopsjes" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Berjochten" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderaasje" @@ -7636,7 +7608,7 @@ msgstr "Moderaasjelist bywurke" msgid "Moderation lists" msgstr "Moderaasjelisten" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderaasjelisten" @@ -7645,7 +7617,7 @@ msgstr "Moderaasjelisten" msgid "moderation settings" msgstr "moderaasjeynstellingen" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderaasjetastannen" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "Negearre accounts" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Negearre accounts" @@ -7867,7 +7839,6 @@ msgstr "Moatst melding meitsje fan in skeining fan it auteursrjocht, in wetlike msgid "Nevermind, create a handle for me" msgstr "Makket net รบt, meitsje in handle foar my oan" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nij" @@ -7893,11 +7864,11 @@ msgstr "{postsCount, plural, one {Nij berjocht} other {Nije berjochten}} fan {fi #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nije chat" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Nije funksje" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nije folgers" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "Nije list" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Nij wachtwurd" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nij berjocht" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Nijste antwurden earst" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Nijs" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Folgjende รดfbylding" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "Noch gjin app-wachtwurden" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "Gjin ferrintiid ynsteld" msgid "No feeds found. Try searching for something else." msgstr "Gjin feeds fรปn. Probearje nei wat oars te sykjen." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "Gjin รดfbylding" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Noch gjin mei-โ€™k-wol-oers" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "Do folgest {0} net mear" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "Noch gjin berjochten" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "Allinnich de auteur mei dit berjocht sitearje." msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Noch gjin hjir" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Noch gjin sitaten" @@ -8198,11 +8190,7 @@ msgstr "Noch gjin sitaten" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "Gjin resultaat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Gjin resultaten" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Gjin resultaten foar โ€˜{0}โ€™." @@ -8236,23 +8224,23 @@ msgstr "Gjin resultaten fรปn" msgid "No results found for \"{query}\"" msgstr "Gjin resultaten fรปn foar โ€˜{query}โ€™" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Gjin resultaten." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "Nee, tank" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "Gjinien" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Gjinien mei hjir wol oer. Miskien moatsto de earste wรชze!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Gjinien hat dit sitearre. Miskien moatsto de earste wรชze!" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Net-seksuele neakens" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Net fรปn" @@ -8333,7 +8325,7 @@ msgstr "Opmerking oer diele" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Opmerking: Bluesky is in iepen en iepenbier netwurk. Dizze ynstelling beheint allinnich de sichtberheid fan dyn ynhรขld op de Bluesky-app en -website. Oare apps respektearje dizze ynstelling mooglik net. Dyn ynhรขld kin noch hieltyd toand wurde oan รดfmelde brรปkers troch oare apps en websites." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Opmerking: dit berjocht is allinnich sichtber foar oanmelde brรปkers." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Meldingsynstellingen" @@ -8353,11 +8345,12 @@ msgstr "Meldingsynstellingen" msgid "Notification sounds" msgstr "Meldingslรปden" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Och heden!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Okรฉ" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Yntroduksje opnij toane" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Alt-tekst รปntbrekt by ien of mear GIFโ€™s." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Alt-tekst รปntbrekt by ien of mear รดfbyldingen." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Alt-tekst รปntbrekt by ien of mear fideoโ€™s." @@ -8471,7 +8466,7 @@ msgstr "Allinnich {0} kin reagearje." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Allinnich WebVTT (.vtt)-bestannen wurde stipe" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Wรปpsty!" @@ -8544,7 +8543,7 @@ msgstr "Wรปpsty!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Avatar-makker iepenje" @@ -8570,21 +8569,22 @@ msgstr "Petearopsjes iepenje" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Menu iepenje" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Emoji-kiezer iepenje" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Feed-ynfoskerm iepenje" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Menu Feedopsjes iepenje" @@ -8627,7 +8627,7 @@ msgstr "Moderaasje-debugside iepenje" msgid "Open muted words and tags settings" msgstr "Negearre wurden en tags-ynstellingen iepenje" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Pakket iepenje" @@ -8699,7 +8699,7 @@ msgstr "Iepenet oanfoljende details foar in debug-item" msgid "Opens alt text dialog" msgstr "Iepenet Alt-tekstfinster" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Iepenet kamera op apparaat" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Iepenet proses om in nij Bluesky-account oan te meitsjen" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Iepenet it proses om dy oan te melden by dyn besteande Bluesky-account" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Wachtwurd bywurke!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pauzearje" @@ -8925,12 +8925,12 @@ msgstr "Pauzearje" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Fideo pauzearje" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Persoanen" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Persoanen folge troch @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Persoanen dyโ€™t @{0} folgje" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Minsken dyโ€™t ik folgje" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Ofbyldingen bedoeld foar folwoeksenen." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Feed fรชstmeitsje" @@ -9034,7 +9034,7 @@ msgstr "Feed fรชstmeitsje" msgid "Pin to home" msgstr "Fรชstsette op startside" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fรชstsette op startside" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Fรชstset" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} fรชstset op startside" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Fรชstset oan dyn feeds" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Ofspylje" @@ -9076,8 +9076,8 @@ msgstr "{0} รดfspylje" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Fideo รดfspylje" @@ -9109,11 +9109,11 @@ msgstr "Foegje alle belutsene ynhรขldswarkรดgingen foar de media dyโ€™tsto pleat 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Dyn handle kieze." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Kies dyn wachtwurd." @@ -9122,7 +9122,7 @@ msgstr "Kies dyn wachtwurd." 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 "Klik op de keppeling yn it e-mailberjocht dat wy sakrekt ferstjoerd hawwe, om dyn e-mailadres te feifiearjen. Dit is in wichtige stap om alle funksjes fan Bluesky brรปke te kinnen." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Fier de ferifikaasje-captcha yn." @@ -9179,7 +9179,7 @@ msgstr "" 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:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Fier dyn e-mailadres yn." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Skriuw hjirรปnder dyn berjocht:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Polityk" @@ -9269,7 +9269,7 @@ msgstr "Polityk" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Pleatse" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Berjocht" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Alles pleatse" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Berjocht blokkearre" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Berjocht fan @{0}" @@ -9340,7 +9340,7 @@ msgstr "Berjocht troch dy ferstoppe" msgid "Post interaction settings" msgstr "Ynstellingen foar berjochtynteraksje" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Ynstellingen foar berjochtynteraksje" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "Berjocht fรชstset" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "Berjocht losmakke" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Berjochten" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Berjochten kinne negearre wurde op basis fan tekst, tags of beide. Wy ri msgid "Posts hidden" msgstr "Berjocht ferstoppe" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Mooglik misliedende keppeling" @@ -9449,20 +9451,21 @@ msgstr "Privacy" msgid "Privacy and security" msgstr "Privacy en befeiliging" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacy en befeiliging" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Privacy- en befeiligingsystellingen" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Privacybelied" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Fideo ferwurkjeโ€ฆ" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Iepenbiere, dielbere listen fan brรปkers om yn bulk te dรดvjen of te blokkearjen." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Berjocht pleatse" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Berjochten pleatse" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Antwurden publisearje" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Antwurd publisearje" @@ -9599,12 +9602,12 @@ msgstr "Sitaatberjochten รบtskeakele" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Sitaten" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Sitaten fan dit berjocht" @@ -9647,7 +9650,7 @@ msgstr "Dyn account opnij aktivearje" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Blogartikel lรชze" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Minder ynfo" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Mear ynfo" @@ -9687,11 +9690,11 @@ msgstr "Lรชs it Bluesky-privacybelied" msgid "Read the Bluesky Terms of Service" msgstr "Lรชs de Bluesky-tsjinstbetingsten" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Oanrekommandearre" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Opnij ferbine" @@ -9748,7 +9747,7 @@ msgstr "Chatfersyk รดfwize" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Petearen opnij lade" @@ -9766,7 +9765,7 @@ msgstr "Petearen opnij lade" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Fuortsmite" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Account fuortsmite" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Ut myn feeds fuortsmite" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Ut flugge tagong fuortsmite?" @@ -9862,7 +9861,7 @@ msgstr "Ut flugge tagong fuortsmite?" msgid "Remove from saved feeds" msgstr "Ut bewarre feeds fuortsmite" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Ofbylding fuortsmite" msgid "Remove live status" msgstr "Live-status fuortsmite" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Ut list fuortsmiten" msgid "Removed from saved feeds" msgstr "Ut myn bewarre feeds fuortsmiten" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Antwurde dy" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Antwurden" @@ -10037,7 +10037,7 @@ msgstr "Antwurden op dit berjocht binne รบtskeakele." msgid "Reply" msgstr "Reagearje" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Reagearje" @@ -10098,8 +10098,8 @@ msgstr "Petear melde" msgid "Report dialog" msgstr "Dialooch melde" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Feed melde" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Opnij pleatst troch dy" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Opnij-pleatsingen" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Opnij-pleatsingen fan dit berjocht" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Opnij-pleatsingen fan dyn opnij-pleatsingen" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Werhellet de lรชste aksje, dรชrโ€™t in flater by barde" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Tebek nei de startside" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Tebek nei de foarige side" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Wizigingen bewarje" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR-koade bewarje" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Yn myn feeds bewarje" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feeds bewarje" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Bewarre yn dyn feeds" @@ -10520,8 +10520,8 @@ msgstr "Bewarre yn dyn feeds" msgid "Say hello!" msgstr "Sis hallo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Wittenskip" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Nei boppe" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Sykje" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Berjochten fan @{0} trochsykje" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Sykje nei feeds dyโ€™tsto oan oaren foarstelle wolst." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Nei mear accounts sykje" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Nei mear feeds sykje" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIFโ€™s sykje" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Sykjen is op dit stuit net beskikber wannear รดfmeld" @@ -10707,17 +10707,22 @@ msgstr "#{tag}-berjochten fan brรปker besjen" msgid "See jobs at Bluesky" msgstr "Fakatueres by Bluesky bejen" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Mear toane" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Sykslider. Brรปk de pylktoetsen om foarรบt en efterรบt te sykjen en spaasje om รดf te spyljen/pauzearjen" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "Selektearje {0}" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "In kleur selektearje" @@ -10764,11 +10769,11 @@ msgstr "Account selektearje" msgid "Select an app language" msgstr "Selektearje in app-taal" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "In avatar selektearje" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "In emoji selektearje" @@ -10780,12 +10785,13 @@ msgstr "Selektearje in opsje" msgid "Select app language" msgstr "Selektearje app-taal" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "GIF selektearje" msgid "Select GIF \"{0}\"" msgstr "GIF โ€˜{0}โ€™ selektearje" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "Selektearje primรชre taal" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Dyn avatar as de {emojiName}-emoji selektearje" @@ -10945,7 +10951,8 @@ msgstr "Berjocht ferstjoere" msgid "Send post to {name}" msgstr "Berjocht nei {name} ferstjoere" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Berjocht ferstjoere neiโ€ฆ" @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Ferifikaasje-e-mailberjocht ferstjoere" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "As priveeberjocht ferstjoere" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Stelt e-mail yn foar it opnij ynstellen fan wachtwurden" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ynstellingen" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Ynstellingen foar aktiviteit fan oaren" @@ -11036,49 +11043,49 @@ msgstr "Ynstellingen foar aktiviteit fan oaren" msgid "Settings for allowing others to be notified of your posts" msgstr "Ynstellingen foar tastimming om oaren op de hichte te stellen fan dyn berjochten" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Ynstellingen foar mei-โ€™k-wol-oer-meldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Ynstellingen foar fermeldingsmeldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Ynstellingen foar nije-folgersmeldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Ynstellingen foar meldingen fan al it oare" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Ynstellingen foar meldingen fan mei-โ€™k-wol-oers fan dyn opnij-pleatsingen" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Ynstellingen foar meldingen fan opnij-pleatsingen fan dyn opnij-pleatsingen" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Ynstellingen foar sitaatmeldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Ynstellingen foar antwurdmeldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Ynstellingen foar meldingen fan opnij-pleatsingen" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Dochs diele" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Auteurs-DID diele" @@ -11127,7 +11134,7 @@ msgstr "Auteurs-DID diele" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Keppelingdialooch diele" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Berjocht at:// URI diele" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "QR-koade diele" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Dizze feed diele" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Dit startpakket diele" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Diel dit startpakket en help minsken lid te wurden fan dyn mienskip op Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Dielde foarkarren-tester" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Toane" msgid "Show alt text" msgstr "Alt-tekst toane" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Dochs toane" @@ -11274,9 +11281,9 @@ msgstr "List dochs toane" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Mear toane" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Warskรดging en filter รบt feeds toane" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Toant ynformaasje oer wannearโ€™t dit bejoicht oanmakke is" @@ -11341,15 +11348,15 @@ msgstr "Toant ynformaasje oer wannearโ€™t dit bejoicht oanmakke is" msgid "Shows other accounts you can switch to" msgstr "Toant oare accounts wรชrneisto wikselje kinst" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Toant de ynhรขld" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Toant de ynhรขld" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Ofmelde?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Oanmelden fereaske" @@ -11469,7 +11476,7 @@ msgstr "Oerslaan" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Lytser" @@ -11499,7 +11506,7 @@ msgstr "Snรปzet it omtinken" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "Guon fan dyn ferifikaasjes binne รปnjildich." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Inkelde oare feeds dรชrโ€™tsto miskien wol oer meist" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Ien hat mei {0} reagearre" @@ -11554,7 +11561,7 @@ msgstr "Ien hat mei {0} reagearre" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Der is wat misgien, probearje it nochris" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Der is wat misgien. Probearje it oer in amerijke nochris." msgid "Something went wrong. Please try again." msgstr "Der is wat misgien. Probearje it nochris." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Klopt er wat net? Lit it รบs witte." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "Start in petear, en it sil hjir ferskine." msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "In nije chat starte" @@ -11682,17 +11689,17 @@ msgstr "Begjin mei minsken ta te foegjen" msgid "Start adding people!" msgstr "Begjin mei minsken ta te foegjen!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Chat starte mei {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpakket" @@ -11715,12 +11722,16 @@ msgstr "Startpakket troch dy" msgid "Starter pack is invalid" msgstr "Startpakket is รปnjildich" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startpakketten" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Mei startpakketten kinsto ienfรขldich dyn favorite feeds en persoanen met dyn freonen diele." @@ -11728,7 +11739,7 @@ msgstr "Mei startpakketten kinsto ienfรขldich dyn favorite feeds en persoanen me msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Statusside" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Stap {0} fan {1}" @@ -11754,7 +11765,7 @@ msgstr "Unthรขld wiske, do moatst de app no opnij opstarte." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Ferhaleboek" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonnearje dy op @{0} om dizze labels te brรปken:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Mei sukses ferifiearre" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Foarsteld foar dy" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sinneรปndergong" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Wikselje nei {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Systeem" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "Tik om kontekstmenu te sluten" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tik om te sluten" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Taak foltรดge โ€“ 10 persoanen folge!" msgid "Task complete - 10 likes!" msgstr "Taak foltรดge โ€“ 10 mei-โ€™k-wol-oers!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Lear รบs algoritme wรชrโ€™tsto wol oer meist" @@ -12060,7 +12073,7 @@ msgstr "Betingsten" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Dat startpakket kin net fรปn wurde." msgid "That username is already taken" msgstr "Dy brรปkersnamme is al yn gebrรปk" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Dat is alles minsken!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Dat wie alles!" @@ -12216,7 +12229,7 @@ msgstr "It liket derop dat der problemen mei de server binne. Probearje it oer i msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "It startpakket datsto probearrest te besjen is รปnjildich. Do kinst dit startpakket yn stee dรชrfan fuortsmite." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "It รปnderwerp fan it kontekstmenu" @@ -12238,7 +12251,7 @@ msgstr "De ferifikaasjekoade dyโ€™tsto opjรปn hast is รปnjildich. Kontrolearje o msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Der is in probleem bard by it ferbinen mei de server" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Der is in probleem bard by it ferbinen mei de server. Kontrolearje dyn ynternetferbining en probearje it opnij." @@ -12283,8 +12296,8 @@ msgstr "Der is in probleem bard by it ferbinen mei de server. Kontrolearje dyn y msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Der is in probleem bard by it opheljen fan meldingen. Tik hjir om it opnij te probearjen." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Der is in probleem bard by it opheljen fan berjochten. Tik hjir om it opnij te probearjen." @@ -12309,7 +12322,7 @@ msgstr "Der is in probleem bard by it opheljen fan dyn tsjinstgegevens" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Der is in probleem bard by it fuortsmiten fan dizze feed. Kontrolearje dyn ynternetferbining en probearje it opnij." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Dizze ynstellingen binne allinnich fan tapassing op de folgjende feed." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Dizze {screenDescription} is markearre:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Dizze account hat ien of mear besochte ferifikaasjes, mar it is no noch net ferifiearre." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Dizze account fersiket brรปkers harren oan te melden eardat it profyl te besjen is." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Dizze feed is leech! Mooglik moatsto mear brรปkers folgje of dyn taalynstellingen oanpasse." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Dizze feed is leech." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Dizze handle is reservearre. Probearje in oare." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Dit label is oanbrocht troch dy." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Dizze labeler hat net oanjรปn hokker labels hy publisearret en is mooglik net aktyf." @@ -12621,13 +12634,13 @@ msgstr "Dizze list is leech." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dit berjocht beweart makke te wรชzen op <0>{0}, mar waard foar it earst sjoen troch Bluesky op <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Dit berjocht beweart makke te wรชzen op <0>{0}, mar waard foar it ea msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Der sit in รปnbekend type reaksjebeheining op dit berjocht. Mooglik is dyn app ferรขldere." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Dit berjocht is allinnich sichtber foar oanmelde brรปkers." @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Dit berjocht wurdt ferstoppe foar feeds en petearen. Dit kin net รปngedien makke wurde." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "De auteur fan dit berjocht hat it pleatsen fan sitaten รบtskeakele." @@ -12698,11 +12711,12 @@ msgstr "Dit soe mar in pear minuten duorje moatte." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Dizze brรปker hat gjin werjeftenamme en kin dertroch net ferifiearre wurde." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Dizze brรปker hat gjin folgers." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Dizze brรปker hat dy blokkearre. Do kinst de ynhรขld net besjen." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Dizze brรปker stiet yn de list <0>{0} dyโ€™tsto negearre hast." msgid "This user is new here. Press for more info about when they joined." msgstr "Dizze brรปker is hjir nij. Druk foar mear ynfo oer wannearโ€™t se lid wurden binne." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Dizze brรปker folget net ien." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Hjirmei wurdt @{0} fuortsmiten รบt de flugge tagongslist." @@ -12786,7 +12801,7 @@ msgstr "Petearfoarkarren" msgid "Threaded" msgstr "As petear" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Petearfoarkarren" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Populรชr" @@ -12858,7 +12873,7 @@ msgstr "Populรชr" msgid "Top replies first" msgstr "Populรชre reaksjes earst" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Underwerp" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "Konversaasjebyld" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Populรชr" @@ -12902,13 +12919,15 @@ msgstr "Populรชr" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Populรชre fideoโ€™s" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Fertrouwen รปntstiet รบt relaasjes, mienskippen en dielde kontekst, dus wy starte ek mei <0>fertroude ferifiearders: organisaasjes dyโ€™t daliks ferifikaasje รบtjaan kinne." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "Net beskikber" msgid "Unavailable feed information" msgstr "Feedynformaasje net beskikber" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Account deblokkearje?" msgid "Unblock list" msgstr "List deblokkearje" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "{0} รปntfolgje" msgid "Unfollow account" msgstr "Account รปntfolgje" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Untfolget de brรปker" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Mei โ€™k net mear oer" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "Petear net mear negearje" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Fideo net mear negearje" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Losmeitsje" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Feed losmeitsje" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Fan startside losmeitsje" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Moderaasjelist losmeitsje" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} fan startside losmakke" @@ -13258,11 +13279,11 @@ msgstr "Fan dizze labeler รดfmelde" msgid "Unsubscribed from list" msgstr "Fan lis รดfmeld" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Bywurkjen fan sichtberheid fan reaksje is mislearre" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Laad yn stee dรชrfan in foto op" @@ -13355,7 +13376,7 @@ msgstr "Fan bestannen รบt oplade" msgid "Upload from Library" msgstr "Fan bibloteek รบt oplade" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "Ofbyldingen opladeโ€ฆ" msgid "Uploading link thumbnail..." msgstr "Keppelingminiatuer opladeโ€ฆ" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Fideo opladeโ€ฆ" @@ -13408,7 +13429,7 @@ msgstr "Brรปk dit om dy tegearre mei dyn handle oan te melden by de oare app." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Brรปk it e-mailadres fan dyn account, of in oar echt e-mailadres datsto hast, yn it gefal dat KWS of Bluesky kontakt mei dy opnimme wol." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "Ferifikaasje mislearre, probearje it opnij." msgid "Verification settings" msgstr "Ferifikaasjeynstellingen" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Ferifikaasjeynstellingen" @@ -13618,34 +13639,34 @@ msgstr "Fideo" msgid "Video failed to process" msgstr "Fideo kin net ferwurke wurde" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Fideofeed" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Fideo fan {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Fideospultsjes" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Fideo is pauzearre" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Fideo spilet" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Fideo net fรปn." @@ -13653,7 +13674,7 @@ msgstr "Fideo net fรปn." msgid "Video settings" msgstr "Fideo-ynstellingen" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Fideo opladen" @@ -13662,17 +13683,17 @@ msgstr "Fideo opladen" msgid "Video: {0}" msgstr "Fideo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Fideoโ€™s" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "Avatar fan {0} besjen" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Profyl fan {0} besjen" @@ -13724,13 +13745,13 @@ msgstr "Blogartikel foar mear details besjen" msgid "View debug entry" msgstr "Debug-item besjen" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Details besjen" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Folslein petear besjen" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "Ynformaasje oer dizze labels besjen" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Mear besjen" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "De labeltsjinst fan @{0} besjen" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Ferifikaasjes fan dizze account besjen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Brรปkers dyโ€™t oer dizze feed meie besjen" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Fideo besjen" @@ -13831,7 +13852,7 @@ msgstr "Dyn moderaasjelisten besjen" msgid "View your muted accounts" msgstr "Dyn negearre accounts besjen" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Dyn ferifikaasjes besjen" @@ -13840,7 +13861,7 @@ msgstr "Dyn ferifikaasjes besjen" msgid "Views full image" msgstr "Toant folsleine รดfbylding" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Toant fideo yn folslein skerm" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Der binne netwurkproblemen, probearje it opnij" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Wy yntrodusearje in nije ferifikaasjelaach op Bluesky โ€“ in iefรขldich-te-sjen finkje." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "It spyt รบs, mar wy kinne dizze list net ophelje. Nim kontakt op mei de msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "It spyt รบs, mar wy koene dyn negearre wurden op dit stuit net lade. Probearje it opnij." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "It spyt รบs! It berjocht wรชropsto reagearrest is fuortsmiten." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Hoe giet it?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Wa kin ferifiearje?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Wรปpsty!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Skriuw berjocht" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Skriuw dyn reaksje" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "Do bist net langer live" msgid "You are not allowed to upload videos." msgstr "Do meist gjin fideoโ€™s oplade." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "Do bist ferifiearre. Do silst dyn ferifikaasjestatus ferlieze asto dyn w msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Do bist ferifiearre. Do silst dyn ferifikaasjestatus ferlieze asto dyn handle wizigest. <0>Mear ynfo." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Do kinst dyn ynteressen altyd yn de ynstellingen รปnder โ€˜Ynhรขld en mediaโ€™ oanpasse." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Do kinst dy no oanmelde mei dyn nije wachtwurd." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Do kinst dit letter bywurkje fan dyn ynstellingen รบt." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "Do hast dyn e-mailadres mei sukses ferifiearre. Do kinst dit dialoochfin msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Do bist tydlik oer de limyt foar fideo-oplaads hinne. Probearje it letter opnij." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Do hast noch gjin startpakket makke!" @@ -14614,7 +14640,7 @@ msgstr "Do meist mar oant {STARTER_PACK_MAX_SIZE, plural, one {}other {{STARTER_ msgid "You may only add up to 3 feeds" msgstr "Do meist maksimaal 3 feeds tafoegje" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Do moatst op syn minst 7 oare persoanen folgje om in startpakket te generearjen." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "Do moatst dyn e-mailadres ferifiearje eardatsto e-mail-2FA ynskeakelje kinst." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Do wolst de app wierskynlik no opnij starte." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Do hast mei {0} reagearre" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Do folgest de foarstelde brรปkers en feeds, sa gau asto klear bist mei it oanmeitsjen fan dyn account!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Do folgest de foarstelde brรปkers, sa gau asto klear bist mei it oanmeitsjen fan dyn account!" @@ -14791,7 +14817,7 @@ msgstr "Do hast it ein fan de aktive ynhรขld berikt." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Do hast it ein fan dyn feed berikt! Sykje noch mear accounts om te folgjen." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Do bist oer it maksimaal tal tasteane fersiken. Probearje it letter nochris." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Do bist oer dyn deistige limyt foar fideo-oplaads (te folle bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Do bist oer dyn deistige limyt foar fideo-oplaads (te folle fideoโ€™s)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Do hast gjin fideoโ€™s mear om te besjen. Miskien is it in goed momint om skoft te hรขlden?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Dyn account" @@ -14835,11 +14861,11 @@ msgstr "Dyn account is opskoarten" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Dyn account is noch net รขld genรดch om fideoโ€™s op te laden. Probearje it letter nochris." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "Jouw e-mailadres" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Dyn e-mailadres liket รปnjildich te wรชzen." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Dyn ynteressen wurde bywurke!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Dyn ynteressen helpe รบs dat te finen, dรชrโ€™tsto oer meist!" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "Dyn wachtwurd moat op syn minst 8 tekens lang wรชze." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Voorkeurstaal" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Dyn profyl, berjochten, feeds en listen binne net langer sichtber foar oare Bluesky-brรปkers. Do kinst dyn account op elk momint opnij aktivearje troch oan te melden." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "Dyn melding wurdt nei <0>{0} ferstjoerd." msgid "Your selected interests help us serve you content you care about." msgstr "Dyn selektearre ynteressen helpe รบs dy ynhรขld dyโ€™t dy ynteressearret te toanen." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po index 117e47e353..007bdc35c9 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Irish\n" "Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Catagรณir \"{interestsDisplayName}\" (gnรญomhach)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(tรก รกbhar leabaithe ann)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# uair an chloig} two {# uair an chloig} few {# uair an chloig} many {# n-uair an chloig} other {# uair an chloig}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# mola #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Cuntas)" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} รก leanรบint" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} as 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "D'fhreagair {0} {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "Dheimhnigh {firstAuthorName} thรบ" msgid "{following} following" msgstr "{following} รก leanรบint" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Nรญ fรฉidir TD a chur chuig {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {รก leanรบint} two {รก leanรบint} few {รก lea #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {postรกil athluaite} two {phostรกil athluaite} few {phostรกil athluaite} many {bpostรกil athluaite} other {postรกil athluaite}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {athphostรกil} two {athphostรกil} few {athphostรกil} many {athphostรกil} other {athphostรกil}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 lรก" msgid "7 days" msgstr "7 lรก" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Seoladh cรณd nua chugat" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Inrochtaineacht" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Socruithe Inrochtaineachta" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Balbhaรญodh an Cuntas trรญ Liosta" msgid "Account options" msgstr "Roghanna cuntais" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Baineadh an cuntas รณn mearliosta" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Cuir tรฉacs malartach leis seo (roghnach)" msgid "Add another account" msgstr "Cuir cuntas eile leis" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Cuir postรกil eile leis" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Cuir an fotha seo le do chuid fothaรญ" msgid "Add to lists" msgstr "Cuir le liostaรญ" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Daoine fรกsta" msgid "Adult content" msgstr "รbhar do dhaoine fรกsta" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "aoife@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Uile" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Gach teanga" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Na fothaรญ go lรฉir a shรกbhรกil tรบ, in รกit amhรกin." @@ -1560,7 +1511,7 @@ msgstr "Ceadaรญonn sรฉ seo fรกil ar do chuid teachtaireachtaรญ dรญreacha" msgid "Already have a code?" msgstr "An bhfuil cรณd agat cheana?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "An bhfuil cuntas agat cheana?" @@ -1614,7 +1565,7 @@ msgstr "Cuireadh teachtaireacht rรญomhphoist chuig {0}. Tรก cรณd dearbhaithe fao msgid "An error has occurred" msgstr "Tharla earrรกid" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Tharla earrรกid" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Tharla earrรกid agus do phacรกiste fรกilte รก chruthรบ. An bhfuil fonn ort triail eile a bhaint as?" @@ -1640,11 +1591,11 @@ msgstr "Tharla earrรกid agus do phacรกiste fรกilte รก chruthรบ. An bhfuil fonn o msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Tharla earrรกid agus an fรญseรกn รก lรณdรกil. Bain triail eile as ar ball." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Tharla earrรกid agus an fรญseรกn รก lรณdรกil. Bain triail eile as." @@ -1684,7 +1635,7 @@ msgstr "Tharla earrรกid. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Rud nach bhfuil ar fรกil sna roghanna seo" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Tharla fadhb agus an comhrรก รก oscailt" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Aon duine" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Caithfidh ainm pasfhocal aipe a bheith ar a laghad ceithre charachtar ar msgid "App passwords" msgstr "Pasfhocail aipe" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Pasfhocail aipe" @@ -1891,8 +1838,8 @@ msgstr "Dรฉan achomharc i gcoinne an chinnidh seo" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Cartlannaithe รณ {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Postรกil sa chartlann" @@ -1980,7 +1927,7 @@ msgstr "An bhfuil tรบ cinnte gur mhaith leat รฉ seo a bhaint de do chuid fothaรญ msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "An bhfuil tรบ cinnte gur mhaith leat an phostรกil seo a scriosadh?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "Seinn fรญseรกin agus GIFanna go huathoibrรญoch" msgid "Available" msgstr "Ar fรกil" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Nรญ mรณr duit do rรญomhphost a dheimhniรบ roimh phacรกiste fรกilte a chruthรบ." @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "Breithlรก" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Blocรกilte" msgid "Blocked accounts" msgstr "Cuntais bhlocรกilte" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cuntais bhlocรกilte" @@ -2282,7 +2244,7 @@ msgstr "Nรญ fรฉidir leis na cuntais bhlocรกilte freagra a thabhairt ar do chomhr msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Nรญ fรฉidir leis na cuntais bhlocรกilte freagra a thabhairt ar do chomhrรกite, tagairt a dhรฉanamh duit, nรก aon phlรฉ eile a bheith acu leat. Nรญ fheicfidh tรบ a gcuid รกbhair agus nรญ fheicfidh siad do chuid รกbhair." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Nรญ bhacann blocรกil an lipรฉadรณir seo ar lipรฉid a chur ar do chuntas." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Nรญ fรฉidir le Bluesky an dรกta maรญte a dheimhniรบ." @@ -2330,7 +2293,7 @@ msgstr "Is lรญonra oscailte รฉ Bluesky, lenar fรฉidir do sholรกthraรญ รณstรกla f msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Dรฉanann mathshlua meidhrรฉis ar Bluesky!" @@ -2358,7 +2321,7 @@ msgstr "Tรฉarmaรญ Seirbhรญse Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Roghnรณidh Bluesky roinnt cuntas molta รณ dhaoine i do lรญonra." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 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:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Tabhair sรบil ar thuilleadh moltaรญ" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Tabhair sรบil ar thuilleadh moltaรญ ar an leathanach Taiscรฉalaรญocht" @@ -2425,24 +2388,25 @@ msgstr "Tabhair sรบil ar thuilleadh moltaรญ ar an leathanach Taiscรฉalaรญocht" msgid "Browse other feeds" msgstr "Tabhair sรบil ar fhothaรญ eile" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Tabhair sรบil ar phostรกlacha faoi {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Tabhair sรบil ar phostรกlacha a bhfuil clib {displayName} leo" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Tabhair sรบil ar an topaic {displayName}" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Le {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Le <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Mรก chruthaรญonn tรบ cuntas, glacann tรบ leis na <0>Tรฉarmaรญ Seirbhรญse msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Mรก chruthaรญonn tรบ cuntas, glacann tรบ leis na <0>Tรฉarmaรญ Seirbhรญse." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Ceamara" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cealaigh an cuardach" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Balbhaรญodh an comhrรก" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Socruithe comhrรก" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Dรญbhalbhaรญodh an comhrรก" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Comhrรกite" @@ -2837,7 +2802,7 @@ msgstr "Roghnaigh modh deimhnithe fearainn" msgid "Choose Feeds" msgstr "Roghnaigh Fothaรญ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Roghnaigh ar mo shon" @@ -2854,7 +2819,7 @@ msgstr "Roghnaigh Daoine" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Roghnaigh an dath seo mar abhatรกr duit" @@ -2879,7 +2844,7 @@ msgstr "Tรณg d'amlรญne fรฉin! Is fรฉidir teacht ar รกbhar a thaitneoidh leat le msgid "Choose your password" msgstr "Roghnaigh do phasfhocal" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Do leasainm" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Cliceรกil le triail eile a bhaint as teachtaireacht ar theip uirthi" @@ -3003,7 +2968,7 @@ msgstr "Cliceรกil le triail eile a bhaint as teachtaireacht ar theip uirthi" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Cliceรกil le triail eile a bhaint as teachtaireacht ar theip uirthi" msgid "Close" msgstr "Dรบn" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Dรบn an dialรณg oscailte" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "Dรบn an dialรณg seo" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Dรบnann sรฉ seo an rabhadh faoi uasdรกtรบ an phasfhocail" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Mรณd datha" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Greannรกin" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Treoirlรญnte an phobail" @@ -3141,7 +3106,7 @@ msgstr "Treoirlรญnte an phobail" msgid "Complete onboarding and start using your account" msgstr "Crรญochnaigh agus tosaigh ag baint รบsรกide as do chuntas." -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Freagair an dรบshlรกn" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Cum postรกil nua" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "Scrรญobh freagra" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIF รก chomhbhrรบ..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Fรญseรกn รก chomhbhrรบ..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Teagmhรกil le Support" @@ -3253,7 +3218,7 @@ msgstr "รbhar agus Meรกin" msgid "Content and media" msgstr "รbhar agus meรกin" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "รbhar agus Meรกin" @@ -3265,10 +3230,6 @@ msgstr "รbhar Blocรกilte" msgid "Content filters" msgstr "Scagthaรญ รกbhair" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Rabhadh รกbhair" msgid "Content warnings" msgstr "Rabhadh รกbhair" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Cรบlra an roghchlรกir comhthรฉacs, cliceรกil chun an roghchlรกr a dhรบnadh." @@ -3302,7 +3263,7 @@ msgstr "Cรบlra an roghchlรกir comhthรฉacs, cliceรกil chun an roghchlรกr a dhรบna #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Lean leis an snรกithe..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Leagan cรณipeรกilte sa ghearrthaisce" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Cรณipeรกil an Pasfhocal Aipe" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "Cรณipeรกil an Nasc" msgid "Copy link to list" msgstr "Cรณipeรกil an nasc leis an liosta" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Cรณipeรกil an nasc leis an bpostรกil" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "Cรณipeรกil tรฉacs na teachtaireachta" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "Cรณipeรกil an taifead TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "An polasaรญ maidir le cรณipcheart" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Nรญor รฉirรญodh ar an gcomhrรก a fhรกgรกil" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Nรญ fรฉidir an fotha a lรณdรกil" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Nรญor รฉirรญodh ar an gcomhrรก a bhalbhรบ" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Cruthaigh" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Cruthaigh cรณd QR le haghaidh pacรกiste fรกilte" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Cruthaigh pacรกiste fรกilte" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Cruthaigh pacรกiste fรกilte ar mo shon" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Clรกraigh" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Cruthaigh cuntas" @@ -3666,15 +3627,15 @@ msgstr "Cruthaigh cuntas" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Cruthaigh abhatรกr nua ina ionad sin" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Cruthaigh ceann eile" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "Cultรบr" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Dorcha" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Dorcha" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tรฉama dorcha" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Rรฉamhshocrรบ" @@ -3894,7 +3855,7 @@ msgstr "Scrios mo chuntas" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Scrios an phostรกil" @@ -3988,7 +3949,7 @@ msgstr "Dialรณg: cรฉ atรก in ann idirghnรญomhรบ leis an bpostรกil seo" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Breacdhorcha" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "Dรญchumasaithe" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Nรก sรกbhรกil" msgid "Discard changes?" msgstr "Faigh rรฉidh leis na hathruithe?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Faigh rรฉidh leis an drรฉacht?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Faigh rรฉidh leis an bpostรกil?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Cuir ina luรญ ar aipeanna gan mo chuntas a thaispeรกint d'รบsรกideoirรญ atรก logรกilte amach" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Cuir ina luรญ ar aipeanna gan mo chuntas a thaispeรกint d'รบsรกideoirรญ msgid "Discover new custom feeds" msgstr "Aimsigh sainfhothaรญ nua" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Aimsigh Fothaรญ Nua" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ruaig" @@ -4103,28 +4064,28 @@ msgstr "Ruaig" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Ruaig an earrรกid" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Scoir an treoir tosaithe" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Ruaig an rannรกn seo" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "Dรฉan suaitheantais thรฉacs malartaigh nรญos mรณ" msgid "Display name" msgstr "Ainm taispeรกna" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "Dรฉanta" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tapรกil faoi dhรณ chun an fhuinneog a dhรบnadh" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Cuir an รญomhรก seo in eagar" msgid "Edit interaction settings" msgstr "Cuir na socruithe idirghnรญomhaรญochta in eagar" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Athraigh mo chuid fothaรญ" @@ -4406,6 +4368,11 @@ msgstr "Athraigh mo chuid fothaรญ" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Cuir Daoine in Eagar" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Cรฉ atรก in ann freagra a thabhairt" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Cuir do phacรกiste fรกilte in eagar" @@ -4500,8 +4467,8 @@ msgstr "Leabaigh an cรณd HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Leabaigh an phostรกil" @@ -4509,7 +4476,7 @@ msgstr "Leabaigh an phostรกil" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Leabaigh an phostรกil seo i do shuรญomh grรฉasรกin fรฉin. Cรณipeรกil an pรญosa cรณid seo a leanas isteach san HTML ar do shuรญomh." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Fรญs-seinnteoir leabaithe" @@ -4533,7 +4500,7 @@ msgstr "Cuir รกbhar do dhaoine fรกsta ar fรกil" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "Cuir meรกin sheachtracha ar fรกil" msgid "Enable media players for" msgstr "Cuir seinnteoirรญ na meรกn ar fรกil le haghaidh" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "Cumasaithe" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Deireadh an fhotha" @@ -4608,7 +4576,7 @@ msgstr "Cuir focal na clib isteach" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Mรณd lรกnscรกileรกin" @@ -4650,11 +4618,11 @@ msgstr "Cuir isteach do leasainm agus do phasfhocal" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Earrรกid" @@ -4684,7 +4652,7 @@ msgstr "Tharla earrรกid le linn comhad a shรกbhรกil" msgid "Error receiving captcha response." msgstr "Earrรกid agus an freagra ar an captcha รก phrรณiseรกil." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "Tig le chuile dhuine freagra a thabhairt" msgid "Everybody can reply to this post." msgstr "Tig le chuile dhuine freagra a thabhairt ar an bpostรกil." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Chuile dhuine" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Chuile dhuine" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "Nรก cuir i bhfeidhm ar รบsรกideoirรญ a leanaim" msgid "Excludes users you follow" msgstr "Leis seo, nรญ chuirtear an balbhรบ i bhfeidhm ar รบsรกideoirรญ a leanann tรบ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Fรกg an mรณd lรกnscรกileรกin" @@ -4755,11 +4723,11 @@ msgstr "Leathnaigh an liosta รบsรกideoirรญ" msgid "Expand or collapse the full post you are replying to" msgstr "Leathnaigh nรณ laghdaigh an tรฉacs iomlรกn a bhfuil tรบ ag freagairt" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "Meรกin is fรฉidir a bheith gรกirsiรบil nรณ goilliรบnach." msgid "Explicit sexual images." msgstr "รomhรกnna gnรฉasacha." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "Meรกin sheachtracha" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Is fรฉidir le meรกin sheachtracha cumas a thabhairt do shuรญomhanna ar an nGrรฉasรกn eolas fรบtsa agus faoi do ghlรฉas a chnuasach. Nรญ sheoltar nรก iarrtar aon eolas go dtรญ go mbrรบnn tรบ an cnaipe โ€œplayโ€." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Roghanna maidir le meรกin sheachtracha" @@ -4886,7 +4854,7 @@ msgstr "Theip ar athrรบ an leasainm. Bain triail eile as." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Teip ar lรณdรกil roghanna na bhfothaรญ" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Teip ar lรณdรกil na bhfothaรญ molta" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Teip ar lรณdรกil na gcuntas molta" @@ -5027,12 +4996,12 @@ msgstr "Teip ar lรณdรกil na gcuntas molta" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Fotha" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Roghchlรกr an fhotha" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Uasdรกtaรญodh na fothaรญ!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Fothaรญ a mbeadh spรฉis agat iontu." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "Sรกbhรกladh an comhad!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Scag รณ mo chuid fothaรญ" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "Aimsigh fothaรญ le leanรบint" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Lean {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Lean {handle}" @@ -5453,11 +5406,11 @@ msgstr "Lean {handle}" msgid "Follow 10 accounts" msgstr "Lean 10 gcuntas" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Lean 7 gcuntas" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Leantรณirรญ de chuid @{0} a bhfuil aithne agat orthu" @@ -5544,7 +5497,7 @@ msgstr "Leantรณirรญ a bhfuil aithne agat orthu" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Ag leanรบint {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "Roghanna le haghaidh an fhotha Following" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Roghanna don Fhotha Following" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Leanann sรฉ/sรญ thรบ" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Clรณfhoireann" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Clรณmhรฉid" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "De bharr cรบrsaรญ slรกndรกla, nรญ bheidh tรบ in ann breathnรบ air seo arรญs. Dรก gcaillfeรก an pasfhocal aipe, bheadh ort ceann nua a chruthรบ." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Don eispรฉireas is fearr, molaimid an clรณ tรฉama." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "Go brรกch" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "Pasfhocal dearmadta?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "ร“ <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Cruthaigh pacรกiste fรกilte" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "Faigh cabhair" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Tabhair gnรบis do do phrรณifรญl" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Haischlib" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Fadhb ort?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "Cรบnamh" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Tabhair le fios dรบinn nach bot thรบ trรญ pictiรบr a uaslรณdรกil nรณ abhatรกr a chruthรบ." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "I bhfolach" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "I bhfolach mar gheall ar shocruithe modhnรณireachta." @@ -6148,9 +6102,10 @@ msgstr "I bhfolach mar gheall ar shocruithe modhnรณireachta." msgid "Hidden list" msgstr "Liosta i bhfolach" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Liosta i bhfolach" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Cuir i bhfolach" @@ -6198,7 +6154,7 @@ msgstr "Cuir an freagra i bhfolach do chรกch" msgid "Hide reply for me" msgstr "Cuir an freagra i bhfolach domsa" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "An bhfuil fonn ort an freagra seo a chur i bhfolach?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Cuir treochtaรญ i bhfolach" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "An bhfuil fonn ort treochtaรญ a chur i bhfolach?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "Cuir liosta na gcuntas i bhfolach" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "Hmmm, nรญ raibh muid in ann an tseirbhรญs modhnรณireachta sin a lรณdรกil msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Foighne ort! Tรก fรญseรกin รก seoladh de rรฉir a chรฉile, agus tรก tรบ fรณs ag fanacht ar d'uain. Dรฉan iarracht go luath!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Mรกs mian leat do phasfhocal a athrรบ, seolfaimid cรณd duit chun dearbhรบ gur leatsa an cuntas seo." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Leasainm nรณ pasfhocal mรญchruinn" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "Cรณd cuiridh" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Nรญor glacadh leis an gcรณd cuiridh. Bรญ cinnte gur scrรญobh tรบ i gceart รฉ agus bain triail eile as." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Nรญl ann ach tusa anois! Cuardaigh thuas le tuilleadh daoine a chur le do phacรกiste fรกilte." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID an Jab: {0}" @@ -6816,8 +6766,8 @@ msgstr "Glac pรกirt sa chomhrรก" msgid "Journalism" msgstr "Iriseoireacht" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Lipรฉad curtha ag {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Lipรฉadaithe ag an รบdar." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Lipรฉid" @@ -6852,7 +6802,7 @@ msgstr "Cuireadh lipรฉid leis" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Nรณtaรญ faoi รบsรกideoirรญ nรณ รกbhar is ea lipรฉid. Is fรฉidir รบsรกid a bhaint astu leis an lรญonra a cheilt, a chatagรณiriรบ, agus fainic a chur air." @@ -6864,7 +6814,7 @@ msgstr "Lipรฉid ar do chuntas" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Socruithe teanga" @@ -6874,7 +6824,7 @@ msgstr "Socruithe teanga" msgid "Languages" msgstr "Teangacha" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Nรญos Mรณ" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Is Dรฉanaรญ" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Le tuilleadh a fhoghlaim" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Tuilleadh eolais faoi do fhreastalaรญ pearsanta fรฉin a รณstรกil." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Le tuilleadh a fhoghlaim faoin rabhadh seo" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Tuilleadh eolais." @@ -6993,8 +6943,8 @@ msgstr "ร‰irigh as" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Ag fรกgรกil slรกn ag Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "le dรฉanamh fรณs." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lig dom roghnรบ" @@ -7057,7 +7007,7 @@ msgstr "Ar aghaidh linn!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Sorcha" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Sorcha" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Moladh" @@ -7076,7 +7026,7 @@ msgstr "Moladh" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Mol ({0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# moladh} other {# moladh}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Mol 10 bpostรกil." @@ -7085,7 +7035,7 @@ msgstr "Mol 10 bpostรกil." msgid "Like 10 posts to train the Discover feed" msgstr "Mol 10 bpostรกil leis an bhfotha Discover a thraenรกil" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Mol an fotha seo" @@ -7093,8 +7043,8 @@ msgstr "Mol an fotha seo" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Molta ag" @@ -7111,27 +7061,45 @@ msgstr "Molta ag" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Molta ag {0, plural, one {รบsรกideoir amhรกin} two {# รบsรกideoir} few {# รบsรกideoir} many {# n-รบsรกideoir} other {# รบsรกideoir}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Molta ag {likeCount, plural, one {รบsรกideoir amhรกin} two {# รบsรกideoir} few {# รบsรกideoir} many {# n-รบsรกideoir} other {# รบsรกideoir}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Moltaรญ" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Moltaรญ don phostรกil seo" @@ -7144,7 +7112,7 @@ msgstr "Lรญneach" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Liosta" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liosta nach bhfuil balbhaithe nรญos mรณ" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Lรณdรกil tuilleadh" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Lรณdรกil tuilleadh fothaรญ molta" @@ -7292,8 +7260,8 @@ msgstr "Lรณdรกil tuilleadh fothaรญ molta" msgid "Load new notifications" msgstr "Lรณdรกil fรณgraรญ nua" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Logleabhar" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Dรฉan ceann domsa" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Marcรกil lรฉite" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Meรกin" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Meรกin a d'fhรฉadfadh a bheith mรญ-oiriรบnach nรณ a chuirfeadh isteach ar dhaoine รกirithe." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "รบsรกideoirรญ luaite" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Luaite" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Scriosadh an teachtaireacht" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Teachtaireachtaรญ" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Modhnรณireacht" @@ -7636,7 +7608,7 @@ msgstr "Liosta modhnรณireachta uasdรกtaithe" msgid "Moderation lists" msgstr "Liostaรญ modhnรณireachta" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liostaรญ modhnรณireachta" @@ -7645,7 +7617,7 @@ msgstr "Liostaรญ modhnรณireachta" msgid "moderation settings" msgstr "socruithe modhnรณireachta" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Stรกdais modhnรณireachta" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "Cuntais a balbhaรญodh" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cuntais a balbhaรญodh" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Is cuma, cruthaigh leasainm dom" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nua" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Comhrรก nua" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "Liosta nua" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Pasfhocal Nua" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Postรกil nua" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Na freagraรญ is dรฉanaรญ ar dtรบs" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Nuacht" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "An chรฉad รญomhรก eile" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "Nรญl aon phasfhocal aipe ann fรณs" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Nรญ fuarthas aon fhothaรญ. Bain triail as rud รฉigin eile a chuardach." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Gan moladh fรณs" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "Nรญ leantar {0} nรญos mรณ" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "Nรญl aon teachtaireacht ann fรณs" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "Is รฉ an t-รบdar amhรกin atรก in ann an phostรกil seo a athlua." msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Gan phostรกil athluaite fรณs" @@ -8198,11 +8190,7 @@ msgstr "Gan phostรกil athluaite fรณs" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "Gan torthaรญ" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Toradh ar bith" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "Gan torthaรญ" msgid "No results found for \"{query}\"" msgstr "Gan torthaรญ ar โ€œ{query}โ€" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "Nรญor mhaith liom รฉ sin." msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "Duine ar bith" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nรญor mhol รฉinne fรณs รฉ. Ar cheart duitse tosรบ?" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Nรญ dhearna รฉinne postรกil athluaite air seo fรณs. Ar cheart duitse tosรบ?" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Lomnochtacht Neamhghnรฉasach" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Nรญ bhfuarthas รฉ sin" @@ -8333,7 +8325,7 @@ msgstr "Nรณta faoi roinnt" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nod leat: is grรฉasรกn oscailte poiblรญ Bluesky. Nรญ chuireann an socrรบ seo srian ar fheiceรกlacht do chuid รกbhair ach amhรกin ar aip agus suรญomh Bluesky. Is fรฉidir nach gcloรญfidh aipeanna eile leis an socrรบ seo. Is fรฉidir go dtaispeรกnfar do chuid รกbhair dโ€™รบsรกideoirรญ atรก logรกilte amach ar aipeanna agus suรญomhanna eile." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Socruithe fรณgra" @@ -8353,11 +8345,12 @@ msgstr "Socruithe fรณgra" msgid "Notification sounds" msgstr "Fuaimeanna fรณgra" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "รšps!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Maith go leor" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Atosรบ an chlรกraithe" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Tรฉacs malartach de dhรญth ar GIF nรณ ar GIFanna." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Tรก tรฉacs malartach de dhรญth ar รญomhรก amhรกin nรณ nรญos mรณ acu." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Tรฉacs malartach de dhรญth ar fhรญseรกn nรณ ar fhรญseรกin" @@ -8471,7 +8466,7 @@ msgstr "Nรญ fรฉidir ach le {0} freagra a thabhairt." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Nรญ oibrรญonn ach comhaid WebVTT (.vtt)" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "รšps!" @@ -8544,7 +8543,7 @@ msgstr "รšps!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Oscail an cruthaitheoir abhatรกir" @@ -8570,21 +8569,22 @@ msgstr "Oscail na roghanna comhrรก" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Oscail an roghchlรกr tarraiceรกin" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Oscail roghnรณir na n-emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Oscail eolas faoin fhotha" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Oscail roghchlรกr na bhfothaรญ" @@ -8627,7 +8627,7 @@ msgstr "Oscail leathanach chun modhnรณireacht a dhรญfhabhtรบ" msgid "Open muted words and tags settings" msgstr "Oscail socruithe na gclibeanna agus na bhfocal a bhalbhaigh tรบ" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "Osclaรญonn sรฉ seo tuilleadh sonraรญ le haghaidh iontrรกil dรญfhabhtaith msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Osclaรญonn sรฉ seo an ceamara ar an nglรฉas" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Osclaรญonn sรฉ seo an prรณiseas le cuntas nua Bluesky a chruthรบ" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Pasfhocal uasdรกtaithe!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Sos" @@ -8925,12 +8925,12 @@ msgstr "Sos" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Cuir an fรญseรกn ar shos" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Daoine" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Na daoine atรก leanta ag @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Na leantรณirรญ atรก ag @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Pictiรบir le haghaidh daoine fรกsta." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Greamaigh an fotha" @@ -9034,7 +9034,7 @@ msgstr "Greamaigh an fotha" msgid "Pin to home" msgstr "Greamaigh le baile" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Greamaigh le Baile" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Greamaithe" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Greamaรญodh {0} le Baile" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Greamaithe le do chuid fothaรญ" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Seinn" @@ -9076,8 +9076,8 @@ msgstr "Seinn {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Seinn an fรญseรกn" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Roghnaigh do leasainm, le do thoil." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Roghnaigh do phasfhocal, le do thoil." @@ -9122,7 +9122,7 @@ msgstr "Roghnaigh do phasfhocal, le do thoil." msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." msgstr "" -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Dรฉan an captcha, le do thoil." @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Cuir isteach do sheoladh rรญomhphoist, le do thoil." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Polaitรญocht" @@ -9269,7 +9269,7 @@ msgstr "Polaitรญocht" msgid "Porn" msgstr "Pornagrafaรญocht" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Postรกil" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Postรกil" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Postรกil Uile" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Postรกil รณ @{0}" @@ -9340,7 +9340,7 @@ msgstr "Postรกil a chuir tรบ i bhfolach" msgid "Post interaction settings" msgstr "Socruithe idirghnรญomhaรญochta na postรกla" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "Greamaรญodh an phostรกil" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "Dรญghreamaรญodh an phostรกil" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Postรกlacha" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Is fรฉidir leat postรกlacha a bhalbhรบ bunaithe ar an tรฉacs, clibeanna, msgid "Posts hidden" msgstr "Cuireadh na postรกlacha i bhfolach" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Prรญobhรกideacht" msgid "Privacy and security" msgstr "Prรญobhรกideacht agus slรกndรกil" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Prรญobhรกideacht agus Slรกndรกil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Polasaรญ Prรญobhรกideachta" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Fรญseรกn รก phrรณiseรกil..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Liostaรญ poiblรญ inroinnte chun รบsรกideoirรญ a bhlocรกil ar an mรณrchรณir." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Nรญ fรฉidir postรกlacha a athlua" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Postรกlacha athluaite" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Postรกlacha athluaite den phostรกil seo" @@ -9647,7 +9650,7 @@ msgstr "Athghnรญomhaigh do chuntas" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Nรญos lรบ" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Nรญos mรณ" @@ -9687,11 +9690,11 @@ msgstr "Lรฉigh Polasaรญ Prรญobhรกideachta Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Lรฉigh Tรฉarmaรญ Seirbhรญse Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Molta" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Athnasc" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Athlรณdรกil comhrรกite" @@ -9766,7 +9765,7 @@ msgstr "Athlรณdรกil comhrรกite" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Scrios" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Bain an cuntas de" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Bain de mo chuid fothaรญ" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "An bhfuil fonn ort รฉ a bhaint den mhearliosta?" @@ -9862,7 +9861,7 @@ msgstr "An bhfuil fonn ort รฉ a bhaint den mhearliosta?" msgid "Remove from saved feeds" msgstr "Bain de mo chuid fothaรญ sรกbhรกilte" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Bain an รญomhรก de" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Baineadh den liosta รฉ" msgid "Removed from saved feeds" msgstr "Baineadh de do chuid fothaรญ sรกbhรกilte รฉ" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Freagraรญ" @@ -10037,7 +10037,7 @@ msgstr "Nรญ fรฉidir freagraรญ a thabhairt ar an bpostรกil seo." msgid "Reply" msgstr "Freagair" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Freagair" @@ -10098,8 +10098,8 @@ msgstr "Tuairiscigh an comhrรก seo" msgid "Report dialog" msgstr "Tuairiscigh comhrรก" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Dรฉan gearรกn faoi fhotha" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Athphostรกilte agat" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Athphostรกlacha den phostรกil seo" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Baineann sรฉ seo triail eile as an ngnรญomh is dรฉanaรญ, ar theip air" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Filleann sรฉ seo abhaile" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Filleann sรฉ seo ar an leathanach roimhe seo" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Sรกbhรกil na hathruithe" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Sรกbhรกil an cรณd QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Sรกbhรกil i mo chuid fothaรญ" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Fothaรญ Sรกbhรกilte" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Sรกbhรกilte le mo chuid fothaรญ" @@ -10520,8 +10520,8 @@ msgstr "Sรกbhรกilte le mo chuid fothaรญ" msgid "Say hello!" msgstr "Abair heileo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Eolaรญocht" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Fill ar an mbarr" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Cuardaigh" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Cuardaigh fothaรญ ar mhaith leat moladh do dhaoine eile." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Cuardaigh GIFanna" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Fรฉach ar phostanna le Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Sleamhnรกn cuardaigh. รšsรกid na saigheadeochracha chun dul ar aghaidh nรณ ar gcรบl, agus an spรกsbharra chun seinm nรณ cur ar sos" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Roghnaigh dath" @@ -10764,11 +10769,11 @@ msgstr "Roghnaigh cuntas" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Roghnaigh abhatรกr" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Roghnaigh emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Roghnaigh GIF" msgid "Select GIF \"{0}\"" msgstr "Roghnaigh GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Roghnaigh an emoji {emojiName} mar abhatรกr" @@ -10945,7 +10951,8 @@ msgstr "Seol teachtaireacht" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Seol an phostรกil seo chuig..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Seol rรญomhphost dearbhaithe" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Seol mar theachtaireacht dhรญreach" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Socraรญonn sรฉ seo an seoladh rรญomhphoist le haghaidh athshocrรบ an phasfhocail" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Socruithe" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Comhroinn mar sin fรฉin" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialรณg le nasc a roinnt" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Comhroinn an cรณd QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Comhroinn an fotha seo" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Roinn an pacรกiste fรกilte seo" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Roinn an pacรกiste fรกilte seo agus cuidigh le daoine pรกirt a ghlacadh i do phobal ar Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Tรกstรกil Roghanna Comhroinnte" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Taispeรกin" msgid "Show alt text" msgstr "Taispeรกin an tรฉacs malartach" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Taispeรกin mar sin fรฉin" @@ -11274,9 +11281,9 @@ msgstr "Taispeรกin an liosta mar sin fรฉin" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Tuilleadh" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Taispeรกin rabhadh agus scag รณ na fothaรญ รฉ" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Logรกil amach?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Caithfidh tรบ logรกil isteach" @@ -11469,7 +11476,7 @@ msgstr "Nรก bac leis" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Nรญos Lรบ" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Fothaรญ eile a mbeadh suim agat iontu" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Chuaigh rud รฉigin amรบ, bain triail eile as" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Rud รฉigin mรญcheart? Abair linn." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Spรณrt" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Tosaigh comhrรก nua" @@ -11682,17 +11689,17 @@ msgstr "Cuir tรบs le daoine a leanรบint" msgid "Start adding people!" msgstr "Cuir tรบs le daoine a leanรบint!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Tosaigh comhrรก le {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacรกiste Fรกilte" @@ -11715,12 +11722,16 @@ msgstr "Pacรกiste fรกilte a chruthaigh tusa" msgid "Starter pack is invalid" msgstr "Tรก an pacรกiste fรกilte neamhbhailรญ" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pacรกistรญ Fรกilte" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Tig leat na fothaรญ agus na daoine is fearr leat a roinnt le do chuid cairde le pacรกiste fรกilte." @@ -11728,7 +11739,7 @@ msgstr "Tig leat na fothaรญ agus na daoine is fearr leat a roinnt le do chuid ca msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Leathanach Stรกdais" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Cรฉim {0} as {1}" @@ -11754,7 +11765,7 @@ msgstr "Stรณrรกil scriosta, tรก ort an aip a atosรบ anois." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Glac sรญntiรบs le @{0} leis na lipรฉid seo a รบsรกid:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Molta duit" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Cรณras" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tapรกil le dรบnadh" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Obair curtha i gcrรญch - 10 gcuntas leanta!" msgid "Task complete - 10 likes!" msgstr "Obair curtha i gcrรญch - 10 moladh!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Abair linn na rudaรญ a thaitnรญonn leat" @@ -12060,7 +12073,7 @@ msgstr "Tรฉarmaรญ" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Nรญorbh fhรฉidir an pacรกiste fรกilte sin a aimsiรบ." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Sin รฉ รฉ!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Sin an mรฉid!" @@ -12216,7 +12229,7 @@ msgstr "Is dรณigh go bhfuil fadhb leis an bhfreastalaรญ. Bain triail eile as i g msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Tรก an pacรกiste fรกilte sin neamhbhailรญ. Tig leat รฉ a scriosadh." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "D'รบsรกid tรบ cรณd dearbhaithe neamhbhailรญ. Deimhnigh gur bhain tรบ รบs msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tรฉama" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Bhรญ fadhb ann maidir le teagmhรกil a dhรฉanamh leis an bhfreastalaรญ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Bhรญ fadhb ann maidir le teagmhรกil a dhรฉanamh leis an bhfreastalaรญ. Seiceรกil do cheangal leis an idirlรญon agus bain triail eile as." @@ -12283,8 +12296,8 @@ msgstr "Bhรญ fadhb ann maidir le teagmhรกil a dhรฉanamh leis an bhfreastalaรญ. S msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bhรญ fadhb ann maidir le fรณgraรญ a fhรกil. Tapรกil anseo le triail eile a bhaint as." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Bhรญ fadhb ann maidir le postรกlacha a fhรกil. Tapรกil anseo le triail eile a bhaint as." @@ -12309,7 +12322,7 @@ msgstr "Bhรญ fadhb ann agus d'fhaisnรฉis seirbhรญse รก hรญoslรณdรกil" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Bhรญ fadhb ann maidir leis an bhfotha seo a bhaint. Seiceรกil do cheangal leis an idirlรญon agus bain triail eile as." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Cuirtear na socruithe seo i bhfeidhm ar an bhfotha Following amhรกin." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Cuireadh bratach leis an {screenDescription} seo:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Nรญ mรณr duit logรกil isteach le prรณifรญl an chuntais seo a fheiceรกil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Tรก an fotha seo folamh! Is fรฉidir go mbeidh ort tuilleadh รบsรกideoirรญ a leanรบint nรณ do shocruithe teanga a athrรบ." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Tรก an fotha seo folamh." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Tรก an leasainm seo coimeรกdta. Bain triail as ceann eile." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Chuir tusa an lipรฉad seo leis." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Nรญ dรบirt an lipรฉadรณir seo cรฉard iad na lipรฉid a fhoilsรญonn sรฉ, agus is fรฉidir nach bhfuil sรฉ i mbun gnรณ." @@ -12621,13 +12634,13 @@ msgstr "Tรก an liosta seo folamh." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Deir an phostรกil seo gur cruthaรญodh รญ ar <0>{0}, ach chonacthas รญ ar Bluesky den chรฉad uair ar <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Deir an phostรกil seo gur cruthaรญodh รญ ar <0>{0}, ach chonacthas msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Nรญ bheidh an phostรกil seo le feiceรกil ar do chuid fothaรญ nรก snรกitheanna. Nรญ fรฉidir dul ar ais air seo." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Chuir รบdar na postรกla seo cosc ar phostรกlacha athluaite." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Nรญl aon leantรณirรญ ag an รบsรกideoir seo." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Tรก an t-รบsรกideoir seo tar รฉis thรบ a bhlocรกil. Nรญ fรฉidir leat a gcuid รกbhair a fheiceรกil." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Tรก an t-รบsรกideoir seo ar an liosta <0>{0} a bhalbhaigh tรบ." msgid "This user is new here. Press for more info about when they joined." msgstr "Tรก an t-รบsรกideoir seo nua anseo. Brรบigh le tuilleadh eolais a fhรกil faoina gclรกrรบ." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Nรญl รฉinne รก leanรบint ag an รบsรกideoir seo." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Leis seo, bainfear @{0} den mhearliosta." @@ -12786,7 +12801,7 @@ msgstr "Roghanna Snรกitheanna" msgid "Threaded" msgstr "Modh snรกithithe" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Roghanna Snรกitheanna" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Barr" @@ -12858,7 +12873,7 @@ msgstr "Barr" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "รbhar" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Treochtaรญ" @@ -12902,12 +12919,14 @@ msgstr "Treochtaรญ" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "An bhfuil fonn ort an cuntas seo a dhรญbhlocรกil?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Dรญlean {0}" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Dรญmhol" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "Nรก balbhaigh an snรกithe seo nรญos mรณ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Nรก balbhaigh an fรญseรกn seo nรญos mรณ" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Dรญghreamaigh" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Dรญghreamaigh an fotha" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Dรญghreamaigh รณn mbaile" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Dรญghreamaigh an liosta modhnรณireachta" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Dรญghreamaรญodh {0} รณn mBaile" @@ -13258,11 +13279,11 @@ msgstr "Dรญliostรกil รณn lipรฉadรณir seo" msgid "Unsubscribed from list" msgstr "Dhรญliostรกil tรบ รณn liosta seo" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Theip ar infheictheacht an fhreagra a uasdรกtรบ" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Uaslรณdรกil grianghraf in ionad" @@ -13355,7 +13376,7 @@ msgstr "Uaslรณdรกil รณ Chomhaid" msgid "Upload from Library" msgstr "Uaslรณdรกil รณ Leabharlann" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "รomhรกnna รก n-uaslรณdรกil..." msgid "Uploading link thumbnail..." msgstr "Mionsamhail รก huaslรณdรกil..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Fรญseรกn รก uaslรณdรกil..." @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "Fรญseรกn" msgid "Video failed to process" msgstr "Theip ar phrรณiseรกil an fhรญseรกin" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Fรญschluichรญ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Fรญseรกn gan aimsiรบ." @@ -13653,7 +13674,7 @@ msgstr "Fรญseรกn gan aimsiรบ." msgid "Video settings" msgstr "Socruithe fรญse" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Uaslรณdรกladh an fรญseรกn" @@ -13662,17 +13683,17 @@ msgstr "Uaslรณdรกladh an fรญseรกn" msgid "Video: {0}" msgstr "Fรญseรกn: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Fรญseรกin" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "Fรฉach ar an abhatรกr atรก ag {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Amharc ar phrรณifรญl {0}" @@ -13724,13 +13745,13 @@ msgstr "Fรฉach ar an mblagphost chun tuilleadh eolais a fhรกil" msgid "View debug entry" msgstr "Fรฉach ar an iontrรกil dรญfhabhtaithe" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Fรฉach ar shonraรญ" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Fรฉach ar an snรกithe iomlรกn" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "Fรฉach ar eolas faoi na lipรฉid seo" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Tuilleadh" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Fรฉach ar an tseirbhรญs lipรฉadaithe atรก curtha ar fรกil ag @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Fรฉach ar รบsรกideoirรญ ar thaitin an fotha seo leo" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "Fรฉach ar do chuid liostaรญ modhnรณireachta" msgid "View your muted accounts" msgstr "Fรฉach ar na cuntais a bhalbhaigh tรบ" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Tรก fadhbanna lรญonra againn, bain triail as arรญs" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "รr leithscรฉal, ach nรญ fรฉidir linn an liosta seo a thaispeรกint. Mรก msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Tรก brรณn orainn, ach theip orainn na focail a bhalbhaigh tรบ a lรณdรกil an uair seo. Bain triail as arรญs." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "รr leithscรฉal, ach scriosadh an phostรกil atรก tรบ ag freagairt." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Aon scรฉal?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "รšps!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Scrรญobh postรกil" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Scrรญobh freagra" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Nรญl cead agat fรญseรกin a uaslรณdรกil." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Is fรฉidir leat logรกil isteach le do phasfhocal nua anois." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Tig leat รฉ seo a uasdรกtรบ รณ do shocruithe." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Tรก tรบ tar รฉis uasteorainn uaslรณdรกlacha fรญseรกin a bhaint amach. Bain triail eile as ar ball." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Nรญl pacรกiste fรกilte cruthaithe agat fรณs!" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Nรญ fรฉidir leat ach suas le 3 fhotha a chur leis seo" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Nรญ mรณr duit seachtar ar a laghad a leanรบint le pacรกiste fรกilte a chruthรบ." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Leanfaidh tรบ na hรบsรกideoirรญ agus na fothaรญ a moladh tar รฉis duit do chuntas a chruthรบ!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Leanfaidh tรบ na hรบsรกideoirรญ a moladh tar รฉis duit do chuntas a chruthรบ!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Thรกinig tรบ go deireadh dโ€™fhotha! Aimsigh cuntais eile le leanรบint." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Tรก tรบ tar รฉis an uasteorainn laethรบil ar uaslรณdรกlacha fรญseรกin a msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Tรก tรบ tar รฉis an uasteorainn laethรบil ar uaslรณdรกlacha fรญseรกin a bhaint amach (an iomarca fรญseรกn)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Do chuntas" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Nรญl tรบ anseo fada go leor chun fรญseรกin a uaslรณdรกil. Bain triail eile as ar ball." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Is cosรบil go bhfuil do rรญomhphost neamhbhailรญ." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Nรญ bheidh do phrรณifรญl, postรกlacha, fothaรญ nรก liostaรญ infheicthe ag รบsรกideoirรญ eile Bluesky. Is fรฉidir leat do chuntas a athghnรญomhรบ uair ar bith trรญ logรกil isteach." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/gd/messages.po b/src/locale/locales/gd/messages.po index 9f16d19657..fd7cc0caf7 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Scottish Gaelic\n" "Plural-Forms: nplurals=4; plural=(n==1 || n==11) ? 0 : (n==2 || n==12) ? 1 : (n>2 && n<20) ? 2 : 3;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Roinn-seรฒrsa โ€œ{interestsDisplayName}โ€ (gnรฌomhach)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(tha susbaint leabaichte ann)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# uair a thรฌde} two {# uair a thรฌde} few {# uairean a thรฌde} other {# uair a thรฌde}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {โ€™s toil le # seo} two {โ€™s toil le # seo} few {โ€™s #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Cunntas)" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "aโ€™ leantainn {0}" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} ร  50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "Chuir {0} {1} mar fhrith-fhreagairt" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "Rinn {firstAuthorName} dearbhadh ort" msgid "{following} following" msgstr "aโ€™ leantainn {following}" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Cha ghabh {handle} ri teachdaireachdan" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# nรฌ gun leughadh} two {# nรฌ gun leug msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {Chaidh # neach-aithne a lorg} two {Chaidh # neach-aithne a lorg} few {Chaidh # luchd-aithne a lorg} other {Chaidh # neach-aithne a lorg}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "Chaidh {profileName} an sร s Bluesky {timeAgoString} air ais" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "Chaidh {profileName} an sร s Bluesky {timeAgoString} air ais, aโ€™ cleachdadh pacaid-thรฒiseachaidh" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}u air ais" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "โ€™S e neach-dearbhaidh earbsach a thโ€™ ann an {userName}" @@ -842,13 +795,13 @@ msgstr "An dearbhadh a rinn {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "โŠ {computedTotal}" @@ -883,14 +836,14 @@ msgstr "{1, plural, one {aโ€™ leantainn} two {aโ€™ leantainn} few {aโ€™ leantain #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {luaidh} two {luaidh} few {luaidhean} other {luaidh}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {air ath-phostadh} two {air ath-phostadh} few {air ath-phostadh} other {air ath-phostadh}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {air a shร bhaladh} two {air a shร bhaladh} f #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Clร raich a-steach<1> no <2>cruthaich cunntas<3> <4>airson naidheachdan, spรฒrs, poileataigs is rud sam bith eile a tha aโ€™ dol air Bluesky a lorg." @@ -971,7 +924,7 @@ msgstr "30 latha" msgid "7 days" msgstr "7 lร ithean" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Cruinneachadh de dhโ€™inbhirean air a bheil fรจill mhรฒr air Bluesky, aโ€™ gabhail a-staigh News, Booksky, Game Dev, Blacksky agus Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Dhโ€™รจirich mearachd leis an lรฌonra. Thoir sรนil air aโ€™ cheangal aga #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Chaidh cรฒd รนr a chur" msgid "A new form of verification" msgstr "Dรฒigh dearbhaidh รนr" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Glacadh-sgrรฌn de dhโ€™uinneag sgrรฌobhadh nam post le putan รนr ri taobh aโ€™ phutain โ€œPostaichโ€ a tha ag rร dh โ€œDreachdanโ€, le bogh-fhrois de chleasan-teine. Tha an teacsa foidhe anns an bhogsa-sgrรฌobhaidh ag rร dh โ€œSin thu, a charaid, an cuala tu an naidheachd? Tha gleus dhreachdan aig Bluesky a-nis!!!โ€." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "So-ruigsinneachd" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Roghainnean na so-ruigsinneachd" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Chaidh an cunntas a mhรนchadh le liosta" msgid "Account options" msgstr "Roghainnean aโ€™ chunntais" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Chaidh an cunntas a thoirt air falbh on ghrad-inntrigeadh" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "โ€™S urrainn do chunntasan aig a bheil cromag chrom-bhileach ghorm <0><1/> cunntasan eile a dhearbhadh. โ€™S e Bluesky a thaghas an luchd-dearbhaidh earbsach seo." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Gnรฌomhachd o dhaoine eile" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Cuir roghainn teacsa ris (roghainneil)" msgid "Add another account" msgstr "Cuir cunntas eile ris" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Cuir post eile ris" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Cuir post eile ris an t-snร ithlean" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Cuir emoji mar fhrith-fhreagairt" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Cuir an t-inbhir seo ris na h-inbhirean agad" msgid "Add to lists" msgstr "Cuir ri liosta" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Cuir ris na puist a shร bhail thu" @@ -1400,7 +1360,7 @@ msgstr "Inbheach" msgid "Adult content" msgstr "Susbaint inbheach" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "meadhbh@eisimpleir.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Na h-uile" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Lean thu gach caraid!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "A h-uile cร nan" @@ -1491,11 +1447,6 @@ msgstr "Chรฌ thu puist ann an cร nan sam bith sna h-inbhirean agad." msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Gach inbhir a shร bhail thu san aon ร ite." @@ -1560,7 +1511,7 @@ msgstr "Bheir seo cead-inntrigidh dha na teachdaireachdan dรฌreach" msgid "Already have a code?" msgstr "A bheil cรฒd agad mar-thร ?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "A bheil cunntas agad mar-thร ?" @@ -1614,7 +1565,7 @@ msgstr "Chaidh post-d a chur gu {0}. Tha cรฒd dearbhaidh na bhroinn as urrainn d msgid "An error has occurred" msgstr "Thachair mearachd" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Thachair mearachd" @@ -1631,7 +1582,7 @@ msgstr "Dhโ€™รจirich mearachd fhad โ€™s a bha sinn aโ€™ faighinn nan cunntasan a msgid "An error occurred while fetching the feed." msgstr "Dhโ€™รจirich mearachd rรจ nuair a bha sinn aโ€™ faighinn an inbhir." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Dhโ€™รจirich mearachd nuair a bha sinn aโ€™ gintinn na pacaid tรฒiseachaidh agad. A bheil thu airson feuchainn ris a-rithist?" @@ -1640,11 +1591,11 @@ msgstr "Dhโ€™รจirich mearachd nuair a bha sinn aโ€™ gintinn na pacaid tรฒiseacha msgid "An error occurred while hiding suggestion. {0}" msgstr "Dhโ€™รจirich mearachd fhad โ€™s a bha sinn aโ€™ cur na mhol sinn am falach. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Dhโ€™รจirich mearachd rรจ luchdadh aโ€™ video. Feuch ris a-rithist an ceann greis." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Dhโ€™รจirich mearachd rรจ luchdadh aโ€™ video. Feuch ris a-rithist." @@ -1684,7 +1635,7 @@ msgstr "Dhโ€™รจirich mearachd. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Dealbh dhe na h-avataran aig cleachdaichean aโ€™ sruthadh ร  leabhar luchd-aithne dha aplacaid Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Dealbh de ghrunn puist Bluesky ri taobh รฌomhaigheadan ath-phostaidh, โ€™s toil agus bheachdan" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Duilgheadas nach eil am measg nan roghainnean seo" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Dhโ€™รจirich duilgheadas nuair a bha sinn aโ€™ fosgladh na cabadaich" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Duine sam bith" @@ -1802,7 +1749,7 @@ msgstr "Duine sam bith a tha gam leantainn" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Feumaidh co-dhiรน 4 caractaran bhith ann am facal-faire na h-aplacaid" msgid "App passwords" msgstr "Faclan-faire nan aplacaidean" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Faclan-faire nan aplacaidean" @@ -1891,8 +1838,8 @@ msgstr "Tog ath-thagradh an aghaidh aโ€™ cho-dhรนnaidh seo" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Cuir an t-iarrtas pull an gnรฌomh" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Air a thasglannachadh ann an {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Post tasglannaichte" @@ -1980,7 +1927,7 @@ msgstr "A bheil thu cinnteach gu bheil thu airson seo a thoirt air falbh o na h- msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "A bheil thu cinnteach gu bheil thu airson am post seo a thilgeil air falbh?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "Cluich videothan is GIFs gu fรจin-obrachail" msgid "Available" msgstr "Ri fhaighinn" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Mus cruthaich thu post no mus fhreagair thu, feumaidh tu am post-d agad a dhearbhadh." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Mus cruthaich thu pacaid tรฒiseachaidh, feumaidh tu am post-d agad a dhearbhadh." @@ -2135,10 +2091,10 @@ msgstr "Mus fhaigh thu brathan mu phuist a dhโ€™fhoillsicheas {name}, feumaidh t #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "Tรฒisich air dearbhadh dโ€™ aoise le bhith aโ€™ lรฌonadh nan raointean g msgid "Beta Feature" msgstr "Gleus beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "Lร -breith" msgid "Birthday" msgstr "Co-lร  breith" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Bacte" msgid "Blocked accounts" msgstr "Cunntasan air am bacadh" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cunntasan air am bacadh" @@ -2282,7 +2244,7 @@ msgstr "Chan eil cead aig cunntasan bacte freagairt a chur sna snร ithleanan aga msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Chan eil cead aig cunntasan bacte freagairt a chur sna snร ithleanan agad, iomradh a dhรจanamh ort no eadar-ghabhail eile a dhรจanamh leat. Chan fhaic thu an t-susbaint aca agus chan fhaic iad an t-susbaint agad-sa." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Fiรน ma bhacas tu an leubailiche seo, โ€™s urrainn dha leubailean a chur ris aโ€™ chunntas agad fhathast." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Chan urrainn dha Bluesky dearbhadh gu bheil an ceann-lร  a thathar aโ€™ cumail a-mach fรฌor." @@ -2330,7 +2293,7 @@ msgstr "โ€™S e lรฌonra fosgailte a thโ€™ ann am Bluesky far an urrainn dhut sola msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "โ€™S e lรฌonra fosgailte a thโ€™ ann am Bluesky far an urrainn dhut solaraiche a thaghadh thu fhรจin. Ma tha thu air รนr-thighinn dhan ร ite, mholamaid dhut aโ€™ bhun-roghainn, Bluesky Social, a chleachdadh an toiseach." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Tha Bluesky nas fheร rr le caraidean!" @@ -2358,7 +2321,7 @@ msgstr "Teirmichean na seirbheise aig Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Glรจidhidh Bluesky an luchd-aithne agad an cruth dร ta cรฒdaichte. Ma bheir thu luchd-aithne air falbh, thรจid an dร ta seo a sguabadh ร s sa bhad." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Taghaidh Bluesky grunn chunntasan aig daoine air an lรฌonra agad a mholar." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "Rรนraich na h-inbhirean gnร thaichte" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Rรนraich barrachd chunntasan" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Rรนraich barrachd inbhirean air an duilleag โ€œRรนraichโ€" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Brabhsaich barrachd mholaidhean" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Rรนraich barrachd mholaidhean air an duilleag โ€œRรนraichโ€" @@ -2425,24 +2388,25 @@ msgstr "Rรนraich barrachd mholaidhean air an duilleag โ€œRรนraichโ€" msgid "Browse other feeds" msgstr "Rรนraich inbhirean eile" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Rรนraich puist mu dhรจidhinn {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Rรนraich puist ris a bheil an taga {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Rรนraich aโ€™ phacaid tรฒiseachaidh {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Rรนraich an cuspair โ€œ{0}โ€" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Rรนraich an cuspair {displayName}" @@ -2461,8 +2425,8 @@ msgstr "Am putan a bheir air ais gu loidhne-ama do dhachaigh thu" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Le {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Le <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Le bhith aโ€™ cruthachadh cunntas, bidh tu ag aontachadh ri <0>teirmiche msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Le bhith aโ€™ cruthachadh cunntas, bidh tu ag aontachadh ri <0>teirmichean na seirbheise." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Leat-sa" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "An camara" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Sguir dhen ath-ghnรฌomhachadh is clร raich a-mach" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Sguir dhen lorg" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Cha bhi buaidh air an liosta ma dhโ€™atharraicheas tu aโ€™ phacaid-thรฒiseachaidh an dรจidh dhut a chruthachadh. Bidh an liosta na lethbhreac neo-eisimeileach." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chaidh aโ€™ chabadaich a mhรนchadh" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Bogsa a-steach nan iarrtasan cabadaich" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Iarrtasan cabadaich" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Roghainnean na cabadaich" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chaidh aโ€™ chabadaich a neo-mhรนchadh" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Cabadaich" @@ -2837,7 +2802,7 @@ msgstr "Tagh dรฒigh airson dearbhadh na h-ร rainne" msgid "Choose Feeds" msgstr "Tagh inbhirean" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Dรจan taghadh ร s mo leth" @@ -2854,7 +2819,7 @@ msgstr "Tagh daoine" msgid "Choose post languages" msgstr "Tagh cร nain nam post" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Tagh an dath seo mar avatar agad" @@ -2879,7 +2844,7 @@ msgstr "Dealbh loidhne-ama dhut fhรจin! Inbhirean leis aโ€™ choimhearsnachd a bh msgid "Choose your password" msgstr "Tagh facal-faire dhut" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Tagh ainm-chleachdaiche dhut" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "Dรจan briogadh airson clร r-taice an taga airson {0} fhosgladh" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Dรจan briogadh airson feuchainn ris an teachdaireachd a dhโ€™fhร illig as รนr" @@ -3003,7 +2968,7 @@ msgstr "Dรจan briogadh airson feuchainn ris an teachdaireachd a dhโ€™fhร illig a #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Dรจan briogadh airson feuchainn ris an teachdaireachd a dhโ€™fhร illig a msgid "Close" msgstr "Dรนin" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Dรนin an cรฒmhradh gnรฌomhach" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Dรนin sealladair nan dealbhan" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Dรนin an clร r-taice" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "Dรนin an co-cรฒmhradh seo" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Dรนin mรฒideal an fhร ilteachaidh" @@ -3098,7 +3063,7 @@ msgstr "Dรนin mรฒideal an fhร ilteachaidh" msgid "Closes password update alert" msgstr "Dรนinidh seo caismeachd mu รนrachadh an fhacail-fhaire" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Dรนinidh seo an uinneag sgrรฌobhaidh is tilgidh e air falbh dreachd aโ€™ phuist" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Am modh-dhathan" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Dealbhan-รจibhinn" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Treรฒrachadh na coimhearsnachd" @@ -3141,7 +3106,7 @@ msgstr "Treรฒrachadh na coimhearsnachd" msgid "Complete onboarding and start using your account" msgstr "Coilean am bรฒrdachadh is tรฒisich air an cunntas agad a chleachdadh" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Coilean an dรนbhlan" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Sgrรฌobh post รนr" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Sgrรฌobh puist a bhios suas ri {0, plural, one {# charactar} two {# charactar} few {# caractaran} other {# caractar}} a dhโ€™fhaid" @@ -3160,11 +3125,11 @@ msgstr "Sgrรฌobh puist a bhios suas ri {0, plural, one {# charactar} two {# char msgid "Compose reply" msgstr "Sgrรฌobh freagairt" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Aโ€™ co-dhlรนthachadh an GIFโ€ฆ" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Aโ€™ dรนmhlachadh aโ€™ videoโ€ฆ" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Cuir fios gu sgioba na taice againn" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Cuir fios gu sgioba na taice" @@ -3253,7 +3218,7 @@ msgstr "Susbaint โŠ meadhanan" msgid "Content and media" msgstr "Susbaint is meadhanan" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Susbaint is meadhanan" @@ -3265,10 +3230,6 @@ msgstr "Chaidh susbaint a bhacadh" msgid "Content filters" msgstr "Criathragan susbainte" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Susbaint o fheadh an lรฌonraidh a chรฒrdas riut nar beachd." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Cร nain susbainte" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Susbaint a bhrosnaicheas no a sheallas fรจin-dochann" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Rabhadh susbainte" msgid "Content warnings" msgstr "Rabhaidhean susbainte" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Cรนlaibh aโ€™ chlร ir-thaice cho-theacsail, dรจan briogadh airson an clร r-taice a dhรนnadh." @@ -3302,7 +3263,7 @@ msgstr "Cรนlaibh aโ€™ chlร ir-thaice cho-theacsail, dรจan briogadh airson an cl #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Leugh an cรฒrr dhen t-snร ithleanโ€ฆ" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Chaidh lethbhreac de thionndadh aโ€™ bhuild a chur air an stรฒr-bhรฒrd" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Dรจan lethbhreac de dhโ€™fhacal-faire na h-aplacaid" msgid "Copy at:// URI" msgstr "Dรจan lethbhreac dheth at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Dรจan lethbhreac dhe DID an รนghdair" @@ -3449,10 +3410,10 @@ msgstr "Dรจan lethbhreac dhen cheangal" msgid "Copy link to list" msgstr "Dรจan lethbhreac dhen cheangal ris an liosta" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Dรจan lethbhreac dhen cheangal ris aโ€™ phost" @@ -3470,8 +3431,8 @@ msgstr "Cuir lethbhreac dhen cheangal dhan pacaid tรฒiseachaidh" msgid "Copy message text" msgstr "Dรจan lethbhreac de theacsa na teachdaireachd" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Dรจan lethbhreac dhen phost aig:// URI" @@ -3490,7 +3451,7 @@ msgstr "Dรจan lethbhreac dhen reacord TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Poileasaidh na cรฒrach-lethbhreac" @@ -3540,11 +3501,11 @@ msgstr "Cha bโ€™ urrainn dhuinn gach maids a leantainn. {0}" msgid "Could not leave chat" msgstr "Cha bโ€™ urrainn dhuinn aโ€™ chabadaich fhร gail" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Cha bโ€™ urrainn dhuinn an t-inbhir a luchdadh" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Cha bโ€™ urrainn dhuinn aโ€™ chabadaich a mhรนchadh" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Cruthaich" @@ -3624,26 +3585,26 @@ msgstr "Cruthaich liosta dhen phacaid-thรฒiseachaidh seo" msgid "Create a QR code for a starter pack" msgstr "Cruthaich cรฒd QR airson pacaid tรฒiseachaidh" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Cruthaich pacaid tรฒiseachaidh" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Cruthaich pacaid tรฒiseachaidh" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Cruthaich pacaid tรฒiseachaidh dhomh" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Cruthaich cunntas" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Cruthaich cunntas" @@ -3666,15 +3627,15 @@ msgstr "Cruthaich cunntas" msgid "Create an account without using this starter pack" msgstr "Cruthaich cunntas ach as aonais na pacaid tรฒiseachaidh seo" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Cruthaich avatar na ร ite" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Cruthaich fear eile" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "Cultar" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "Stuthan cunnartach no mรฌ-ghnร thachadh dhrugaichean" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Dorcha" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Dorcha" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "ร™rlar dorcha" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "Stuth inbheach dubh-bhrรจige" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Bun-roghainn" @@ -3894,7 +3855,7 @@ msgstr "Sguab an cunntas agam ร s" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Sguab ร s am post" @@ -3988,7 +3949,7 @@ msgstr "Cรฒmhradh: co-dhรนin cรฒ aig a bheil cead eadar-ghabhail a dhรจanamh lei msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Doilleir" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "Cuir 2FA ร  comas" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "ร€ comas" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Tilg air falbh" msgid "Discard changes?" msgstr "A bheil thu airson na h-atharraichean a thilgeil air falbh?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "A bheil thu airson an dreachd a thilgeil air falbh?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "A bheil thu airson am post a thilgeil air falbh?" @@ -4079,6 +4040,10 @@ msgstr "Dรฌ-cheangail Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Cรนm aplacaidean o bhith aโ€™ sealltainn aโ€™ chunntais agam do luchd-cleachdaidh a rinn clร radh a-mach" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Cรนm aplacaidean o bhith aโ€™ sealltainn aโ€™ chunntais agam do luchd-cl msgid "Discover new custom feeds" msgstr "Fidir inbhirean gnร thaichte รนra" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Fidir inbhirean รนra" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Fidir inbhirean รนra" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Leig seachad" @@ -4103,28 +4064,28 @@ msgstr "Leig seachad" msgid "Dismiss banner" msgstr "Leig seachad aโ€™ bhratach" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Leig seachad aโ€™ mhearachd" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Leig seachad an treรฒir thรฒiseachail" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Leig seachad na rudan sa bheil รนidh agad" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Leig seachad bratach nan tachartasan beรฒtha" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Leig seachad an earrann seo" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Leig seachad am moladh seo" @@ -4142,7 +4103,7 @@ msgstr "Seall baidsean nas motha airson roghainn teacsa" msgid "Display name" msgstr "Ainm-taisbeanaidh" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Fร g soraidh slร n aig na trobhaichean is baoit-bhriogaidh. Faigh lorg air fรฌor-dhaoine โ€™s seanchas sa bheil รนidh agad." @@ -4205,8 +4166,8 @@ msgstr "Na gabh dragh! Chaidh gach teachdaireachd is roghainn a shร bhaladh is b #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Na gabh dragh! Chaidh gach teachdaireachd is roghainn a shร bhaladh is b msgid "Done" msgstr "Deiseil" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Thoir gnogag dhรนbailte no dรจan brรนthadh fada air an teachdaireachd airson frith-fhreagairt a chur" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Thoir gnogag dhรนbailte air gus an cรฒmhradh a dhรนnadh" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Thoir gnogag dhรนbailte a dhโ€™innse gur toil leat e" @@ -4328,6 +4289,7 @@ msgstr "Mรฌ-rian ithe" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Deasaich an dealbh" msgid "Edit interaction settings" msgstr "Deasaich roghainnean na h-eadar-ghabhalach" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Deasaich na rudan sa bheil รนidh agad" @@ -4397,7 +4359,7 @@ msgstr "Deasaich staid an t-srutha bheรฒ" msgid "Edit moderation list" msgstr "Deasaich an liosta modarataireachd " -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Deasaich na h-inbhirean agam" @@ -4406,6 +4368,11 @@ msgstr "Deasaich na h-inbhirean agam" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Deasaich na daoine" @@ -4444,7 +4411,7 @@ msgstr "Deasaich liosta an luchd-chleachdaidh" msgid "Edit who can reply" msgstr "Co-dhรนin cรฒ aig a bheil cead freagairt" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Deasaich aโ€™ phacaid tรฒiseachaidh agad" @@ -4500,8 +4467,8 @@ msgstr "Leabaich an cรฒd HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Leabaich am post" @@ -4509,7 +4476,7 @@ msgstr "Leabaich am post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Leabaich am post seo san lร rach-lรฌn agad. Cha leig thu leas ach lethbhreac dhen snippet a leanas a dhรจanamh agus a chur a-steach dhan chรฒd HTML air an lร rach-lรฌn agad." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Cluicheadair video leabaichte" @@ -4533,7 +4500,7 @@ msgstr "Cuir comas inbheach an comas" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "Cuir meadhanan on taobh a-muigh an comas" msgid "Enable media players for" msgstr "Cuir cluicheadairean mheadhanan an comas airson" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Cuir an comas brathan o chunntas le bhith aโ€™ tadhal air aโ€™ phrรฒifil is aโ€™ brรนthadh <0>รฌomhaigheag aโ€™ chluig<1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Cuir brathan push an comas" @@ -4581,7 +4549,7 @@ msgstr "Cuir an comas videothan a tha aโ€™ treandadh san inbhir โ€œFidirโ€ agad msgid "Enabled" msgstr "An comas" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Deireadh an inbhir" @@ -4608,7 +4576,7 @@ msgstr "Cuir a-steach facal no taga" msgid "Enter code" msgstr "Cuir a-steach an cรฒd" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Tรฒisich an lร n-sgrรฌn" @@ -4650,11 +4618,11 @@ msgstr "Cuir a-steach an t-ainm-cleachdaiche โ€™s am facal-faire agad" msgid "Enters full screen" msgstr "Fosglaidh seo an lร n-sgrรฌn" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Dibhearsan" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Mearachd" @@ -4684,7 +4652,7 @@ msgstr "Dhโ€™รจirich mearachd nuair a bha sinn aโ€™ sร bhaladh an fhaidhle" msgid "Error receiving captcha response." msgstr "Dhโ€™รจirich mearachd nuair a bha sinn aโ€™ faighinn freagairt aโ€™ Chaptcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Mearachd: {error}" @@ -4696,8 +4664,8 @@ msgstr "Faodaidh duine sam bith freagairt" msgid "Everybody can reply to this post." msgstr "Faodaidh duine sam bith am post seo a fhreagairt." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "on a h-uile duine" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "on a h-uile duine" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "A h-uile rud eile" @@ -4738,7 +4706,7 @@ msgstr "Dรนin ร s luchd-cleachdaidh a tha thu gan leantainn" msgid "Excludes users you follow" msgstr "Dรนinidh seo ร s luchd-cleachdaidh a tha thu gan leantainn" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Fร g an lร n-sgrรฌn" @@ -4755,11 +4723,11 @@ msgstr "Leudaich liosta an luchd-chleachdaidh" msgid "Expand or collapse the full post you are replying to" msgstr "Leudaich no co-theannaich am post slร n a tha thu aโ€™ freagairt" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Leudaich teacsa aโ€™ phuist" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Leudaichidh no co-theannaichidh seo teacsa aโ€™ phuist" @@ -4802,15 +4770,15 @@ msgstr "Meadhanan feรฒlmhor no draghail." msgid "Explicit sexual images." msgstr "Dealbhan feiseil is feรฒlmhor." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Rรนraich" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Fidir an aplacaid" @@ -4844,7 +4812,7 @@ msgstr "Meadhanan on taobh a-muigh" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Ma cheadaicheas tu meadhanan on taobh a-muigh, dhโ€™fhaodte gun toir seo comas do lร raichean-lรฌn fiosrachadh a chruinneachadh mu do dhรจidhinn is mun uidheam agad. Cha tรจid fiosrachadh sam bith iarraidh no a chur gus am brรนth thu am putan โ€œCluichโ€." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Roghainnean nam meadhanan on taobh a-muigh" @@ -4886,7 +4854,7 @@ msgstr "Dhโ€™fhร illig atharrachadh an lร mhrachain. Feuch ris a-rithist." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Cha bโ€™ urrainn dhuinn na cรฒmhraidhean a luchdadh" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Cha bโ€™ urrainn dhuinn na h-inbhirean a luchdadh" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Cha bโ€™ urrainn dhuinn roghainnean nan inbhirean a luchdadh" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Cha bโ€™ urrainn dhuinn roghainnean nam brathan a luchdadh." @@ -5012,14 +4981,14 @@ msgstr "Cha bโ€™ urrainn dhuinn an roghainn a luchdadh." msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Cha bโ€™ urrainn dhuinn na h-inbhirean a mholamaid a luchdadh" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Cha bโ€™ urrainn dhuinn na daoine a mholamaid an leantainn a luchdadh" @@ -5027,12 +4996,12 @@ msgstr "Cha bโ€™ urrainn dhuinn na daoine a mholamaid an leantainn a luchdadh" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "Cha dโ€™fhuair sinn lorg air an ionad. Feuch ris a-rithist." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Cha bโ€™ urrainn dhuinn an dreachd a luchdadh" @@ -5191,7 +5160,7 @@ msgstr "Cunntas brรจige no bot" msgid "False information about elections" msgstr "Fiosrachadh brรจige mu thaghadh" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Inbhir" @@ -5212,7 +5181,7 @@ msgstr "Cruthadair inbhirean" msgid "Feed identifier" msgstr "Aithnichear inbhirean" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Clร r-taice nan inbhirean" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Chaidh do bheachd a chur gu muinntir an inbhir" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Chaidh na h-inbhirean รนrachadh!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Saoilidh sinn gun cรฒrd na h-inbhirean seo riut." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Faigh an t-รนrachadh" @@ -5273,34 +5238,22 @@ msgstr "Faigh an t-รนrachadh" msgid "File saved successfully!" msgstr "Chaidh am faidhle a shร bhaladh!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Criathraich o na h-inbhirean" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Criathraich an lorg a-rรจir cร nain" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Criathraich an lorg a-rรจir cร nain (an-drร sta fhรจin: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Criathraich cรฒ aig am bi cead iarrtas a chur airson brathan mu do ghnรฌomhachd fhaighinn" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Criathraich na daoine a gheibh thu teachdaireachdan uapa" @@ -5352,8 +5305,8 @@ msgstr "Lorg cunntasan airson an leantainn" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Lorg luchd-aithne" @@ -5387,7 +5340,7 @@ msgstr "Lorg do charaidean" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Lorg do charaidean air Bluesky le bhith aโ€™ dearbhadh na h-ร ireimh fรฒn agad is aโ€™ sireadh an luchd-aithne agad. Cumaidh sinn am fiosrachadh agad fo dhรฌon agus is ann agadsa a tha smachd air na thachras san ath-cheum. <0>Barrachd fiosrachaidh" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Faigh lorg air na daoine agad" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Lean ri {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Lean ri {handle}" @@ -5453,11 +5406,11 @@ msgstr "Lean ri {handle}" msgid "Follow 10 accounts" msgstr "Lean ri 10 cunntasan" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Lean deichnear an toiseach" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Lean ri 7 cunntasan" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Luchd-leantainn aig @{0} as aithne dhut-sa cuideachd" @@ -5544,7 +5497,7 @@ msgstr "Luchd-leantainn as aithne dhut" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Aโ€™ leantainn {0} a-nis" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Aโ€™ leantainn {handle}" @@ -5578,21 +5531,21 @@ msgstr "Aโ€™ leantainn {handle}" msgid "Following feed preferences" msgstr "Roghainnean inbhir nan daoine a tha thu aโ€™ leantainn" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Roghainnean inbhir nan daoine a tha thu aโ€™ leantainn" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Gad leantainn" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Cruth-clรฒ" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Meud aโ€™ chrutha-chlรฒ" @@ -5612,13 +5565,13 @@ msgstr "Air sgร th adhbharan tรจarainteachd, feumaidh sinn cรฒd dearbhaidh a chu msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Air sgร th adhbharan tรจarainteachd, chan fhaic thu seo a-rithist. Ma chailleas tu facal-faire na h-aplacaid, bidh agad ri fear รนr a ghintinn." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "โ€™S e cruth-clรฒ an รนrlair as fheร rr a dhโ€™obraicheas, nar beachd-ne." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Dhut-sa" @@ -5628,7 +5581,7 @@ msgstr "Dhut-sa" msgid "Forever" msgstr "Gu brร th" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Coma leat an treamsgal" @@ -5647,11 +5600,11 @@ msgstr "Na dhรฌochuimhnich thu am facal-faire?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Saor an t-inbhir agad" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "O" @@ -5674,7 +5627,7 @@ msgstr "O <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Gin pacaid tรฒiseachaidh" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "Faigh cobhair" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Faigh brath nuair a leanas daoine thu." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Faigh brathan nuair a dhโ€™innseas daoine gur toil leotha rud a phostaich thu." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Faigh brath nuair a nรฌ daoine iomradh ort." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Faigh brathan nuair a nรฌ daoine iomradh air post agad." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Faigh brathan nuair a fhreagras daoine post agad." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Faigh brathan nuair a dhโ€™ath-phostaicheas daoine rud a phostaich thusa." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Faigh brathan mu phuist รนra" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Faigh brath nuair a dhโ€™fhoillsicheas {name} post รนr" @@ -5799,11 +5752,11 @@ msgstr "Dรจan toiseach-tรฒiseachaidh" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "Chaidh an GIF a luchdadh suas" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Cuir aodann ris aโ€™ phrรฒifil agad" @@ -5813,20 +5766,20 @@ msgstr "Glรฒrachadh ainneirt" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Cuir struth beรฒ fad" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "Gnรฌomhachdan dochainneach no glรจ chunnartach" msgid "Harming or endangering minors" msgstr "Aโ€™ cur mion-aoisich an cunnart no gan dochann" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Taga-hais" @@ -6098,7 +6052,7 @@ msgstr "A bheil cรฒd agad? <0>Briog an-seo." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "A bheil duilgheadasan agad?" @@ -6114,7 +6068,7 @@ msgstr "Cumaidh Bluesky seo fad 7 lร ithean airson casg a chur air mรฌ-ghnร thac msgid "Help" msgstr "Cobhair" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Dรจan nas soilleire e do dhaoine nach e bot a thโ€™ annad le bhith aโ€™ luchdadh suas dealbh no aโ€™ cruthachadh avatar." @@ -6135,12 +6089,12 @@ msgstr "Shin thu!" msgid "Hi there!" msgstr "Shin thu!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Falaichte" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Falaichte ri linn nan roghainnean modarataireachd agad." @@ -6148,9 +6102,10 @@ msgstr "Falaichte ri linn nan roghainnean modarataireachd agad." msgid "Hidden list" msgstr "Liosta fhalaichte" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Liosta fhalaichte" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Falaich" @@ -6198,7 +6154,7 @@ msgstr "Falaich an fhreagairt seo on a h-uile duine" msgid "Hide reply for me" msgstr "Falaich an fhreagairt seo uam-sa" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Falaich aโ€™ chairt seo" @@ -6218,16 +6174,18 @@ msgstr "A bheil thu airson an fhreagairt seo a chur am falach?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Falaich na cuspairean a tha aโ€™ treandadh" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "A bheil thu airson na cuspairean a tha aโ€™ treandadh a chur am falach?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: 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?" @@ -6240,7 +6198,7 @@ msgstr "Falaich liosta an luchd-chleachdaidh" msgid "Hide verification badges" msgstr "Falaich na baidsean dearbhaidh" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Falaichidh seo an t-susbaint" @@ -6293,8 +6251,8 @@ msgstr "Hm, cha bโ€™ urrainn dhuinn an t-seirbheis modarataireachd sin a luchdad msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Air do shocair! Tha sinn aโ€™ toirt comas air video mean air mhean โ€“ glacaidh foighidinn iasg. Na bi fada gun tilleadh!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Teth" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Seo mar a dhโ€™obraicheas e:" @@ -6409,6 +6363,7 @@ msgstr "Ma dhโ€™รนraicheas tu an seรฒladh puist-d agad, thรจid an 2FA a chur ร  msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Ma tha thu airson am facal-faire seo atharrachadh, cuiridh sinn cรฒd thugad a dhรจanamh cinnteach gur ann agad-sa a tha an cunntas seo." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Ma tha thu airson cuingeachadh cรฒ gheibh brathan mu ghnรฌomhachd sa chunntas agad, is urrainn dhut seo a chur air gleus sna <0>Roghainnean โ†’ Prรฌobhaideachd is tรจarainteachd." @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "Bogsa a-steach falamh!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Tha an t-ainm-cleachdaiche no facal-faire ceร rr" @@ -6683,7 +6633,7 @@ msgstr "Thoir cuireadh dha {name} gu Bluesky" msgid "Invite code" msgstr "Cรฒd aโ€™ chuiridh" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Cha deach gabhail ri cรฒd aโ€™ chuiridh. Dรจan cinnteach gun do chuir thu a-steach e gun mhearachd is feuch ris a-rithist." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Chan eil ann ach thu fhรจin an-drร sta fhรจin! Cuir barrachd dhaoine ris aโ€™ phacaid tรฒiseachaidh agad le bhith aโ€™ dรจanamh lorg gu h-ร rd." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID na h-obrach: {0}" @@ -6816,8 +6766,8 @@ msgstr "Thig a chรฒmhradh" msgid "Journalism" msgstr "Naidheachdas" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Cรนm ort leis an deasachadh" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "Lร rach-lรฌn KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Air a leubaileadh le {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Air a leubaileadh leis an รนghdar." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Leubailean" @@ -6852,7 +6802,7 @@ msgstr "Chaidh na leubailean a chur ris" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Tha leubailean nan nรฒtaichean mu chleachdaichean is susbaint. Bheir iad rabhadh do dhaoine, is urrainnear rudan a chur am falach leotha agus na rudan air an lรฌonra a sheรฒrsachadh." @@ -6864,7 +6814,7 @@ msgstr "Leubailean a tha ris aโ€™ chunntas agad" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Roghainnean cร nain" @@ -6874,7 +6824,7 @@ msgstr "Roghainnean cร nain" msgid "Languages" msgstr "Cร nain" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Nas motha" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Air a thรฒiseachadh diog air ais turas mu dheireadh" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "As รนire" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Barrachd fiosrachaidh" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Barrachd fiosrachaidh" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "Barrachd fiosrachaidh mu ion-phortadh luchd-aithne" msgid "Learn more about self hosting your PDS." msgstr "Barrachd fiosrachaidh mu fhรจin-รฒstaireachd aโ€™ PDS agad." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Barrachd fiosrachaidh mun mhodarataireachd a rinneadh air an t-susbaint seo" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Airson barrachd fiosrachaidh mu na tha รนr agus mar a dhโ€™innseas tu dhuinn dรจ do bheachd, leugh am post sa bhloga againn." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Barrachd fiosrachaidh mun rabhadh seo" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Faigh barrachd fiosrachaidh ann an <0>roghainnean aโ€™ chunntais agad." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Barrachd fiosrachaidh." @@ -6993,8 +6943,8 @@ msgstr "Fร g anยญ-seo" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Aโ€™ fร gail Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "air fhร gail." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Leig leamsa roghnachadh" @@ -7057,7 +7007,7 @@ msgstr "Tiugainn!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Soilleir" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Soilleir" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "โ€™S toil" @@ -7076,7 +7026,7 @@ msgstr "โ€™S toil" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "โ€™S toil ({0, plural, one {โ€™s toil le # seo} two {โ€™s toil le # seo} few {โ€™s toil le # seo} other {โ€™s toil le # seo}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Nochd gur toil leat 10 puist" @@ -7085,7 +7035,7 @@ msgstr "Nochd gur toil leat 10 puist" msgid "Like 10 posts to train the Discover feed" msgstr "Nochd gur toil leat 10 puist airson teagasg a thoirt dhan inbhir โ€œFidirโ€" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Innis gur toil leat an t-inbhir seo" @@ -7093,8 +7043,8 @@ msgstr "Innis gur toil leat an t-inbhir seo" msgid "Like this labeler" msgstr "Nochd gur toil leat an leubailich seo" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Daoine as toil leotha seo" @@ -7111,27 +7061,45 @@ msgstr "Daoine as toil leotha seo" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "โ€™S toil le {0, plural, one {# seo} two {# seo} few {# seo} other {# seo}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "โ€™S toil le {likeCount, plural, one {# seo} two {# seo} few {# seo} other {# seo}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Na โ€™s toil le daoine" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "โ€™S toil le cuideigin rud a dhโ€™ath-phostaich thu" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Daoine as toil leotha am post seo" @@ -7144,7 +7112,7 @@ msgstr "Loidhneach" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Liosta" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Chaidh an liosta a neo-mhรนchadh" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "Beรฒ" msgid "Live event happening now: {0}" msgstr "Tha tachartas beรฒ aโ€™ dol: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Chaidh an tachartas beรฒ a chur am falach" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Chaidh an tachartas beรฒ a leigeil ris as รนr" @@ -7279,12 +7247,12 @@ msgstr "Tha gleus nan tachartasan beรฒtha na ghleus beta" msgid "Live link" msgstr "Ceangal ris an t-sruth bheรฒ" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Luchdaich barrachd dheth" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Luchdaich barrachd inbhirean a mholamaid" @@ -7292,8 +7260,8 @@ msgstr "Luchdaich barrachd inbhirean a mholamaid" msgid "Load new notifications" msgstr "Luchdaich na brathan รนra" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Loga" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "Cuir air gleus roghainnean post-d aโ€™ chunntais agad" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Dรจan fear dhomh" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "Comharraich gun deach iad uile a leughadh" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Comharraich gun deach a leughadh" msgid "Marked all as read" msgstr "Chaidh comharradh gun deach iad uile a leughadh" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "Uaireigin eile โ€™s dรฒcha" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Meadhanan" @@ -7475,7 +7447,7 @@ msgstr "Meadhanan a thโ€™ air uidheam eile" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Meadhanan a chuireadh dragh air cuid a dhaoine no a bhiodh mรฌ-iomchaidh." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "luchd-cleachdaidh air a bheil iomradh" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Iomraidhean" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Chaidh an teachdaireachd a sguabadh ร s" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "Roghainnean na teachdaireachd" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Teachdaireachdan" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "Mรฌ-stiรนireadh" msgid "Missing media" msgstr "Tha meadhanan a dhรฌth" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Modarataireachd" @@ -7636,7 +7608,7 @@ msgstr "Chaidh an liosta modarataireachd รนrachadh" msgid "Moderation lists" msgstr "Liostaichean modarataireachd" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liostaichean modarataireachd" @@ -7645,7 +7617,7 @@ msgstr "Liostaichean modarataireachd" msgid "moderation settings" msgstr "roghainnean modarataireachd" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Staidean modarataireachd" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "Cunntasan a chaidh am mรนchadh" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cunntasan a chaidh am mรนchadh" @@ -7867,7 +7839,6 @@ msgstr "A bheil agad ri aithris a dhรจanamh air briseadh cรฒrach-lethbhreac, iar msgid "Nevermind, create a handle for me" msgstr "Coma, cruthaichibh lร mhrachan dhomh" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "ร™r" @@ -7893,11 +7864,11 @@ msgstr "{postsCount, plural, one {post รนr} two {phost รนr} few {puist รนra} oth #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Cabadaich รนr" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Gleus รนr" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Luchd-leantainn รนr" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "Liosta รนr" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Facal-faire รนr" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Post รนr" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "As รนire an toiseach" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Naidheachdan" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "An t-ath-dhealbh" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Gun sanasachd, gun tracadh a bhriseas a-steach air do phrรฌobhaideachd, gun ribean com-pร irteachaidh. Tha suim aig Bluesky dha dโ€™ รนine is aire." @@ -8065,6 +8036,11 @@ msgstr "Gun sanasachd, gun tracadh a bhriseas a-steach air do phrรฌobhaideachd, msgid "No app passwords yet" msgstr "Chan eil facal-faire aplacaid sam bith agad aig an รฌre-sa" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "Cha deach suidheachadh cuin a dhโ€™fhalbhas an รนine air" msgid "No feeds found. Try searching for something else." msgstr "Cha deach inbhir sam bith a lorg. Feuch is lorg rudeigin eile." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Gun neach-leantainn fhathast" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "Gun dealbh" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Cha toil le gin seo fhathast" @@ -8135,7 +8117,12 @@ msgstr "Gun liostaichean" msgid "No longer following {0}" msgstr "Chan eil thu aโ€™ leantainn {0} tuilleadh" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Gun mheadhanan fhathast" @@ -8143,7 +8130,7 @@ msgstr "Gun mheadhanan fhathast" msgid "No messages yet" msgstr "Gun teachdaireachdan fhathast" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Cuir cรนl ris an sgrios-sgroladh a sparras algairimean ort. Faigh lorg air inbhirean a bheir dhut na tha a dhรฌth ort seach sgudal a sparradh ort." @@ -8180,16 +8167,21 @@ msgstr "Chan fhaod duine sam bith ach an t-รนghdar luaidh a dhรจanamh air aโ€™ p msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Chan eil post sam bith an-seo" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Gun phuist fhathast" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Gun luaidh fhathast" @@ -8198,11 +8190,7 @@ msgstr "Gun luaidh fhathast" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Gun fhreagairtean fhathast" @@ -8217,13 +8205,13 @@ msgstr "Cha robh toradh ann" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Cha robh toradh ann" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Cha dโ€™fhuair sinn toradh sam bith airson โ€œ{0}โ€." @@ -8236,23 +8224,23 @@ msgstr "Cha deach toradh a lorg" msgid "No results found for \"{query}\"" msgstr "Cha deach toradh a lorg airson โ€œ{query}โ€" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Gun toradh." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Gun phacaid tรฒiseachaidh fhathast" @@ -8265,7 +8253,7 @@ msgstr "Cha chuir, mรฒran taing" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Gun phuist video fhathast" @@ -8278,7 +8266,7 @@ msgstr "Chan eil duine sam bith" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Cha tuirt duine sam bith fhathast gur toil leotha seo. Saoil an toil leat-sa e air thoiseach air chร ch?" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Cha do rinn duine sam bith luaidh air seo fhathast. Saoil an dรจan thusa luaidh air air thoiseach air chร ch?" @@ -8298,6 +8286,10 @@ msgstr "Dealbhan dlรนth-chaidreach gun aonta" msgid "Non-sexual Nudity" msgstr "Lomnochd neo-fheiseil" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Chan eil seo ri fhaighinn air an รนrlar seo." msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Cha deach a lorg" @@ -8333,7 +8325,7 @@ msgstr "Fiosrachadh mu cho-roinneadh" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "An aire: Tha Bluesky na lรฌonra fosgailte agus poblach. Chan eil an roghainn seo aโ€™ cuingeachadh ach faicsinneachd na susbainte agad ann an aplacaid Bluesky is air an lร rach-lรฌn ach dhโ€™fhaodte nach gรจill aplacaidean eile ris an roghainn seo. Dhโ€™fhaoidte gun seall aplacaidean is lร raichean-lรฌn eile an t-susbaint agad do luchd-cleachdaidh a rinn clร radh a-mach." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "An aire: Chan fhaic ach luchd-cleachdaidh a tha clร raichte a-staigh seo." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Cha deach dad a shร bhaladh fhathast" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Roghainnean nam brathan" @@ -8353,11 +8345,12 @@ msgstr "Roghainnean nam brathan" msgid "Notification sounds" msgstr "Fuaimean nam brathan" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "รŒoc!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "Ceart ma-thร " #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Ceart ma-thร " @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Ath-shuidheachadh aโ€™ bhรฒrdachaidh" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Tha roghainn teacsa a dhรฌth air co-dhiรน aon GIF." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Tha roghainn teacsa a dhรฌth air co-dhiรน aon dealbh." @@ -8454,11 +8449,11 @@ msgstr "Thagh thu co-dhiรน aon fhaidhle ris nach eil taic." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Tha co-dhiรน aon phost ro fhada โ€™s chan urrainn dhuinn a shร bhaladh mar dhreachd. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Faodaidh dreachd a bhith # charactar a dhโ€™fhaid air aโ€™ char as motha.} two {Faodaidh dreachd a bhith # charactar a dhโ€™fhaid air aโ€™ char as motha.} few {Faodaidh dreachd a bhith # caractaran a dhโ€™fhaid air aโ€™ char as motha.} other {Faodaidh dreachd a bhith # caractar a dhโ€™fhaid air aโ€™ char as motha.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Tha roghainn teacsa a dhรฌth air co-dhiรน aon video." @@ -8471,7 +8466,7 @@ msgstr "Chan fhaod ach {0} freagairt." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Chan eil taic ach ri faidhlichean WebVTT (.vtt)" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "รŒoc!" @@ -8544,7 +8543,7 @@ msgstr "รŒoc!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Fosgail cruthadair nan avatar" @@ -8570,21 +8569,22 @@ msgstr "Fosgail roghainnean nan cรฒmhraidhean" msgid "Open draft" msgstr "Fosgail an dreachd" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Fosgail an clร r-taice air an taobh" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Fosgail rรฒghnaichear nan emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Fosgail sgrรฌn an fhiosrachaidh mun inbhir" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Fosgail clร r-taice roghainnean an inbhir" @@ -8627,7 +8627,7 @@ msgstr "Fosgail duilleag dรฌ-bhugachadh na modarataireachd" msgid "Open muted words and tags settings" msgstr "Fosgail roghainnean nam faclan is tagaichean mรนchte" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Fosgail aโ€™ phacaid" @@ -8699,7 +8699,7 @@ msgstr "Fosglaidh seo mion-fhiosrachadh a bharrachd mu innteart dรฌ-bhugachaidh" msgid "Opens alt text dialog" msgstr "Fosglaidh seo cรฒmhradh na roghainn teacsa" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Fosglaidh seo an camara air an uidheam" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Fosglaidh seo an sruth airson cunntas Bhluesky รนr a chruthachadh" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Fosglaidh seo an sruth airson clร radh a-steach dhan chunntas Bhluesky agad" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Chaidh am facal-faire รนrachadh!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Cuir na stad" @@ -8925,12 +8925,12 @@ msgstr "Cuir na stad" msgid "Pause GIF" msgstr "Cuir an GIF na stad" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Cuir aโ€™ video na stad" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Daoine" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Daoine a tha @{0} aโ€™ leantainn" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Daoine a leanas ri @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Daoine a tha mi gan leantainn" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Daoine a tha thu gan leantainn" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Dealbhan do dhโ€™inbhich." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Prรฌnich an t-inbhir" @@ -9034,7 +9034,7 @@ msgstr "Prรฌnich an t-inbhir" msgid "Pin to home" msgstr "Prรฌnich ris an dachaigh" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Prรฌnich ris an dachaigh" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Prรฌnichte" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Chaidh {0} a phrรฌneachadh ris an dachaigh" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Prรฌnichte ris na h-inbhirean agad" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Cluich" @@ -9076,8 +9076,8 @@ msgstr "Cluich {0}" msgid "Play GIF" msgstr "Cluich an GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Cluich aโ€™ video" @@ -9109,11 +9109,11 @@ msgstr "Mas e meadhan dโ€™ a leithid a thโ€™ ann, cuir leubail a bheir rabhadh m 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Tagh lร mhrachan dhut." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Tagh facal-faire." @@ -9122,7 +9122,7 @@ msgstr "Tagh facal-faire." 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 "Briog air aโ€™ cheangal sa phost-d a chuir sinn thugad airson an seรฒladh puist-d รนr agad a dhearbhadh. Seo ceum cudromach a nรฌ cinnteach gum faigh thu lร n-chothrom air Bluesky fhathast." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Coilean an Captcha airson dearbhadh a dhรจanamh." @@ -9179,7 +9179,7 @@ msgstr "Cuir a-steach an cรฒd a fhuair thu agus am facal-faire รนr a bu toil lea 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:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Cuir a-steach an seรฒladh puist-d agad." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Sgrรฌobh do theachdaireachd gu h-รฌosal:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Poileataigs" @@ -9269,7 +9269,7 @@ msgstr "Poileataigs" msgid "Porn" msgstr "Pรฒrnografachd" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Postaich" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Postaich" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Postaich dealbh" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Postaich video" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Postaich na h-uile" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Chaidh am post a bhacadh" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Post le @{0}" @@ -9340,7 +9340,7 @@ msgstr "Chaidh am post a chur am falach leat fhรจin" msgid "Post interaction settings" msgstr "Roghainnean eadar-ghabhail aโ€™ phuist" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Roghainnean eadar-ghabhail aโ€™ phuist" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Chaidh am post a phrรฌneachadh" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Chaidh am post a shร bhaladh" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Chan eil am post prรฌnichte tuilleadh" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Puist" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "โ€™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โ€™fhaodte nach fhaic thu cus ri linn." @@ -9398,6 +9396,10 @@ msgstr "โ€™S urrainn dhut puist a mhรนchadh ri linn teacsa a thโ€™ annta, nan ta msgid "Posts hidden" msgstr "Chaidh na puist a chur am falach" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Ceangal a dhโ€™fhaodadh a bhith meallta" @@ -9449,20 +9451,21 @@ msgstr "Prรฌobhaideachd" msgid "Privacy and security" msgstr "Prรฌobhaideachd โŠ tรจarainteachd" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Prรฌobhaideachd โŠ tรจarainteachd" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Roghainnean na prรฌobhaideachd is na tรจarainteachd" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Am poileasaidh prรฌobhaideachd" msgid "Privacy violation of a minor" msgstr "Briseadh a-steach air prรฌobhaideachd mion-aoisich" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Aโ€™ prรฒiseasadh an GIFโ€ฆ" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Aโ€™ prรฒiseasadh aโ€™ videoโ€ฆ" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Poblach, liostaichean luchd-cleachdaidh as urrainn dhut co-roinneadh ach an urrainn do dhaoine am mรนchadh no bacadh ri chรจile." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Foillsich am post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Foillsich na puist" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Foillsich na freagairtean" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Foillsich an fhreagairt" @@ -9599,12 +9602,12 @@ msgstr "Tha luaidhean air puist ร  comas" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Luaidhean" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Luaidhean air aโ€™ phost seo" @@ -9647,7 +9650,7 @@ msgstr "Cuir an cunntas agad an gnรฌomh as รนr" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Leugh {0, plural, one {# fhreagairt} two {# fhreagairt} few {# freagairtean} other {# freagairt}} eile" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Leugh am post air aโ€™ bhloga" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Falaich an cรฒrr" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Leugh an cรฒrr" @@ -9687,11 +9690,11 @@ msgstr "Leugh poileasaidh prรฌobhaideachd Bhluesky" msgid "Read the Bluesky Terms of Service" msgstr "Leugh teirmichean na seirbheise aig Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Fรฌor-chรฒmhradh." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Fรฌor-dhaoine." @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "Air a chleachdadh o chionn goirid" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Na mholamaid" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Ath-cheangail" @@ -9748,7 +9747,7 @@ msgstr "Diรนlt an t-iarrtas cabadaich" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Ath-luchdaich na cรฒmhraidhean" @@ -9766,7 +9765,7 @@ msgstr "Ath-luchdaich na cรฒmhraidhean" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Thoir air falbh" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Thoir an cunntas air falbh" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Thoir air falbh o na h-inbhirean agam" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "A bheil thu airson a thoirt air falbh on ghrad-inntrigeadh?" @@ -9862,7 +9861,7 @@ msgstr "A bheil thu airson a thoirt air falbh on ghrad-inntrigeadh?" msgid "Remove from saved feeds" msgstr "Thoir air falbh o na h-inbhirean a shร bhail thu" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Air a thoirt air falbh o na puist a shร bhail thu" @@ -9880,8 +9879,8 @@ msgstr "Thoir an dealbh air falbh" msgid "Remove live status" msgstr "Sguir dhen t-sruth bheรฒ" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Air a thoirt air falbh on liosta" msgid "Removed from saved feeds" msgstr "Air a thoirt air falbh o na h-inbhirean a shร bhail thu" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Air a thoirt air falbh o na puist a shร bhail thu" @@ -9952,7 +9951,7 @@ msgstr "Air a thoirt air falbh o na puist a shร bhail thu" msgid "Removed from starter pack" msgstr "Air a thoirt air falbh on phacaid tรฒiseachaidh" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Fhreagair iad thu" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Freagairtean" @@ -10037,7 +10037,7 @@ msgstr "Chan urrainnear am post seo a fhreagairt." msgid "Reply" msgstr "Freagair" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Freagair" @@ -10098,8 +10098,8 @@ msgstr "Dรจan aithris air aโ€™ chรฒmhradh" msgid "Report dialog" msgstr "Dรจan aithris air aโ€™ chรฒmhradh" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Dรจan aithris air an inbhir" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Rinn thu ath-phostadh" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Ath-phostadh" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Ath-phostaidh aโ€™ phuist seo" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Ath-phostadh de rud a dhโ€™ath-phostaich thusa" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Feuchaidh seo ris aโ€™ ghnรฌomh mu dheireadh a-rithist is e air fร illig #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Tillidh seo thu gun duilleag-dhachaigh" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Tillidh seo thu gun duilleag roimhpe" @@ -10446,27 +10446,27 @@ msgstr "Sร bhail an latha-breith" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Sร bhail na h-atharraichean" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "A bheil thu airson na h-atharraichean a shร bhaladh?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Sร bhail an dreachd" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "A bheil thu airson an dreachd a shร bhaladh?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Sร bhail an cรฒd QR" msgid "Save these options for next time" msgstr "Sร bhail na roghainnean seo ach am bi iad agam an ath-thuras" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Sร bhail sna h-inbhirean agam" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Inbhirean a shร bhail thu" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Puist a shร bhail thu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Air a shร bhaladh sna h-inbhirean agad" @@ -10520,8 +10520,8 @@ msgstr "Air a shร bhaladh sna h-inbhirean agad" msgid "Say hello!" msgstr "Can halรฒ!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Saidheans" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Sgrolaich chun an taoibh chlรฌ" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Sgrolaich chun an taoibh dheis" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Sgrolaich gun bhร rr" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Lorg" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Dรจan lorg sna puist aig {0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Lorg inbhirean a bu toil leat moladh do dhaoine eile." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Lorg barrachd chunntasan" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Lorg barrachd inbhirean" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Lorg GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Chan urrainn dhut lorg a dhรจanamh โ€™s tu gun chlร radh a-steach aig an ร m seo" @@ -10707,17 +10707,22 @@ 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/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Seall an cรฒrr" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Barrachd phrรฒifilean a mholamaid" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Seall na cunntasan a mholamaid" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Sleamhnachan an t-siridh. Cleachd na saighdean airson gluasad air ais no air adhart agus Space airson a chluich no a chur na stad" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Tagh an roinn-seรฒrsa โ€œ{interestsDisplayName}โ€" @@ -10748,7 +10753,7 @@ msgstr "Tagh {0}" msgid "Select {langName}" msgstr "Tagh {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Tagh dath" @@ -10764,11 +10769,11 @@ msgstr "Tagh cunntas" msgid "Select an app language" msgstr "Tagh cร nan dhan aplacaid" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Tagh avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Tagh emoji" @@ -10780,12 +10785,13 @@ msgstr "Tagh roghainn" msgid "Select app language" msgstr "Tagh cร nan dhan aplacaid" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Tagh GIF" msgid "Select GIF \"{0}\"" msgstr "Tagh an GIF โ€œ{0}โ€" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "Tagh prรฌomh-chร nan" msgid "Select telephone code" msgstr "Tagh cรฒd fรฒn" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Cleachd an emoji {emojiName} mar avatar" @@ -10945,7 +10951,8 @@ msgstr "Cuir an teachdaireachd" msgid "Send post to {name}" msgstr "Cuir am post gu {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Cuir am post guโ€ฆ" @@ -10963,12 +10970,12 @@ msgstr "Cuir an teachdaireachd on fhรฒn agad" msgid "Send verification email" msgstr "Cuir teachdaireachd dearbhaidh" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Cuir mar theachdaireachd dhรฌreach" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Suidhichidh seo am post-d airson ath-shuidheachadh an fhacail-fhaire" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Roghainnean" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Roghainnean a thaobh gnรฌomhachd dhaoine eile" @@ -11036,49 +11043,49 @@ msgstr "Roghainnean a thaobh gnรฌomhachd dhaoine eile" msgid "Settings for allowing others to be notified of your posts" msgstr "Na roghainnean a bheir cead do dhaoine eile brathan fhaighinn mu na puist agad" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Roghainnean nam brathan mu dhaoine a dhโ€™innis gur toil leotha rud" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Roghainnean nam brathan mu iomradh" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Roghainnean nam brathan mu luchd-leantainn รนr" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Roghainnean nam brathan mu rud sam bith eile" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Roghainnean nam brathan mu dhaoine a dhโ€™innis gur toil leotha rud a dhโ€™ath-phostaich thusa" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Roghainnean nam brathan mu ath-phostadh de rud a dhโ€™ath-phostaich thusa" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Roghainnean nam brathan mu luaidhean" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Roghainnean nam brathan mu fhreagairtean" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Roghainnean nam brathan mu ath-phostadh" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Co-roinn e co-dhiรน" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Co-roinn DID an รนghdair" @@ -11127,7 +11134,7 @@ msgstr "Co-roinn DID an รนghdair" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Cรฒmhradh aโ€™ cheangail cho-roinnidh" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Co-roinn post aig:// URI" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Co-roinn an cรฒd QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Co-roinn an t-inbhir seo" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Co-roinn aโ€™ phacaid tรฒiseachaidh seo" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Co-roinn aโ€™ phacaid tรฒiseachaidh seo agus cuidich daoine nad choimhearsnachd a tha air รนr-thighinn gu Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Co-roinn an luchd-aithne agad leinn is faigh lorg air do charaidean" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Deuchainn nan co-roghainnean" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Seall" msgid "Show alt text" msgstr "Seall an roghainn teacsa" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Seall e co-dhiรน" @@ -11274,9 +11281,9 @@ msgstr "Seall an liosta co-dhiรน" msgid "Show lists of users to select from" msgstr "Seall liostaichean luchd-cleachdaidh airson taghadh a dhรจanamh" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Seall barrachd" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Seall rabhadh is criathraich ร s na h-inbhirean e" msgid "Show when youโ€™re live" msgstr "Leig ris nuair a bhios tu ri craoladh beรฒ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Innsidh seo cuin a chaidh am post seo a chruthachadh" @@ -11341,15 +11348,15 @@ msgstr "Innsidh seo cuin a chaidh am post seo a chruthachadh" msgid "Shows other accounts you can switch to" msgstr "Seallaidh seo na cunntasan eile as urrainn dhut leum thuca" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Seallaidh seo an t-susbaint" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Seallaidh seo an t-susbaint" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "A bheil thu airson clร radh a-mach?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Feumaidh tu clร radh a-steach" @@ -11469,7 +11476,7 @@ msgstr "Leum seachad air" msgid "Skip contact sharing and continue to the app" msgstr "Leum seachad air co-roinneadh an luchd-aithne โ€™s lean air adhart chun na h-aplacaid" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "Leum air adhart chun an ath-cheum" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Nas lugha" @@ -11499,7 +11506,7 @@ msgstr "Cuiridh seo an cuimhneachan na dhรนsal" msgid "So many thoughts, you should post one" msgstr "Uiread a smuaintean, bu chรฒir dhut tรจ dhiubh a phostadh" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Meadhanan sรฒisealta fo do smachd-sa." @@ -11520,7 +11527,7 @@ msgstr "Chan eil cuid a sheirbheisean modarataireachd air an liosta agad ri lร i msgid "Some of your verifications are invalid." msgstr "Tha cuid dhen dearbhadh a rinn thu mรฌ-dhligheach." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Inbhir eile a chรฒrdas riut ma dhโ€™fhaodte" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Chuir cuideigin {0} mar fhrith-fhreagairt" @@ -11554,7 +11561,7 @@ msgstr "Chuir cuideigin {0} mar fhrith-fhreagairt" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Chaidh rudeigin ceร rr, feuch ris a-rithist" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Chaidh rudeigin ceร rr. Feuch ris a-rithist ann am mionaid." msgid "Something went wrong. Please try again." msgstr "Chaidh rudeigin ceร rr. Feuch ris a-rithist." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Mearachd air choireigin? Innis dhuinn." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spama, giรนlan-brรจige eile no foill" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Spรฒrs" @@ -11668,7 +11675,7 @@ msgstr "Tรฒisich air cรฒmhradh is nochdaidh e an-seo." msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Tรฒisich air cabadaich รนr" @@ -11682,17 +11689,17 @@ msgstr "Tรฒisich air daoine a chur ris" msgid "Start adding people!" msgstr "Tรฒisich air daoine a chur ris!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Tรฒisich air cabadaich le {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacaid tรฒiseachaidh" @@ -11715,12 +11722,16 @@ msgstr "Pacaid tรฒiseachaidh leat fhรจin" msgid "Starter pack is invalid" msgstr "Tha aโ€™ phacaid tรฒiseachaidh seo mรฌ-dhligheach" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pacaidean tรฒiseachaidh" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Tha e furasta na h-inbhirean is daoine as fheร rr leat a cho-roinneadh le pacaidean tรฒiseachaidh." @@ -11728,7 +11739,7 @@ msgstr "Tha e furasta na h-inbhirean is daoine as fheร rr leat a cho-roinneadh l msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Bheir pacaid-thรฒiseachaidh comas dhut na h-inbhirean is daoine as fheร rr leat a sgaoileadh am measg do charaidean." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Tha e furasta na h-inbhirean is daoine as fheร rr leat a cho-roinneadh le do charaidean le pacaidean tรฒiseachaidh." @@ -11742,7 +11753,7 @@ msgstr "Duilleag na staid" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Ceum {0} ร  {1}" @@ -11754,7 +11765,7 @@ msgstr "Chaidh an stรฒras fhalamhachadh, feumaidh tu an aplacaid ath-thรฒiseacha msgid "Stored as part of a secure code for matching with others" msgstr "Ga chumail mar phร irt de chรฒd tรจarainte airson maidseadh le daoine eile a dhรจanamh" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Leabhar-sgeulachd" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Fo-sgrรฌobh aig @{0} airson na leubailean seo a chleachdadh:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Chaidh a dhearbhadh" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Cunntasan a mholamaid" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Molaidhean dhut" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Laighe na grรจine" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Chan eil taic ris aโ€™ ghleus seo nad dhรนthaich aig an รฌre-sa! Thoir sรนil a-rithist uaireigin eile." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Geร rr leum gu {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "An siostam" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Thoir gnogag gu h-รฌosal airson cothrom dhan ionad GPS a thoirt dha Bluesky. Leis an dร ta seo, โ€™s urrainn dhuinn susbaint is gleusan a bhuineas dhan ร ite far a bheil thusa a shealltann dhut." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "Thoir gnogag airson an clร r-taice co-theacsail a dhรนnadh" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Thoir gnogag airson a leigeil seachad" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Rinn thu aโ€™ chรนis air, tha thu aโ€™ leantainn deichnear!" msgid "Task complete - 10 likes!" msgstr "Rinn thu aโ€™ chรนis air, dhโ€™innis thu gur toil leat 10 rudan!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Teagaisg dhan algairim againn dรจ na rudan as toil leat" @@ -12060,7 +12073,7 @@ msgstr "Na teirmichean" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Cha dโ€™fhuair sinn lorg air aโ€™ phacaid tรฒiseachaidh sin." msgid "That username is already taken" msgstr "Tha an t-ainm-cleachdaiche seo aig cuideigin eile mar-thร " -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Sin agaibh e, a chร irdean!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Sin e!" @@ -12216,7 +12229,7 @@ msgstr "Tha coltas gu bheil duilgheadasan aig an fhrithealaiche. Feuch ris a-rit msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Tha aโ€™ phacaid tรฒiseachaidh a bu toil leat coimhead air mรฌ-dhligheach. โ€™S urrainn dhut aโ€™ phacaid tรฒiseachaidh a sguabadh ร s an ร ite sin." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Cuspair aโ€™ chlร ir-thaice cho-theacsail" @@ -12238,7 +12251,7 @@ msgstr "Tha an cรฒd dearbhaidh a thug thu seachad mรฌ-dhligheach. Dรจan cinnteac msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Cha bโ€™ urrainn dhan t-solaraiche dearbhaidh cรฒd a chur chun na h-ร ireimh fรฒn agad. Dรจan cinnteach gu bheil an ร ireamh ceart is feuch ris a-rithist." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "An t-รนrlar" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "Bha duilgheadas ann leis aโ€™ cheangal ris an eadar-lรฌon, feuch ris a-rithist" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Bha duilgheadas ann leis aโ€™ cheangal ris an eadar-lรฌon, feuch ris a-r msgid "There was an issue contacting the server" msgstr "Cha bโ€™ urrainn dhuinn conaltradh leis an fhrithealaiche" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Cha bโ€™ urrainn dhuinn conaltradh leis an fhrithealaiche, thoir sรนil air aโ€™ cheangal ris an eadar-lรฌon is feuch ris a-rithist." @@ -12283,8 +12296,8 @@ msgstr "Cha bโ€™ urrainn dhuinn conaltradh leis an fhrithealaiche, thoir sรนil a msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Cha bโ€™ urrainn dhuinn na brathan fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Cha bโ€™ urrainn dhuinn na puist fhaighinn dhut. Thoir gnogag airson feuchainn ris a-rithist." @@ -12309,7 +12322,7 @@ msgstr "Cha bโ€™ urrainn dhuinn am fiosrachadh seirbheise agad fhaighinn dhut" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Cha bโ€™ urrainn dhuinn an t-inbhir seo a thoirt air falbh. Thoir sรนil air aโ€™ cheangal ris an eadar-lรฌon agad is feuch ris a-rithist." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Chan eil na roghainnean seo an sร s ach san inbhir โ€œAโ€™ leantainnโ€. msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Chaidh bratach a chur ris an tuairisgeul seo ({screenDescription}):" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Chaidh co-dhiรน aon oidhirp a dhรจanamh an cunntas seo a dhearbhadh ach cha do shoirbhich leis an dearbhadh fhathast." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Tha an cunntas seo aโ€™ sparradh air daoine clร radh a-steach mus fhaicear aโ€™ phrรฒifil aca." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Tha an t-inbhir seo falamh! Feuch is lean barrachd dhaoine no cuir na roghainnean cร nain agad air gleus." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Tha an t-inbhir seo falamh." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Seo lร mhrachan glรจidhte. Feuch fear eile." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Chuir thusa an leubail seo an sร s." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Cha do chuir an leubailiche seo an cรจill dรจ na leubailean a dhโ€™fhoillsicheas e agus dhโ€™fhaodte nach eil e gnรฌomhach." @@ -12621,13 +12634,13 @@ msgstr "Tha an liosta seo falamh." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Tha am post seo aโ€™ cumail a-mach gun deach a chruthachadh <0>{0} ach chunnacas e air Bluesky <1>{1} an toiseach." @@ -12649,7 +12662,7 @@ msgstr "Tha am post seo aโ€™ cumail a-mach gun deach a chruthachadh <0>{0} a msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Tha roghainnean smachd air freagairtean an sร s sa phost seo nach aithne dhuinn. Dhโ€™fhaodte gu bheil an aplacaid agad ro aosta." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Chan fhaic ach luchd-cleachdaidh a tha clร raichte a-staigh seo." @@ -12661,7 +12674,7 @@ msgstr "Sguab รนghdar aโ€™ phuist seo ร s e" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Bidh am post seo am falach o inbhirean is snร ithleanan. Cha ghabh seo neo-dhรจanamh." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Chuir รนghdar aโ€™ phuist seo ร  comas luaidhean air aโ€™ phost." @@ -12698,11 +12711,12 @@ msgstr "Cha toir seo ach mionaid no dhร ." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Chan eil ainm-taisbeanaidh aig aโ€™ chleachdaiche seo agus ri linn sin, chan urrainn dhut a dhearbhadh." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Chan eil duine sam bith aโ€™ leantainn aโ€™ chleachdaiche seo." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Bhac an cleachdaiche seo thu. Chan fhaic thu an t-susbaint aca." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Tha an cleachdaiche seo air an liosta <0>{0} agus tha iad sin mรนcht msgid "This user is new here. Press for more info about when they joined." msgstr "Tha an cleachdaiche seo air รนr-thighinn. Dรจan brรนthadh airson barrachd fiosrachaidh mun latha a chaidh iad an sร s ann." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Chan eil an cleachdaiche seo aโ€™ leantainn duine sam bith." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Ma nรฌ thu seo, thรจid an cunntas Bluesky <0>{currentHandle} agad agus an dร ta air fad a tha co-cheangailte ris a sguabadh ร s gu buan. Thoir an aire gum bi buaidh air seirbheisean <1>AT Protocol eile a chleachdas tu leis aโ€™ chunntas seo." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Bheir seo air falbh @{0} o liosta aโ€™ ghrad-inntrigidh." @@ -12786,7 +12801,7 @@ msgstr "Roghainnean an t-snร ithlein" msgid "Threaded" msgstr "Mar shnร ithlean" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Roghainnean nan snร ithleanan" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Chan urrainn dhut uiread a neach-aithne ion-phortadh airson caraidean a lorg" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Brod nan toradh" @@ -12858,7 +12873,7 @@ msgstr "Brod nan toradh" msgid "Top replies first" msgstr "Brod nam freagairtean an toiseach" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Cuspair" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "Seall mar chraobh" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Air bilean an t-sluaigh" @@ -12902,13 +12919,15 @@ msgstr "Air bilean an t-sluaigh" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Roghainnean a tha aโ€™ treandadh" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Videothan a tha aโ€™ treandadh" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Trolladh" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "รˆiridh earbsa ร  dร imhean, coimhearsnachdan is co-chomann agus ri linn sin, tha sinn aโ€™ toirt a-steach gleus <0>an luchd.-dearbhaidh earbsach: buidhnean aig am bi comas dearbhadh a dhรจanamh." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "Chan eil seo ri lร imh" msgid "Unavailable feed information" msgstr "Chan eil fiosrachadh mun inbhir ri fhaighinn" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "A bheil thu airson an cunntas a dhรฌ-bhacadh?" msgid "Unblock list" msgstr "Dรฌ-bhac an liosta" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Na lean ri {0} tuilleadh" msgid "Unfollow account" msgstr "Na lean an cunntas tuilleadh" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Ma nรฌ thu seo, cha lean thu ris aโ€™ chleachdaiche tuilleadh" @@ -13132,7 +13153,7 @@ msgstr "Susbaint inbheach gun leubail" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Susbaint inbheach gun leubail, susbaint dhroch-dhรฌolach no gun cho-aonta" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Cha toil tuilleadh" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "Neo-mhรนch an snร ithlean" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Till fuaim aโ€™ video" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Dรฌ-phrรฌnich" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Dรฌ-phrรฌnich an t-inbhir" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Dรฌ-phrรฌnich on dachaigh" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Dรฌ-phrรฌnich on liosta mhodarataireachd" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Chaidh {0} a dhรฌ-phrรฌneachadh on dachaigh" @@ -13258,11 +13279,11 @@ msgstr "Cuir crรฌoch air an fho-sgrรฌobhadh aig an leubailiche seo" msgid "Unsubscribed from list" msgstr "Chaidh crรฌoch a chur air an fho-sgrรฌobhadh aig an liosta" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Chan eil taic ri videothan dhen t-seรฒrsa {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Cha bโ€™ urrainn dhuinn faicsinneachd na freagairt รนrachadh" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Luchdaich suas dealbh an ร ite sin" @@ -13355,7 +13376,7 @@ msgstr "Luchdaich suas o na faidhlichean" msgid "Upload from Library" msgstr "Luchdaich suas on leabhar-lann" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Aโ€™ luchdadh suas an GIFโ€ฆ" @@ -13369,7 +13390,7 @@ msgstr "Aโ€™ luchdadh suas nan dealbhanโ€ฆ" msgid "Uploading link thumbnail..." msgstr "Aโ€™ luchdadh suas dealbhag aโ€™ cheangailโ€ฆ" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Aโ€™ luchdadh suas aโ€™ videoโ€ฆ" @@ -13408,7 +13429,7 @@ msgstr "Cleachd seo airson clร radh a-steach gun aplacaid eile leis an lร mhrach msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Cleachd seรฒladh post-d aโ€™ chunntais agad no seรฒladh puist-d ceart eile agad air eagal โ€™s gum bi aig KWS no Bluesky fios a chur thugad." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "Dhโ€™fhร illig an dearbhadh, feuch ris a-rithist." msgid "Verification settings" msgstr "Roghainnean dearbhaidh" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Roghainnean dearbhaidh" @@ -13618,34 +13639,34 @@ msgstr "Video" msgid "Video failed to process" msgstr "Cha bโ€™ urrainn dhuinn aโ€™ video a phrรฒiseasadh" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Inbhir video" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Video o {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video o {0}. Thoir gnogag air airson a chluich no a chur na stad" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Geamannan video" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Tha aโ€™ video na stad" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Tha aโ€™ video ga chluich" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Cha deach aโ€™ video a lorg." @@ -13653,7 +13674,7 @@ msgstr "Cha deach aโ€™ video a lorg." msgid "Video settings" msgstr "Roghainnean aโ€™ video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Chaidh aโ€™ video a luchdadh suas" @@ -13662,17 +13683,17 @@ msgstr "Chaidh aโ€™ video a luchdadh suas" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videothan" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Feumaidh aโ€™ video a bhith nas giorra na 3 mionaidean." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Seall" @@ -13691,9 +13712,9 @@ msgstr "Seall an t-avatar aig {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Seall aโ€™ phrรฒifil aig {0}" @@ -13724,13 +13745,13 @@ msgstr "Seall am bloga airson barrachd fiosrachaidh" msgid "View debug entry" msgstr "Seall an t-innteart dรฌ-bhugachaidh" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Seall am mion-fhiosrachadh" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Seall an snร ithlean slร n" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "Seall am fiosrachadh mu na leubailean seo" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Seall barrachd" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Seall barrachd videothan a tha aโ€™ treandadh" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Seall am post" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Seall an t-seirbheis leubailidh aig @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Seall na dhearbh an cleachdaiche seo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Seall an luchd-cleachdaidh as toil leotha an t-inbhir seo" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Seall aโ€™ video" @@ -13831,7 +13852,7 @@ msgstr "Seall na liostaichean modarataireachd agad" msgid "View your muted accounts" msgstr "Seall na cunntasan a mhรนch thu" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Seall an dearbhadh a rinn thu" @@ -13840,7 +13861,7 @@ msgstr "Seall an dearbhadh a rinn thu" msgid "Views full image" msgstr "Seallaidh seo an dealbh slร n" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Seallaidh seo aโ€™ video sa mhodh lร n-tumaidh" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Tha duilgheadasan aig an lรฌonra againn, feuch ris a-rithist" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Tha sinn aโ€™ toirt a-steach รฌre eile de dhearbhadh air Bluesky โ€“ cromag fhollaiseach." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "Tha sinn duilich ach chan urrainn dhuinn an liosta seo fhuasgladh. Ma mh msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Tha sinn duilich ach cha bโ€™ urrainn dhuinn na faclan a mhรนch thu a luchdadh an-drร sta fhรจin. Feuch ris a-rithist." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "Tha sinn duilich ach chan fhaigh thu cothrom air an sgrรฌn seo an-drร sta fhรจin." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Tha sinn duilich! Tha thu aโ€™ feuchainn ri post a fhreagairt a chaidh a sguabadh ร s." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Dรจ do naidheachd?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Cรฒ aig a bheil cead-dearbhaidh?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Oich!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "A bheil thu airson seo a shร bhaladh mar dhreachd mus coimhead thu air na dreachdan agad?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "A bheil thu airson seo a shร bhaladh mar dhreachd airson a dheasachadh uaireigin eile?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Sgrรฌobh post" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Sgrรฌobh post" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Sgrรฌobh do fhreagairt" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Tha thu airson Bluesky a chleachdadh ann an ร ite far a bheil an lagh a sparradh oirnn dearbhadh dรจ an aois a tha thu mus fhaigh thu cothrom air an aplacaid." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "Chan eil thu ri sruthadh beรฒ tuilleadh" msgid "You are not allowed to upload videos." msgstr "Chan eil cead agad videothan a luchdadh." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Chan eil thu aโ€™ leantainn duine sam bith fhathast" @@ -14362,7 +14385,7 @@ msgstr "Chaidh do dhearbhadh. Caillidh tu dโ€™ inbhe dearbhaidh ma dhโ€™atharrai msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Chaidh do dhearbhadh. Caillidh tu dโ€™ inbhe dearbhaidh ma dhโ€™atharraicheas tu an lร mhrachan agad. <0>Barrachd fiosrachaidh." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "โ€™S urrainn dhut na rudan sa bheil รนidh agad a chur air gleus uair sam bith sna roghainnean โ€œSusbaint is meadhananโ€." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "โ€™S urrainn dhut clร radh a-steach leis an fhacal-fhaire รนr agad a-nis." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "โ€™S urrainn dhut dreachdan a shร bhaladh anns am bi suas ri mรฌle caractar." @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "โ€™S urrainn dhut seo รนrachadh sna roghainnean agad uair sam bith." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "Dhearbh thu an seรฒladh puist-d agad. โ€™S urrainn dhut an cรฒmhradh seo msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-drร sta fhรจin. Feuch ris a-rithist an ceann greis." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Tha atharraichean gun sร bhaladh agad san dreachd seo, a bheil thu airson an sร bhaladh?" @@ -14563,7 +14589,7 @@ msgstr "Tha atharraichean gun sร bhaladh agad san dreachd seo, a bheil thu airso msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Tha atharraichean gun sร bhaladh agad. A bheil thu airson an sร bhaladh mus coimhead thu air na dreachdan agad?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Cha do chruthaich thu pacaid tรฒiseachaidh fhathast!" @@ -14614,7 +14640,7 @@ msgstr "Chan fhaod thu barrachd air {STARTER_PACK_MAX_SIZE, plural, one {{STARTE msgid "You may only add up to 3 feeds" msgstr "Chan fhaod thu barrachd air trรฌ inbhirean a chur ris" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Feumaidh tu a bhith co-dhiรน 13 bliadhna a dhโ€™aois mus urrainn dhut Bluesky a chleachadh. Leugh <0>teirmichean na seirbheise againn airson barrachd fiosrachaidh." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Feumaidh tu co-dhiรน seachdnar a leantainn mus urrainn dhut pacaid tรฒiseachaidh a ghintinn." @@ -14639,7 +14665,7 @@ msgstr "Feumaidh tu cead-inntrigidh do leabhar-lann nam meadhanan agad a thoirt msgid "You need to verify your email address before you can enable email 2FA." msgstr "Feumaidh tu an seรฒladh puist-d agad a dhearbhadh mus urrainn dhut 2FA air aโ€™ phost-d a chur an comas." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "โ€™S mathaid gum bโ€™ fheร irrde dhut an aplacaid ath-thรฒiseachadh an-drร sta." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Chuir thu {0} mar fhrith-fhreagairt" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "Dhโ€™atharraich thu latha do bhreith o chionn goirid" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Bidh tu aโ€™ leantainn an luchd-cleachdaidh โ€™s na h-inbhirean a mholamaid-ne turas a bhios an cunntas รนr deiseil agad!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Bidh tu aโ€™ leantainn an luchd-cleachdaidh a mholamaid-ne turas a bhios an cunntas รนr deiseil agad!" @@ -14791,7 +14817,7 @@ msgstr "Seo deireadh na susbainte ghnรฌomhach." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Seo deireadh an inbhir agad! Faigh lorg air barrachd chunntasan a leanas thu." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Tha uiread a dhreachdan agad โ€™s a tha ceadaichte" @@ -14799,7 +14825,7 @@ msgstr "Tha uiread a dhreachdan agad โ€™s a tha ceadaichte" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Rinn thu uiread a dhโ€™iarrtas โ€™s a tha ceadaichte mar-thร . Feuch ris a-rithist an ceann greis." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus dร  msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus videothan)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Chan eil video sam bith eile agad a choimheadas tu air. Deagh-ร m airson rudeigin eile a dhรจanamh fad greis?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "An cunntas agad" @@ -14835,11 +14861,11 @@ msgstr "Chaidh an cunntas agad a chur na dhร il" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Chan eil an cunntas agad aosta gu leรฒr fhathast airson videothan a luchdadh suas. Feuch ris a-rithist an ceann greis." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "Am post-d agad" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Tha coltas nach eil am post-d agad dligheach." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Chaidh na rudan sa bheil รนidh agad รนrachadh!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Ma bhios fhios againn dรจ na rudan sa bheil รนidh agad, bidh e nas fhasa dhuinn stuth a shealltainn dhut a chรฒrdas riut!" @@ -14967,11 +14993,11 @@ msgstr "Chaidh am facal-faire agad atharrachadh! Cleachd am fear รนr o seo a-mac msgid "Your password must be at least 8 characters long." msgstr "Feumaidh co-dhiรน 8 caractaran bhith san fhacal-faire agad." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Chaidh am post agad a chur" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Chaidh na puist agad a chur" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "An cร nan as fheร rr leat" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Dealbh na prรฒifil agad" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Dealbh na prรฒifil agad ann an cearcallan co-mheadhanach de dhealbhan prรฒifil aig daoine eile" @@ -14992,7 +15018,7 @@ msgstr "Dealbh na prรฒifil agad ann an cearcallan co-mheadhanach de dhealbhan pr msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Chan fhaic luchd-cleachdaidh Bhluesky eile aโ€™ phrรฒifil, na puist, inbhirean is liostaichean agad tuilleadh. โ€™S urrainn dhut an cunntas agad ath-ghnรฌomhachadh uair sam bith." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Chaidh do fhreagairt a chur" @@ -15005,7 +15031,7 @@ msgstr "Thรจid an aithris agad a chur gu <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Ma leigeis tu ris dรจ na rudan sa bheil รนidh agad, bidh e nas fhasa susbaint a shealltainn dhut a bhuineas riut-sa." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/gl/messages.po b/src/locale/locales/gl/messages.po index fadea6e9e7..70ca5e8c94 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Galician\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(contรฉn contido incrustado)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# horas}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} seguindo" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Non รฉ posรญbel enviar mensaxes a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {citas}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicaciรณn} other {republicaciรณns}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 dรญas" msgid "7 days" msgstr "7 dรญas" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Accesibilidade" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Axustes de accesibilidade" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Conta silenciada por listaxe" msgid "Account options" msgstr "Opciรณns da conta" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Conta elimada de acceso rรกpido" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Engadir texto alternativo (opcional)" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Engade esta canle รกs tรบas canles" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Adultos" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Todas" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Todas as tรบas canles gardadas, nun sรณ lugar." @@ -1560,7 +1511,7 @@ msgstr "Permitir acceso รกs mensaxes directas" msgid "Already have a code?" msgstr "Xa tes un cรณdigo?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "Un cรณdigo de verificaciรณn foi enviado a {0}. Ingresa ese cรณdigo a con msgid "An error has occurred" msgstr "Produciuse un erro" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Ocurreu un erro" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Ocurreu un error ao xerar o teu paquete de inicio. Queres probar de novo?" @@ -1640,11 +1591,11 @@ msgstr "Ocurreu un error ao xerar o teu paquete de inicio. Queres probar de novo msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Ocurreu un erro ao cargar o vรญdeo. Por favor, proba de novo." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Ocurreu un erro mentres cargaba o vรญdeo. Por favor, proba de novo." @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Un problema non presente nestas opciรณns" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Ocurreu un erro mentres tentabas abrir as conversas." +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contrasinais da app" @@ -1891,8 +1838,8 @@ msgstr "Apelar esta decisiรณn" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arquivada dende {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Publicaciรณn arquivada" @@ -1980,7 +1927,7 @@ msgstr "Tes a certeza de que desexas eliminar isto das tรบas canles?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Tes a certeza de querer desbotar esta publicaciรณn?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "Reproduciรณn auto. de vรญdeos e GIFs" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Antes de crear un paquete de inicio, primeiro tes que verificar o teu correo." @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "Aniversario" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Contas bloqueadas" @@ -2282,7 +2244,7 @@ msgstr "Se bloqueas unha conta non poderรก responder os teus fรญos, mencionarte msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Se bloqueas unha conta non poderรก responder os teus fรญos, mencionarte nin interactuar contigo de ningunha manera. Non verรกs o seu contido e non poderรก ver o teu." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Se bloqueas a un etiquetador aรญnda poderรก seguir aplicando etiquetas na tรบa conta." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non pode confirmar a autenticidade da data solicitada." @@ -2330,7 +2293,7 @@ msgstr "Bluesky รฉ unha rede aberta onde podes elixir o teu proveedor de aloxame msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky รฉ unha rede aberta onde ti podes escoller o teu propio provedor. Se acabas de chegar, recomendรกmosche a opciรณn predefinida de Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky รฉ mellor con amizades!" @@ -2358,7 +2321,7 @@ msgstr "Termos do Servizo do Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky elexirรก un conxunto de contas recomendadas na tรบa rede." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Revisar mรกis canles" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Explorar mรกis suxerencias" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Explora mรกis suxerencias na pรกxina Explorar" @@ -2425,24 +2388,25 @@ msgstr "Explora mรกis suxerencias na pรกxina Explorar" msgid "Browse other feeds" msgstr "Explorar outras canles" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Navegar publicaciรณns de {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Navegar publicaciรณns etiquetadas con {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Navegar tema {displayName}" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Por {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Por <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Ao crear unha conta, aceptas os <0>Termos de servizo e a <1>Polรญtic msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Ao crear unha conta, aceptas os <0>Termos de servizo." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Cรกmara" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Cancelar a reactivaciรณn e pechar a sesiรณn" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancelar procura" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Axustes da conversa" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "Escoller mรฉtodo de verificaciรณn do dominio" msgid "Choose Feeds" msgstr "Escolle Canles" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Escolle para min" @@ -2854,7 +2819,7 @@ msgstr "Escolle xente" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Elixe esta color como o teu avatar" @@ -2879,7 +2844,7 @@ msgstr "Escolle a tรบa propia liรฑa de tempo! Fรญos feitos pola comunidade axuda msgid "Choose your password" msgstr "Escolleu o teu contrasinal" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "O teu alcume" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Preme para reintentar a mensaxe fallida" @@ -3003,7 +2968,7 @@ msgstr "Preme para reintentar a mensaxe fallida" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Preme para reintentar a mensaxe fallida" msgid "Close" msgstr "Pechar" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Pechar xanela activa" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "Pechar esta xanela" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Pecha a alerta de actualizaciรณn de contrasinal" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modo de color" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Bandas deseรฑadas" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directrices da comunidade" @@ -3141,7 +3106,7 @@ msgstr "Directrices da comunidade" msgid "Complete onboarding and start using your account" msgstr "Completa a incorporaciรณn e comeza a usar a tรบa conta" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa o desafรญo" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Escribir nova publicaciรณn" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "Redactar resposta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Comprimindo vรญdeo..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contacta co soporte" @@ -3253,7 +3218,7 @@ msgstr "Contido e Multimedia" msgid "Content and media" msgstr "Contido e multimedia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Contido e Multimedia" @@ -3265,10 +3230,6 @@ msgstr "Contido bloqueado" msgid "Content filters" msgstr "Filtros de contido" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Advertencia de contido" msgid "Content warnings" msgstr "Advertencia de contido" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fondo do menรบ contextual, preme para pechar o menรบ." @@ -3302,7 +3263,7 @@ msgstr "Fondo do menรบ contextual, preme para pechar o menรบ." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Continuar fรญo..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Versiรณn de compilaciรณn copiada ao portapapeis" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "Copiar Ligazรณn" msgid "Copy link to list" msgstr "Copia ligazรณn รก lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar ligazรณn ao chรญo" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "Copiar texto da mensaxe" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Polรญtica de dereitos de autor" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Non se puido saรญr deste conversa" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Non se puido cargar esta canle" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Non se puido silenciar a conversa" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crear" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Crear un cรณdigo QR para o paquete de inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Crea un paquete de inicio" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crea un paquete de inicio para min" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Crear conta" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Crea unha conta" @@ -3666,15 +3627,15 @@ msgstr "Crea unha conta" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Crea un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Crea outro" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "Cultura" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Escuro" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Escuro" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema escuro" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Por Defecto" @@ -3894,7 +3855,7 @@ msgstr "Borrar a miรฑa conta" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Borrar un chรญo" @@ -3988,7 +3949,7 @@ msgstr "Xanela: axustar quen pode interactuar con este chรญo" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Atenuar" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "Deshabilitado" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Desbotar" msgid "Discard changes?" msgstr "Desbotar cambios?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Desbotar borrador?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Desbotar publicaciรณn?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Evitar que as aplicaciรณns amosen a miรฑa conta รกs persoas desconectadas" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Evitar que as aplicaciรณns amosen a miรฑa conta รกs persoas desconectada msgid "Discover new custom feeds" msgstr "Descubre novas canles personalizadas" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descobre Novas Canles" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Desbotar" @@ -4103,28 +4064,28 @@ msgstr "Desbotar" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Desbotar erro" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Desbotar a guรญa de introduciรณn" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Ignorar esta secciรณn" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "Amosar insignias de texto alternativo mรกis grandes" msgid "Display name" msgstr "Amosar o nome" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "Listo" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Doble toque para pechar a xanela" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Duplo toque para marcar cun \"gรบstame\"" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Editar imaxe" msgid "Edit interaction settings" msgstr "Editar axustes de interacciรณn" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar as Miรฑas Canles" @@ -4406,6 +4368,11 @@ msgstr "Editar as Miรฑas Canles" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar Persoas" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Editar quen pode responder" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Edita o teu paquete de inicio" @@ -4500,8 +4467,8 @@ msgstr "Insertar cรณdigo HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Insertar chรญo" @@ -4509,7 +4476,7 @@ msgstr "Insertar chรญo" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incrusta este chรญo no teu sitio web. Simplemente copia o seguinte fragmento e pรฉgao no cรณdigo HTML do teu sitio web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Reprodutor de vรญdeo incrustado" @@ -4533,7 +4500,7 @@ msgstr "Activar contido para persoas adultas" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "Activar medios externos" msgid "Enable media players for" msgstr "Reproducir multimedia de" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "Habilitar os vรญdeos en tendencia na tรบa canle \"Descubrir\"" msgid "Enabled" msgstr "Activado" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fin das canles" @@ -4608,7 +4576,7 @@ msgstr "Ingresa unha palabra ou etiqueta" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Poรฑer a pantalla completa" @@ -4650,11 +4618,11 @@ msgstr "Introduce o teu alcume e contrasinal" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Erro" @@ -4684,7 +4652,7 @@ msgstr "Ocorreu un erro ao gardar o ficheiro" msgid "Error receiving captcha response." msgstr "Error ao recibir a resposta do captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "Todo o mundo pode responder" msgid "Everybody can reply to this post." msgstr "Todo o mundo pode responder a este chรญo." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Todos" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Todos" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "Excluรญr รก contas que segues" msgid "Excludes users you follow" msgstr "Exclรบe รกs contas que segues" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Saรญr da pantalla completa" @@ -4755,11 +4723,11 @@ msgstr "Expandir listaxe de persoas" msgid "Expand or collapse the full post you are replying to" msgstr "Expandir ou minimizar o chรญo completo ao que estรกs respondendo" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "Medios explรญcitos ou potencialmente perturbadores." msgid "Explicit sexual images." msgstr "Imaxes sexuais explรญcitas." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "Medios externos" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ร‰ posรญbel que medios externos permitan que outros sitios recopilen datos sobre ti e o teu dispositivo. Non se envรญa ou solicita ningรบn tipo de informaciรณn ata que presiones o botรณn de \"play\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Medios externos" @@ -4886,7 +4854,7 @@ msgstr "Erro ao mudar o nome de usuario. Tรฉntao de novo." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Error ao cargar as preferencias das canles." #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Error ao cargar as canles suxeridas." -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Error ao cargar as suxerencias de seguimento." @@ -5027,12 +4996,12 @@ msgstr "Error ao cargar as suxerencias de seguimento." msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Canles" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menรบ de canles" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Canles actualizadas!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Cremos que estas canles poden gustarche." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "Ficheiro gardado exitosamente!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtro de canles" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "Procurar contas para seguir" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Seguir a {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Sigue 7 contas" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que coรฑeces" @@ -5544,7 +5497,7 @@ msgstr "Seguidores que coรฑeces" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Seguindo {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Seguindo a {handle}" @@ -5578,21 +5531,21 @@ msgstr "Seguindo a {handle}" msgid "Following feed preferences" msgstr "Preferencias das canles de Seguimento" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencias das canles de Seguimento" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Sรฉguete" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Fonte" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tamaรฑo de fonte" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Para unha mellor experiencia, recomendamos que uses a fonte do tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "Para sempte" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "Esquecรฉches o teu contrasinal?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Xera un paquete de inicio" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "Obtรฉn axuda" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Dรกlle ao teu perfil unha cara bonita" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Cancelo" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Tes problemas?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "Axuda" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Axuda a que as persoas saiban que non es un bot subindo unha foto ou creando un avatar." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Oculto" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Oculto debido aos teus axustes de moderaciรณn." @@ -6148,9 +6102,10 @@ msgstr "Oculto debido aos teus axustes de moderaciรณn." msgid "Hidden list" msgstr "Listaxe oculta" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Listaxe oculta" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Ocultar" @@ -6198,7 +6154,7 @@ msgstr "Ocultar rechouchรญo para todo o mundo" msgid "Hide reply for me" msgstr "Ocultar rechouchรญo para min" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "Ocultar este rechouchรญo?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Ocultar temas de tendencia" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Ocultar os temas de tendencia?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Ocultar os vรญdeos en tendencia?" @@ -6240,7 +6198,7 @@ msgstr "Ocultar listaxe de persoas" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Oculta o contido" @@ -6293,8 +6251,8 @@ msgstr "Vaites! Non puidemos cargar ese servizo de moderaciรณn." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Espera! Estamos dando acceso a vรญdeos gradualmente e aรญnda estรกs na listaxe de espera. Volve a consultar mรกis adiante." -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se desexas cambiar o teu contrasinal, enviarรฉmosche un cรณdigo para verificar que esta รฉ a tรบa conta." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Alcume ou contrasinal incorrectos" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "Cรณdigo de convite" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Non se acepta o cรณdigo de convite. Comproba que o introduciches correctamente e intรฉntao de novo." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Por agora sรณ estรกs ti! Engade mรกis persoas ao teu paquete inicial buscando arriba." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Tarefa ID: {0}" @@ -6816,8 +6766,8 @@ msgstr "รšnete รก conversa" msgid "Journalism" msgstr "Xornalismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etiquetado por {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etiquetado pola persoa autora." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiquetas" @@ -6852,7 +6802,7 @@ msgstr "Etiquetas engadidas" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "As etiquetas son anotaciรณns sobre persoas e contido. Poden usarse para ocultar, advertir e categorizar a rede." @@ -6864,7 +6814,7 @@ msgstr "Etiquetas na tรบa conta" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Axustes de Idiomas" @@ -6874,7 +6824,7 @@ msgstr "Axustes de Idiomas" msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Mรกis grande" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "รšltimo" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Aprender mรกis" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Obtรฉn mรกis informaciรณn sobre como aloxar o teu PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Aprender mรกis sobre esta advertencia" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Aprender mรกis." @@ -6993,8 +6943,8 @@ msgstr "Deixar" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Saรญr de Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "queda por ir." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Dรฉixame escoller" @@ -7057,7 +7007,7 @@ msgstr "Imos!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Claro" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7026,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Dรกlle ยซgรบstameยป a 10 chรญos" @@ -7085,7 +7035,7 @@ msgstr "Dรกlle ยซgรบstameยป a 10 chรญos" msgid "Like 10 posts to train the Discover feed" msgstr "Dรกlle ยซgรบstameยป a 10 publicaciรณns para entrenar as canles de Descubrimento." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Dar ยซgรบstameยป a esta canle" @@ -7093,8 +7043,8 @@ msgstr "Dar ยซgรบstameยป a esta canle" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Gustoulle a" @@ -7111,27 +7061,45 @@ msgstr "Gustoulle a" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Gรบstame" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Gรบstame en este chรญo" @@ -7144,7 +7112,7 @@ msgstr "Lineal" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Listaxe" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "A listaxe xa non estรก silenciada" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Cargar mรกis" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Cargar mรกis canles suxeridas" @@ -7292,8 +7260,8 @@ msgstr "Cargar mรกis canles suxeridas" msgid "Load new notifications" msgstr "Cargar notificaciรณns novas" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Rexistro" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Fai un para min" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Marcar como lido" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimedia" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Medios que poden resultar perturbadores ou inapropiados para algunhas audiencias." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "persoas mencionadas" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menciรณns" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mensaxe eliminada" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mensaxes" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderaciรณn" @@ -7636,7 +7608,7 @@ msgstr "Listaxe de moderaciรณn actualizada" msgid "Moderation lists" msgstr "Listaxes de moderaciรณn" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listaxes de Moderaciรณn" @@ -7645,7 +7617,7 @@ msgstr "Listaxes de Moderaciรณn" msgid "moderation settings" msgstr "axustes de moderaciรณn" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Estados de moderaciรณn" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Non importa, crea un alcume para min" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Novo" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Novo chat" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Novo contrasinal" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Novo chรญo" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Primeiro as respostas mรกis recentes" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Noticias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Nova imaxe" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Non se encontraron canles. Intenta buscar algo mรกis." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Aรญnda sen gรบstames" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "Xa non segues a {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "Aรญnda non hai mensaxes" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "Ninguรฉn, excepto a persoa autora, pode citar este chรญo." msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Aรญnda non hai citas." @@ -8198,11 +8190,7 @@ msgstr "Aรญnda non hai citas." msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "Sen resultado" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sen resultados" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "Non se encontraron resultados" msgid "No results found for \"{query}\"" msgstr "Non se encontraron resultados para \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "Non, grazas" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "Ninguรฉn" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "A ninguรฉn lle gustou isto. Ao mellor deberรญas darlle unha oportunidade!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ninguรฉn citou isto. Poderรญas levar a dianteira e citalo antes que ninguรฉn! " @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Nudez non sexual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Non se encontrou" @@ -8333,7 +8325,7 @@ msgstr "Nota sobre compartir" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky รฉ unha rede aberta e pรบblica. Esta configuraciรณn sรณ limita a visibilidade do teu contido na aplicaciรณn e no sitio web de Bluesky, e รฉ posรญbel que outras aplicaciรณns non respecten esta configuraciรณn. O teu contido aรญnda se pode mostrar รกs persoas que pecharon sesiรณn por outras aplicaciรณns e sitios web." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Axustes de notificaciรณns" @@ -8353,11 +8345,12 @@ msgstr "Axustes de notificaciรณns" msgid "Notification sounds" msgstr "Sons de notificaciรณns" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Ai, non!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "Ben" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Estรก ben" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Restablecemento da incorporaciรณn" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Falta o texto alternativo nunha ou mรกis imaxes." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Falta o texto alternativo nun ou mรกis vรญdeos." @@ -8471,7 +8466,7 @@ msgstr "Sรณ {0} pode responder." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Sรณ se admiten ficheiros WebVTT (.vtt)." @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Vaites!" @@ -8544,7 +8543,7 @@ msgstr "Vaites!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Abrir o creador de avatares" @@ -8570,21 +8569,22 @@ msgstr "Abrir as opciรณns de conversa" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Abrir menรบ lateral" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Abrir o selector de emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Abrir pantalla de informaciรณn da canle" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Abre o menรบ de opciรณns das canles" @@ -8627,7 +8627,7 @@ msgstr "Abrir a pรกxina da depuraciรณn de moderaciรณn" msgid "Open muted words and tags settings" msgstr "Abrir os axustes de palabras e etiquetas silenciadas" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "Abre detalles adicionales para una entrada de depuraciรณn." msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Abrir cรกmara do dispositivo" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Abrir o fluxo para crear unha nova conta Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Abrir o fluxo para iniciar sesiรณn na tรบa conta Bluesky existente" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Contrasinal actualizado!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausar" @@ -8925,12 +8925,12 @@ msgstr "Pausar" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausar vรญdeo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Persoas" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Persoas seguidas por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Persoas siguindo a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Imaxes pensadas para persoas adultas." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixar canle" @@ -9034,7 +9034,7 @@ msgstr "Fixar canle" msgid "Pin to home" msgstr "Fixar no inicio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fixar no Inicio" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Fixado" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} fixouse รก pรกxina de inicio" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "As tรบas canles fixadas" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Reproducir" @@ -9076,8 +9076,8 @@ msgstr "Reproducir {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reproducir vรญdeo" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Por favor, escolle o teu alcume." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Por favor, escolle o teu contrasinal." @@ -9122,7 +9122,7 @@ msgstr "Por favor, escolle o teu contrasinal." msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." msgstr "" -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Por favor, completa a verificaciรณn CAPTCHA" @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Introduce o teu correo electrรณnico." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Polรญtica" @@ -9269,7 +9269,7 @@ msgstr "Polรญtica" msgid "Porn" msgstr "Pornografรญa" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Chiar" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Chiar" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicar todo" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Chรญo de @{0}" @@ -9340,7 +9340,7 @@ msgstr "Chรญo ocultado por ti" msgid "Post interaction settings" msgstr "Axustes de interacciรณn do chรญo" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Axustes de interacciรณn da publicaciรณn" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "Chรญo fixado" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "Chรญo desfixado" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Chรญos" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Os chรญos pรณdense silenciar en funciรณn do seu texto, das sรบas etiquet msgid "Posts hidden" msgstr "Chรญos ocultos" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Privacidade" msgid "Privacy and security" msgstr "Privacidade e seguranza" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidade e Seguranza" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Polรญtica de privacidade" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Procesando vรญdeo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Citas deshabilitadas" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citas" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citas deste chรญo" @@ -9647,7 +9650,7 @@ msgstr "Reactiva a tรบa conta" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Ler menos" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Ler mรกis" @@ -9687,11 +9690,11 @@ msgstr "Le a Polรญtica de privacidade de Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Le as Condiciรณns de servizo de Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomendados" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconectar" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Recargar as conversas" @@ -9766,7 +9765,7 @@ msgstr "Recargar as conversas" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Eliminar" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Eliminar a conta" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Eliminar das miรฑas canles" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Eliminar o acceso rรกpido?" @@ -9862,7 +9861,7 @@ msgstr "Eliminar o acceso rรกpido?" msgid "Remove from saved feeds" msgstr "Eliminar das canles gardadas" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Eliminar a imaxe" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Eliminado da listaxe" msgid "Removed from saved feeds" msgstr "Eliminado das miรฑas canles gardadas" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respostas" @@ -10037,7 +10037,7 @@ msgstr "As respostas a este chรญo estรกn desactivadas." msgid "Reply" msgstr "Responder" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -10098,8 +10098,8 @@ msgstr "Denunciar conversaciรณn" msgid "Report dialog" msgstr "Xanela da denuncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Denunciar canle" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Rechouchiado por ti" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Rechouchรญos deste chรญo" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Tenta de novo a รบltima acciรณn, que errou" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Volve รก pรกxina de inicio" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Volve รก pรกxina anterior" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Gardar cambios" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Gardar cรณdigo QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Gardar nas miรฑas canles" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Canles guardadas" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Guardado nas tรบas canles" @@ -10520,8 +10520,8 @@ msgstr "Guardado nas tรบas canles" msgid "Say hello!" msgstr "Di ola!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Ciencia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Desprรกzate cara arriba" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Buscar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Busca canles que queiras suxerir aos demais." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Buscar GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Ver empregos en Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecciona unha cor" @@ -10764,11 +10769,11 @@ msgstr "Seleccionar conta" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selecciona un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selecciona un emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Seleccionar GIF" msgid "Select GIF \"{0}\"" msgstr "Seleccionar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Seleccionar o emoji {emojiName} como o teu avatar" @@ -10945,7 +10951,8 @@ msgstr "Enviar mensaxe" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Enviar chรญo a..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Enviar correo de verificaciรณn" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Enviar vรญa mensaxe directa" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Establece o correo electrรณnico para restablecer o contrasinal" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Axustes" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Compartir de todas as maneiras" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Xanela para compartir ligazรณn" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Compartir cรณdigo QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Compartir esta canle" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Compartir este paquete de inicio" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparte este paquete de iniciaciรณn e axuda a xente a unirse รก tรบa comunidade en Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Probador de Preferencias Compartidas" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Ver" msgid "Show alt text" msgstr "Ver texto alternativo" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Ver de todas as maneiras" @@ -11274,9 +11281,9 @@ msgstr "Mostrar listaxe de todas as maneiras" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Ver mรกis" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Mostrar advertencia e filtrar desde as canles" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Amosa informaciรณn sobre cando foi creada esta publicaciรณn" @@ -11341,15 +11348,15 @@ msgstr "Amosa informaciรณn sobre cando foi creada esta publicaciรณn" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Pechar sesiรณn?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "ร‰ necesario iniciar sesiรณn" @@ -11469,7 +11476,7 @@ msgstr "Saltar" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Mรกis pequeno" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Algunha outra canle poderiache gustar" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Produciuse un erro, tรฉntao de novo" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Ocorreu un erro? Dรญnolo." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Deportes" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Iniciar un novo chat" @@ -11682,17 +11689,17 @@ msgstr "Comeza a engadir xente" msgid "Start adding people!" msgstr "Comeza a engadir xente!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Iniciar chat con {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paquete de inicio" @@ -11715,12 +11722,16 @@ msgstr "Paquete de inicio creado por ti" msgid "Starter pack is invalid" msgstr "O paquete de inicio non รฉ vรกlido" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Paquetes de inicio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Os paquetes de inicio permรญtenche compartir facilmente as tรบas canles e persoas favoritas coas tรบas amizades." @@ -11728,7 +11739,7 @@ msgstr "Os paquetes de inicio permรญtenche compartir facilmente as tรบas canles msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Pรกxina de estado" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Paso {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "O almacenamento borrado, cรณmpre reiniciar a aplicaciรณn agora." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Libro de contos" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Suscrรญbete a @{0} para usar estas etiquetas:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Suxerido para ti" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Cambiar para {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Toca para descartar" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Tarefa acadada - 10 seguidores!" msgid "Task complete - 10 likes!" msgstr "Tarefa completada - 10 gรบstame!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Ensรญnalle ao noso algoritmo o que che gusta" @@ -12060,7 +12073,7 @@ msgstr "Condiciรณns" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Non se puido atopar ese paquete de inicio." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Iso รฉ todo, parroquia!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Iso รฉ todo!" @@ -12216,7 +12229,7 @@ msgstr "Semella que o servidor estรก a experimentar problemas. Por favor, tรฉnta msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "O paquete de inicio que estรกs tentando ver non รฉ vรกlido. Podes eliminar este paquete de inicio no seu lugar." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "O cรณdigo de verificaciรณn que proporcionaches non รฉ vรกlido. Asegรบrat msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Produciuse un problema ao contactar co servidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Houbo un problema ao contactar co servidor. Comproba a tรบa conexiรณn a Internet e tรฉntao de novo." @@ -12283,8 +12296,8 @@ msgstr "Houbo un problema ao contactar co servidor. Comproba a tรบa conexiรณn a msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Houbo un problema ao recuperar as notificaciรณns. Toca aquรญ para tentalo de novo." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Houbo un problema ao recuperar os chรญos. Toca aquรญ para tentalo de novo." @@ -12309,7 +12322,7 @@ msgstr "Houbo un problema recollendo a tรบa informaciรณn no servizo" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Produciuse un problema ao eliminar esta canle. Comproba a tรบa conexiรณn a Internet e tรฉntao de novo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Estas opciรณns sรณ se aplicarรกn ao seguinte fรญo." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Esta {screenDescription} foi marcada:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Esta conta solicitou que as persoas inicien sesiรณn para ver o seu perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Esta canle estรก baleira! ร‰ posรญbel que teรฑas que seguir a mรกis persoas ou axustar a tรบa configuraciรณn de idioma." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Esta canle estรก baleira." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Este nome de usuario estรก reservado. Fai o favor de escoller un diferente." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Esta etiqueta foi aplicada por ti." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este etiquetador non declarou que etiquetas publica e รฉ posรญbel que non estea activo." @@ -12621,13 +12634,13 @@ msgstr "Esta lista estรก baleira." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta publicaciรณn declara que foi feita en <0>{0}, pero foi vista por primeira vez por Bluesky en <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Esta publicaciรณn declara que foi feita en <0>{0}, pero foi vista po msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Este chรญo ocultarase das canles e dos fรญos. Isto non se pode desfacer." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "A persoa autora deste chรญo desactivou os chรญos de citas." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Esta persoa non ten seguidores." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Esta persoa bloqueoute. Non podes ver o seu contido." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Esta persoa estรก incluรญda na listaxe <0>{0} que silenciaches." msgid "This user is new here. Press for more info about when they joined." msgstr "Esta persoa รฉ nova aquรญ. Preme para obter mรกis informaciรณn sobre cando se uniron." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Este persoa non segue a ninguรฉn." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Isto eliminarรก @{0} da listaxe de acceso rรกpido." @@ -12786,7 +12801,7 @@ msgstr "Preferencias de Fรญos" msgid "Threaded" msgstr "Enfiado" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferencias de fรญos" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Arriba" @@ -12858,7 +12873,7 @@ msgstr "Arriba" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tema" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendencia" @@ -12902,13 +12919,15 @@ msgstr "Tendencia" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Vรญdeos en tendencia" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Desbloquear Conta?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Deixa de seguir a {0}" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "No me gusta" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "Activar o fรญo" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Activar o audio do vรญdeo" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Desfixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desfixar canle" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Desfixar do inicio" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Desfixar a listaxe de moderaciรณn" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} desfixada do Inicio" @@ -13258,11 +13279,11 @@ msgstr "Cancelar a subscriciรณn a esta etiquetadora" msgid "Unsubscribed from list" msgstr "Cancelouse a subscriciรณn da listaxe" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Produciuse un erro ao actualizar a visibilidade das respostas" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Carga unha foto no seu lugar" @@ -13355,7 +13376,7 @@ msgstr "Cargar desde ficheiros" msgid "Upload from Library" msgstr "Cargar desde a biblioteca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "Cargando imaxes..." msgid "Uploading link thumbnail..." msgstr "Cargando miniatura da ligazรณn..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Cargando vรญdeo..." @@ -13408,7 +13429,7 @@ msgstr "รšsao para iniciar sesiรณn noutra aplicaciรณn xunto co teu identificador msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "Vรญdeo" msgid "Video failed to process" msgstr "Non se puido procesar o vรญdeo" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Canle de vรญdeo" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Vรญdeo de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videoxogos" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Vรญdeo en pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Vรญdeo en reproduciรณn" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Non se encontrou o vรญdeo." @@ -13653,7 +13674,7 @@ msgstr "Non se encontrou o vรญdeo." msgid "Video settings" msgstr "Axustes do video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Vรญdeo cargado" @@ -13662,17 +13683,17 @@ msgstr "Vรญdeo cargado" msgid "Video: {0}" msgstr "Vรญdeo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Vรญdeos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "Ver o avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Ver o perfil de {0}" @@ -13724,13 +13745,13 @@ msgstr "Consulta a publicaciรณn do blog para obter mรกis detalles" msgid "View debug entry" msgstr "Ver a entrada de depuraciรณn" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ver detalles" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Ver fรญo completo" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "Consulta informaciรณn sobre estas etiquetas" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Ver mรกis" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Consulta o servizo de etiquetado proporcionado por @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Consulta as persoas รกs que lles gusta esta canle" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Ver vรญdeo" @@ -13831,7 +13852,7 @@ msgstr "Consulta as tรบas listaxes de moderaciรณn" msgid "View your muted accounts" msgstr "Consulta as tรบas contas silenciadas" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Temos problemas de rede, tรฉntao de novo" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "Sentรญmolo, mais non puidemos resolver esta lista. Se isto persiste, pรณ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Sentรญmolo, mais non puidemos cargar as tรบas palabras silenciadas neste momento. Tรฉntao de novo." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sentรญmolo! Eliminouse o chรญo ao que estรกs respondendo." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Que hai de novo?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Vaia!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Escribe un chรญo" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Escribe a tรบa resposta" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Non tes permiso para cargar vรญdeos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Agora podes iniciar sesiรณn co teu novo contrasinal." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Podes actualizar posteriormente desde as tรบas preferencias." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Alcanzaches temporalmente o lรญmite de cargas de vรญdeos. Tรฉntao de novo mรกis tarde." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Aรญnda non creaches un paquete de inicio!" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Sรณ podes engadir ata 3 canles" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Debes seguir polo menos a outras sete persoas para xerar un paquete de inicio." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguirรกs a mรกis persoas e as sรบas canles suxeridas unha vez remates de crear a tรบa conta!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguirรกs a persoas suxeridas unha vez remates de crear a tรบa conta! " @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Chegaches ao final das tรบas canles! Busca mรกis contas que seguir." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Chegaches ao teu lรญmite diario de carga de vรญdeos (demasiados bytes po msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Chegaches ao teu lรญmite diario de carga de vรญdeos (demasiados vรญdeos por hoxe)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Xa non hai mรกis vรญdeos para ver. Igual รฉ bo momento para descansar un anaco?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "A tรบa conta" @@ -14835,11 +14861,11 @@ msgstr "A tรบa conta foi suspendida" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "A tรบa conta aรญnda non ten suficiente antigรผidade para subir vรญdeos. Por favor, intรฉntao de novo mรกis tarde." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "O teu enderezo electrรณnico parece non ser vรกlido." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "O teu contrasinal debe ter polo menos 8 caracteres." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "O teu perfil, chรญos, canles e listaxes non estarรกn visรญbeis para outras persoas de Bluesky. Podes reactivar a tรบa conta en calquera momento iniciando sesiรณn." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/haw/messages.po b/src/locale/locales/haw/messages.po index 41c2a8e225..429da04c68 100644 --- a/src/locale/locales/haw/messages.po +++ b/src/locale/locales/haw/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: haw\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Hawaiian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -1560,7 +1511,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1591,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1656,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1838,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1927,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2244,7 @@ msgstr "" msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2256,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2293,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -2425,28 +2388,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2468,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2819,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2844,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2968,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3106,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3218,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3230,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3263,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3585,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3618,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3627,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3659,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3855,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3949,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,28 +4064,28 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4368,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4467,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4476,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4500,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4576,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4618,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4652,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4723,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4854,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +4996,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5497,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "" @@ -6198,7 +6154,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "" msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" @@ -6776,12 +6726,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6766,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6802,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6814,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6824,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6867,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6943,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7007,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7026,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7035,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7043,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7061,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7112,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7260,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7608,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7617,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "" msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8198,11 +8190,7 @@ msgstr "" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8325,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8345,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8466,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8543,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8569,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8627,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8726,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8925,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9076,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "" @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "" @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "" @@ -9269,7 +9269,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9340,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,21 +10703,26 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13376,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13674,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13683,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13745,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13818,8 +13839,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14156,8 @@ msgstr "" msgid "whatโ€™s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "" @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po index 1577f5867a..f0ad0ba262 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(เคเคฎเฅเคฌเฅ‡เคกเฅ‡เคก เคธเคพเคฎเค—เฅเคฐเฅ€ เคฎเฅŒเคœเฅ‚เคฆ เคนเฅˆ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# เค˜เค‚เคŸเคพ} other {# เค˜เค‚เคŸเฅ‡}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# เคชเคธเค‚เคฆ} other {# เคชเคธเค‚เคฆ}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} เคซเคผเฅ‰เคฒเฅ‹เค‡เค‚เค—" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} เค•เฅ‹ เคธเค‚เคฆเฅ‡เคถ เคญเฅ‡เคœเคพ เคจเคนเฅ€เค‚ เคœเคพ เคธเค•เคคเคพ" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {เคซเคผเฅ‰เคฒเฅ‹เค‡เค‚เค—} other {เคซเคผเฅ‰ #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {เค•เฅเคตเฅ‹เคŸ}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {เคฐเฅ€เคชเฅ‹เคธเฅเคŸ}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 เคฆเคฟเคจ" msgid "7 days" msgstr "7 เคฆเคฟเคจ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "เคธเฅเคฒเคญเคคเคพ" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "เคธเฅเคฒเคญเคคเคพ เค•เฅ‡ เคธเฅ‡เคŸเคฟเค‚เค—" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "เคธเฅ‚เคšเฅ€ เคฆเฅเคตเคพเคฐเคพ เค–เคพเคคเคพ เคฎเฅเคฏเฅ‚เคŸ เค•เคฟเคฏ msgid "Account options" msgstr "เค–เคพเคคเฅ‡ เค•เฅ‡ เคตเคฟเค•เคฒเฅเคช" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "เคœเคฒเฅเคฆ เคชเคนเฅเคเคš เคธเฅ‡ เค–เคพเคคเคพ เคนเคŸเคพเคฏเคพ เค—เคฏเคพ" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "เคตเคฟเคตเคฐเคฃ เคœเฅ‹เคกเคผเฅ‡เค‚ (เคตเฅˆเค•เคฒเฅเคชเคฟเค•)" msgid "Add another account" msgstr "เคเค• เค”เคฐ เค–เคพเคคเคพ เคœเฅ‹เฅœเฅ‡เค‚" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "เคเค• เค”เคฐ เคชเฅ‹เคธเฅเคŸ เคœเฅ‹เฅœเฅ‡เค‚" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "เค†เคชเค•เฅ‡ เฅžเฅ€เคก เคฎเฅ‡ เคฏเคน เฅžเฅ€เคก เคœเฅ‹เฅœเฅ‡เค‚" msgid "Add to lists" msgstr "เคธเฅ‚เคšเคฟเคฏเฅ‹เค‚ เคฎเฅ‡เค‚ เคœเฅ‹เคกเคผเฅ‡เค‚" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "เคตเคฏเคธเฅเค•" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "เคธเคญเฅ€" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "เคเค• เคนเฅ€ เคœเค—เคน เคชเคฐ, เค†เคชเค•เฅ‡ เคธเคญเฅ€ เคธเคนเฅ‡เคœเฅ‡ เค—เค เคซเฅ€เคกเฅค" @@ -1560,7 +1511,7 @@ msgstr "เค†เคชเค•เฅ‡ เคธเฅ€เคงเฅ‡ เคธเค‚เคฆเฅ‡เคถเฅ‹เค‚ เคคเค• เคชเคนเฅเคเคš msgid "Already have a code?" msgstr "เคชเคนเคฒเฅ‡ เคธเฅ‡ เค•เฅ‹เคก เคนเฅˆ?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "{0} เค•เฅ‹ เคˆเคฎเฅ‡เคฒ เคญเฅ‡เคœเคพ เค—เคฏเคพ เคนเฅˆเฅค เค‡เคธเคฎเฅ‡เค‚ msgid "An error has occurred" msgstr "เคคเฅเคฐเฅเคŸเคฟ เคนเฅเคˆ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "เคคเฅเคฐเฅเคŸเคฟ เคนเฅเคˆ" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "เค†เคชเค•เฅ‡ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เคฌเคจเคพเคจเฅ‡ เคฎเฅ‡เค‚ เคคเฅเคฐเฅเคŸเคฟ เคนเฅเคˆเฅค เคซเคฟเคฐ เคธเฅ‡ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเฅ‡เค‚?" @@ -1640,11 +1591,11 @@ msgstr "เค†เคชเค•เฅ‡ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เคฌเคจเคพเคจเฅ‡ เคฎเฅ‡ msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เคฒเฅ‹เคก เค•เคฐเคคเฅ‡ เคธเคฎเคฏ เคคเฅเคฐเฅเคŸเคฟ เคนเฅเคˆเฅค เคฌเคพเคฆ เคฎเฅ‡เค‚ เคซเคฟเคฐ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเฅ‡เค‚เฅค" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เคฒเฅ‹เคก เค•เคฐเคคเฅ‡ เคธเคฎเคฏ เคฎเฅ‡เค‚ เคคเฅเคฐเฅเคŸเคฟ เคนเฅเคˆเฅค เคซเคฟเคฐ เคธเฅ‡ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเฅ‡เค‚เฅค" @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "เคธเคฎเคธเฅเคฏเคพ เคœเฅ‹ เค‡เคจ เคตเคฟเค•เคฒเฅเคชเฅ‹เค‚ เคฎเฅ‡เค‚ เคธเฅ‡ เคจเคนเฅ€เค‚ เคนเฅˆ" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "เคฌเคพเคคเคšเฅ€เคค เค–เฅ‹เคฒเคคเฅ‡ เคธเคฎเคฏ เคธเคฎเคธเฅเคฏเคพ เคนเฅเคˆ" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "เคเคช เคชเคพเคธเคตเคฐเฅเคก เคจเคพเคฎ เคฎเฅ‡เค‚ เค•เคฎ เคธเฅ‡ เค•เคฎ 4 msgid "App passwords" msgstr "เคเคช เคชเคพเคธเคตเคฐเฅเคก" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "เคเคช เคชเคพเคธเคตเคฐเฅเคก" @@ -1891,8 +1838,8 @@ msgstr "เค‡เคธ เคจเคฟเคฐเฅเคฃเคฏ เคชเคฐ เค…เคชเฅ€เคฒ เค•เคฐเฅ‡เค‚" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "{0} เคธเฅ‡ เคชเฅเคฐเคพเคฒเฅ‡เค–เคฟเคค" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "เคชเฅเคฐเคพเคฒเฅ‡เค–เคฟเคค เคชเฅ‹เคธเฅเคŸ" @@ -1980,7 +1927,7 @@ msgstr "เค•เฅเคฏเคพ เค†เคช เคธเคš เคฎเฅ‡เค‚ เค‡เคธเฅ‡ เค…เคชเคจเฅ‡ เฅžเฅ€เคก msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "เค•เฅเคฏเคพ เค†เคช เคธเคš เคฎเฅ‡เค‚ เค‡เคธ เคชเฅ‹เคธเฅเคŸ เค•เฅ‹ เค–เคผเคพเคฐเคฟเคœ เค•เคฐเคจเคพ เคšเคพเคนเฅ‡เค‚เค—เฅ‡?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เค”เคฐ GIF เคธเฅเคตเคคเคƒ เคšเคฒเคพเคเค" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เคฌเคจเคพเคจเฅ‡ เคธเฅ‡ เคชเคนเคฒเฅ‡, เค†เคชเค•เฅ‹ เค…เคชเคจเคพ เคˆเคฎเฅ‡เคฒ เคธเคคเฅเคฏเคพเคชเคฟเคค เค•เคฐเคจเคพ เคนเฅ‹เค—เคพเฅค" @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "เคœเคจเฅเคฎเคฆเคฟเคจ" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "เค…เคตเคฐเฅเคฆเฅเคง" msgid "Blocked accounts" msgstr "เค…เคตเคฐเฅเคฆเฅเคง เค•เคฟเค เค—เค เค–เคพเคคเฅ‡" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "เค…เคตเคฐเฅเคฆเฅเคง เค•เคฟเค เค—เค เค–เคพเคคเฅ‡" @@ -2282,7 +2244,7 @@ msgstr "เค…เคตเคฐเฅเคฆเฅเคง เค–เคพเคคเฅ‡ เค†เคชเค•เฅ‡ เคฅเฅเคฐเฅ‡เคก เคฎเฅ‡ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "เค…เคตเคฐเฅเคฆเฅเคง เค–เคพเคคเฅ‡ เค†เคชเค•เฅ‡ เคฅเฅเคฐเฅ‡เคก เคฎเฅ‡เค‚ เค‰เคคเฅเคคเคฐ เคจเคนเฅ€เค‚ เคฆเฅ‡ เคธเค•เคคเฅ‡, เค†เคชเค•เคพ เค‰เคฒเฅเคฒเฅ‡เค– เคจเคนเฅ€เค‚ เค•เคฐ เคธเค•เคคเฅ‡, เคฏเคพ เค…เคจเฅเคฏเคฅเคพ เค†เคชเคธเฅ‡ เคธเค‚เคชเคฐเฅเค• เคจเคนเฅ€เค‚ เค•เคฐ เคธเค•เคคเฅ‡เฅค เค†เคช เค‰เคจเค•เฅ€ เคธเคพเคฎเค—เฅเคฐเฅ€ เคจเคนเฅ€เค‚ เคฆเฅ‡เค– เคธเค•เฅ‡เค‚เค—เฅ‡ เค”เคฐ เค‰เคจเฅเคนเฅ‡เค‚ เค†เคชเค•เฅ€ เคธเคพเคฎเค—เฅเคฐเฅ€ เคฆเฅ‡เค–เคจเฅ‡ เคธเฅ‡ เคฐเฅ‹เค•เคพ เคœเคพเคเค—เคพเฅค" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "เค…เคตเคฐเฅเคฆเฅเคง เค•เคฐเคจเฅ‡ เคชเคฐ เคญเฅ€ เคฏเคน เคฒเฅ‡เคฌเคฒเค•เคฐเฅเคคเคพ เค†เคชเค•เฅ‡ เค–เคพเคคเฅ‡ เคชเคฐ เคฒเฅ‡เคฌเคฒ เคฒเค—เคพ เคธเค•เคคเคพ เคนเฅˆเฅค" @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky เคฆเคพเคตเคพ เค•เคฟเค เค—เค เคคเคฟเคฅเคฟ เค•เฅ‡ เคชเฅเคฐเคพเคฎเคพเคฃเคฟเค•เคคเคพ เค•เฅ€ เคชเฅเคทเฅเคŸเคฟ เคจเคนเฅ€เค‚ เค•เคฐ เคธเค•เคคเคพเฅค" @@ -2330,7 +2293,7 @@ msgstr "Bluesky เคเค• เค–เฅเคฒเคพ เคจเฅ‡เคŸเคตเคฐเฅเค• เคนเฅˆ เคœเคนเคพเค msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky เคฆเฅ‹เคธเฅเคคเฅ‹เค‚ เค•เฅ‡ เคธเคพเคฅ เคฌเฅ‡เคนเคคเคฐ เคนเฅˆ!" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky เค†เคชเค•เฅ‡ เคจเฅ‡เคŸเคตเคฐเฅเค• เคธเฅ‡ เค•เฅเค› เค…เคจเฅเคถเค‚เคธเคฟเคค เค–เคพเคคเฅ‡ เคšเฅเคจเฅ‡เค—เคพเฅค" @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "เคเค•เฅเคธเคชเฅเคฒเฅ‹เคฐ เคชเฅƒเคทเฅเค  เคชเคฐ เค”เคฐ เคธเฅ‚เคšเฅ€ เคฆเฅ‡เค–เฅ‡เค‚" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "เค”เคฐ เคธเฅเคเคพเคต เคฆเฅ‡เค–เฅ‡เค‚" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "เคเค•เฅเคธเคชเฅเคฒเฅ‹เคฐ เคชเฅƒเคทเฅเค  เคชเคฐ เค”เคฐ เคธเฅเคเคพเคต เคฆเฅ‡เค–เฅ‡เค‚" @@ -2425,24 +2388,25 @@ msgstr "เคเค•เฅเคธเคชเฅเคฒเฅ‹เคฐ เคชเฅƒเคทเฅเค  เคชเคฐ เค”เคฐ เคธเฅเคเคพ msgid "Browse other feeds" msgstr "เค…เคจเฅเคฏ เฅžเฅ€เคก เคฆเฅ‡เค–เฅ‡เค‚" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "{displayName} เค•เฅ‡ เคฌเคพเคฐเฅ‡ เคฎเฅ‡เค‚ เคชเฅ‹เคธเฅเคŸ เคฆเฅ‡เค–เฅ‡เค‚" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "{displayName} เคธเฅ‡ เคŸเฅˆเค— เค•เคฟเค เค—เค เคชเฅ‹เคธเฅเคŸ เคฆเฅ‡เค–เฅ‡เค‚" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "{displayName} เคตเคฟเคทเคฏ เคฆเฅ‡เค–เฅ‡เค‚" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "{0} เค•เฅ‡ เคฆเฅเคตเคพเคฐเคพ" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "<0>{0} เค•เฅ‡ เคฆเฅเคตเคพเคฐ" @@ -2504,11 +2468,11 @@ msgstr "เค–เคพเคคเคพ เคฌเคจเคพเคจเฅ‡ เคธเฅ‡ เค†เคช <0>เคธเฅ‡เคตเคพ เค•เฅ€ เคถเคฐ msgid "By creating an account you agree to the <0>Terms of Service." msgstr "เค–เคพเคคเคพ เคฌเคจเคพเคจเฅ‡ เคธเฅ‡ เค†เคช <0>เคธเฅ‡เคตเคพ เค•เฅ€ เคถเคฐเฅเคคเฅ‹เค‚ เคธเฅ‡ เคธเคนเคฎเคค เคนเฅˆเค‚เฅค" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "เค•เฅˆเคฎเคฐเคพ" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "เค–เฅ‹เคœ เคฐเคฆเฅเคฆ เค•เคฐเฅ‡เค‚" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "เคฌเคพเคคเคšเฅ€เคค เคฎเฅเคฏเฅ‚เคŸ เค•เคฟเคฏเคพ เค—เคฏเคพ" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "เคฌเคพเคคเคšเฅ€เคค เคธเฅ‡เคŸเคฟเค‚เค—" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "เคฌเคพเคคเคšเฅ€เคค เค…เคจเคฎเฅเคฏเฅ‚เคŸ เค•เคฟเคฏเคพ เค—เคฏเคพ" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "เคกเฅ‹เคฎเฅ‡เคจ เคธเคคเฅเคฏเคพเคชเคจ เคตเคฟเคงเคฟ เคšเฅเคจเฅ‡เค‚" msgid "Choose Feeds" msgstr "เฅžเฅ€เคก เคšเฅเคจเฅ‡เค‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "เคฎเฅ‡เคฐเฅ‡ เคฒเคฟเค เคšเฅเคจเฅ‡เค‚" @@ -2854,7 +2819,7 @@ msgstr "เคฒเฅ‰เค— เคšเฅเคจเฅ‡เค‚" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "เค‡เคธ เคฐเค‚เค— เค•เฅ‹ เค…เคชเคจเคพ เค…เคตเคคเคพเคฐ เค•เฅ‡ เคฐเฅ‚เคช เคฎเฅ‡เค‚ เคšเฅเคจเฅ‡เค‚" @@ -2879,7 +2844,7 @@ msgstr "เค†เคชเค•เคพ เค…เคชเคจเคพ เคŸเคพเค‡เคฎเคฒเคพเค‡เคจ เคšเฅเคจเฅ‡เค‚! เคธ msgid "Choose your password" msgstr "เค…เคชเคจเคพ เคชเคพเคธเคตเคฐเฅเคก เคšเฅเคจเฅ‡เค‚" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "เค†เคชเค•เคพ เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เคนเฅˆเค‚เคกเคฒ" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "เค…เคธเคซเคฒ เคธเค‚เคฆเฅ‡เคถ เค•เฅ‹ เคซเคฟเคฐ เคธเฅ‡ เคญเฅ‡เคœเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เค•เฅเคฒเคฟเค• เค•เคฐเฅ‡เค‚" @@ -3003,7 +2968,7 @@ msgstr "เค…เคธเคซเคฒ เคธเค‚เคฆเฅ‡เคถ เค•เฅ‹ เคซเคฟเคฐ เคธเฅ‡ เคญเฅ‡เคœเคจเฅ‡ เค• #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "เค…เคธเคซเคฒ เคธเค‚เคฆเฅ‡เคถ เค•เฅ‹ เคซเคฟเคฐ เคธเฅ‡ เคญเฅ‡เคœเคจเฅ‡ เค• msgid "Close" msgstr "เคฌเค‚เคฆ เค•เคฐเฅ‡เค‚" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "เคธเค•เฅเคฐเคฟเคฏ เคกเคพเคฏเคฒเฅ‰เค— เคฌเค‚เคฆ เค•เคฐเฅ‡เค‚" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "เคฏเคน เคกเคพเคฏเคฒเฅ‰เค— เคฌเค‚เคฆ เค•เคฐเฅ‡เค‚" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "เคชเคพเคธเคตเคฐเฅเคก เค…เคชเคกเฅ‡เคŸ เคธเฅ‚เคšเคจเคพ เคฌเค‚เคฆ เค•เคฐเคคเคพ เคนเฅˆ" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "เคฐเค‚เค— เคฎเฅ‹เคก" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "เค•เฅ‰เคฎเคฟเค•" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "เคธเคฎเฅเคฆเคพเคฏ เคฆเคฟเคถเคพเคจเคฟเคฐเฅเคฆเฅ‡เคถ" @@ -3141,7 +3106,7 @@ msgstr "เคธเคฎเฅเคฆเคพเคฏ เคฆเคฟเคถเคพเคจเคฟเคฐเฅเคฆเฅ‡เคถ" msgid "Complete onboarding and start using your account" msgstr "เคธเคฎเคพเคชเฅเคค เค•เคฐเฅ‡เค‚ เค”เคฐ เค–เคพเคคเฅ‡ เค•เคพ เค‰เคชเคฏเฅ‹เค— เคถเฅเคฐเฅ‚ เค•เคฐเฅ‡เค‚" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "เคšเฅเคจเฅŒเคคเฅ€ เคชเฅ‚เคฐเฅ€ เค•เคฐเฅ‡เค‚" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "เคจเคฏเคพ เคชเฅ‹เคธเฅเคŸ เคฌเคจเคพเคเค" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "เคœเคตเคพเคฌ เคฒเคฟเค–เฅ‡เค‚" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เค•เค‚เคชเฅเคฐเฅ‡เคธ เคนเฅ‹ เคฐเคนเคพ เคนเฅˆ..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "เคธเคนเคพเคฏเคคเคพ เคธเฅ‡ เคธเค‚เคชเคฐเฅเค• เค•เคฐเฅ‡เค‚" @@ -3253,7 +3218,7 @@ msgstr "เคธเคพเคฎเคพเค—เฅเคฐเฅ€ เค”เคฐ เคฎเฅ€เคกเคฟเคฏเคพ" msgid "Content and media" msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เค”เคฐ เคฎเฅ€เคกเคฟเคฏเคพ" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เค”เคฐ เคฎเฅ€เคกเคฟเคฏเคพ" @@ -3265,10 +3230,6 @@ msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เค…เคตเคฐเฅเคฆเฅเคง" msgid "Content filters" msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เฅžเคฟเคฒเฅเคŸเคฐ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เคšเฅ‡เคคเคพเคตเคจเฅ€" msgid "Content warnings" msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เคšเฅ‡เคคเคพเคตเคจเคฟเคฏเคพเค" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "เคธเค‚เคฆเคฐเฅเคญ เคฎเฅ‡เคจเฅ‚ เคชเฅƒเคทเฅเค เคญเฅ‚เคฎเคฟ, เคฎเฅ‡เคจเฅ‚ เคฌเค‚เคฆ เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เค•เฅเคฒเคฟเค• เค•เคฐเฅ‡เค‚ " @@ -3302,7 +3263,7 @@ msgstr "เคธเค‚เคฆเคฐเฅเคญ เคฎเฅ‡เคจเฅ‚ เคชเฅƒเคทเฅเค เคญเฅ‚เคฎเคฟ, เคฎเฅ‡เคจ #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "เคฅเฅเคฐเฅ‡เคก เค•เฅ‹ เคœเคพเคฐเฅ€ เคฐเค–เฅ‡เค‚..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "เคฌเคฟเคฒเฅเคก เคธเค‚เคธเฅเค•เคพเคฐเคฃ เค•เฅเคฒเคฟเคชเคฌเฅ‹เคฐเฅเคก เคชเคฐ เค•เฅ‰เคชเฅ€ เค•เฅ€ เค—เคˆ" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "เคเคช เคชเคพเคธเคตเคฐเฅเคก เค•เฅ‰เคชเฅ€ เค•เคฐเฅ‡เค‚" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "เคฒเคฟเค‚เค• เค•เฅ‰เคชเฅ€ เค•เคฐเฅ‡เค‚" msgid "Copy link to list" msgstr "เคธเฅ‚เคšเฅ€ เคชเคฐ เคฒเคฟเค‚เค• เค•เฅ‰เคชเฅ€ เค•เคฐเฅ‡เค‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "เคชเฅ‹เคธเฅเคŸ เค•เฅ€ เคฒเคฟเค‚เค• เค•เฅ‰เคชเฅ€ เค•เคฐเฅ‡เค‚" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "เคธเค‚เคฆเฅ‡เคถ เคชเคพเค  เค•เฅ‰เคชเฅ€ เค•เคฐเฅ‡เค‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "TXT เคฐเคฟเค•เฅ‰เคฐเฅเคก เคฎเฅ‚เคฒเฅเคฏ เค•เฅ‰เคชเฅ€ เค•เคฐเฅ‡เค‚ " #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "เค•เฅ‰เคชเฅ€เคฐเคพเค‡เคŸ เคจเฅ€เคคเคฟ" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "เคฌเคพเคคเคšเฅ€เคค เค›เฅ‹เฅœเฅ€ เคจเคนเฅ€เค‚ เคœเคพ เคธเค•เฅ€" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "เคซเคผเฅ€เคก เคฒเฅ‹เคก เคจเคนเฅ€เค‚ เค•เคฟเคฏเคพ เคœเคพ เคธเค•เคพ" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "เคฌเคพเคคเคšเฅ€เคค เคฎเฅเคฏเฅ‚เคŸ เคจเคนเฅ€เค‚ เค•เคฟเคฏเคพ เคœเคพ เคธเค•เคพ" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "เคฌเคจเคพเคเค" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เค•เฅ‡ เคฒเคฟเค QR เค•เฅ‹เคก เคฌเคจเคพเคเค" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เคฌเคจเคพเคเค" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "เคฎเฅ‡เคฐเฅ‡ เคฒเคฟเค เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เคฌเคจเคพเคเค" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "เคธเคพเค‡เคจ เค…เคช เค•เคฐเฅ‡เค‚" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "เค–เคพเคคเคพ เคฌเคจเคพเคเค" @@ -3666,15 +3627,15 @@ msgstr "เค–เคพเคคเคพ เคฌเคจเคพเคเค" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "เค‡เคธเค•เฅ‡ เคฌเคฆเคฒเฅ‡ เค…เคตเคคเคพเคฐ เคฌเคจเคพเคเค" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "เคเค• เค”เคฐ เคฌเคจเคพเคเค" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "เคธเค‚เคธเฅเค•เฅƒเคคเคฟ" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "เค…เคเคงเฅ‡เคฐเคพ" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "เค…เคเคงเฅ‡เคฐเคพ" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "เค…เคเคงเฅ‡เคฐเคพ เคฅเฅ€เคฎ" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "เคกเคฟเคซเคผเฅ‰เคฒเฅโ€เคŸ" @@ -3894,7 +3855,7 @@ msgstr "เคฎเฅ‡เคฐเคพ เค–เคพเคคเคพ เคฎเคฟเคŸเคพเคเค" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "เคชเฅ‹เคธเฅเคŸ เคฎเคฟเคŸเคพเคเค" @@ -3988,7 +3949,7 @@ msgstr "เคกเคพเคฏเคฒเฅ‰เค—: เคšเฅเคจเฅ‡เค‚ เค•เคฟ เค‡เคธ เคชเฅ‹เคธเฅเคŸ เคธเฅ‡ msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "เคฎเค‚เคฆ" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "เค…เค•เฅเคทเคฎ" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "เฅ™เคพเคฐเคฟเคœ เค•เคฐเฅ‡เค‚" msgid "Discard changes?" msgstr "เคฌเคฆเคฒเคพเคต เฅ™เคพเคฐเคฟเคœ เค•เคฐเฅ‡เค‚?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "เคกเฅเคฐเคพเฅžเฅเคŸ เฅ™เคพเคฐเคฟเคœ เค•เคฐเฅ‡เค‚?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "เคชเฅ‹เคธเฅเคŸ เฅ™เคพเคฐเคฟเคœ เค•เคฐเฅ‡เค‚?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "เคฒเฅ‰เค— เค†เค‰เคŸ เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚ เค•เฅ‹ เคฎเฅ‡เคฐเคพ เค–เคพเคคเคพ เคฆเคฟเค–เคพเคจเฅ‡ เคธเฅ‡ เคเคชเฅเคธ เค•เฅ‹ เคฎเคจเคพ เค•เคฐเฅ‡เค‚" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "เคฒเฅ‰เค— เค†เค‰เคŸ เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚ เค•เฅ‹ เคฎเฅ‡ msgid "Discover new custom feeds" msgstr "เคจเค เค•เคธเฅเคŸเคฎ เฅžเฅ€เคก เค•เฅ€ เค–เฅ‹เคœ เค•เคฐเฅ‡เค‚" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "เคจเค เคซเคผเฅ€เคก เค•เฅ€ เค–เฅ‹เคœ เค•เคฐเฅ‡เค‚" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "เฅ™เคพเคฐเคฟเคœ เค•เคฐเฅ‡เค‚" @@ -4103,28 +4064,28 @@ msgstr "เฅ™เคพเคฐเคฟเคœ เค•เคฐเฅ‡เค‚" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "เคคเฅเคฐเฅเคŸเคฟ เฅ™เคพเคฐเคฟเคœ เค•เคฐเฅ‡เค‚" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "เคถเฅเคฐเฅเค†เคคเฅ€ เค—เคพเค‡เคก เฅ™เคพเคฐเคฟเคœ เค•เคฐเฅ‡เค‚" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "เคตเฅˆเค•เคฒเฅเคชเคฟเค• เคชเคพเค  เคฌเคŸเคจ เค•เฅ‹ เคฌเฅœเฅ‡ เค†เค•เคพ msgid "Display name" msgstr "เคชเฅเคฐเคฆเคฐเฅเคถเคจ เค•เคพ เคจเคพเคฎ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "เคนเฅ‹ เค—เคฏเคพ" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "เคกเคพเคฏเคฒเฅ‰เค— เคฌเค‚เคฆ เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เคฆเฅ‹ เคฌเคพเคฐ เคฆเคฌเคพเคเค" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "เค›เคตเคฟ เคธเค‚เคชเคพเคฆเคฟเคค เค•เคฐเฅ‡เค‚" msgid "Edit interaction settings" msgstr "เคธเค‚เคชเคฐเฅเค• เคธเฅ‡เคŸเคฟเค‚เค— เคธเค‚เคชเคพเคฆเคฟเคค เค•เคฐเฅ‡เค‚" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "เคฎเฅ‡เคฐเฅ‡ เคซเคผเฅ€เคก เคธเค‚เคชเคพเคฆเคฟเคค เค•เคฐเฅ‡เค‚" @@ -4406,6 +4368,11 @@ msgstr "เคฎเฅ‡เคฐเฅ‡ เคซเคผเฅ€เคก เคธเค‚เคชเคพเคฆเคฟเคค เค•เคฐเฅ‡เค‚" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "เคฒเฅ‹เค— เคธเค‚เคชเคพเคฆเคฟเคค เค•เคฐเฅ‡เค‚" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "เคธเค‚เคชเคพเคฆเคฟเคค เค•เคฐเฅ‡เค‚ เค•เคฟ เค•เฅŒเคจ เคœเคตเคพเคฌ เคฆเฅ‡ เคธเค•เคคเคพ เคนเฅˆ" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "เค…เคชเคจเคพ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เคธเค‚เคชเคพเคฆเคฟเคค เค•เคฐเฅ‡เค‚" @@ -4500,8 +4467,8 @@ msgstr "HTML เค•เฅ‹เคก เคเค‚เคฌเฅ‡เคก เค•เคฐเฅ‡เค‚" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "เคชเฅ‹เคธเฅเคŸ เคเค‚เคฌเฅ‡เคก เค•เคฐเฅ‡เค‚" @@ -4509,7 +4476,7 @@ msgstr "เคชเฅ‹เคธเฅเคŸ เคเค‚เคฌเฅ‡เคก เค•เคฐเฅ‡เค‚" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "เค‡เคธ เคชเฅ‹เคธเฅเคŸ เค•เฅ‹ เค…เคชเคจเฅ‡ เคตเฅ‡เคฌเคธเคพเค‡เคŸ เคฎเฅ‡เค‚ เคเค‚เคฌเฅ‡เคก เค•เคฐเฅ‡เค‚เฅค เคจเฅ€เคšเฅ‡ เคฒเคฟเค–เฅ‡ เค•เฅ‹เคก เค•เฅ‹ เค•เฅ‰เคชเฅ€ เค•เคฐเฅ‡เค‚ เค”เคฐ เค…เคชเคจเฅ‡ เคตเฅ‡เคฌเคธเคพเค‡เคŸ เค•เฅ‡ HTML เค•เฅ‹เคก เคฎเฅ‡เค‚ เคšเคฟเคชเค•เคพเคเคเฅค" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "เคเคฎเฅเคฌเฅ‡เคกเฅ‡เคก เคตเฅ€เคกเคฟเคฏเฅ‹ เคชเฅเคฒเฅ‡เคฏเคฐ" @@ -4533,7 +4500,7 @@ msgstr "เคตเคฏเคธเฅเค• เคธเคพเคฎเค—เฅเคฐเฅ€ เคธเค•เฅเคทเคฎ เค•เคฐเฅ‡เค‚" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "เคฌเคพเคนเคฐเฅ€ เคฎเฅ€เคกเคฟเคฏเคพ เคธเค•เฅเคทเคฎ เค•เคฐเฅ‡เค‚" msgid "Enable media players for" msgstr "เค‡เคจเค•เฅ‡ เคฒเคฟเค เคฎเฅ€เคกเคฟเคฏเคพ เคชเฅเคฒเฅ‡เคฏเคฐ เคธเค•เฅเคทเคฎ เค•เคฐเฅ‡เค‚" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "เคธเค•เฅเคทเคฎ" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "เฅžเฅ€เคก เค•เคพ เค…เค‚เคค" @@ -4608,7 +4576,7 @@ msgstr "เคถเคฌเฅเคฆ เคฏเคพ เคŸเฅˆเค— เคฆเคฐเฅเคœ เค•เคฐเฅ‡เค‚" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "เฅžเฅเคฒเคธเฅเค•เฅเคฐเฅ€เคจ เคฎเฅ‡เค‚ เคœเคพเคเค" @@ -4650,11 +4618,11 @@ msgstr "เค…เคชเคจเฅ‡ เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เคจเคพเคฎ เค”เคฐ เคชเคพเคธ msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "เคคเฅเคฐเฅเคŸเคฟ" @@ -4684,7 +4652,7 @@ msgstr "เฅžเคพเค‡เคฒ เคธเคนเฅ‡เคœเคคเฅ‡ เคธเคฎเคฏ เคคเฅเคฐเฅเคŸเคฟ เคนเฅเคˆ" msgid "Error receiving captcha response." msgstr "CAPTCHA เค‰เคคเฅเคคเคฐ เคชเคพเคจเฅ‡ เคฎเฅ‡ เคคเฅเคฐเฅเคŸเคฟ เคนเฅเคˆ" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "เคธเคฌ เคœเคตเคพเคฌ เคฆเฅ‡ เคธเค•เคคเฅ‡ เคนเฅˆเค‚" msgid "Everybody can reply to this post." msgstr "เคธเคฌ เค‡เคธ เคชเฅ‹เคธเฅเคŸ เค•เคพ เคœเคตเคพเคฌ เคฆเฅ‡ เคธเค•เคคเฅ‡ เคนเฅˆเค‚" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "เคธเคฌ" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "เคธเคฌ" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "เค†เคชเค•เฅ‡ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฟเค เค—เค เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅ msgid "Excludes users you follow" msgstr "เค†เคชเค•เฅ‡ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฟเค เค—เค เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚ เค•เฅ‡ เค…เคฒเคพเคตเคพ เคธเคฌ เคชเคฐ เคฒเคพเค—เฅ‚ เคนเฅ‹เคคเคพ เคนเฅˆ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "เฅžเฅเคฒเคธเฅเค•เฅเคฐเฅ€เคจ เคธเฅ‡ เคจเคฟเค•เคฒเฅ‡เค‚" @@ -4755,11 +4723,11 @@ msgstr "เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚ เค•เฅ€ เคธเฅ‚เคšเฅ€ เคฌเฅเคพเคคเคพ msgid "Expand or collapse the full post you are replying to" msgstr "เคœเคฟเคธ เคชเฅ‹เคธเฅเคŸ เค•เคพ เคœเคตเคพเคฌ เคฆเฅ‡ เคฐเคนเฅ‡ เคนเฅˆเค‚ เค‰เคธเฅ‡ เคฌเฅเคพเคคเคพ เคฏเคพ เคธเค‚เค•เฅเคทเคฟเคชเฅเคค เค•เคฐเคคเคพ เคนเฅˆ" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "เค…เคถเฅเคฒเฅ€เคฒ เคฏเคพ เคธเค‚เคญเคพเคตเคฟเคค เคตเฅเคฏเคฅเคฟเคค เค• msgid "Explicit sexual images." msgstr "เค…เคถเฅเคฒเฅ€เคฒ เคฏเฅŒเคจ เค›เคตเคฟ" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "เคฌเคพเคนเคฐเฅ€ เคฎเฅ€เคกเคฟเคฏเคพ" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "เคฌเคพเคนเคฐเฅ€ เคฎเฅ€เคกเคฟเคฏเคพ เคตเฅ‡เคฌเคธเคพเค‡เคŸเฅเคธ เค•เฅ‹ เค†เคชเค•เฅ‡ เค”เคฐ เค†เคชเค•เฅ‡ เค‰เคชเค•เคฐเคฃ เค•เฅ‡ เคฌเคพเคฐเฅ‡ เคฎเฅ‡ เคœเคพเคจเค•เคพเคฐเฅ€ เค‡เค•เคŸเฅเค เคพ เค•เคฐเคจเฅ‡ เคฆเฅ‡ เคธเค•เคคเคพ เคนเฅˆเฅค เคชเฅเคฒเฅ‡ เคฌเคŸเคจ เคจ เคฆเคฌเคพเคจเฅ‡ เคคเค• เค•เฅ‹เคˆ เคœเคพเคจเค•เคพเคฐเฅ€ เคญเฅ‡เคœเฅ€ เคฏเคพ เค…เคจเฅเคฐเฅ‹เคง เคจเคนเฅ€เค‚ เค•เฅ€ เคœเคพเคคเฅ€เฅค" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "เคฌเคพเคนเคฐเฅ€ เคฎเฅ€เคกเคฟเคฏเคพ เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพเคเค" @@ -4886,7 +4854,7 @@ msgstr "เคนเฅˆเค‚เคกเคฒ เคฌเคฆเคฒเคจเฅ‡ เคฎเฅ‡เค‚ เค…เคธเคซเคฒเฅค เค•เฅƒเคชเคฏ #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "เฅžเฅ€เคก เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพเคเค เคฒเฅ‹เคก เค•เคฐเคจเฅ‡ เคฎเฅ‡เค‚ เค…เคธเคซเคฒ" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "เค…เคจเฅเคถเค‚เคธเคฟเคค เคซเคผเฅ€เคก เคฒเฅ‹เคก เค•เคฐเคจเฅ‡ เคฎเฅ‡เค‚ เค…เคธเคซเคฒ" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "เค…เคจเฅเคถเค‚เคธเคฟเคค เคซเคผเฅ‰เคฒเฅ‹ เคฒเฅ‹เคก เค•เคฐเคจเฅ‡ เคฎเฅ‡เค‚ เค…เคธเคซเคฒ" @@ -5027,12 +4996,12 @@ msgstr "เค…เคจเฅเคถเค‚เคธเคฟเคค เคซเคผเฅ‰เคฒเฅ‹ เคฒเฅ‹เคก เค•เคฐเคจเฅ‡ เคฎเฅ‡ msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "เฅžเฅ€เคก" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "เฅžเฅ€เคก เคฎเฅ‡เคจเฅ‚" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "เฅžเฅ€เคก เค…เคชเคกเฅ‡เคŸ เค•เฅ€ เค—เคˆ!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "เฅžเฅ€เคก เคœเฅ‹ เคนเคฎเฅ‡เค‚ เคฒเค—เคคเคพ เคนเฅˆ เค†เคชเค•เฅ‹ เคชเคธเค‚เคฆ เค†เคเฅค" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "เฅžเคพเค‡เคฒ เคธเคซเคฒเคคเคพเคชเฅ‚เคฐเฅเคตเค• เคธเคนเฅ‡เคœเฅ€ เค—เคˆ!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "เฅžเฅ€เคก เคธเฅ‡ เฅžเคฟเคฒเฅเคŸเคฐ เค•เคฐเฅ‡เค‚" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "เคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เค–เคพเคคเฅ‡ เค–เฅ‹เคœเฅ‡ msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "{0} เค•เฅ‹ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเฅ‡เค‚" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "10 เค–เคพเคคเฅ‡ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเฅ‡เค‚" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "7 เค–เคพเคคเฅ‹เค‚ เค•เฅ‹ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเฅ‡เค‚" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "@{0} เค•เฅ‡ เคซเคผเฅ‰เคฒเฅ‹เค…เคฐ เคœเคฟเคจเฅเคนเฅ‡เค‚ เค†เคช เคœเคพเคจเคคเฅ‡ เคนเฅˆเค‚" @@ -5544,7 +5497,7 @@ msgstr "เคซเคผเฅ‰เคฒเฅ‹เค…เคฐ เคœเคฟเคจเฅเคนเฅ‡เค‚ เค†เคช เคœเคพเคจเคคเฅ‡ เคน #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "{0} เค•เฅ‹ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเคคเฅ‡ เคนเฅˆเค‚" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "เคซเคผเฅ‰เคฒเฅ‹เค‡เค‚เค— เฅžเฅ€เคก เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพเคเค" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "เคซเคผเฅ‰เคฒเฅ‹เค‡เค‚เค— เฅžเฅ€เคก เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพเคเค" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "เค†เคชเค•เฅ‹ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเคคเฅ‡ เคนเฅˆเค‚" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "เคซเคผเฅ‰เคจเฅเคŸ" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "เคซเคผเฅ‰เคจเฅเคŸ เค†เค•เคพเคฐ" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "เคธเฅเคฐเค•เฅเคทเคพ เค•เคพเคฐเคฃเฅ‹เค‚ เคธเฅ‡, เค†เคช เค‡เคธเฅ‡ เคซเคฟเคฐ เคธเฅ‡ เคฆเฅ‡เค– เคจเคนเฅ€เค‚ เคธเค•เฅ‡เค‚เค—เฅ‡เฅค เคฏเคฆเคฟ เค†เคช เค‡เคธ เคเคช เคชเคพเคธเคตเคฐเฅเคก เค•เฅ‹ เค–เฅ‹ เคฆเฅ‡เคคเฅ‡ เคนเฅˆเค‚, เคคเฅ‹ เค†เคชเค•เฅ‹ เคเค• เคจเคฏเคพ เคเคช เคชเคพเคธเคตเคฐเฅเคก เค‰เคคเฅเคชเคจเฅเคจ เค•เคฐเคจเคพ เคนเฅ‹เค—เคพเฅค" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "เคฌเคนเคคเคฐเฅ€เคจ เค…เคจเฅเคญเคต เค•เฅ‡ เคฒเคฟเค, เคนเคฎ เคฅเฅ€เคฎ เคซเคผเฅ‰เคจเฅเคŸ เค•เคพ เค‰เคชเคฏเฅ‹เค— เค•เคฐเคจเฅ‡ เค•เฅ€ เคธเคฒเคพเคน เคฆเฅ‡เคคเฅ‡ เคนเฅˆเค‚เฅค" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "เคนเคฎเฅ‡เคถเคพ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "เคชเคพเคธเคตเคฐเฅเคก เคญเฅ‚เคฒ เค—เค?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "<0/> เคธเฅ‡" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเคพเค• เค‰เคคเฅเคชเคจเฅเคจ เค•เคฐเฅ‡เค‚" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "เคธเคนเคพเคฏเคคเคพ เคฒเฅ‡เค‚" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "เค…เคชเคจเฅ‡ เคชเฅเคฐเฅ‹เฅžเคพเค‡เคฒ เค•เฅ‹ เคเค• เคšเฅ‡เคนเคฐเคพ เคฆเฅ‡เค‚" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "เคนเฅˆเคถเคŸเฅˆเค—" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "เคฎเฅเคถเฅเค•เคฟเคฒ เคนเฅ‹ เคฐเคนเฅ€ เคนเฅˆ?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "เคธเคนเคพเคฏเคคเคพ" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "เคคเคธเฅเคตเฅ€เคฐ เค…เคชเคฒเฅ‹เคก เค•เคฐ เค•เฅ‡ เคฏเคพ เค…เคตเคคเคพเคฐ เคฌเคจเคพเค•เคฐ เคฒเฅ‹เค—เฅ‹เค‚ เค•เฅ‹ เคœเคคเคพเคเค เค•เฅ€ เค†เคช เคเค• เคฐเฅ‹เคฌเฅ‹เคŸ เคจเคนเฅ€เค‚ เคนเฅˆเค‚เฅค" @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "เค›เคฟเคชเคพเคˆ เค—เคˆ เคธเฅ‚เคšเฅ€" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "เค›เคฟเคชเคพเคˆ เค—เคˆ เคธเฅ‚เคšเฅ€" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "เค›เคฟเคชเคพเคเค" @@ -6198,7 +6154,7 @@ msgstr "เคธเคฌ เค•เฅ‡ เคฒเคฟเค เคœเคตเคพเคฌ เค›เคฟเคชเคพเคเค" msgid "Hide reply for me" msgstr "เคฎเฅ‡เคฐเฅ‡ เคฒเคฟเค เคœเคตเคพเคฌ เค›เคฟเคชเคพเคเค" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "เคฏเคน เคชเฅ‹เคธเฅเคŸ เค›เคฟเคชเคพเคเค?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "เคฐเฅเคเคพเคจ เค›เคฟเคชเคพเคเค" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "เคฐเฅเคเคพเคจ เค›เคฟเคชเคพเคเค?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เคธเฅ‚เคšเฅ€ เค›เฅเคชเคพเคเค" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "เค…เคฐเฅ‡, เคนเคฎ เค‰เคธ เคฎเฅ‰เคกเคฐเฅ‡เคถเคจ เคธเฅ‡เคตเคพ เค•เฅ‹ เคฒ msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "เค•เฅƒเคชเคฏเคพ เคฐเฅเค•เคฟเคเฅค เคนเคฎ เคงเฅ€เคฐเฅ‡-เคงเฅ€เคฐเฅ‡ เคตเฅ€เคกเคฟเคฏเฅ‹ เคคเค• เคชเคนเฅเคเคš เคฆเฅ‡ เคฐเคนเฅ‡เค‚ เคนเฅˆเค‚, เค”เคฐ เค†เคช เค…เคญเฅ€ เคญเฅ€ เคชเค‚เค•เฅเคคเคฟ เคฎเฅ‡เค‚ เคนเฅˆเค‚เฅค เคฌเคพเคฆ เคฎเฅ‡เค‚ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเฅ‡เค‚!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "เคฏเคฆเคฟ เค†เคช เค…เคชเคจเคพ เคชเคพเคธเคตเคฐเฅเคก เคฌเคฆเคฒเคจเคพ เคšเคพเคนเคคเฅ‡ เคนเฅˆเค‚, เคนเคฎ เค†เคชเค•เฅ‹ เคเค• เค•เฅ‹เคก เคญเฅ‡เคœเฅ‡เค‚เค—เฅ‡ เคฏเคนเคพ เคธเคคเฅเคฏเคพเคชเคฟเคค เค•เคฐเคจเฅ‡ เค•เฅ‡ เค•เคฟเค เค•เคฟ เคฏเคน เค†เคชเค•เคพ เค–เคพเคคเคพ เคนเฅˆเฅค" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "เค…เคฎเคพเคจเฅเคฏ เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เคจเคพเคฎ เคฏเคพ เคชเคพเคธเคตเคฐเฅเคก" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "เค†เคฎเค‚เคคเฅเคฐเคฃ เค•เฅ‹เคก" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "เค†เคฎเค‚เคคเฅเคฐเคฃ เค•เฅ‹เคก เคธเฅเคตเฅ€เค•เคพเคฐ เคจเคนเฅ€เค‚ เคนเฅเค†เฅค เคฆเฅ‡เค– เคฒเฅ‡เค‚ เค•เคฟ เค†เคชเคจเฅ‡ เค‰เคธเฅ‡ เคธเคนเฅ€ เคธเฅ‡ เคฆเคฐเฅเคœ เค•เคฟเคฏเคพ เคนเฅˆ เค”เคฐ เคซเคฟเคฐ เคธเฅ‡ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเฅ‡เค‚เฅค" @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "เค…เคญเฅ€ เค‡เคธเคฎเฅ‡เค‚ เคฌเคธ เค†เคช เคนเฅ€ เคนเฅˆเค‚! เคŠเคชเคฐ เค–เฅ‹เคœเค•เคฐ เค…เคชเคจเฅ‡ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เคฎเฅ‡เค‚ เค”เคฐ เคฒเฅ‹เค—เฅ‹เค‚ เค•เฅ‹ เคœเฅ‹เฅœเฅ‡เค‚เฅค" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "เค•เคพเคฎ เค†เคˆเคกเฅ€: {0}" @@ -6816,8 +6766,8 @@ msgstr "เคฌเคพเคคเคšเฅ€เคค เคฎเฅ‡เค‚ เคถเคพเคฎเคฟเคฒ เคนเฅ‹เค‚" msgid "Journalism" msgstr "เคชเคคเฅเคฐเค•เคพเคฐเคฟเคคเคพ" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0} เคฆเฅเคตเคพเคฐเคพ เคฒเฅ‡เคฌเคฒ เค•เคฟเคฏเคพ เค—เคฏเคพเฅค" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "เคฐเคšเคฏเคฟเคคเคพ เคฆเฅเคตเคพเคฐเคพ เคฒเฅ‡เคฌเคฒ เค•เคฟเคฏเคพ เค—เคฏเคพเฅค" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "เคฒเฅ‡เคฌเคฒ" @@ -6852,7 +6802,7 @@ msgstr "เคฒเฅ‡เคฌเคฒ เคœเฅ‹เฅœเฅ‡ เค—เค" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "เคฒเฅ‡เคฌเคฒ เคฒเฅ‹เค—เฅ‹เค‚ เค”เคฐ เคธเคพเคฎเค—เฅเคฐเฅ€ เค•เคพ เคจเคพเคฎเคพเค‚เค•เคจ เคนเฅˆเฅค เค‡เคจเฅเคนเฅ‡เค‚ เคจเฅ‡เคŸเคตเคฐเฅเค• เค•เฅ‹ เค›เคฟเคชเคพเคจเฅ‡, เคšเฅ‡เคคเคพเคตเคจเฅ€ เคฆเฅ‡เคจเฅ‡, เค”เคฐ เคตเคฐเฅเค—เฅ€เค•เคฐเคฃ เค•เฅ‡ เคฒเคฟเค เค‰เคชเคฏเฅ‹เค— เค•เคฟเคฏเคพ เคœเคพ เคธเค•เคคเคพ เคนเฅˆเฅค" @@ -6864,7 +6814,7 @@ msgstr "เค†เคชเค•เฅ‡ เค–เคพเคคเฅ‡ เคชเคฐ เคฒเฅ‡เคฌเคฒ" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "เคญเคพเคทเคพ เคธเฅ‡เคŸเคฟเค‚เค—" @@ -6874,7 +6824,7 @@ msgstr "เคญเคพเคทเคพ เคธเฅ‡เคŸเคฟเค‚เค—" msgid "Languages" msgstr "เคญเคพเคทเคพ" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "เคฌเฅœเคพ" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "เคจเค" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "เค…เคงเคฟเค• เคœเคพเคจเฅ‡เค‚" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "PDS เค•เฅ‹ เฅ™เฅเคฆ เคนเฅ‹เคธเฅเคŸ เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฌเคพเคฐเฅ‡ เคฎเฅ‡เค‚ เค…เคงเคฟเค• เคœเคพเคจเฅ‡เค‚เฅค" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "เค‡เคธ เคšเฅ‡เคคเคพเคตเคจเฅ€ เค•เฅ‡ เคฌเคพเคฐเฅ‡ เคฎเฅ‡เค‚ เค…เคงเคฟเค• เคœเคพเคจเฅ‡เค‚" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "เค…เคงเคฟเค• เคœเคพเคจเฅ‡เค‚เฅค" @@ -6993,8 +6943,8 @@ msgstr "เคจเคฟเค•เคฒเฅ‡เค‚" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Bluesky เคธเฅ‡ เคฌเคพเคนเคฐ เคœเคพ เคฐเคนเฅ‡ เคนเฅˆเค‚" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "เคฌเคพเฅ˜เฅ€" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "เคฎเฅเคเฅ‡ เคšเฅเคจเคจเฅ‡ เคฆเฅ‡เค‚เฅค" @@ -7057,7 +7007,7 @@ msgstr "เคšเคฒเฅ‹ เคšเคฒเฅ‡เค‚!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "เคฐเฅ‹เคถเคจ" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "เคฐเฅ‹เคถเคจ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "เคชเคธเค‚เคฆ" @@ -7076,7 +7026,7 @@ msgstr "เคชเคธเค‚เคฆ" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "เคชเคธเค‚เคฆ เค•เคฐเฅ‡เค‚ ({0, plural, one {# เคชเคธเค‚เคฆ} other {# เคชเคธเค‚เคฆ}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10 เคชเฅ‹เคธเฅเคŸ เคชเคธเค‚เคฆ เค•เคฐเฅ‡เค‚" @@ -7085,7 +7035,7 @@ msgstr "10 เคชเฅ‹เคธเฅเคŸ เคชเคธเค‚เคฆ เค•เคฐเฅ‡เค‚" msgid "Like 10 posts to train the Discover feed" msgstr "เคกเคฟเคธเฅเค•เคตเคฐ เฅžเฅ€เคก เค•เฅ‹ เคชเฅเคฐเคถเคฟเค•เฅเคทเคฟเคค เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค 10 เคชเฅ‹เคธเฅเคŸ เคชเคธเค‚เคฆ เค•เคฐเฅ‡เค‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "เค‡เคธ เคซเคผเฅ€เคก เค•เฅ‹ เคชเคธเค‚เคฆ เค•เคฐเฅ‡เค‚" @@ -7093,8 +7043,8 @@ msgstr "เค‡เคธ เคซเคผเฅ€เคก เค•เฅ‹ เคชเคธเค‚เคฆ เค•เคฐเฅ‡เค‚" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "เค‡เคจเฅเคนเฅ‹เคจเฅ‡เค‚ เคชเคธเค‚เคฆ เค•เคฟเคฏเคพ" @@ -7111,27 +7061,45 @@ msgstr "เค‡เคจเฅเคนเฅ‹เคจเฅ‡เค‚ เคชเคธเค‚เคฆ เค•เคฟเคฏเคพ" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {# เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ} other {# เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚}} เคจเฅ‡ เคชเคธเค‚เคฆ เค•เคฟเคฏเคพ" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {# เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ} other {# เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚}} เคจเฅ‡ เคชเคธเค‚เคฆ เค•เคฟเคฏเคพ" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "เคชเคธเค‚เคฆ" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "เค‡เคธ เคชเฅ‹เคธเฅเคŸ เคชเคฐ เคชเคธเค‚เคฆ" @@ -7144,7 +7112,7 @@ msgstr "เคฐเฅ‡เค–เฅ€เคฏ" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "เคธเฅ‚เคšเฅ€" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "เคธเฅ‚เคšเฅ€ เค…เคจเคฎเฅเคฏเฅ‚เคŸ เค•เฅ€ เค—เคˆ" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "เค”เคฐ เคฒเฅ‹เคก เค•เคฐเฅ‡เค‚" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "เค”เคฐ เค…เคจเฅเคถเค‚เคธเคฟเคค เฅžเฅ€เคก เคฒเฅ‹เคก เค•เคฐเฅ‡เค‚" @@ -7292,8 +7260,8 @@ msgstr "เค”เคฐ เค…เคจเฅเคถเค‚เคธเคฟเคค เฅžเฅ€เคก เคฒเฅ‹เคก เค•เคฐเฅ‡เค‚" msgid "Load new notifications" msgstr "เคจเคˆ เค…เคงเคฟเคธเฅ‚เคšเคจเคพเคเค เคฒเฅ‹เคก เค•เคฐเฅ‡เค‚" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "เคฒเฅ‰เค—" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "เคฎเฅ‡เคฐเฅ‡ เคฒเคฟเค เคเค• เคฌเคจเคพเคเค" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "เคชเฅเคพ เคนเฅเค† เคฎเคพเคฐเฅเค• เค•เคฐเฅ‡เค‚" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "เคฎเฅ€เคกเคฟเคฏเคพ" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "เคฎเฅ€เคกเคฟเคฏเคพ เคœเฅ‹ เค•เฅเค› เคฆเคฐเฅเคถเค•เฅ‹เค‚ เค•เฅ‡ เคฒเคฟเค เคญเคฏเคพเคตเคน เคฏเคพ เค…เคจเฅเคšเคฟเคค เคนเฅ‹ เคธเค•เคคเคพ เคนเฅˆ" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "เค‰เคฒเฅเคฒเฅ‡เค–เคฟเคค เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "เค‰เคฒเฅเคฒเฅ‡เค–" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "เคธเค‚เคฆเฅ‡เคถ เคฎเคฟเคŸเคพเคˆ เค—เคˆ" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "เคธเค‚เคฆเฅ‡เคถ" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "เคฎเฅ‰เคกเคฐเฅ‡เคถเคจ" @@ -7636,7 +7608,7 @@ msgstr "เคฎเฅ‰เคกเคฐเฅ‡เคถเคจ เคธเฅ‚เคšเฅ€ เค…เคชเคกเฅ‡เคŸ เค•เฅ€ เค—เคˆ" msgid "Moderation lists" msgstr "เคฎเฅ‰เคกเคฐเฅ‡เคถเคจ เคธเฅ‚เคšเคฟเคฏเคพเค" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "เคฎเฅ‰เคกเคฐเฅ‡เคถเคจ เคธเฅ‚เคšเคฟเคฏเคพเค" @@ -7645,7 +7617,7 @@ msgstr "เคฎเฅ‰เคกเคฐเฅ‡เคถเคจ เคธเฅ‚เคšเคฟเคฏเคพเค" msgid "moderation settings" msgstr "เคฎเฅ‰เคกเคฐเฅ‡เคถเคจ เคธเฅ‡เคŸเคฟเค‚เค—" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "เคฎเฅ‰เคกเคฐเฅ‡เคถเคจ เคธเฅเคฅเคฟเคคเคฟ" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "เคฎเฅเคฏเฅ‚เคŸ เค•เคฟเค เค—เค เค–เคพเคคเฅ‡" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "เคฎเฅเคฏเฅ‚เคŸ เค•เคฟเค เค—เค เค–เคพเคคเฅ‡" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "เค›เฅ‹เฅœเฅ‡เค‚, เคฎเฅ‡เคฐเฅ‡ เคฒเคฟเค เคนเฅˆเค‚เคกเคฒ เคฌเคจเคพเคเค" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "เคจเคฏเคพ" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "เคจเคฏเคพ เคฌเคพเคคเคšเฅ€เคค" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "เคจเคˆ เคธเฅ‚เคšเฅ€" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "เคจเคฏเคพ เคชเคพเคธเคตเคฐเฅเคก" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "เคจเคฏเคพ เคชเฅ‹เคธเฅเคŸ" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "เคธเคฌเคธเฅ‡ เคจเคฏเคพ เคœเคตเคพเคฌ เคชเคนเคฒเฅ‡" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "เคธเคฎเคพเคšเคพเคฐ" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "เค…เค—เคฒเฅ€ เค›เคตเคฟ" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "เค•เฅ‹เคˆ เคเคช เคชเคพเคธเคตเคฐเฅเคก เคจเคนเฅ€เค‚" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "เค•เฅ‹เคˆ เคซเฅ€เคก เคจเคนเฅ€เค‚ เคฎเคฟเคฒเฅ€เฅค เค•เฅเค› เค”เคฐ เค–เฅ‹เคœเคจเฅ‡ เค•เคพ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเฅ‡เค‚เฅค" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "เค…เคญเฅ€ เคคเค• เค•เฅ‹เคˆ เคชเคธเค‚เคฆ เคจเคนเฅ€เค‚" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "{0} เค•เฅ‹ เค”เคฐ เคซเคผเฅ‰เคฒเฅ‹ เคจเคนเฅ€เค‚ เค•เคฐ เคฐเคนเฅ‡" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "เค…เคญเฅ€ เคคเค• เค•เฅ‹เคˆ เคธเค‚เคฆเฅ‡เคถ เคจเคนเฅ€เค‚" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "เค•เฅ‡เคตเคฒ เคฒเฅ‡เค–เค• เคนเฅ€ เค‡เคธ เคชเฅ‹เคธเฅเคŸ เค•เฅ‹ เค•เฅเคต msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "เค•เฅ‹เคˆ เค•เฅเคตเฅ‹เคŸ เคจเคนเฅ€เค‚" @@ -8198,11 +8190,7 @@ msgstr "เค•เฅ‹เคˆ เค•เฅเคตเฅ‹เคŸ เคจเคนเฅ€เค‚" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "เค•เฅ‹เคˆ เคชเคฐเคฟเคฃเคพเคฎ เคจเคนเฅ€เค‚" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "เค•เฅ‹เคˆ เคชเคฐเคฟเคฃเคพเคฎ เคจเคนเฅ€เค‚" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "เค•เฅ‹เคˆ เคชเคฐเคฟเคฃเคพเคฎ เคจเคนเฅ€เค‚ เคฎเคฟเคฒเฅ‡" msgid "No results found for \"{query}\"" msgstr "\"{query}\" เค•เฅ‡ เคฒเคฟเค เค•เฅ‹เคˆ เคชเคฐเคฟเคฃเคพเคฎ เคจเคนเฅ€เค‚ เคฎเคฟเคฒเคพ" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "เคจเคนเฅ€เค‚ เคงเคจเฅเคฏเคตเคพเคฆ" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "เค•เฅ‹เคˆ เคจเคนเฅ€เค‚" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "เค‡เคธเฅ‡ เค…เคญเฅ€ เคคเค• เค•เคฟเคธเฅ€ เคจเฅ‡ เคชเคธเค‚เคฆ เคจเคนเฅ€เค‚ เค•เคฟเคฏเคพ เคนเฅˆเฅค เคถเคพเคฏเคฆ เคธเคฌเคธเฅ‡ เคชเคนเคฒเฅ‡ เค†เคชเค•เฅ‹ เค•เคฐเคจเคพ เคšเคพเคนเคฟเค!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "เค‡เคธเฅ‡ เค…เคญเฅ€ เคคเค• เค•เคฟเคธเฅ€ เคจเฅ‡ เค•เฅเคตเฅ‹เคŸ เคจเคนเฅ€เค‚ เค•เคฟเคฏเคพ เคนเฅˆเฅค เคถเคพเคฏเคฆ เคธเคฌเคธเฅ‡ เคชเคนเคฒเฅ‡ เค†เคชเค•เฅ‹ เค•เคฐเคจเคพ เคšเคพเคนเคฟเค!" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "เฅšเฅˆเคฐ-เคฏเฅŒเคจ เคจเค—เฅเคจเคคเคพ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "เคจเคนเฅ€เค‚ เคฎเคฟเคฒเคพ" @@ -8333,7 +8325,7 @@ msgstr "เคธเคพเคเคพ เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฌเคพเคฐเฅ‡ เคฎเฅ‡เค‚" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "เคŸเคฟเคชเฅเคชเคฃเฅ€: Bluesky เคเค• เค–เฅเคฒเคพ เค”เคฐ เคธเคพเคฐเฅเคตเคœเคจเคฟเค• เคจเฅ‡เคŸเคตเคฐเฅเค• เคนเฅˆเฅค เคฏเคน เคธเฅ‡เคŸเคฟเค‚เค— เค†เคชเค•เฅ‡ เคธเคพเคฎเค—เฅเคฐเฅ€ เค•เฅ€ เคฆเฅƒเคถเฅเคฏเคคเคพ เค•เฅ‡เคตเคฒ Bluesky เคเคช เค”เคฐ เคตเฅ‡เคฌเคธเคพเค‡เคŸ เคชเคฐ เคธเฅ€เคฎเคฟเคค เค•เคฐเคคเคพ เคนเฅˆ, เค”เคฐ เค…เคจเฅเคฏ เคเคช เค‡เคธ เคธเฅ‡เคŸเคฟเค‚เค— เค•เฅ€ เค…เคตเคฎเคพเคจเคจเคพ เค•เคฐ เคธเค•เคคเฅ‡ เคนเฅˆเค‚เฅค เค…เคจเฅเคฏ เคเคช เค”เคฐ เคตเฅ‡เคฌเคธเคพเค‡เคŸ เคชเคฐ เค†เคชเค•เฅ‡ เคธเคพเคฎเค—เฅเคฐเฅ€ เค•เฅ‹ เคฒเฅ‰เค— เค†เค‰เคŸ เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚ เค•เฅ‹ เคฆเคฟเค–เคพ เคธเค•เคคเฅ‡ เคนเฅˆเค‚เฅค" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "เค…เคงเคฟเคธเฅ‚เคšเคจเคพ เคธเฅ‡เคŸเคฟเค‚เค—" @@ -8353,11 +8345,12 @@ msgstr "เค…เคงเคฟเคธเฅ‚เคšเคจเคพ เคธเฅ‡เคŸเคฟเค‚เค—" msgid "Notification sounds" msgstr "เค…เคงเคฟเคธเฅ‚เคšเคจเคพ เคงเฅเคตเคจเคฟ" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "เค…เคฐเฅ‡ เคจเคนเฅ€เค‚!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "เค เฅ€เค•" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "เค เฅ€เค• เคนเฅˆ" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "เคœเฅเคžเคพเคจเคชเฅเคฐเคพเคชเฅเคคเคฟ เคฐเฅ€เคธเฅ‡เคŸ" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "เคเค• เคฏเคพ เค…เคงเคฟเค• GIF เค•เฅ‡ เคตเคฟเคตเคฐเคฃ เคจเคนเฅ€เค‚ เคนเฅˆเค‚เฅค" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "เคเค• เคฏเคพ เค…เคงเคฟเค• เค›เคตเคฟเคฏเฅ‹เค‚ เคชเคฐ เคตเฅˆเค•เคฒเฅเคชเคฟเค• เคชเคพเค  เคจเคนเฅ€เค‚ เคนเฅˆเฅค" @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "เคเค• เคฏเคพ เค…เคงเคฟเค• เคตเฅ€เคกเคฟเคฏเฅ‹ เค•เฅ‡ เคตเคฟเคตเคฐเคฃ เคจเคนเฅ€เค‚ เคนเฅˆเค‚เฅค" @@ -8471,7 +8466,7 @@ msgstr "เค•เฅ‡เคตเคฒ {0} เคœเคตเคพเคฌ เคฆเฅ‡ เคธเค•เคคเคพ เคนเฅˆ" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "เค•เฅ‡เคตเคฒ เคตเฅ‡เคฌเคตเฅ€เคŸเฅ€เคŸเฅ€ (.vtt) เฅžเคพเค‡เคฒเฅ‡เค‚ เคธเคฎเคฐเฅเคฅเคฟเคค เคนเฅˆเค‚" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "เค…เคฐเฅ‡!" @@ -8544,7 +8543,7 @@ msgstr "เค…เคฐเฅ‡!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "เค…เคตเคคเคพเคฐ เคจเคฟเคฐเฅเคฎเคพเคคเคพ เค–เฅ‹เคฒเฅ‡เค‚" @@ -8570,21 +8569,22 @@ msgstr "เคฌเคพเคคเคšเฅ€เคค เคตเคฟเค•เคฒเฅเคช เค–เฅ‹เคฒเฅ‡เค‚" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "เคกเฅเคฐเฅ‰เค…เคฐ เคฎเฅ‡เคจเฅ‚ เค–เฅ‹เคฒเฅ‡เค‚" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "เค‡เคฎเฅ‹เคœเฅ€ เคšเคฏเคจ เค–เฅ‹เคฒเฅ‡เค‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "เฅžเฅ€เคก เคœเคพเคจเค•เคพเคฐเฅ€ เคธเฅเค•เฅเคฐเฅ€เคจ เค–เฅ‹เคฒเฅ‡เค‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "เฅžเฅ€เคก เคตเคฟเค•เคฒเฅเคช เคฎเฅ‡เคจเฅ‚ เค–เฅ‹เคฒเฅ‡เค‚" @@ -8627,7 +8627,7 @@ msgstr "เคฎเฅ‰เคกเคฐเฅ‡เคถเคจ เคกเฅ€เคฌเค— เคชเฅƒเคทเฅเค  เค–เฅ‹เคฒเฅ‡เค‚" msgid "Open muted words and tags settings" msgstr "เคฎเฅเคฏเฅ‚เคŸ เค•เคฟเค เค—เค เคถเคฌเฅเคฆ เค”เคฐ เคŸเฅˆเค— เคธเฅ‡เคŸเคฟเค‚เค— เค–เฅ‹เคฒเฅ‡เค‚" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "เคกเฅ€เคฌเค— เคชเฅเคฐเคตเคฟเคทเฅเคŸเคฟ เค•เฅ‡ เคฒเคฟเค เค…เคคเคฟเคฐ msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "เค‰เคชเค•เคฐเคฃ เค•เคฐ เค•เฅˆเคฎเคฐเคพ เค–เฅ‹เคฒเคคเคพ เคนเฅˆ" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "เคจเคฏเคพ Bluesky เค–เคพเคคเคพ เคฌเคจเคพเคจเฅ‡ เค•เคพ เคธเคพเคงเคจ เค–เฅ‹เคฒเคคเคพ เคนเฅˆ" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "เค…เคชเคจเฅ‡ เคฎเฅŒเคœเฅ‚เคฆเคพ Bluesky เค–เคพเคคเฅ‡ เคฎเฅ‡เค‚ เคธเคพเค‡เคจ เค‡เคจ เค•เคฐเคจเฅ‡ เค•เคพ เคธเคพเคงเคจ เค–เฅ‹เคฒเคคเคพ เคนเฅˆ" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "เคชเคพเคธเคตเคฐเฅเคก เค…เคชเคกเฅ‡เคŸ เค•เคฟเคฏเคพ เค—เคฏเคพ!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "เคฐเฅ‹เค•เฅ‡เค‚" @@ -8925,12 +8925,12 @@ msgstr "เคฐเฅ‹เค•เฅ‡เค‚" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เคฐเฅ‹เค•เฅ‡เค‚" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "เคฒเฅ‹เค—" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0} เคฆเฅเคตเคพเคฐเคพ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฟเค เค—เค เคฒเฅ‹เค—" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "@{0} เค•เฅ‹ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเคคเฅ‡ เคฒเฅ‹เค—" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "เคตเคฏเคธเฅเค•เฅ‹เค‚ เค•เฅ‡ เคฒเคฟเค เค›เคตเคฟเฅค" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "เฅžเฅ€เคก เคชเคฟเคจ เค•เคฐเฅ‡เค‚" @@ -9034,7 +9034,7 @@ msgstr "เฅžเฅ€เคก เคชเคฟเคจ เค•เคฐเฅ‡เค‚" msgid "Pin to home" msgstr "เคนเฅ‹เคฎ เคฎเฅ‡เค‚ เคชเคฟเคจ เค•เคฐเฅ‡เค‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "เคนเฅ‹เคฎ เคฎเฅ‡เค‚ เคชเคฟเคจ เค•เคฐเฅ‡เค‚" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "เคชเคฟเคจ เค•เคฟเคฏเคพ เค—เคฏเคพ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "เคนเฅ‹เคฎ เคฎเฅ‡เค‚ {0} เคชเคฟเคจ เค•เคฟเคฏเคพ เค—เคฏเคพ" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "เค†เคชเค•เฅ‡ เฅžเฅ€เคก เคฎเฅ‡เค‚ เคชเคฟเคจ เค•เคฟเคฏเคพ เค—เคฏเคพ" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "เคšเคฒเคพเคเค" @@ -9076,8 +9076,8 @@ msgstr "{0} เคšเคฒเคพเคเค" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เคšเคฒเคพเคเค" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "เค•เฅƒเคชเคฏเคพ เค…เคชเคจเคพ เคนเฅˆเค‚เคกเคฒ เคšเฅเคจเฅ‡เค‚" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "เค•เฅƒเคชเคฏเคพ เค…เคชเคจเคพ เคชเคพเคธเคตเคฐเฅเคก เคšเฅเคจเฅ‡เค‚" @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "เค•เฅƒเคชเคฏเคพ เคธเคคเฅเคฏเคพเคชเคจ เค•เฅˆเคชเคšเคพ เคธเคฎเคพเคชเฅเคค เค•เคฐเฅ‡เค‚" @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "เค•เฅƒเคชเคฏเคพ เค…เคชเคจเคพ เคˆเคฎเฅ‡เคฒ เคฆเคฐเฅเคœ เค•เคฐเฅ‡เค‚เฅค" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "เคฐเคพเคœเคจเฅ€เคคเคฟ" @@ -9269,7 +9269,7 @@ msgstr "เคฐเคพเคœเคจเฅ€เคคเคฟ" msgid "Porn" msgstr "เค…เคถเฅเคฒเฅ€เคฒ" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "เคชเฅ‹เคธเฅเคŸ เค•เคฐเฅ‡เค‚" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "เคชเฅ‹เคธเฅเคŸ เค•เคฐเฅ‡เค‚" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "เคธเคญเฅ€ เคชเฅ‹เคธเฅเคŸ เค•เคฐเฅ‡เค‚" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} เคฆเฅเคตเคพเคฐเคพ เคชเฅ‹เคธเฅเคŸ" @@ -9340,7 +9340,7 @@ msgstr "เคชเฅ‹เคธเฅเคŸ เค†เคชเค•เฅ‡ เคฆเฅเคตเคพเคฐเคพ เค›เคฟเคชเคพเคฏเคพ เค— msgid "Post interaction settings" msgstr "เคชเฅ‹เคธเฅเคŸ เคธเค‚เคชเคฐเฅเค• เคธเฅ‡เคŸเคฟเค‚เค—" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "เคชเฅ‹เคธเฅเคŸ เคชเคฟเคจ เค•เคฟเคฏเคพ เค—เคฏเคพ" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "เคชเฅ‹เคธเฅเคŸ เคชเคฟเคจ เคธเฅ‡ เคนเคŸเคพเคฏเคพ เค—เคฏเคพ" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "เคชเฅ‹เคธเฅเคŸ" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "เคชเฅ‹เคธเฅเคŸ เค•เฅ‹ เค‰เคจเค•เฅ‡ เคชเคพเค , เค‰เคจเค•เฅ‡ เคŸเฅˆเค—, เคฏเคพ เคฆเฅ‹เคจเฅ‹เค‚ เคธเฅ‡ เค›เคฟเคชเคพเคฏเคพ เคœเคพ เคธเค•เคคเคพ เคนเฅˆเฅค เคนเคฎ เคเคธเฅ‡ เคธเคพเคงเคพเคฐเคฃ เคถเคฌเฅเคฆ เคจ เคšเฅเคจเคจเฅ‡ เค•เฅ€ เคธเคฒเคพเคน เคฆเฅ‡เคคเฅ‡ เคนเฅˆเค‚ เคœเฅ‹ เค•เคˆ เคชเฅ‹เคธเฅเคŸ เคฎเฅ‡เค‚ เคฆเคฟเค–เคคเฅ‡ เคนเฅˆเค‚, เค•เฅเคฏเฅ‹เค‚เค•เคฟ เค‡เคธเคธเฅ‡ เคนเฅ‹ เคธเค•เคคเคพ เคนเฅˆ เค•เคฟ เคธเคญเฅ€ เคชเฅ‹เคธเฅเคŸ เค›เคฟเคช เคœเคพเคเคเฅค" @@ -9398,6 +9396,10 @@ msgstr "เคชเฅ‹เคธเฅเคŸ เค•เฅ‹ เค‰เคจเค•เฅ‡ เคชเคพเค , เค‰เคจเค•เฅ‡ เคŸเฅˆเค—, msgid "Posts hidden" msgstr "เคชเฅ‹เคธเฅเคŸ เค›เคฟเคชเคพเค เค—เค" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "เค—เฅ‹เคชเคจเฅ€เคฏเคคเคพ" msgid "Privacy and security" msgstr "เค—เฅ‹เคชเคจเคฟเคฏเคคเคพ เค”เคฐ เคธเฅเคฐเค•เฅเคทเคพ" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "เค—เฅ‹เคชเคจเคฟเคฏเคคเคพ เค”เคฐ เคธเฅเคฐเค•เฅเคทเคพ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "เค—เฅ‹เคชเคจเฅ€เคฏเคคเคพ เคจเฅ€เคคเคฟ" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เคชเฅเคฐเคธเค‚เคธเฅเค•เคฐเคฃ เคนเฅ‹ เคฐเคนเคพ เคนเฅˆ..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚ เค•เฅ€ เคธเคพเคฐเฅเคตเคœเคจเคฟเค•, เคธเคพเคเคพ เคฏเฅ‹เค—เฅเคฏ เคธเฅ‚เคšเคฟเคฏเคพเค เคœเคฟเคจเฅเคนเฅ‡เค‚ เคเค• เคธเคพเคฅ เคฎเฅเคฏเฅ‚เคŸ เคฏเคพ เค…เคตเคฐเฅเคฆเฅเคง เค•เคฟเคฏเคพ เคœเคพ เคธเค•เคคเคพ เคนเฅˆเฅค" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "เค•เฅเคตเฅ‹เคŸ เคชเฅ‹เคธเฅเคŸ เค…เค•เฅเคทเคฎ เค•เคฟเค เค—เค" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "เค•เฅเคตเฅ‹เคŸ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "เค‡เคธ เคชเฅ‹เคธเฅเคŸ เค•เฅ‡ เค•เฅเคตเฅ‹เคŸ" @@ -9647,7 +9650,7 @@ msgstr "เค–เคพเคคเคพ เคซเคฟเคฐ เคธเค•เฅเคฐเคฟเคฏ เค•เคฐเฅ‡เค‚" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "Bluesky เค—เฅ‹เคชเคจเคฟเคฏเคคเคพ เคจเฅ€เคคเคฟ เคชเฅเฅ‡เค‚" msgid "Read the Bluesky Terms of Service" msgstr "Bluesky เคธเฅ‡เคตเคพ เค•เฅ€ เคถเคฐเฅเคคเฅ‡เค‚ เคชเฅเฅ‡เค‚" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "เค…เคจเฅเคถเค‚เคธเคฟเคค" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "เคซเคฟเคฐ เค•เคจเฅ‡เค•เฅเคŸ เค•เคฐเฅ‡เค‚" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "เคฌเคพเคคเคšเฅ€เคค เคซเคฟเคฐ เคฒเฅ‹เคก เค•เคฐเฅ‡เค‚" @@ -9766,7 +9765,7 @@ msgstr "เคฌเคพเคคเคšเฅ€เคค เคซเคฟเคฐ เคฒเฅ‹เคก เค•เคฐเฅ‡เค‚" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "เคนเคŸเคพเคเค" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "เค–เคพเคคเคพ เคนเคŸเคพเคเค" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "เคฎเฅ‡เคฐเฅ‡ เคซเคผเฅ€เคก เคธเฅ‡ เคนเคŸเคพเคเค" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "เคœเคฒเฅเคฆ เคชเคนเฅเคเคš เคธเฅ‡ เคนเคŸเคพเคเค?" @@ -9862,7 +9861,7 @@ msgstr "เคœเคฒเฅเคฆ เคชเคนเฅเคเคš เคธเฅ‡ เคนเคŸเคพเคเค?" msgid "Remove from saved feeds" msgstr "เคธเคนเฅ‡เคœเฅ‡ เฅžเฅ€เคก เคธเฅ‡ เคนเคŸเคพเคเค" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "เค›เคตเคฟ เคนเคŸเคพเคเค" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "เคธเฅ‚เคšเฅ€ เคธเฅ‡ เคนเคŸเคพเคฏเคพ เค—เคฏเคพ" msgid "Removed from saved feeds" msgstr "เคธเคนเฅ‡เคœเฅ‡ เฅžเฅ€เคก เคธเฅ‡ เคนเคŸเคพเคฏเคพ เค—เคฏเคพ" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "เคœเคตเคพเคฌ" @@ -10037,7 +10037,7 @@ msgstr "เค‡เคธ เคชเฅ‹เคธเฅเคŸ เคชเคฐ เคœเคตเคพเคฌ เค…เค•เฅเคทเคฎ เคนเฅˆ" msgid "Reply" msgstr "เคœเคตเคพเคฌ เคฆเฅ‡เค‚" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "เคœเคตเคพเคฌ เคฆเฅ‡เค‚" @@ -10098,8 +10098,8 @@ msgstr "เคฌเคพเคคเคšเฅ€เคค เค•เฅ€ เคถเคฟเค•เคพเคฏเคค เค•เคฐเฅ‡เค‚" msgid "Report dialog" msgstr "เคถเคฟเค•เคพเคฏเคค เคกเคพเคฏเคฒเฅ‰เค—" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "เคซเคผเฅ€เคก เค•เฅ€ เคถเคฟเค•เคพเคฏเคค เค•เคฐเฅ‡เค‚" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "เค†เคชเคจเฅ‡ เคฐเฅ€เคชเฅ‹เคธเฅเคŸ เค•เคฟเคฏเคพ" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "เค‡เคธ เคชเฅ‹เคธเฅเคŸ เค•เฅ‡ เคฐเฅ€เคชเฅ‹เคธเฅเคŸ" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "เคชเคฟเค›เคฒเฅ€ เค•เฅเคฐเคฟเคฏเคพ เค•เคพ เคซเคฟเคฐ เคธเฅ‡ เคชเฅเคฐเคฏ #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "เคนเฅ‹เคฎ เคชเฅƒเคทเฅเค  เคชเคฐ เคตเคพเคชเคธ เคœเคพเคคเคพ เคนเฅˆ" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "เคชเคฟเค›เคฒเฅ‡ เคชเฅƒเคทเฅเค  เคชเคฐ เคตเคพเคชเคธ เคœเคพเคคเคพ เคนเฅˆ" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "เคฌเคฆเคฒเคพเคต เคธเคนเฅ‡เคœเฅ‡เค‚" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR เค•เฅ‹เคก เคธเคนเฅ‡เคœเฅ‡เค‚" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "เคฎเฅ‡เคฐเฅ‡ เฅžเฅ€เคก เคฎเฅ‡เค‚ เคธเคนเฅ‡เคœเฅ‡เค‚" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "เคธเคนเฅ‡เคœเฅ‡ เค—เค เคซเคผเฅ€เคก" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "เค†เคชเค•เฅ‡ เฅžเฅ€เคก เคฎเฅ‡เค‚ เคธเคนเฅ‡เคœเคพ เค—เคฏเคพ" @@ -10520,8 +10520,8 @@ msgstr "เค†เคชเค•เฅ‡ เฅžเฅ€เคก เคฎเฅ‡เค‚ เคธเคนเฅ‡เคœเคพ เค—เคฏเคพ" msgid "Say hello!" msgstr "เคจเคฎเคธเฅเคคเฅ‡ เค•เคนเฅ‡เค‚!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "เคตเคฟเคœเฅเคžเคพเคจ" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "เคŠเคชเคฐ เคœเคพเคเค" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "เค–เฅ‹เคœเฅ‡เค‚" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "เฅžเฅ€เคก เค–เฅ‹เคœเฅ‡เค‚ เคœเฅ‹ เค†เคช เคฆเฅ‚เคธเคฐเฅ‹เค‚ เค•เฅ‹ เคฆเคฟเค–เคพเคจเคพ เคšเคพเคนเคคเฅ‡ เคนเฅˆเค‚" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIF เค–เฅ‹เคœเฅ‡เค‚" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Bluesky เคฎเฅ‡เค‚ เคจเฅŒเค•เคฐเคฟเคฏเคพเค เคฆเฅ‡เค–เฅ‡เค‚" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "เคธเฅ€เค• เคธเฅเคฒเคพเค‡เคกเคฐเฅค เคเคฐเฅ‹ เค•เฅ€ เคธเฅ‡ เค†เค—เฅ‡ เค”เคฐ เคชเฅ€เค›เฅ‡ เคธเฅ€เค• เค•เคฐเฅ‡เค‚, เค”เคฐ เคธเฅเคชเฅ‡เคธ เคธเฅ‡ เคšเคพเคฒเฅ‚/เคฌเค‚เคฆ เค•เคฐเฅ‡เค‚" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "เคฐเค‚เค— เคšเฅเคจเฅ‡เค‚" @@ -10764,11 +10769,11 @@ msgstr "เค–เคพเคคเคพ เคšเฅเคจเฅ‡เค‚" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "เค…เคตเคคเคพเคฐ เคšเฅเคจเฅ‡เค‚" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "เค‡เคฎเฅ‹เคœเฅ€ เคšเฅเคจเฅ‡เค‚" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "GIF เคšเฅเคจเฅ‡เค‚" msgid "Select GIF \"{0}\"" msgstr "\"{0}\" GIF เคšเฅเคจเฅ‡เค‚" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "{emojiName} เค‡เคฎเฅ‹เคœเฅ€ เค•เฅ‹ เค…เคชเคจเฅ‡ เค…เคตเคคเคพเคฐ เค•เฅ‡ เคฐเฅ‚เคช เคฎเฅ‡เค‚ เคšเฅเคจเฅ‡เค‚" @@ -10945,7 +10951,8 @@ msgstr "เคธเค‚เคฆเฅ‡เคถ เคญเฅ‡เคœเฅ‡เค‚" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "เค‡เคจเฅเคนเฅ‡เค‚ เคชเฅ‹เคธเฅเคŸ เคญเฅ‡เคœเฅ‡เค‚" @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "เคธเคคเฅเคฏเคพเคชเคจ เคˆเคฎเฅ‡เคฒ เคญเฅ‡เคœเฅ‡เค‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "เคธเฅ€เคงเคพ เคธเค‚เคฆเฅ‡เคถ เคฆเฅเคตเคพเคฐเคพ เคญเฅ‡เคœเฅ‡เค‚" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "เคชเคพเคธเคตเคฐเฅเคก เคฐเฅ€เคธเฅ‡เคŸ เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เคˆเคฎเฅ‡เคฒ เคšเฅเคจเคคเคพ เคนเฅˆ" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "เคธเฅ‡เคŸเคฟเค‚เค—" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "เคซเคฟเคฐ เคญเฅ€ เคธเคพเคเคพ เค•เคฐเฅ‡เค‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "เคฒเคฟเค‚เค— เคกเคพเคฏเคฒเฅ‰เค— เคธเคพเคเคพ เค•เคฐเฅ‡เค‚" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "QR เค•เฅ‹เคก เคธเคพเคเคพ เค•เคฐเฅ‡เค‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "เค‡เคธ เฅžเฅ€เคก เค•เฅ‹ เคธเคพเคเคพ เค•เคฐเฅ‡เค‚" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "เค‡เคธ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เค•เฅ‹ เคธเคพเคเคพ เค•เคฐเฅ‡ msgid "Share this starter pack and help people join your community on Bluesky." msgstr "เค‡เคธ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เค•เฅ‹ เคธเคพเคเคพ เค•เคฐเฅ‡เค‚ เค”เคฐ เคฒเฅ‹เค—เฅ‹เค‚ เค•เฅ‹ Bluesky เคชเคฐ เค†เคชเค•เฅ‡ เคธเคฎเฅเคฆเคพเคฏ เคฎเฅ‡เค‚ เคœเฅเฅœเคจเฅ‡ เคธเคนเคพเคฏเคคเคพ เค•เคฐเฅ‡เค‚เฅค" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "เคธเคพเคเคพ เค•เฅ€ เค—เคˆ เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพเค“เค‚ เค•เคพ เคชเคฐเฅ€เค•เฅเคทเค•" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "เคฆเคฟเค–เคพเคเค" msgid "Show alt text" msgstr "เคตเฅˆเค•เคฒเฅเคชเคฟเค• เคชเคพเค  เคฆเคฟเค–เคพเคเค" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "เคซเคฟเคฐ เคญเฅ€ เคฆเคฟเค–เคพเคเค" @@ -11274,9 +11281,9 @@ msgstr "เคซเคฟเคฐ เคญเฅ€ เคธเฅ‚เคšเฅ€ เคฆเคฟเค–เคพเคเค" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "เค…เคงเคฟเค• เคฆเคฟเค–เคพเคเค" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "เคšเฅ‡เคคเคพเคตเคจเฅ€ เคฆเคฟเค–เคพเคเค เค”เคฐ เฅžเฅ€เคก เคธเฅ‡ เฅžเคฟ msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "เคธเคพเค‡เคจ เค†เค‰เคŸ เค•เคฐเฅ‡เค‚?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "เคธเคพเค‡เคจ เค‡เคจ เค†เคตเคถเฅเคฏเค•" @@ -11469,7 +11476,7 @@ msgstr "เค›เฅ‹เฅœเฅ‡เค‚" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "เค›เฅ‹เคŸเคพ" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "เค•เฅเค› เค…เคจเฅเคฏ เฅžเฅ€เคก เคœเฅ‹ เค†เคชเค•เฅ‹ เคถเคพเคฏเคฆ เคชเคธเค‚เคฆ เค†เคเค" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "เค•เฅ‹เคˆ เค—เฅœเคฌเฅœ เคนเฅเคˆ, เคซเคฟเคฐ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเฅ‡เค‚" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "เค•เฅเค› เค—เฅœเคฌเฅœ เคนเฅˆ? เคนเคฎเฅ‡เค‚ เคฌเคคเคพเคเคเฅค" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "เค–เฅ‡เคฒ" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "เคจเคฏเคพ เคฌเคพเคคเคšเฅ€เคค เคถเฅเคฐเฅ‚ เค•เคฐเฅ‡เค‚" @@ -11682,17 +11689,17 @@ msgstr "เคฒเฅ‹เค—เฅ‹เค‚ เค•เฅ‹ เคœเฅ‹เฅœเคจเคพ เคถเฅเคฐเฅ‚ เค•เคฐเฅ‡เค‚" msgid "Start adding people!" msgstr "เคฒเฅ‹เค—เฅ‹เค‚ เค•เฅ‹ เคœเฅ‹เฅœเคจเคพ เคถเฅเคฐเฅ‚ เค•เคฐเฅ‡เค‚!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "{displayName} เคธเฅ‡ เคฌเคพเคคเคšเฅ€เคค เคถเฅเคฐเฅ‚ เค•เคฐเฅ‡เค‚" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค•" @@ -11715,12 +11722,16 @@ msgstr "เค†เคชเค•เฅ‡ เคฆเฅเคตเคพเคฐเคพ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค•" msgid "Starter pack is invalid" msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เค…เคฎเคพเคจเฅเคฏ เคนเฅˆ" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค•" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เค†เคชเค•เฅ‹ เค…เคชเคจเฅ‡ เคชเคธเค‚เคฆเฅ€เคฆเคพ เฅžเฅ€เคก เค”เคฐ เคฒเฅ‹เค—เฅ‹เค‚ เค•เฅ‹ เค…เคชเคจเฅ‡ เคฆเฅ‹เคธเฅเคคเฅ‹เค‚ เค•เฅ‡ เคธเคพเคฅ เค†เคธเคพเคจเฅ€ เคธเฅ‡ เคธเคพเคเคพ เค•เคฐเคจเฅ‡ เคฆเฅ‡เคคเฅ‡ เคนเฅˆเค‚" @@ -11728,7 +11739,7 @@ msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เค†เคชเค•เฅ‹ เค…เคชเคจเฅ‡ เคชเคธเค‚ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "เคธเฅเคฅเคฟเคคเคฟ เคชเฅƒเคทเฅเค " #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "{1} เคธเฅ‡ เคšเคฐเคฃ {0}" @@ -11754,7 +11765,7 @@ msgstr "เคธเฅเคŸเฅ‹เคฐเฅ‡เคœ เค–เคพเคฒเฅ€ เค•เฅ€ เค—เคˆ, เค†เคชเค•เฅ‹ เคเคช msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "เค•เคนเคพเคจเฅ€ เค•เฅ€ เค•เคฟเคคเคพเคฌ" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "เค‡เคจ เคฒเฅ‡เคฌเคฒเฅ‹เค‚ เค•เคพ เค‰เคชเคฏเฅ‹เค— เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค @{0} เค•เฅ€ เคธเคฆเคธเฅเคฏเคคเคพ เคฒเฅ‡เค‚:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "เค†เคชเค•เฅ‡ เคฒเคฟเค เคธเฅเคเคพเคต" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "เคธเคฟเคธเฅเคŸเคฎ" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "เฅ™เคพเคฐเคฟเคœ เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เคฆเคฌเคพเคเค" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "เค•เคพเคฐเฅเคฏ เคธเคฎเคพเคชเฅเคค - 10 เคซเคผเฅ‰เคฒเฅ‹!" msgid "Task complete - 10 likes!" msgstr "เค•เคพเคฐเฅเคฏ เคธเคฎเคพเคชเฅเคค - 10 เคชเคธเค‚เคฆ!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "เคนเคฎเคพเคฐเฅ‡ เคเคฒเฅเค—เฅ‹เคฐเคฟเคฅเฅเคฎ เค•เฅ‹ เคธเคฟเค–เคพเคเค เค•เคฟ เค†เคชเค•เฅ‹ เค•เฅเคฏเคพ เคชเคธเค‚เคฆ เคนเฅˆ" @@ -12060,7 +12073,7 @@ msgstr "เคถเคฐเฅเคคเฅ‡เค‚" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "เคตเคน เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เคจเคนเฅ€เค‚ เคฎเคฟเคฒเคพเฅค" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "เคฌเคธ เค‡เคคเคจเคพ เคนเฅ€, เคฆเฅ‹เคธเฅเคคเฅ‹เค‚!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "เคฒเค—เคคเคพ เคนเฅˆ เคธเคฐเฅเคตเคฐ เค•เฅ‹ เคธเคฎเคธเฅเคฏเคพเคเค เคน msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "เค†เคช เคœเคฟเคธ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เค•เฅ‹ เคฆเฅ‡เค–เคจเฅ‡ เค•เคพ เคชเฅเคฐเคฏเคพเคธ เค•เคฐ เคฐเคนเฅ‡ เคนเฅˆเค‚, เคตเคน เค…เคฎเคพเคจเฅเคฏ เคนเฅˆเฅค เค†เคช เค‡เคธ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เค•เฅ‹ เคฎเคฟเคŸเคพ เคธเค•เคคเฅ‡ เคนเฅˆเค‚เฅค" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "เค†เคชเค•เคพ เคฆเคฐเฅเคœ เค•เคฟเคฏเคพ เค—เคฏเคพ เคธเคคเฅเคฏเคพเคชเคจ msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "เคฅเฅ€เคฎ" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "เคธเคฐเฅเคตเคฐ เคธเฅ‡ เคธเค‚เคชเคฐเฅเค• เค•เคฐเคจเฅ‡ เคฎเฅ‡เค‚ เคธเคฎเคธเฅเคฏเคพ เคนเฅเคˆ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "เคธเคฐเฅเคตเคฐ เคธเฅ‡ เคธเค‚เคชเคฐเฅเค• เค•เคฐเคจเฅ‡ เคฎเฅ‡เค‚ เคธเคฎเคธเฅเคฏเคพ เคนเฅเคˆ, เค•เฅƒเคชเคฏเคพ เค…เคชเคจเคพ เค‡เค‚เคŸเคฐเคจเฅ‡เคŸ เค•เคจเฅ‡เค•เฅเคถเคจ เคœเคพเคเคš เคฒเฅ‡เค‚ เค”เคฐ เคซเคฟเคฐ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเฅ‡เค‚เฅค" @@ -12283,8 +12296,8 @@ msgstr "เคธเคฐเฅเคตเคฐ เคธเฅ‡ เคธเค‚เคชเคฐเฅเค• เค•เคฐเคจเฅ‡ เคฎเฅ‡เค‚ เคธเคฎ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "เค…เคงเคฟเคธเฅ‚เคšเคจเคพเคเค เคฒเคพเคจเฅ‡ เคฎเฅ‡เค‚ เคธเคฎเคธเฅเคฏเคพ เคนเฅเคˆเฅค เคซเคฟเคฐ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เคฏเคนเคพเค เคฆเคฌเคพเคเคเฅค" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "เคชเฅ‹เคธเฅเคŸ เคฒเคพเคจเฅ‡ เคฎเฅ‡เค‚ เคธเคฎเคธเฅเคฏเคพ เคนเฅเคˆเฅค เคซเคฟเคฐ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เคฏเคนเคพเค เคฆเคฌเคพเคเคเฅค" @@ -12309,7 +12322,7 @@ msgstr "เค†เคชเค•เฅ‡ เคธเฅ‡เคตเคพ เคœเคพเคจเค•เคพเคฐเฅ€ เค•เฅ‹ เคฒเคพเคจเฅ‡ เคฎ msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "เค‡เคธ เฅžเฅ€เคก เค•เฅ‹ เคนเคŸเคพเคจเฅ‡ เคฎเฅ‡เค‚ เคธเคฎเคธเฅเคฏเคพ เคนเฅเคˆเฅค เค•เฅƒเคชเคฏเคพ เค…เคชเคจเคพ เค‡เค‚เคŸเคฐเคจเฅ‡เคŸ เค•เคจเฅ‡เค•เฅเคถเคจ เคœเคพเคเคš เคฒเฅ‡เค‚ เค”เคฐ เคซเคฟเคฐ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเฅ‡เค‚เฅค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "เคฏเฅ‡ เคธเฅ‡เคŸเคฟเค‚เค— เค•เฅ‡เคตเคฒ เคซเคผเฅ‰เคฒเฅ‹เค‡เค‚เค— เฅžเฅ€ msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "เคฏเคน {screenDescription} เคซเฅเคฒเฅˆเค— เค•เคฟเคฏเคพ เค—เคฏเคพ เคนเฅˆ:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "เค‡เคธ เค–เคพเคคเฅ‡ เคจเฅ‡ เค…เคจเฅเคฐเฅ‹เคง เค•เคฟเคฏเคพ เคนเฅˆ เค•เคฟ เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เค‰เคจเค•เคพ เคชเฅเคฐเฅ‹เฅžเคพเค‡เคฒ เคฆเฅ‡เค–เคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เคธเคพเค‡เคจ เค‡เคจ เค•เคฐเฅ‡เฅค" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "เคฏเคน เฅžเฅ€เคก เค–เคพเคฒเฅ€ เคนเฅˆ! เค†เคชเค•เฅ‹ เค…เคงเคฟเค• เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚ เค•เฅ‹ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเคจเคพ เคชเฅœเฅ‡เค—เคพ เคฏเคพ เค…เคชเคจเฅ‡ เคญเคพเคทเคพ เคธเฅ‡เคŸเคฟเค‚เค— เค•เฅ‹ เคฌเคฆเคฒเคจเคพ เคชเฅœเฅ‡เค—เคพเฅค" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "เคฏเคน เฅžเฅ€เคก เค–เคพเคฒเฅ€ เคนเฅˆเฅค" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "เคฏเคน เคนเฅˆเค‚เคกเคฒ เคธเฅเคฐเค•เฅเคทเคฟเคค เคนเฅˆเฅค เค•เฅƒเคชเคฏเคพ เค•เฅเค› เค”เคฐ เคšเฅเคจเฅ‡เค‚เฅค" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "เคฏเคน เคฒเฅ‡เคฌเคฒ เค†เคชเค•เฅ‡ เคฆเฅเคตเคพเคฐเคพ เคฒเค—เคพเคˆ เค—เคˆ msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "เค‡เคธ เคฒเฅ‡เคฌเคฒเค•เคฐเฅเคคเคพ เคจเฅ‡ เค˜เฅ‹เคทเคฟเคค เคจเคนเฅ€เค‚ เค•เคฟเคฏเคพ เคนเฅˆ เค•เคฟ เคตเคน เค•เฅเคฏเคพ เคฒเฅ‡เคฌเคฒ เคฒเค—เคพเคคเคพ เคนเฅˆ, เค”เคฐ เคถเคพเคฏเคฆ เคจเคฟเคทเฅเค•เฅเคฐเคฟเคฏ เคนเฅˆเฅค" @@ -12621,13 +12634,13 @@ msgstr "เคฏเคน เคธเฅ‚เคšเฅ€ เค–เคพเคฒเฅ€ เคนเฅˆเฅค" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "เคฏเคน เคชเฅ‹เคธเฅเคŸ <0>{0} เค•เฅ‹ เคฌเคจเคจเฅ‡ เค•เคพ เคฆเคพเคตเคพ เค•เคฐเคคเคพ เคนเฅˆ, เคชเคฐ เค‡เคธเฅ‡ Bluesky เคชเคฐ เคธเคฌเคธเฅ‡ เคชเคนเคฒเฅ‡ <1>{1} เค•เฅ‹ เคฆเฅ‡เค–เคพ เค—เคฏเคพเฅค" @@ -12649,7 +12662,7 @@ msgstr "เคฏเคน เคชเฅ‹เคธเฅเคŸ <0>{0} เค•เฅ‹ เคฌเคจเคจเฅ‡ เค•เคพ เคฆเคพเคต msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "เค‡เคธ เคชเฅ‹เคธเฅเคŸ เค•เฅ‹ เฅžเฅ€เคก เค”เคฐ เคฅเฅเคฐเฅ‡เคก เคธเฅ‡ เค›เคฟเคชเคพ เคฆเคฟเคฏเคพ เคœเคพเคเค—เคพเฅค เค‡เคธเฅ‡ เคชเฅ‚เคฐเฅเคตเคตเคค เคจเคนเฅ€เค‚ เค•เคฟเคฏเคพ เคœเคพ เคธเค•เคคเคพเฅค" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "เค‡เคธ เคชเฅ‹เคธเฅเคŸ เค•เฅ‡ เคฒเฅ‡เค–เค• เคจเฅ‡ เค•เฅเคตเฅ‹เคŸ เคชเฅ‹เคธเฅเคŸ เค…เค•เฅเคทเคฎ เค•เคฟเค เคนเฅˆเค‚เฅค" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "เค‡เคธ เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เค•เฅ‡ เค•เฅ‹เคˆ เคซเคผเฅ‰เคฒเฅ‹เค…เคฐ เคจเคนเฅ€เค‚ เคนเฅˆเค‚" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "เค‡เคธ เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เคจเฅ‡ เค†เคชเค•เฅ‹ เค…เคตเคฐเฅเคฆเฅเคง เค•เคฟเคฏเคพ เคนเฅˆเฅค เค†เคช เค‰เคจเค•เฅ‡ เคธเคพเคฎเค—เฅเคฐเฅ€ เคจเคนเฅ€เค‚ เคฆเฅ‡เค– เคธเค•เคคเฅ‡เฅค" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "เคฏเคน เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ <0>{0} เคธเฅ‚เคšเฅ€ เคฎเฅ‡เค‚ msgid "This user is new here. Press for more info about when they joined." msgstr "เคฏเคน เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เคฏเคนเคพเค เคจเคฏเคพ เคนเฅˆเฅค เคตเฅ‡ เค•เคฌ เคœเฅเฅœเฅ‡, เค‡เคธเค•เฅ‡ เคฌเคพเคฐเฅ‡ เคฎเฅ‡เค‚ เค…เคงเคฟเค• เคœเคพเคจเค•เคพเคฐเฅ€ เค•เฅ‡ เคฒเคฟเค เคฆเคฌเคพเคเค" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "เคฏเคน เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เค•เคฟเคธเฅ€ เค•เฅ‹ เคซเคผเฅ‰เคฒเฅ‹ เคจเคนเฅ€เค‚ เค•เคฐเคคเคพเฅค" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "เคฏเคน @{0} เค•เฅ‹ เคœเคฒเฅเคฆ เคชเคนเฅเคเคš เคธเฅ‚เคšเฅ€ เคธเฅ‡ เคนเคŸเคพ เคฆเฅ‡เค—เคพเฅค" @@ -12786,7 +12801,7 @@ msgstr "เคฅเฅเคฐเฅ‡เคก เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพเคเค" msgid "Threaded" msgstr "เคฅเฅเคฐเฅ‡เคก" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "เคฅเฅเคฐเฅ‡เคก เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพเคเค" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "เคฌเคนเคคเคฐเฅ€เคจ" @@ -12858,7 +12873,7 @@ msgstr "เคฌเคนเคคเคฐเฅ€เคจ" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "เคตเคฟเคทเคฏ" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "เคฐเฅเคเคพเคจ" @@ -12902,12 +12919,14 @@ msgstr "เคฐเฅเคเคพเคจ" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "เค–เคพเคคเคพ เค…เคจเค…เคตเคฐเฅเคฆเฅเคง เค•เคฐเฅ‡เค‚?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "{0} เค•เฅ‹ เค…เคจเคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเฅ‡เค‚" msgid "Unfollow account" msgstr "เค–เคพเคคเคพ เค…เคจเคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเฅ‡เค‚" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "เคจเคพเคชเคธเค‚เคฆ เค•เคฐเฅ‡เค‚" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "เคฅเฅเคฐเฅ‡เคก เค…เคจเคฎเฅเคฏเฅ‚เคŸ เค•เคฐเฅ‡เค‚" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เค…เคจเคฎเฅเคฏเฅ‚เคŸ เค•เคฐเฅ‡เค‚" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "เคชเคฟเคจ เคธเฅ‡ เคนเคŸเคพเคเค" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "เฅžเฅ€เคก เค•เฅ‹ เคชเคฟเคจ เคธเฅ‡ เคนเคŸเคพเคเค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "เคนเฅ‹เคฎ เคธเฅ‡ เคชเคฟเคจ เคธเฅ‡ เคนเคŸเคพเคเค" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "เคฎเฅ‰เคกเคฐเฅ‡เคถเคจ เคธเฅ‚เคšเฅ€ เค•เฅ‹ เคชเคฟเคจ เคธเฅ‡ เคนเคŸเคพเคเค" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} เค•เฅ‹ เคนเฅ‹เคฎ เคชเคฟเคจ เคธเฅ‡ เคนเคŸเคพเคฏเคพ เค—เคฏเคพ" @@ -13258,11 +13279,11 @@ msgstr "เค‡เคธ เคฒเฅ‡เคฌเคฒเค•เคฐเฅเคคเคพ เค•เฅ€ เคธเคฆเคธเฅเคฏเคคเคพ เค›เฅ‹ msgid "Unsubscribed from list" msgstr "เคธเฅ‚เคšเฅ€ เค•เฅ€ เคธเคฆเคธเฅเคฏเคคเคพ เค›เฅ‹เฅœเฅ€ เค—เคˆ" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "เคœเคตเคพเคฌ เคฆเฅƒเคถเฅเคฏเคคเคพ เค•เคพ เค…เคชเคกเฅ‡เคŸ เค…เคธเคซเคฒ" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "เค‡เคธเค•เฅ‡ เคฌเคฆเคฒเฅ‡ เฅžเฅ‹เคŸเฅ‹ เค…เคชเคฒเฅ‹เคก เค•เคฐเฅ‡เค‚" @@ -13355,7 +13376,7 @@ msgstr "เฅžเคพเค‡เคฒเฅ‹เค‚ เคธเฅ‡ เค…เคชเคฒเฅ‹เคก เค•เคฐเฅ‡เค‚" msgid "Upload from Library" msgstr "เคฒเคพเค‡เคฌเฅเคฐเฅ‡เคฐเฅ€ เคธเฅ‡ เค…เคชเคฒเฅ‹เคก เค•เคฐเฅ‡เค‚" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "เค›เคตเคฟ เค…เคชเคฒเฅ‹เคก เคนเฅ‹ เคฐเคนเคพ เคนเฅˆ..." msgid "Uploading link thumbnail..." msgstr "เคฒเคฟเค‚เค• เคฅเค‚เคฌเคจเฅ‡เคฒ เค…เคชเคฒเฅ‹เคก เคนเฅ‹ เคฐเคนเคพ เคนเฅˆ..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคก เคนเฅ‹ เคฐเคนเคพ เคนเฅˆ..." @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹" msgid "Video failed to process" msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เคธเค‚เคธเคพเคงเคฟเคค เค•เคฐเคจเฅ‡ เคฎเฅ‡เค‚ เค…เคธเคซเคฒ" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เค—เฅ‡เคฎ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เคจเคนเฅ€เค‚ เคฎเคฟเคฒเคพ" @@ -13653,7 +13674,7 @@ msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เคจเคนเฅ€เค‚ เคฎเคฟเคฒเคพ" msgid "Video settings" msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เคธเฅ‡เคŸเคฟเค‚เค—" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคก เค•เคฟเคฏเคพ เค—เคฏเคพ" @@ -13662,17 +13683,17 @@ msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคก เค•เคฟเคฏเคพ เค—เคฏเคพ" msgid "Video: {0}" msgstr "เคตเฅ€เคกเคฟเคฏเฅ‹: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "{0} เค•เคพ เค…เคตเคคเคพเคฐ เคฆเฅ‡เค–เฅ‡เค‚" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "{0} เค•เคพ เคชเฅเคฐเฅ‹เฅžเคพเค‡เคฒ เคฆเฅ‡เค–เฅ‡เค‚" @@ -13724,13 +13745,13 @@ msgstr "เค…เคงเคฟเค• เคœเคพเคจเค•เคพเคฐเฅ€ เค•เฅ‡ เคฒเคฟเค เคฌเฅเคฒเฅ‰เค— เคช msgid "View debug entry" msgstr "เคกเฅ€เคฌเค— เคชเฅเคฐเคตเคฟเคทเฅเคŸเคฟ เคฆเฅ‡เค–เฅ‡เค‚" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "เคตเคฟเคตเคฐเคฃ เคฆเฅ‡เค–เฅ‡เค‚" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "เคชเฅ‚เคฐเคพ เคฅเฅเคฐเฅ‡เคก เคฆเฅ‡เค–เฅ‡เค‚" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "เค‡เคจ เคฒเฅ‡เคฌเคฒเฅ‹เค‚ เค•เฅ‡ เคฌเคพเคฐเฅ‡ เคฎเฅ‡เค‚ เคœเคพเคจเค•เคพเคฐเฅ€ เคฆเฅ‡เค–เฅ‡เค‚" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "@{0} เคฆเฅเคตเคพเคฐเคพ เคฆเฅ€ เค—เคˆ เคฒเฅ‡เคฌเคฒ เคธเฅ‡เคตเคพ เคฆเฅ‡เค–เฅ‡เค‚" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "เค‡เคธ เฅžเฅ€เคก เค•เฅ‹ เคชเคธเค‚เคฆ เค•เคฐเคจเฅ‡ เคตเคพเคฒเฅ‡ เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เคฆเฅ‡เค–เฅ‡เค‚" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "เค…เคชเคจเฅ‡ เคฎเฅ‰เคกเคฐเฅ‡เคถเคจ เคธเฅ‚เคšเฅ€ เคฆเฅ‡เค–เฅ‡เค‚" msgid "View your muted accounts" msgstr "เค…เคชเคจเฅ‡ เคฎเฅเคฏเฅ‚เคŸ เค•เคฟเค เค—เค เค–เคพเคคเฅ‡ เคฆเฅ‡เค–เฅ‡เค‚" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "เคนเคฎเฅ‡เค‚ เคจเฅ‡เคŸเคตเคฐเฅเค• เคธเคฎเคธเฅเคฏเคพเคเค เคนเฅ‹ เคฐเคนเฅ€ เคนเฅˆเค‚, เคซเคฟเคฐ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเฅ‡เค‚เฅค" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "เคนเคฎเฅ‡เค‚ เค•เฅเคทเคฎเคพ เค•เคฐเฅ‡เค‚, เคชเคฐ เคนเคฎ เค‡เคธ เคธเฅ‚ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "เคนเคฎเฅ‡เค‚ เค•เฅเคทเคฎเคพ เค•เคฐเฅ‡เค‚, เคชเคฐ เคนเคฎ เค…เคญเฅ€ เค†เคชเค•เฅ‡ เคฎเฅเคฏเฅ‚เคŸ เคถเคฌเฅเคฆ เคฒเฅ‹เคก เคจเคนเฅ€เค‚ เค•เคฐ เคธเค•เฅ‡เฅค เค•เฅƒเคชเคฏเคพ เคซเคฟเคฐ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเฅ‡เค‚เฅค" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "เคนเคฎเฅ‡เค‚ เค•เฅเคทเคฎเคพ เค•เคฐเฅ‡เค‚! เค†เคช เคœเคฟเคธ เคชเฅ‹เคธเฅเคŸ เค•เฅ‹ เคœเคตเคพเคฌ เคฆเฅ‡ เคฐเคนเฅ‡ เคนเฅˆเค‚ เค‰เคธเฅ‡ เคฎเคฟเคŸเคพ เคฆเคฟเคฏเคพ เค—เคฏเคพ เคนเฅˆเฅค" @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "เค•เฅเคฏเคพ เคšเคฒ เคฐเคนเคพ เคนเฅˆ?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "เค‰เฅž!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "เคชเฅ‹เคธเฅเคŸ เคฒเคฟเค–เฅ‡เค‚" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "เค…เคชเคจเคพ เคœเคตเคพเคฌ เคฆเฅ‡เค‚" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "เค†เคชเค•เฅ‹ เคตเฅ€เคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคก เค•เคฐเคจเฅ‡ เค•เฅ€ เค…เคจเฅเคฎเคคเคฟ เคจเคนเฅ€เค‚ เคนเฅˆเฅค" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "เค…เคฌ เค†เคช เค…เคชเคจเฅ‡ เคจเค เคชเคพเคธเคตเคฐเฅเคก เค•เฅ‡ เคธเคพเคฅ เคธเคพเค‡เคจ เค‡เคจ เค•เคฐ เคธเค•เคคเฅ‡ เคนเฅˆเค‚เฅค" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "เค†เคช เค‡เคธเฅ‡ เคฌเคพเคฆ เคฎเฅ‡เค‚ เค…เคชเคจเฅ‡ เคธเฅ‡เคŸเคฟเค‚เค— เคฎเฅ‡เค‚ เคฌเคฆเคฒ เคธเค•เคคเฅ‡ เคนเฅˆเค‚เฅค" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "เค†เคช เค…เคธเฅเคฅเคพเคฏเฅ€ เคฐเฅ‚เคช เคธเฅ‡ เคตเฅ€เคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคก เค•เฅ€ เคธเฅ€เคฎเคพ เคคเค• เคชเคนเฅเคเคš เค—เค เคนเฅˆเค‚เฅค เค•เฅƒเคชเคฏเคพ เคฌเคพเคฆ เคฎเฅ‡ เคซเคฟเคฐ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเฅ‡เค‚เฅค" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "เค†เคชเคจเฅ‡ เค…เคญเฅ€ เคคเค• เค•เฅ‹เคˆ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เคจเคนเฅ€เค‚ เคฌเคจเคพเคˆ เคนเฅˆ!" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "เค†เคช เค…เคงเคฟเค•เคคเคฎ เค•เฅ‡เคตเคฒ 3 เฅžเฅ€เคก เคœเฅ‹เฅœ เคธเค•เคคเฅ‡ เคนเฅˆเค‚" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅˆเค• เค‰เคคเฅเคชเคจเฅเคจ เค•เคฐเคจเฅ‡ เค•เฅ‡ เคฒเคฟเค เค†เคชเค•เฅ‹ เค•เคฎ เคธเฅ‡ เค•เคฎ เคธเคพเคค เค…เคจเฅเคฏ เคฒเฅ‹เค—เฅ‹เค‚ เค•เฅ‹ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเคจเคพ เคนเฅ‹เค—เคพเฅค" @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "เค…เคชเคจเคพ เค–เคพเคจเคพ เคฌเคจเคพเคจเฅ‡ เค•เฅ‡ เคฌเคพเคฆ เค†เคช เคธเฅเคเคพเค เค—เค เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚ เค”เคฐ เฅžเฅ€เคก เค•เฅ‹ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเฅ‡เค‚เค—เฅ‡!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "เค…เคชเคจเคพ เค–เคพเคจเคพ เคฌเคจเคพเคจเฅ‡ เค•เฅ‡ เคฌเคพเคฆ เค†เคช เคธเฅเคเคพเค เค—เค เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚ เค•เฅ‹ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเฅ‡เค‚เค—เฅ‡!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "เค†เคช เค…เคชเคจเฅ‡ เฅžเฅ€เคก เค•เฅ‡ เค…เค‚เคค เคคเค• เคชเคนเฅเคเคš เค—เค! เค•เฅเค› เค”เคฐ เค–เคพเคคเฅ‹เค‚ เค•เฅ‹ เคซเคผเฅ‰เคฒเฅ‹ เค•เคฐเฅ‡เค‚!" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "เค†เคช เคตเฅ€เคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคก เค•เคฐเคจเฅ‡ เค•เฅ€ เคฆเฅˆเคจ msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "เค†เคช เคตเฅ€เคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคก เค•เคฐเคจเฅ‡ เค•เฅ€ เคฆเฅˆเคจเคฟเค• เคธเฅ€เคฎเคพ เคคเค• เคชเคนเฅเคเคš เค—เค (เค…เคคเฅเคฏเคงเคฟเค• เคตเฅ€เคกเคฟเคฏเฅ‹)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "เค†เคชเค•เคพ เค–เคพเคคเคพ" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "เค†เคชเค•เคพ เค–เคพเคคเคพ เคตเฅ€เคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคก เค•เคฐเคจเฅ‡ เค•เฅ‡ เคœเคฟเคคเคจเคพ เคชเฅเคฐเคพเคจเคพ เคจเคนเฅ€เค‚ เคนเฅˆเฅค เค•เฅƒเคชเคฏเคพ เคฌเคพเคฆ เคฎเฅ‡ เคซเคฟเคฐ เคชเฅเคฐเคฏเคพเคธ เค•เคฐเฅ‡เค‚เฅค" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "เค†เคชเค•เคพ เคˆเคฎเฅ‡เคฒ เค…เคฎเคพเคจเฅเคฏ เคชเฅเคฐเคคเฅ€เคค เคนเฅ‹ เคฐเคนเคพ เคนเฅˆเฅค" @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "เค†เคชเค•เฅ‡ เคชเฅเคฐเฅ‹เฅžเคพเค‡เคฒ, เคชเฅ‹เคธเฅเคŸ, เฅžเฅ€เคก เค”เคฐ เคธเฅ‚เคšเคฟเคฏเคพเค เค…เคจเฅเคฏ Bluesky เค‰เคชเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเค“เค‚ เค•เฅ‹ เค”เคฐ เคจเคนเฅ€เค‚ เคฆเคฟเค–เฅ‡เค‚เค—เฅ‡เฅค เค†เคช เคฒเฅ‰เค— เค‡เคจ เค•เคฐเค•เฅ‡ เค…เคชเคจเฅ‡ เค–เคพเคคเฅ‡ เค•เฅ‹ เคซเคฟเคฐ เคธเฅ‡ เคธเค•เฅเคฐเคฟเคฏ เค•เคฐ เคธเค•เคคเฅ‡ เคนเฅˆเค‚เฅค" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/hu/messages.po b/src/locale/locales/hu/messages.po index e70caf2455..7e8a7c8082 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "{interestsDisplayName} kategรณria (aktรญv)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(letiltott szemรฉly รผzenete elrejtve)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(beรกgyazott tartalom)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(tรถrรถlt รผzenet)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(รฉrvรฉnytelen meghรญvรณ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(a csatlakozรกsod elล‘tti รผzenet)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# รณrรกja} other {# รณrรกja}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, other {#}} feljegyzรฉst alkalmaztak a bejegyzรฉsedre" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, other {#}} feljegyzรฉs" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# kedvelรฉs} other {# kedvelรฉs}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {# tag}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {#} other {#}} รบj csatlakozรกsi kรฉrelem" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, other {#}} szemรฉly reagรกlt โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (fiรณk)" @@ -251,36 +252,13 @@ msgstr "{0} fel lett vรฉve a csoportba" msgid "{0} and {1} added to chat" msgstr "{0} รฉs {1} fel lett vรฉve a csoportba" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} รฉs {1} kedveli ezt a bejegyzรฉst" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} รฉs {others, plural, one {{1} tovรกbbi} other {{2} tovรกbbi}} szemรฉly kedveli ezt a bejegyzรฉst" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} รฉs {othersLabel} kedveli ezt a bejegyzรฉst" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} kรถvetett" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} letiltott Tรฉged" @@ -324,14 +302,6 @@ msgstr "{0} kilรฉpett" msgid "{0} left the group" msgstr "{0} elhagyta a csoportot" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} kedveli ezt a bejegyzรฉst" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "50/{0}" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} {1} emojival reagรกlt" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} รฉs {memberCount, plural, other {#}} tovรกbbi szemรฉly fel lett vรฉve a csoportba" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1} รฉs {others, plural, one {{2} tovรกbbi} other {{3} tovรกbbi}} szemรฉly kedveli ezt a bejegyzรฉst" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1} รฉs {othersLabel} kedveli ezt a bejegyzรฉst" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} hitelesรญtett Tรฉged" msgid "{following} following" msgstr "{following} kรถvetett" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} bejegyzรฉs" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} nem vehetล‘ fel a csoportba" @@ -698,7 +660,7 @@ msgstr "{handle} nem vehetล‘ fel a csoportba" msgid "{handle} can't be messaged" msgstr "{handle} jelenleg nem fogad รผzeneteket" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "{handle} jelenleg nem fogad รผzeneteket" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# olvasatlan รฉrtesรญtรฉs} other {# olv msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {# nรฉvjegyet talรกltunk}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} tovรกbbi} other {{1} tovรกbbi}} szemรฉly" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} {timeAgoString} csatlakozott a Blueskyhoz" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} {timeAgoString} csatlakozott a Blueskyhoz egy kezdล‘csomag igรฉnybevรฉtelรฉvel" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, other {#}} karakter maradt" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} vรกlaszolt" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} vรกlaszolt neki: {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} vรกlaszolt Neked" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, other {# felkรฉrรฉs}}" msgid "{requestCount}+ requests" msgstr "Tรถbb, mint {requestCount} kรฉrelem" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} รณrรกja" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} egy megbรญzhatรณ hitelesรญtล‘" @@ -842,13 +795,13 @@ msgstr "{userName} hitelesรญtรฉsei" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {kรถvetett} other {kรถvetett}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {idรฉzรฉs}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {megosztรกs}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, other {mentรฉs}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} kedvelรฉs" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> vett fel Tรฉged" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Jelentkezz be<1> vagy <2>regisztrรกlj<3>, <4>ha szeretnรฉl a Blueskyon hรญreket, sport- รฉs politikai bejegyzรฉseket, vagy bรกrmi mรกst keresni!" @@ -971,7 +924,7 @@ msgstr "30 napig" msgid "7 days" msgstr "7 napig" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "A Bluesky nรฉhรกny hรญrfolyamรกt รกbrรกzolรณ illusztrรกciรณ. Az alรกbbi hรญrfolyamok vannak megjelenรญtve: News, Booksky, Game Dev, Blacksky รฉs Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Hรกlรณzati hiba tรถrtรฉnt. Ellenล‘rizd az internetkapcsolatot" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "รšj kรณd elkรผldve" msgid "A new form of verification" msgstr "A hitelesรญtรฉs egy รบj formรกja" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Vรกlasz egy olyan รผzenetre, amely a csatlakozรกsod elล‘ttrล‘l szรกrmazik" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "A bejegyzรฉsรญrรณ felรผletet รกbrรกzolรณ kรฉpernyล‘kรฉp, amelyen egy รบj, โ€žPiszkozatokโ€ feliratรบ gomb talรกlhatรณ, szivรกrvรกnyos tลฑzijรกtรฉkok mellett. A szรถvegmezล‘ben โ€“ magyarra fordรญtva โ€“ a kรถvetkezล‘ szรถveg olvashatรณ: โ€žHallottรกtok mรกr? A Blueskyon mostantรณl piszkozatokat is lehet menteni!!!โ€." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Az egyik cรญmzettet nem kรถveti a feladรณ." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Kรฉrelem elkรผldve. Az elfogadรกst csoport tulajdonosa fogja bรญrรกlni." msgid "Accessibility" msgstr "Akadรกlymentesรญtรฉs" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Akadรกlymentesรญtรฉs" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Elnรฉmรญtott fiรณk (lista รกltal)" msgid "Account options" msgstr "Fiรณklehetล‘sรฉgek" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Fiรณk levรฉve a listรกrรณl" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Mรกsokat hitelesรญteni csak a <0><1/> recรฉs pipรกval rendelkezล‘ fiรณkok kรฉpesek. Ezeket a megbรญzhatรณ hitelesรญtล‘ket a Bluesky jelรถli ki." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Mรกsok tevรฉkenysรฉgei" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Tevรฉkenysรฉgรฉrtesรญtรฉsek" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Helyettesรญtล‘ szรถveg hozzรกadรกsa (nem kรถtelezล‘)" msgid "Add another account" msgstr "Fiรณk felvรฉtele a listรกra" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Vรกlaszlรกnc folytatรกsa" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Vรกlaszlรกnc bล‘vรญtรฉse" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "รšj szลฑrล‘ hozzรกadรกsa" @@ -1253,7 +1213,7 @@ msgstr "Automatizรกlรกsi feljegyzรฉs alkalmazรกsa" msgid "Add emoji reaction" msgstr "Emoji-reakciรณ hozzรกfลฑzรฉse" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Szลฑrล‘ hozzรกadรกsa" @@ -1338,7 +1298,7 @@ msgstr "Add hozzรก ezt a hรญrfolyamot a gyลฑjtemรฉnyedhez!" msgid "Add to lists" msgstr "Felvรฉtel listรกra" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Bejegyzรฉs mentรฉse" @@ -1400,7 +1360,7 @@ msgstr "Pornรณ" msgid "Adult content" msgstr "Felnล‘tt tartalom" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "janos@pelda.hu" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Mind" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Mostantรณl minden megtalรกlt ismerล‘sรถdet kรถveted!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Minden nyelv" @@ -1491,11 +1447,6 @@ msgstr "Jelenleg bรกrmilyen nyelv megjelenhet a hรญrfolyamaidban." msgid "All of these words" msgstr "Kulcsszavak" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "Nincs szลฑrรฉs" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Itt egy helyen megtalรกlod az รถsszes elmentett hรญrfolyamot." @@ -1560,7 +1511,7 @@ msgstr "Megengedi a szemรฉlyes รผzenetekhez valรณ hozzรกfรฉrรฉst" msgid "Already have a code?" msgstr "Mรกr van kรณdod?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Mรกr van fiรณkod?" @@ -1614,7 +1565,7 @@ msgstr "Kรผldtรผnk egy e-mailt a(z) {0} cรญmre. Ez a levรฉl egy ellenล‘rzล‘kรณdo msgid "An error has occurred" msgstr "Hiba tรถrtรฉnt" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Hiba tรถrtรฉnt" @@ -1631,7 +1582,7 @@ msgstr "Hiba tรถrtรฉnt a javasolt fiรณkok lekรฉrรฉse kรถzben." msgid "An error occurred while fetching the feed." msgstr "A hรญrfolyam lekรฉrdezรฉse meghiรบsult." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "A kezdล‘csomag lรฉtrehozรกsa meghiรบsult. Szeretnรฉd รบjra megprรณbรกlni?" @@ -1640,11 +1591,11 @@ msgstr "A kezdล‘csomag lรฉtrehozรกsa meghiรบsult. Szeretnรฉd รบjra megprรณbรกlni msgid "An error occurred while hiding suggestion. {0}" msgstr "Hiba tรถrtรฉnt a javaslat elrejtรฉse kรถzben. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "A videรณ betรถltรฉse meghiรบsult. Prรณbรกld รบjra kรฉsล‘bb." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "A videรณ betรถltรฉse meghiรบsult. Prรณbรกld รบjra." @@ -1684,7 +1635,7 @@ msgstr "Hiba tรถrtรฉnt. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Egy telefonkรถnyvbล‘l a Bluesky alkalmazรกsba รกramlรณ profilkรฉpeket รกbrรกzolรณ kรฉp" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Illusztrรกciรณ, amely szรกmos Bluesky-bejegyzรฉst รกbrรกzol megosztรกsi-, kedvelรฉsi- รฉs hozzรกszรณlรกsi ikonok kรถzรถtt" @@ -1705,17 +1656,15 @@ msgstr "Meghรญvรณval bรกrki csatlakozhat anรฉlkรผl, hogy kรฉzileg hozzรก kelljen msgid "An issue not included in these options" msgstr "Olyan problรฉma, amit nem lehet a tรถbbi kategรณriรกba sorolni" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Hiba tรถrtรฉnt a csoportbeszรฉlgetรฉs lรฉtrehozรกsa kรถzben. Prรณbรกld รบjra." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Hiba tรถrtรฉnt a csevegรฉs indรญtรกsa kรถzben. Prรณbรกld รบjra." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "A csevegรฉs megnyitรกsa meghiรบsult" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "Hiba tรถrtรฉnt a csoportbeszรฉlgetรฉs lรฉtrehozรกsa kรถzben. Prรณbรกld รบjra." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "Bรกrmikor" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Bรกrki" @@ -1802,7 +1749,7 @@ msgstr "Bรกrmelyik kรถvetล‘tล‘l" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "A jelenlegi meghรญvรณ รฉrvรฉnyรฉt veszti รฉs a jรถvล‘ben mรกr nem hasznรกlhatjรกk a csatlakozรกshoz. รšj meghรญvรณt bรกrmikor lรฉtrehozhatsz." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Egy alkalmazรกsjelszรณnak legalรกbb 4 karakter hosszรบnak kell lennie" msgid "App passwords" msgstr "Alkalmazรกsjelszรณk" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Alkalmazรกsjelszรณk" @@ -1891,8 +1838,8 @@ msgstr "Dรถntรฉs fellebbezรฉse" msgid "Appeal this label" msgstr "Feljegyzรฉs fellebbezรฉse" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Lekรฉrรฉses kรฉrelem alkalmazรกsa" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archivรกlรกs dรกtuma: {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Archivรกlt bejegyzรฉs" @@ -1926,19 +1873,19 @@ msgstr "Egรฉszen biztos vagy benne?" #. placeholder {1}: link(languages[1]) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:100 msgid "Are you searching for posts in {0} or {1}?" -msgstr "" +msgstr "Szeretnรฉd a talรกlatokat {0} vagy {1} nyelvre szลฑrni?" #. placeholder {0}: link(languages[0]) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:95 msgid "Are you searching for posts in {0}?" -msgstr "" +msgstr "Szeretnรฉd a talรกlatokat {0} nyelvre szลฑrni?" #. List formatting: {0}, {1}, or {2} #. placeholder {0}: head.map(lang => ( {link(lang)},{' '} )) #. placeholder {1}: link(last) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:110 msgid "Are you searching for posts in {0}or {1}?" -msgstr "" +msgstr "Szeretnรฉd a talรกlatokat {0}vagy {1} nyelvre szลฑrni?" #. placeholder {0}: appPassword.name #: src/screens/Settings/AppPasswords.tsx:210 @@ -1980,7 +1927,7 @@ msgstr "Biztosan el akarod tรกvolรญtani ezt a hรญrfolyamgyลฑjtemรฉnyedbล‘l?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Biztosan vissza akarod vonni a(z) โ€ž{0}โ€ csoportbeszรฉlgetรฉshez intรฉzett csatlakozรกsi kรฉrelmedet?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Biztosan el akarod vetni ezt a bejegyzรฉst?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Sarki Fรฉny" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "Szerzล‘" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Automatikus fiรณk" @@ -2033,7 +1985,7 @@ msgstr "Automatikus" msgid "Automation label" msgstr "Automatizรกlรกsi feljegyzรฉs" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatizรกlรกsi feljegyzรฉs" @@ -2050,12 +2002,16 @@ msgstr "Videรณk รฉs GIF-ek automatikus lejรกtszรกsa" msgid "Available" msgstr "Elรฉrhetล‘" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "Profilkรฉp lรฉtrehozรกsa" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "A bejegyzรฉs- vagy vรกlaszรญrรกs elล‘tt ellenล‘riznรผnk kell az e-mail-cรญmedet." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "A kezdล‘csomag lรฉtrehozรกsa elล‘tt ellenล‘riznรผnk kell az e-mail-cรญmedet." @@ -2135,10 +2091,10 @@ msgstr "A feliratkozรกs elล‘tt vissza kell igazolnod az e-mail-cรญmedet." #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "Az รฉletkor-igazolรกsi folyamat megkezdรฉsรฉhez tรถltsd ki az alรกbbi me msgid "Beta Feature" msgstr "Kรญsรฉrleti funkciรณ" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "Kรญsรฉrleti funkciรณk" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Kรญsรฉrleti funkciรณk bekapcsolva" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "Szรผletรฉsi dรกum" msgid "Birthday" msgstr "Szรผletรฉsnap" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Letiltva" msgid "Blocked accounts" msgstr "Letiltott fiรณkok" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Letiltott fiรณkok" @@ -2282,7 +2244,7 @@ msgstr "Az รltalad letiltott fiรณkok nem kรฉpesek vรกlaszolni a bejegyzรฉseidre msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Az รltalad letiltott fiรณkok nem kรฉpesek vรกlaszolni a bejegyzรฉseidre, megemlรญteni Tรฉged vagy bรกrmilyen egyรฉb mรณdon kapcsolatba lรฉpni Veled. A letiltott fiรณkok bejegyzรฉseit nem fogod lรกtni รฉs ez fordรญtva is รฉrvรฉnyes." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "A feljegyzล‘ letiltรกsa nem akadรกlyozza meg abban, hogy feljegyzรฉseket helyezzen a fiรณkodra." @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "A Bluesky nem tudja megerล‘sรญteni a lรฉtrehozรกs dรกtumรกt." @@ -2330,7 +2293,7 @@ msgstr "A Bluesky egy nyรญlt hรกlรณzat, ahol sajรกt szolgรกltatรณt vรกlaszthatsz msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "A Bluesky egy nyรญlt hรกlรณzat, ahol sajรกt szolgรกltatรณt vรกlaszthatsz. Ha kezdล‘ felhasznรกlรณ vagy, akkor az alapรฉrtelmezett Bluesky Social lehetล‘sรฉget javasoljuk." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "A Bluesky ismerล‘sรถkkel mรฉg jobb!" @@ -2358,7 +2321,7 @@ msgstr "A Bluesky felhasznรกlรกsi feltรฉtelei" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "A Bluesky titkosรญtva tรกrolja a nรฉvjegyeidet. Ha tรถrรถlsz egy nรฉvjegyet, akkor a Bluesky ugyancsak azonnal tรถrli azt." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "A Bluesky egy javasolt felhasznรกlรณcsoportot fog kijelรถlni a hรกlรณzatodon." @@ -2403,20 +2366,20 @@ msgstr "Gyลฑljetek รถssze akรกr 50-en egy csoportbeszรฉlgetรฉsben!" msgid "Browse custom feeds" msgstr "Egyรฉni hรญrfolyamok bรถngรฉszรฉse" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Tovรกbbi fiรณkok bรถngรฉszรฉse" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Tovรกbbi hรญrfolyamokat a Felfedezรฉs oldalon talรกlsz" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Tovรกbbi javaslatok" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Tovรกbbi javaslatokat a Felfedezรฉs oldalon talรกlsz" @@ -2425,24 +2388,25 @@ msgstr "Tovรกbbi javaslatokat a Felfedezรฉs oldalon talรกlsz" msgid "Browse other feeds" msgstr "Tovรกbbi hรญrfolyamok" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "A(z) โ€ž{displayName}โ€ tรฉmakรถrrel kapcsolatos bejegyzรฉsek" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "A(z) โ€ž{displayName}โ€ cรญmkรฉvel ellรกtott bejegyzรฉsek" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "A(z) {displayName} kezdล‘csomag bรถngรฉszรฉse" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "A(z) โ€ž{0}โ€ tรฉmakรถr bรถngรฉszรฉse" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "A(z) โ€ž{displayName}โ€ tรฉmakรถr bรถngรฉszรฉse" @@ -2461,8 +2425,8 @@ msgstr "Gomb a kezdล‘oldali idล‘vonalra ugrรกshoz" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Szerzล‘: {0}" @@ -2473,9 +2437,9 @@ msgstr "Szerzล‘: @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Szerzล‘: <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "A fiรณk lรฉtrehozรกsรกval elfogadod a <0>felhasznรกlรกsi feltรฉteleketTerms of Service." msgstr "A fiรณk lรฉtrehozรกsรกval elfogadod a <0>felhasznรกlรกsi feltรฉteleket." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Sajรกt" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2498,7 @@ msgstr "Kamera-hozzรกfรฉrรฉs szรผksรฉges" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Kamera-hozzรกfรฉrรฉs szรผksรฉges" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "รšjraaktivรกlรกs megszakรญtรกsa รฉs kilรฉpรฉs" msgid "Cancel reply" msgstr "Vรกlaszolรกs megszakรญtรกsa" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Keresรฉs megszakรญtรกsa" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "A lรฉtrehozandรณ lista egy mรกsolat a kezdล‘csomag jelenlegi รกllapotรกrรณl. A kezdล‘csomagban tรถrtรฉnt kรฉsล‘bbi vรกltoztatรกsok nem lesznek automatikusan szinkronizรกlva a listรกra is." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Csevegรฉs elnรฉmรญtva" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "A csevegรฉs nem talรกlhatรณ." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Beรกllรญtรกsok" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "A csoport tulajdonosa nem hagyhatja el azt." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "A cรญmzettet nem kรถveti a feladรณ." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Csevegรฉsi kรฉrelmek" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Csevegรฉsi kรฉrelmek" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Csevegรฉsek" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Csevegรฉs nรฉmรญtรกsa feloldva" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Csevegรฉsek" @@ -2837,7 +2802,7 @@ msgstr "Tartomรกnyhitelesรญtรฉsi mรณdszer" msgid "Choose Feeds" msgstr "Hรญrfolyamok bรถngรฉszรฉse" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Lรฉtrehozรกs automatikusan" @@ -2854,7 +2819,7 @@ msgstr "Szemรฉlyek kivรกlasztรกsa" msgid "Choose post languages" msgstr "Vรกlaszd ki a megjelenรญtendล‘ bejegyzรฉsek nyelvรฉt" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Szรญn hasznรกlata profilkรฉpkรฉnt" @@ -2879,7 +2844,7 @@ msgstr "Vรกlaszd ki, hogy milyen idล‘vonalakat akarsz bรถngรฉszni! A kรถzรถssรฉg msgid "Choose your password" msgstr "Jelszรณ megadรกsa" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Felhasznรกlรณnรฉv megadรกsa" @@ -2966,7 +2931,7 @@ msgstr "A meghรญvรณ megtekintรฉsรฉhez kattints ide" msgid "Click to open tag menu for {0}" msgstr "A(z) {0} cรญmke menรผjรฉnek megnyitรกsa" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "รœzenetkรผldรฉs megkรญsรฉrlรฉse ismรฉt" @@ -3003,7 +2968,7 @@ msgstr "รœzenetkรผldรฉs megkรญsรฉrlรฉse ismรฉt" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "รœzenetkรผldรฉs megkรญsรฉrlรฉse ismรฉt" msgid "Close" msgstr "Bezรกrรกs" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Az elล‘tรฉrben lรฉvล‘ pรกrbeszรฉdablak bezรกrรกsa" @@ -3047,7 +3012,7 @@ msgstr "Reklรกmcsรญk bezรกrรกsa" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Kรฉpnรฉzegetล‘ bezรกrรกsa" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Menรผ bezรกrรกsa" @@ -3090,7 +3055,7 @@ msgstr "A bejรถvล‘ kรฉrelmeket jelzล‘ reklรกmcsรญk bezรกrรกsa" msgid "Close this dialog" msgstr "Pรกrbeszรฉdablak bezรกrรกsa" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Kรถszรถntล‘-pรกrbeszรฉdablak bezรกrรกsa" @@ -3098,7 +3063,7 @@ msgstr "Kรถszรถntล‘-pรกrbeszรฉdablak bezรกrรกsa" msgid "Closes password update alert" msgstr "Jelszรณfrissรญtรฉsi figyelmeztetรฉs bezรกrรกsa" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "A bejegyzรฉsรญrรณ bezรกrรกsa รฉs a piszkozat elvetรฉse" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Szรญnsรฉma" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Szรญnmรณd" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Kรฉpregรฉnyek" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Kรถzรถssรฉgi irรกnyelvek" @@ -3141,7 +3106,7 @@ msgstr "Kรถzรถssรฉgi irรกnyelvek" msgid "Complete onboarding and start using your account" msgstr "Regisztrรกciรณs varรกzslรณ befejezรฉse รฉs a Bluesky hasznรกlatรกnak megkezdรฉse" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Biztonsรกgi kihรญvรกs" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "รšj bejegyzรฉs รญrรกsa" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Egy bejegyzรฉs legfeljebb {0, plural, other{#}} karakter hosszรบ lehet" @@ -3160,11 +3125,11 @@ msgstr "Egy bejegyzรฉs legfeljebb {0, plural, other{#}} karakter hosszรบ lehet" msgid "Compose reply" msgstr "Vรกlaszรญrรกs" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIF tรถmรถrรญtรฉse folyamatbanโ€ฆ" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Videรณ tรถmรถrรญtรฉse folyamatbanโ€ฆ" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Kapcsolatfelvรฉtel az รผgyfรฉlszolgรกlattal" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Tรกmogatรกs" @@ -3253,7 +3218,7 @@ msgstr "Tartalom รฉs mellรฉkletek" msgid "Content and media" msgstr "Tartalom รฉs mellรฉkletek" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Tartalom รฉs mellรฉkletek" @@ -3265,10 +3230,6 @@ msgstr "Letiltottad a tartalmat" msgid "Content filters" msgstr "Tartalomszลฑrรฉs" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Javasolt tartalmak a hรกlรณzatrรณl." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Tartalmak nyelve" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "ร–nkรกrosรญtรกs รกbrรกzolรกsa vagy nรฉpszerลฑsรญtรฉse" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Tartalomfigyelmeztetรฉs" msgid "Content warnings" msgstr "Tartalomfigyelmeztetรฉsek" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "A kรถrnyezetรฉrzรฉkeny menรผ hรกttere. Kattints ide a menรผ bezรกrรกsรกhoz." @@ -3302,7 +3263,7 @@ msgstr "A kรถrnyezetรฉrzรฉkeny menรผ hรกttere. Kattints ide a menรผ bezรกrรกsรกh #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Vรกlaszlรกnc folytatรกsaโ€ฆ" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Csoportnรฉv megadรกsa" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,15 +3329,15 @@ msgstr "A csoportbeszรฉlgetรฉs nem talรกlhatรณ." msgid "Copied build version to clipboard" msgstr "Buildszรกm a vรกgรณlapra helyezve" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" -msgstr "" +msgstr "Hivatkozรกs vรกgรณlapra helyezve" #: src/components/dms/ChatInvite/Root.tsx:99 #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Alkalmazรกsjelszรณ mรกsolรกsa" msgid "Copy at:// URI" msgstr "โ€žat://โ€ URI mรกsolรกsa" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Szerzล‘ DID-jรฉnek mรกsolรกsa" @@ -3449,10 +3410,10 @@ msgstr "Hivatkozรกs mรกsolรกsa" msgid "Copy link to list" msgstr "Lista hivatkozรกsรกnak mรกsolรกsa" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Bejegyzรฉs hivatkozรกsรกnak mรกsolรกsa" @@ -3470,8 +3431,8 @@ msgstr "Kezdล‘csomag hivatkozรกsรกnak mรกsolรกsa" msgid "Copy message text" msgstr "รœzenet szรถvegรฉnek mรกsolรกsa" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Bejegyzรฉs โ€žat://โ€ URI-jรฉnek mรกsolรกsa" @@ -3490,7 +3451,7 @@ msgstr "TXT-rekord รฉrtรฉkรฉnek mรกsolรกsa" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Jogi irรกnyelvek" @@ -3540,11 +3501,11 @@ msgstr "Az ismerล‘seid kรถvetรฉse meghiรบsult. {0}" msgid "Could not leave chat" msgstr "A csevegรฉs elhagyรกsa meghiรบsult" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "A csevegรฉs elhagyรกsa meghiรบsult." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "A hรญrfolyam betรถltรฉse meghiรบsult" @@ -3562,7 +3523,7 @@ msgstr "A profil betรถltรฉse meghiรบsult" msgid "Could not mute chat" msgstr "A csevegรฉs elnรฉmรญtรกsa meghiรบsult" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "A tag eltรกvolรญtรกsa meghiรบsult." @@ -3600,14 +3561,14 @@ msgstr "Orszรกghรญvรณszรกm" #. Advanced search: Example of a โ€œnone of these wordsโ€ search. Paired with โ€œcats dogsโ€. #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:268 msgid "cows pigs" -msgstr "tehรฉn malac" +msgstr "boci malac" #. Text on button to create a new starter pack #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Lรฉtrehozรกs" @@ -3624,26 +3585,26 @@ msgstr "Lista lรฉtrehozรกsa a kezdล‘csomag alapjรกn" msgid "Create a QR code for a starter pack" msgstr "QR-kรณd lรฉtrehozรกsa egy kezdล‘csomaghoz" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Kezdล‘csomag lรฉtrehozรกsa" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Kezdล‘csomag lรฉtrehozรกsa" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Automatikus lรฉtrehozรกs" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Regisztrรกciรณ" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Regisztrรกciรณ" @@ -3666,15 +3627,15 @@ msgstr "Regisztrรกciรณ" msgid "Create an account without using this starter pack" msgstr "Fiรณk lรฉtrehozรกsa a kezdล‘csomag igรฉnybevรฉtele nรฉlkรผl" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Profilkรฉp lรฉtrehozรกsa" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Mรกsik lรฉtrehozรกsa" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Csoportbeszรฉlgetรฉs lรฉtrehozรกsa" @@ -3743,7 +3704,7 @@ msgstr "Kultรบra" msgid "Current beta features" msgstr "Jelenleg elรฉrhetล‘ kรญsรฉrleti funkciรณk" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Jelenlegi csevegรฉs" @@ -3770,8 +3731,8 @@ msgstr "Kรกros szer- vagy droghasznรกlat" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Lekapcsolt" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Lekapcsolt" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Sรถtรฉt tรฉma" @@ -3790,7 +3751,7 @@ msgstr "Szรผletรฉsi dรกtum" #: src/features/inviteFriends/components/ThemePicker.tsx:28 msgid "Dawn" -msgstr "Alkonyat" +msgstr "Hajnal" #: src/features/inviteFriends/components/ThemePicker.tsx:30 msgid "Day" @@ -3814,7 +3775,7 @@ msgstr "Javasolt nyelv elutasรญtรกsa" msgid "Deepfake adult content" msgstr "Hamisรญtott felnล‘tt tartalom (โ€ždeepfakeโ€)" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Alapรฉrtelmezett" @@ -3894,7 +3855,7 @@ msgstr "Fiรณk tรถrlรฉse" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Bejegyzรฉs tรถrlรฉse" @@ -3988,7 +3949,7 @@ msgstr "Pรกrbeszรฉdablak: A bejegyzรฉs kapcsolatbalรฉpรฉsi jogosultsรกgainak tes msgid "Dialog: Set search filters" msgstr "Keresรฉsszลฑrรฉsi pรกrbeszรฉdablak" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Fรฉlhomรกlyos" @@ -4002,7 +3963,7 @@ msgstr "Letiltรกs" msgid "Disable 2FA" msgstr "Kรฉtlรฉpcsล‘s azonosรญtรกs kikapcsolรกsa" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Feliratok ki" @@ -4045,9 +4006,9 @@ msgstr "Letiltva" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Elvetรฉs" msgid "Discard changes?" msgstr "Vรกltoztatรกsok elvetรฉse" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Piszkozat elvetรฉse" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Bejegyzรฉs elvetรฉse" @@ -4079,6 +4040,10 @@ msgstr "A Germ DM szรฉtkapcsolรกsa" msgid "Discourage apps from showing my account to logged-out users" msgstr "A fiรณk kijelentkezett felhasznรกlรณk elล‘l valรณ elrejtรฉsรฉnek kรฉrelmezรฉse" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Hรญrfolyamok felfedezรฉse" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "A fiรณk kijelentkezett felhasznรกlรณk elล‘l valรณ elrejtรฉsรฉnek kรฉrelm msgid "Discover new custom feeds" msgstr "Egyรฉni hรญrfolyamok felfedezรฉse" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "รšj hรญrfolyamok felfedezรฉse" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "รšj hรญrfolyamok felfedezรฉse" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Bezรกrรกs" @@ -4103,28 +4064,28 @@ msgstr "Bezรกrรกs" msgid "Dismiss banner" msgstr "Reklรกmcsรญk bezรกrรกsa" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Hiba bezรกrรกsa" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Gyorstalpalรณ bezรกrรกsa" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "ร‰rdeklล‘dรฉsi kรถrรถk bezรกrรกsa" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "ร‰lล‘esemรฉnyes reklรกmcsรญk elrejtรฉse" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Szakasz bezรกrรกsa" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Javaslat mellล‘zรฉse" @@ -4142,7 +4103,7 @@ msgstr "A helyettesรญtล‘ szรถvegek jelvรฉnyeinek megnagyobbรญtรกsa" msgid "Display name" msgstr "Megjelenรญtendล‘ nรฉv" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Hagyd el a trollokat รฉs a szenzรกciรณhajhรกszokat! Talรกlj rรก valรณdi emberekre รฉs beszรฉlgess olyan tรฉmรกkrรณl, amelyek igazรกn foglalkoztatnak!" @@ -4205,8 +4166,8 @@ msgstr "Ne aggรณdj! A korรกbbi รผzeneteid รฉs beรกllรญtรกsaid nem vesztek el รฉs #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Ne aggรณdj! A korรกbbi รผzeneteid รฉs beรกllรญtรกsaid nem vesztek el รฉs msgid "Done" msgstr "Kรฉsz" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Koppints kรฉtszer vagy tartsd lenyomva az รผzenetet egy reakciรณ hozzรกfลฑzรฉsรฉhez." -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Koppints kรฉtszer a pรกrbeszรฉdablak bezรกrรกsรกhoz" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Koppints kรฉtszer a kedvelรฉshez" @@ -4328,6 +4289,7 @@ msgstr "ร‰tkezรฉsi zavar" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Kรฉp szerkesztรฉse" msgid "Edit interaction settings" msgstr "Kapcsolatbalรฉpรฉsi beรกllรญtรกsok szerkesztรฉse" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "ร‰rdeklล‘dรฉsi kรถrรถk szerkesztรฉse" @@ -4397,7 +4359,7 @@ msgstr "ร‰lล‘adรกsos รกllapot szerkesztรฉse" msgid "Edit moderation list" msgstr "Moderรกlรณlista szerkesztรฉse" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Hรญrfolyamgyลฑjtemรฉny szerkesztรฉse" @@ -4406,6 +4368,11 @@ msgstr "Hรญrfolyamgyลฑjtemรฉny szerkesztรฉse" msgid "Edit name" msgstr "รtnevezรฉs" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "{0} รฉrtesรญtรฉseinek szerkesztรฉse" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Szemรฉlyek szerkesztรฉse" @@ -4444,7 +4411,7 @@ msgstr "Felhasznรกlรณlista szerkesztรฉse" msgid "Edit who can reply" msgstr "Vรกlaszjogosultsรกgi beรกllรญtรกsok szerkesztรฉse" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Kezdล‘csomag szerkesztรฉse" @@ -4500,8 +4467,8 @@ msgstr "HTML-kรณd beรกgyazรกsa" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Bejegyzรฉs beรกgyazรกsa" @@ -4509,7 +4476,7 @@ msgstr "Bejegyzรฉs beรกgyazรกsa" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Jelenรญtsd meg ezt a bejegyzรฉst a honlapodon! Mรกsold ki az alรกbbi kรณdrรฉszletet รฉs illeszd be a honlapod HTML-kรณdjรกba." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Beรกgyazott videรณlejรกtszรณ" @@ -4533,7 +4500,7 @@ msgstr "Felnล‘tt tartalmak megjelenรญtรฉse" msgid "Enable beta features" msgstr "Kรญsรฉrleti funkciรณk engedรฉlyezรฉse" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Feliratok be" @@ -4550,12 +4517,13 @@ msgstr "Kรผlsล‘ videรณlejรกtszรณk engedรฉlyezรฉse" msgid "Enable media players for" msgstr "Az alรกbbi kรผlsล‘ videรณlejรกtszรณk vannak engedรฉlyezve:" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Egy fiรณk รฉrtesรญtรฉseit a profiljรกn, a <0>harang ikonon <1/> keresztรผl elรฉrhetล‘ menรผben mรณdosรญthatod." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Lekรผldรฉses รฉrtesรญtรฉsek engedรฉlyezรฉse" @@ -4581,7 +4549,7 @@ msgstr "Felkapott videรณk megjelenรญtรฉse a Kรถvetett hรญrfolyamon" msgid "Enabled" msgstr "Engedรฉlyezve" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "A hรญrfolyam vรฉget รฉrt" @@ -4608,7 +4576,7 @@ msgstr "Szรณ vagy cรญmke megadรกsa" msgid "Enter code" msgstr "Kรณd megadรกsa" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Belรฉpรฉs teljes kรฉpernyล‘s mรณdba" @@ -4650,11 +4618,11 @@ msgstr "Add meg a felhasznรกlรณnevedet รฉs a jelszavadat" msgid "Enters full screen" msgstr "Teljes kรฉpernyล‘s mรณd" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Szรณrakozรกs" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Hiba" @@ -4684,7 +4652,7 @@ msgstr "A fรกjl mentรฉse meghiรบsult" msgid "Error receiving captcha response." msgstr "A captcha vรกlaszรกnak fogadรกsa meghiรบsult." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Hiba: {error}" @@ -4696,8 +4664,8 @@ msgstr "Bรกrki vรกlaszolhat" msgid "Everybody can reply to this post." msgstr "Bรกrki vรกlaszolhat erre a bejegyzรฉsre." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Bรกrkitล‘l" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Bรกrkitล‘l" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Minden mรกs" @@ -4738,7 +4706,7 @@ msgstr "Kรถvetett felhasznรกlรณk kihagyรกsa a szลฑrรฉsbล‘l" msgid "Excludes users you follow" msgstr "A kรถvetett felhasznรกlรณk bejegyzรฉseit nem szลฑri" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Kilรฉpรฉs a teljes kรฉpernyล‘s mรณdbรณl" @@ -4755,11 +4723,11 @@ msgstr "Lista kibontรกsa" msgid "Expand or collapse the full post you are replying to" msgstr "A vรกlasz forrรกsakรฉnt szรกrmazรณ bejegyzรฉs kibontรกsa/รถsszecsukรกsa" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Tovรกbbiak" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Bejegyzรฉs teljes szรถvegรฉnek kibontรกsa/รถsszecsukรกsa" @@ -4802,15 +4770,15 @@ msgstr "A nyugalom megzavarรกsรกra alkalmas kรฉpek รฉs videรณk." msgid "Explicit sexual images." msgstr "Szexuรกlis tartalmakat รกbrรกzolรณ kรฉpek." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Felfedezรฉs" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Az alkalmazรกs felfedezรฉse" @@ -4844,7 +4812,7 @@ msgstr "Kรผlsล‘ videรณlejรกtszรณ" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "A kรผlsล‘ videรณlejรกtszรณk beรกgyazรกsรกnak engedรฉlyezรฉse lehetล‘vรฉ teszi mรกs honlapok szรกmรกra az adatgyลฑjtรฉst Rรณlad vagy az eszkรถzรถdrล‘l. A Lejรกtszรกs gomb megnyomรกsรกig semmilyen adatot sem kรผldรผnk vagy kรฉrรผnk le." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Kรผlsล‘ videรณlejรกtszรณk" @@ -4886,7 +4854,7 @@ msgstr "A felhasznรกlรณnรฉv megvรกltoztatรกsa meghiรบsult. Prรณbรกld รบjra." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "A hivatkozรกs mรกsolรกsa meghiรบsult" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "A csoportbeszรฉlgetรฉs elhagyรกsa meghiรบsult" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "A csevegรฉsek betรถltรฉse meghiรบsult" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "A hรญrfolyamok betรถltรฉse meghiรบsult" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "A hรญrfolyambeรกllรญtรกsok betรถltรฉse meghiรบsult" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Az รฉrtesรญtรฉsi beรกllรญtรกsok betรถltรฉse meghiรบsult." @@ -5012,14 +4981,14 @@ msgstr "A betรถltรฉs meghiรบsult." msgid "Failed to load profiles" msgstr "A profilok betรถltรฉse meghiรบsult" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Az ajรกnlott hรญrfolyamok betรถltรฉse meghiรบsult" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "A javasolt szemรฉlyek betรถltรฉse meghiรบsult" @@ -5027,12 +4996,12 @@ msgstr "A javasolt szemรฉlyek betรถltรฉse meghiรบsult" msgid "Failed to lock group chat" msgstr "A csoportbeszรฉlgetรฉs zรกrolรกsa meghiรบsult" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "A csevegรฉsek megjelรถlรฉse olvasottkรฉnt meghiรบsult" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "A kรฉrelem visszavonรกsa meghiรบsult. Prรณbรกld รบjra kรฉsล‘bb." msgid "Failed to resolve location. Please try again." msgstr "A tartรณzkodรกsi hely megรกllapรญtรกsa meghiรบsult. Prรณbรกld รบjra." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "A piszkozat mentรฉse meghiรบsult" @@ -5191,7 +5160,7 @@ msgstr "Hamis vagy automatikusan รผzemeltetett fiรณk" msgid "False information about elections" msgstr "Vรกlasztรกsi dezinformรกciรณ" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Hรญrfolyam" @@ -5212,7 +5181,7 @@ msgstr "Hรญrfolyamszerzล‘" msgid "Feed identifier" msgstr "Hรญrfolyam-azonosรญtรณ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Hรญrfolyammenรผ" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Visszajelzรฉs elkรผldve az รผzemeltetล‘nek" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Hรญrfolyamok frissรญtve" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Tovรกbbi ajรกnlott hรญrfolyamok." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Frissรญtรฉsek keresรฉse" @@ -5273,44 +5238,32 @@ msgstr "Frissรญtรฉsek keresรฉse" msgid "File saved successfully!" msgstr "A fรกjl mentรฉse sikeresen megtรถrtรฉnt" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Szลฑrรฉs szerzล‘ szerint" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Szลฑrรฉs szerzล‘ szerint (jelenleg: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Szลฑrรฉs mellรฉkletek szerint" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Szลฑrรฉs mellรฉkletek szerint (jelenleg: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Kiszลฑrรฉs a hรญrfolyamokbรณl" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Szลฑrรฉs nyelv alapjรกn" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Szลฑrรฉs nyelv alapjรกn (Jelenlegi: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "Szลฑrรฉs mellรฉkletek alapjรกn (jelenleg: {currentLabel})" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" -msgstr "" +msgstr "Talรกlatok szลฑrรฉse {0} nyelvre" #: src/screens/Settings/ActivityPrivacySettings.tsx:106 msgid "Filter who can opt to receive notifications for your activity" msgstr "A sajรกt tevรฉkenysรฉgekrล‘l szรณlรณ รฉrtesรญtรฉsek engedรฉlyeinek megszabรกsa" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "ร‰rtesรญtรฉsek forrรกsainak szลฑrรฉse" @@ -5352,8 +5305,8 @@ msgstr "Kรถvetendล‘ fiรณkok felfedezรฉse" msgid "Find and invite friends" msgstr "Barรกtok meghรญvรกsa" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Ismerล‘sรถk felkutatรกsa" @@ -5387,7 +5340,7 @@ msgstr "Ismerล‘sรถk felkutatรกsa" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "A Bluesky โ€“ a telefonszรกmod hitelesรญtรฉse utรกn โ€“ kรฉpes segรญteni az ismerล‘seid felkutatรกsรกban, a kรฉszรผlรฉkeden รฉs az adatbรกzisunkban talรกlhatรณ nรฉvjegyek รถsszehasonlรญtรกsรกval. A folyamat vรฉgรฉn Te dรถntheted el, hogy kiket kรญvรกnsz bejelรถlni. <0>Tovรกbbi informรกciรณ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Talรกlj rรก a Veled egyรผttรฉrzล‘ emberekre!" @@ -5429,7 +5382,7 @@ msgstr "Fรณkuszรกlรกs a keresล‘mezล‘re" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "{0} kรถvetรฉse" msgid "Follow {displayName}" msgstr "{displayName} kรถvetรฉse" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle} kรถvetรฉse" @@ -5453,11 +5406,11 @@ msgstr "{handle} kรถvetรฉse" msgid "Follow 10 accounts" msgstr "Kรถvess 10 fiรณkot!" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Kezdetnek kรถvess 10 szemรฉlyt!" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Kรถvess 7 fiรณkot!" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Csak kรถvetล‘k csatlakozhatnak" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "@{0} รltalad ismert kรถvetล‘i" @@ -5544,7 +5497,7 @@ msgstr "Ismert kรถvetล‘k" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Mostantรณl kรถveted: {0}" msgid "Following {displayName}" msgstr "Mostantรณl kรถveted: {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Mostantรณl kรถveted: {handle}" @@ -5578,21 +5531,21 @@ msgstr "Mostantรณl kรถveted: {handle}" msgid "Following feed preferences" msgstr "Kรถvetett hรญrfolyam" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Kรถvetett hรญrfolyam" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Kรถvet Tรฉged" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Betลฑtรญpus" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Betลฑmรฉret" @@ -5612,13 +5565,13 @@ msgstr "Biztonsรกgi okokbรณl egy ellenล‘rzล‘kรณdot fogunk kรผldeni a(z) <0>{curr msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Biztonsรกgi okokbรณl ezt tรถbbรฉ nem tekintheted meg. Ha elveszted ezt a jelszรณt, akkor รบjat kell lรฉtrehoznod." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "A legjobb รฉlmรฉny รฉrdekรฉben a tรฉmabetลฑtรญpus hasznรกlatรกt javasoljuk." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Javasolt" @@ -5628,7 +5581,7 @@ msgstr "Javasolt" msgid "Forever" msgstr "ร–rรถkkรฉ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Szลฑrd ki a zajt!" @@ -5647,14 +5600,14 @@ msgstr "Elfelejtett jelszรณ" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Nรฉgy szรถvegbuborรฉk, amelyek egy csoportbeszรฉlgetรฉst szimbolizรกlnak. Elsล‘ รผzenet: โ€žHallottรกtok? A Blueskyon mรกr csoportbeszรฉlgetรฉsek is vannak!โ€ Mรกsodik รผzenet: โ€žazta, na ne mondd!โ€ Harmadik รผzenet: โ€žNahรกt! 50-en is รถsszejรถhetรผnk!โ€ Negyedik รผzenet: โ€žMรฉg meghรญvรณkat is kรผldhetรผnk!โ€" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Szabadรญtsd fel a hรญrfolyamodat!" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" -msgstr "Forrรกs" +msgstr "Szerzล‘" #: src/screens/Hashtag.tsx:123 msgid "From {sanitizedAuthor}" @@ -5672,9 +5625,9 @@ msgstr "A(z) <0/> hรญrfolyambรณl" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:30 msgid "From these people" -msgstr "Az alรกbbi szemรฉlyektล‘l" +msgstr "az alรกbbi szemรฉlyek รกltal kรถzzรฉtett bejegyzรฉsek" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Kezdล‘csomag lรฉtrehozรกsa" @@ -5718,39 +5671,39 @@ msgstr "Korai hozzรกfรฉrรฉst szerezhetsz bizonyos prรณba alatt รกllรณ รบjabb fun msgid "Get help" msgstr "Sรบgรณ" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "ร‰rtesรญtรฉs, ha valaki regisztrรกl a kezdล‘csomagoddal, megvรกltozik a hitelesรญtรฉsi รกllapotod vagy mรกs egyรฉb esemรฉny tรถrtรฉnik." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "ร‰rtesรญtรฉs, ha valaki kรถvetni kezd Tรฉged." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "ร‰rtesรญtรฉs, ha valaki kedveli az egyik bejegyzรฉsedet." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "ร‰rtesรญtรฉs, ha valaki kedveli az egyik megosztott bejegyzรฉsedet." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "ร‰rtesรญtรฉs, ha valaki megemlรญt Tรฉged." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "ร‰rtesรญtรฉs, ha valaki idรฉzi az egyik bejegyzรฉsedet." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "ร‰rtesรญtรฉs, ha valaki vรกlaszol az egyik bejegyzรฉsedre." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "ร‰rtesรญtรฉs, ha valaki megosztja az egyik bejegyzรฉsedet." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "ร‰rtesรญtรฉs, ha valaki megosztja az egyik megosztott bejegyzรฉsedet." @@ -5762,15 +5715,15 @@ msgstr "ร‰rtesรญtรฉs, ha vannak bejรถvล‘ csevegรฉsi kรฉrelmeid." msgid "Get notifications when people send you messages." msgstr "ร‰rtesรญtรฉs, ha vannak bejรถvล‘ รผzeneteid." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "ร‰rtesรญtรฉs, ha egy kรถvetett bejegyzรฉssel kapcsolatban tรถrtรฉnik valami." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Feliratkozรกs รฉrtesรญtรฉsekre" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "ร‰rtesรผlhetsz kรญvรกnt fiรณkok รบj tevรฉkenysรฉgeirล‘l." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Feliratkozรกs {name} รบj bejegyzรฉseire" @@ -5799,11 +5752,11 @@ msgstr "Rendben" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF sikeresen feltรถltve" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Adj arcot a profilodnak!" @@ -5813,20 +5766,20 @@ msgstr "Az erล‘szak nรฉpszerลฑsรญtรฉse" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "ร‰lล‘ adรกs indรญtรกsa az alรกbbi idล‘intervallumra:" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "{0} profiljรกnak megnyitรกsa" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Csoportbeszรฉlgetรฉs รกtnevezve" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Csoportbeszรฉlgetรฉs beรกllรญtรกsai" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Egy csoportbeszรฉlgetรฉsnek legfeljebb {0, plural, one {#} other {#}} tagja lehet." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "A csoport zรกrolva van" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Csoportnรฉv" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "A csoportbeszรฉlgetรฉs cรญme tรบl hosszรบ. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {Korlรกt: # karakter.}}" @@ -6077,7 +6031,7 @@ msgstr "Veszรฉlyes vagy kรกros tevรฉkenysรฉgek" msgid "Harming or endangering minors" msgstr "Kiskorรบak veszรฉlyeztetรฉse vagy kรกrosรญtรกsa" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Cรญmke" @@ -6098,7 +6052,7 @@ msgstr "Ha mรกr rendelkezel kรณddal, <0>kattints ide." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Tรฉvesen รกllapรญtottuk meg a tartรณzkodรกsi helyedet? <0>Koppints ide a GPS-es ellenล‘rzรฉshez." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Problรฉmรกba รผtkรถztรฉl?" @@ -6114,7 +6068,7 @@ msgstr "A visszaรฉlรฉsek elkerรผlรฉse รฉrdekรฉben a Bluesky 7 napig megtartja, m msgid "Help" msgstr "Sรบgรณ" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Segรญts mรกsoknak megbizonyosodni arrรณl, hogy valรณdi szemรฉly vagy egy profilkรฉp lรฉtrehozรกsรกval!" @@ -6135,12 +6089,12 @@ msgstr "Szervusz!" msgid "Hi there!" msgstr "รœdvรถzletem!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Rejtett tartalom" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Elrejtve a moderรกlรกsi beรกllรญtรกsok alapjรกn." @@ -6148,9 +6102,10 @@ msgstr "Elrejtve a moderรกlรกsi beรกllรญtรกsok alapjรกn." msgid "Hidden list" msgstr "Rejtett lista" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Rejtett lista" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Elrejtรฉs" @@ -6198,7 +6154,7 @@ msgstr "Vรกlasz elrejtรฉse mindenkinek" msgid "Hide reply for me" msgstr "Vรกlasz elrejtรฉse helyileg" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Kรกrtya elrejtรฉse" @@ -6218,16 +6174,18 @@ msgstr "Vรกlasz elrejtรฉse" msgid "Hide translation" msgstr "Fordรญtรกs elrejtรฉse" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Felkapott tรฉmakรถrรถk elrejtรฉse" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Felkapott tรฉmakรถrรถk elrejtรฉse" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Felkapott videรณk elrejtรฉse" @@ -6240,7 +6198,7 @@ msgstr "Felhasznรกlรณlista elrejtรฉse" msgid "Hide verification badges" msgstr "Hitelesรญtรฉsi jelvรฉnyek elrejtรฉse" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Tartalom elrejtรฉse" @@ -6293,8 +6251,8 @@ msgstr "Hmmmmโ€ฆ Ez a moderรกlรกsi szolgรกltatรกs nem talรกlhatรณ." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Egy pillanat! A videรณfeltรถltรฉs lehetล‘sรฉge mรฉg nem mindenki szรกmรกra elรฉrhetล‘. Prรณbรกld รบjra kรฉsล‘bb." -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "Tรกrhelyszolgรกltatรณ: {0}" msgid "Hosting provider: Bluesky" msgstr "Tรกrhelyszolgรกltatรณ: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Felkapott" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "A folyamat leรญrรกsa:" @@ -6409,6 +6363,7 @@ msgstr "Ha frissรญted az e-mail-cรญmedet, akkor a jelenleg beรกllรญtott kรฉtlรฉp msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "A jelszรณ megvรกltoztatรกsรกhoz egy ellenล‘rzล‘kรณdot fogunk kรผldeni, hogy igazolhasd a kilรฉted." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "A sajรกt fiรณkodra vonatkozรณ รฉrtesรญtรฉsi beรกllรญtรกsokat a <0>Beรกllรญtรกsok menรผ Adatvรฉdelem รฉs biztonsรกg almenรผjรฉben szabhatod szemรฉlyre." @@ -6548,7 +6503,7 @@ msgstr "Alkalmazรกson belรผli, lekรผldรฉses, mindenkitล‘l" msgid "In-app, push, people you follow" msgstr "Alkalmazรกson belรผli, lekรผldรฉses, az รltalad kรถvetett szemรฉlyektล‘l" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Nincsenek beรฉrkezล‘ รผzenetek" @@ -6564,16 +6519,15 @@ msgstr "Elfogytak a beรฉrkezล‘ รผzenetek." #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" -msgstr "Bejegyzรฉstรญpusok" +msgstr "Megtartรกs" #. placeholder {0}: filter.mode === 'exclude' ? l({message: 'Exclude', comment: 'Advanced search filter'}) : l({message: 'Include', comment: 'Advanced search filter'}) #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:44 msgid "Include or exclude matching posts (currently: {0})" msgstr "Talรกlatok megtartรกsa vagy eldobรกsa a vรฉgleges listรกbรณl (jelenleg: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Bejegyzรฉsek/vรกlaszok megtartรกsa (jelenleg: {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "Az alรกbbi dรกtum utรกn kรถzzรฉtett bejegyzรฉsek megtartรกsa" msgid "Include posts made until this date" msgstr "Az alรกbbi dรกtumig kรถzzรฉtett bejegyzรฉsek megtartรกsa" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Az alรกbbi talรกlatok megtartรกsa" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "ร‰rvรฉnytelen felhasznรกlรณnรฉv vagy jelszรณ" @@ -6683,7 +6633,7 @@ msgstr "{name} meghรญvรกsa a Blueskyra" msgid "Invite code" msgstr "Meghรญvรณkรณd" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "ร‰rvรฉnytelen meghรญvรณkรณd. Ellenล‘rizd a helyessรฉgรฉt, majd prรณbรกld รบjra." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Mรฉg csak Te szerepelsz a kezdล‘csomagban. A fenti keresล‘vel mรกsokat is hozzรกadhatsz." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "รllรกsazonosรญtรณ: {0}" @@ -6816,8 +6766,8 @@ msgstr "Csatlakozz hozzรกnk!" msgid "Journalism" msgstr "Sajtรณ" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Szerkesztรฉs folytatรกsa" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "A KWS honlapja" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Feljegyezte a(z) {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Feljegyezte a szerzล‘." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Feljegyzรฉsek" @@ -6852,7 +6802,7 @@ msgstr "Feljegyzรฉsek alkalmazva" msgid "Labels applied to this post" msgstr "A bejegyzรฉsre alkalmazott feljegyzรฉsek" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "A feljegyzรฉsek felhasznรกlรณkra รฉs tartalmakra elhelyezett kรผlรถnleges cรญmkรฉk. A hรกlรณzat ezeket hasznรกlja a kรผlรถnbรถzล‘ tartalmak kategรณriรกkba sorolรกsรกra, elrejtรฉsรฉre รฉs a megtekintรฉs elล‘tti figyelmeztetรฉsek megjelenรญtรฉsรฉre." @@ -6864,7 +6814,7 @@ msgstr "A fiรณkodra helyezett feljegyzรฉsek" msgid "Language" msgstr "Nyelv" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Nyelvi beรกllรญtรกsok" @@ -6874,7 +6824,7 @@ msgstr "Nyelvi beรกllรญtรกsok" msgid "Languages" msgstr "Nyelvek" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Nagyobb" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Legutรณbbi kรฉrelem: รฉpp most" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Legรบjabb" @@ -6904,14 +6854,14 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Tovรกbbi informรกciรณ" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Tovรกbbi informรกciรณ" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." -msgstr "" +msgstr "<0>Tovรกbbi informรกciรณ a rรฉszletes keresล‘rล‘l." #: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 msgid "Learn more about age assurance" @@ -6937,8 +6887,8 @@ msgstr "Tovรกbbi informรกciรณ a nรฉvjegyimportรกlรกsrรณl" msgid "Learn more about self hosting your PDS." msgstr "Tovรกbbi informรกciรณ a szemรฉlyes adatkiszolgรกlรณk รผzemeltetรฉsรฉrล‘l." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Tovรกbbi informรกciรณ a tartalommoderรกlรกsrรณl" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "A vรกltoztatรกsokrรณl รฉs a visszajelzรฉs mikรฉntjรฉrล‘l a blogbejegyzรฉsรผnkben olvashatsz (angol nyelven)." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Tovรกbbi informรกciรณ errล‘l a figyelmeztetรฉsrล‘l" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Tovรกbbi informรกciรณ a <0>fiรณkbeรกllรญtรกsokban." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Tovรกbbi informรกciรณ." @@ -6993,8 +6943,8 @@ msgstr "Elhagyรกs" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "A Bluesky elhagyรกsa" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Ha elhagyod ezt a csoportbeszรฉlgetรฉst, akkor az zรกrolva marad รฉs nem leszel kรฉpes รบjra csatlakozni." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Csoportbeszรฉlgetรฉs elhagyva." @@ -7042,7 +6992,7 @@ msgstr "Csoportbeszรฉlgetรฉs elhagyva." msgid "left to go." msgstr "maradt." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Fiรณkok vรกlasztรกsa kรฉzileg" @@ -7057,7 +7007,7 @@ msgstr "Gyerรผnk!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Vilรกgos" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Vilรกgos" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Tetszik" @@ -7076,7 +7026,7 @@ msgstr "Tetszik" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Tetszik ({0, plural, one {# kedvelรฉs} other {# kedvelรฉs}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Kedvelj 10 megjegyzรฉst!" @@ -7085,7 +7035,7 @@ msgstr "Kedvelj 10 megjegyzรฉst!" msgid "Like 10 posts to train the Discover feed" msgstr "Kedvelj 10 megjegyzรฉst a Kรถvetett hรญrfolyam idomรญtรกsรกhoz!" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Hรญrfolyam kedvelรฉse" @@ -7093,8 +7043,8 @@ msgstr "Hรญrfolyam kedvelรฉse" msgid "Like this labeler" msgstr "Feljegyzล‘ kedvelรฉse" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Kedvelล‘k" @@ -7111,27 +7061,45 @@ msgstr "Kedvelล‘k" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {#} other {#}} felhasznรกlรณ kedveli" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "{0} kedveli ezt a bejegyzรฉst" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "{0} รฉs {1} kedveli ezt a bejegyzรฉst" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {#} other {#}} felhasznรกlรณ kedveli" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Kedvelรฉsek" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Megosztott bejegyzรฉsek kedvelรฉse" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "A bejegyzรฉst kedvelล‘k" @@ -7144,7 +7112,7 @@ msgstr "Egyszerลฑ" msgid "Link copied to clipboard" msgstr "Vรกgรณlapra helyezve" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "A listรกn szereplล‘ szemรฉlyek nรฉmรญtรกsa feloldva" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "ร‰Lล" msgid "Live event happening now: {0}" msgstr "Jelenlegi รฉlล‘ esemรฉny: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "ร‰lล‘ esemรฉny elrejtve" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "ร‰lล‘ esemรฉny ismรฉt megjelenรญtve" @@ -7279,12 +7247,12 @@ msgstr "Az รฉlล‘ adรกsok kรญsรฉrleti fรกzisban vannak" msgid "Live link" msgstr "ร‰lล‘ adรกs hivatkozรกsa" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Tovรกbbiak" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Tovรกbbi javasolt hรญrfolyamok" @@ -7292,8 +7260,8 @@ msgstr "Tovรกbbi javasolt hรญrfolyamok" msgid "Load new notifications" msgstr "รšj รฉrtesรญtรฉsek betรถltรฉse" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "A csoportbeszรฉlgetรฉs zรกrolรกsa" msgid "Locked" msgstr "Zรกrolva" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Naplรณ" @@ -7387,7 +7355,7 @@ msgstr "Szerelmes GIF-ek" msgid "Make adjustments to email settings for your account" msgstr "A fiรณk e-mail-beรกllรญtรกsainak testreszabรกsa" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Automatikus lรฉtrehozรกs" @@ -7418,15 +7386,15 @@ msgstr "Kรฉzi" msgid "Mark all as read" msgstr "ร–sszes megjelรถlรฉse olvasottkรฉnt" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "ร–sszes csevegรฉs megjelรถlรฉse olvasottkรฉnt" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Megjelรถlรฉs olvasottkรฉnt" msgid "Marked all as read" msgstr "ร–sszes รผzenet megjelรถlve olvasottkรฉnt" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Olvasottnak jelรถlve" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Olvasottnak jelรถlve" @@ -7456,8 +7424,12 @@ msgstr "Olvasottnak jelรถlve" msgid "Maybe later" msgstr "Talรกn kรฉsล‘bb" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Te" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Mellรฉkletek" @@ -7475,7 +7447,7 @@ msgstr "A mellรฉkletek egy mรกsik eszkรถzรถn รฉrhetล‘k el" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "A nyugalom megzavarรกsรกra alkalmas vagy felnล‘tt tรฉmรกkat รกbrรกzolรณ kรฉpek." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Tag eltรกvolรญtva a csoportbeszรฉlgetรฉsbล‘l." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "a megemlรญtett felhasznรกlรณk" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Emlรญtรฉsek" @@ -7502,7 +7474,7 @@ msgstr "Emlรญtรฉsek" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:37 msgid "Mentions of these people" -msgstr "Az alรกbbi szemรฉlyeket megemlรญtล‘ bejegyzรฉsek" +msgstr "az alรกbbi szemรฉlyeket megemlรญtล‘ bejegyzรฉsek" #: src/components/Menu/index.tsx:119 msgid "Menu" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "รœzenet tรถrรถlve" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Az รผzenet elkรผldรฉse meghiรบsult." @@ -7563,15 +7535,15 @@ msgstr "Az รผzenet tรบl hosszรบ ({MAX_DM_GRAPHEME_LENGTH}/{graphemeCount})" msgid "Message options" msgstr "รœzenetlehetล‘sรฉgek" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "รœzenetek" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "A mรกsik fรฉl รผzenetei el vannak rejtve, mivel letiltott Tรฉged." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "A mรกsik fรฉl รผzenetei el vannak rejtve, mivel letiltottad ล‘t." @@ -7592,7 +7564,7 @@ msgstr "Fรฉlrevezetล‘ tartalom" msgid "Missing media" msgstr "Hiรกnyzรณ mellรฉklet" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderรกlรกs" @@ -7636,7 +7608,7 @@ msgstr "Moderรกlรณlista frissรญtve" msgid "Moderation lists" msgstr "Moderรกlรณlistรกk" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderรกlรณlistรกk" @@ -7645,7 +7617,7 @@ msgstr "Moderรกlรณlistรกk" msgid "moderation settings" msgstr "moderรกlรกsi beรกllรญtรกsok" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderรกlรกsi รกllapotok" @@ -7786,7 +7758,7 @@ msgstr "Elnรฉmรญtva" msgid "Muted accounts" msgstr "Elnรฉmรญtott fiรณkok" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Elnรฉmรญtott fiรณkok" @@ -7867,7 +7839,6 @@ msgstr "Szerzล‘i jogsรฉrtรฉst, jogi kรถvetelรฉst vagy szabรกlyzatszegรฉst jelent msgid "Nevermind, create a handle for me" msgstr "Mรฉgse โ€“ hozzon lรฉtre egy felhasznรกlรณnevet automatikusan" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "รšj" @@ -7893,11 +7864,11 @@ msgstr "{firstAuthorName} รบj {postsCount, plural, one {bejegyzรฉst} other {beje #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "รšj csevegรฉs" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "รšj funkciรณ" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "รšj kรถvetล‘k" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Csoportbeszรฉlgetรฉs lรฉtrehozรกsa" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Csoportbeszรฉlgetรฉs lรฉtrehozรกsa" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "รšj csoportbeszรฉlgetรฉs az alรกbbi szemรฉlyekkel:" @@ -7966,13 +7937,13 @@ msgstr "รšj lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "รšj csevegรฉsi kรฉrelmek" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "รšj รผzenetek" @@ -7982,12 +7953,12 @@ msgstr "รšj รผzenetek" msgid "New password" msgstr "รšj jelszรณ" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "รšj bejegyzรฉs" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "A legรบjabb vรกlaszok elรถl" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Hรญrek" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Kรถvetkezล‘ kรฉp" msgid "Night" msgstr "ร‰jfรฉl" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Ilyen egy kรถzรถssรฉgi oldal hirdetรฉsek, magรกnรฉletsรฉrtล‘ nyomonkรถvetรฉs รฉs visszarรกngatรกs nรฉlkรผl. A Bluesky tiszteletben tartja az idล‘det รฉs a figyelmedet." @@ -8065,6 +8036,11 @@ msgstr "Ilyen egy kรถzรถssรฉgi oldal hirdetรฉsek, magรกnรฉletsรฉrtล‘ nyomonkรถve msgid "No app passwords yet" msgstr "Mรฉg nem hoztรกl lรฉtre alkalmazรกsjelszavakat" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "Nincs szerzล‘szลฑrรฉs" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "Jelenleg nincsenek elรฉrhetล‘ kรญsรฉrletek." @@ -8098,14 +8074,14 @@ msgstr "Nem jรกr le" msgid "No feeds found. Try searching for something else." msgstr "Nincs talรกlat. Prรณbรกlj megadni egy mรกsik keresรฉsi kifejezรฉst." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Mรฉg nincsenek kรถvetล‘k" #. Empty-state message shown in the GIF picker when a search returns zero results. Placeholder is the userโ€™s search query. #: src/features/gifPicker/components/GifPickerPlaceholder.tsx:25 msgid "No GIFs found for \"{query}\"." -msgstr "A(z) โ€ž{query}โ€ kifejezรฉsre nincs talรกlat." +msgstr "A(z) โ€ž{query}โ€ kifejezรฉsre nincsenek talรกlatok." #. Empty-state message shown when the trending/featured GIF feed returns no results (rare, usually a transient provider issue). #: src/features/gifPicker/components/GifPickerPlaceholder.tsx:36 @@ -8116,9 +8092,15 @@ msgstr "A GIF-ek megjelenรญtรฉse meghiรบsult. Prรณbรกld รบjra kรฉsล‘bb." msgid "No image" msgstr "Nincs elล‘nรฉzet" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "Nincs nyelvszลฑrรฉs" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Mรฉg nincsenek kedvelรฉsek" @@ -8135,7 +8117,12 @@ msgstr "Mรฉg nincsenek listรกk" msgid "No longer following {0}" msgstr "Abbahagytad {0} kรถvetรฉsรฉt" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "Nincs mellรฉkletszลฑrรฉs" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Mรฉg nincsenek mellรฉkletek" @@ -8143,7 +8130,7 @@ msgstr "Mรฉg nincsenek mellรฉkletek" msgid "No messages yet" msgstr "Mรฉg nincsenek รผzenetek" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Vess vรฉget a szemรฉttel teli hรญrfolyamok รถrรถkรถs gรถrgetรฉsรฉnek! Inkรกbb talรกlj olyan tartalmakat, amelyek รฉrted รฉs nem ellened dolgoznak!" @@ -8180,16 +8167,21 @@ msgstr "Ezt a bejegyzรฉst csak a szerzล‘ idรฉzheti." msgid "No one can send messages" msgstr "Jelenleg senki sem kรผldhet รผzeneteket" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "Nincs bejegyzรฉstรญpus-szลฑrรฉs" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Mรฉg nincsenek bejegyzรฉsek" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Mรฉg nincsenek bejegyzรฉsek" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Mรฉg nincsenek idรฉzรฉsek" @@ -8198,11 +8190,7 @@ msgstr "Mรฉg nincsenek idรฉzรฉsek" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Mรฉg nincsenek elล‘zmรฉnyek. Ha kivรกlasztasz egy GIF-et, akkor a jรถvล‘ben itt megtalรกlhatod." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "Vรกlaszok nรฉlkรผli bejegyzรฉsek" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Mรฉg nincsenek vรกlaszok" @@ -8217,42 +8205,42 @@ msgstr "Nincs talรกlat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" -msgstr "Nincs talรกlat" +msgstr "Nincsenek talรกlatok" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." -msgstr "A(z) โ€ž{0}โ€ kifejezรฉsre nincs talรกlat." +msgstr "A(z) โ€ž{0}โ€ kifejezรฉsre nincsenek talรกlatok." #: src/components/Lists.tsx:203 #: src/components/Lists.tsx:218 msgid "No results found" -msgstr "Nincs talรกlat" +msgstr "Nincsenek talรกlatok" #: src/view/screens/Feeds.tsx:466 msgid "No results found for \"{query}\"" -msgstr "A(z) โ€ž{query}โ€ kifejezรฉsre nincs talรกlat" +msgstr "A(z) โ€ž{query}โ€ kifejezรฉsre nincsenek talรกlatok" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." -msgstr "" +msgstr "A jelenlegi szลฑrล‘kkel nincsenek talรกlatok a(z) โ€ž<0>{query}โ€ kifejezรฉsre." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." -msgstr "A(z) โ€ž<0>{query}โ€ kifejezรฉsre nincs talรกlat." +msgstr "A(z) โ€ž<0>{query}โ€ kifejezรฉsre nincsenek talรกlatok." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." -msgstr "" +msgstr "A jelenlegi szลฑrล‘kkel nincsenek talรกlatok a keresett kifejezรฉsre." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." -msgstr "Nincs talรกlat." +msgstr "Nincsenek talรกlatok." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Mรฉg nincsenek kezdล‘csomagok" @@ -8265,7 +8253,7 @@ msgstr "Kรถszรถnรถm, nem" msgid "No translation received from your device." msgstr "Az eszkรถz nem szolgรกlt fordรญtรกssal." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Mรฉg nincsenek videรณs bejegyzรฉsek" @@ -8278,7 +8266,7 @@ msgstr "Senki" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ezt a tartalmat mรฉg senki sem kedvelte. Talรกn Te lehetnรฉl az elsล‘!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ezt a tartalmat mรฉg senki sem idรฉzte. Talรกn Te lehetnรฉl az elsล‘!" @@ -8298,6 +8286,10 @@ msgstr "Intim terรผleteket รกbrรกzolรณ nem szexuรกlis kรฉpek" msgid "Non-sexual Nudity" msgstr "Nemszexuรกlis meztelensรฉg" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Nincs" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Ezen a platformon nem elรฉrhetล‘." msgid "Not followed by anyone youโ€™re following" msgstr "Nincsenek ismert kรถvetล‘k" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Ez a tartalom nem talรกlhatรณ" @@ -8333,7 +8325,7 @@ msgstr "Korlรกtozott lรกthatรณsรกg" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Megjegyzรฉs: A Bluesky egy nyรญlt รฉs nyilvรกnos hรกlรณzat. Ez a beรกllรญtรกs csak a Bluesky alkalmazรกsban รฉs -honlapon korlรกtozza a tartalmaid lรกthatรณsรกgรกt รฉs nem biztos, hogy mรกs alkalmazรกsok is tiszteletben tartjรกk. Lehetsรฉges, hogy mรกs alkalmazรกsokban รฉs honlapokon ugyanรบgy lรกthatรณak maradnak a tartalmaid kijelentkezett felhasznรกlรณk szรกmรกra is." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Megjegyzรฉs: Ez a bejegyzรฉs csak a bejelentkezett felhasznรกlรณk szรกmรกra lรกthatรณ." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Mรฉg semmit sem mentettรฉl" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "ร‰rtesรญtรฉsi beรกllรญtรกsok" @@ -8353,11 +8345,12 @@ msgstr "ร‰rtesรญtรฉsi beรกllรญtรกsok" msgid "Notification sounds" msgstr "ร‰rtesรญtรฉsi hangok" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Jaj, ne!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Rendben" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Regisztrรกciรณs varรกzslรณt alaphelyzetbe รกllรญtva" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Az egyik cรญmzett nem kรญvรกn rรฉszt venni csoportbeszรฉlgetรฉsekben." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Az egyik cรญmzett letiltott Tรฉged, ezรฉrt nem veheted fel vele a kapcsolatot." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Legalรกbb egy GIF-rล‘l hiรกnyzik a helyettesรญtล‘ szรถveg." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Legalรกbb egy kรฉprล‘l hiรกnyzik a helyettesรญtล‘ szรถveg." @@ -8454,11 +8449,11 @@ msgstr "A kivรกlasztott fรกjlok kรถzรผl legalรกbb egy nem tรกmogatott formรกtum msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "A kivรกlasztott fรกjlok kรถzรผl legalรกbb egy tรบl nagy. A korlรกt {VIDEO_MAX_SIZE_MB}ย MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Legalรกbb egy piszkozat tรบl hosszรบ. {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {Korlรกt: # karakter.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Legalรกbb egy videรณrรณl hiรกnyzik a helyettesรญtล‘ szรถveg." @@ -8471,7 +8466,7 @@ msgstr "Csak {0} vรกlaszolhatnak." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "{1, selectordinal, one {Az #} other {A #}} kivรกlasztottbรณl csak az elsล‘ {0} fรฉnykรฉpet lehetett csatolni. A korlรกt {MAX_GALLERY_IMAGES} mellรฉklet." @@ -8507,19 +8502,23 @@ msgstr "Csak a(z) {0} รกltal kรถvetett szemรฉlyek csatlakozhatnak." msgid "Only people the chat owner follows can join" msgstr "Csak a csoportbeszรฉlgetรฉs tulajdonosa รกltal kรถvetett szemรฉlyek csatlakozhatnak" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "Csak bejegyzรฉsek megjelenรญtรฉse" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" -msgstr "Csak a mellรฉkletekkel rendelkezล‘ bejegyzรฉsek megtartรกsa" +msgstr "Csak a mellรฉkletekkel rendelkezล‘ bejegyzรฉsek megjelenรญtรฉse" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:24 msgid "Only posts with videos" -msgstr "Csak a csatolt videรณkkal rendelkezล‘ bejegyzรฉsek megtartรกsa" +msgstr "Csak a videรณs mellรฉkletekkel rendelkezล‘ bejegyzรฉsek megjelenรญtรฉse" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:24 msgid "Only replies" -msgstr "" +msgstr "Csak vรกlaszok megjelenรญtรฉse" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Csak a WebVTT (.vtt) formรกtum tรกmogatott" @@ -8532,19 +8531,19 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Hoppรก! Ez a profil nem lรฉtezik. Prรณbรกlj beolvasni egy mรกsikat." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Hoppรก!" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:66 msgid "Open advanced search options" -msgstr "" +msgstr "Rรฉszletes keresรฉsi beรกllรญtรกsok megnyitรกsa" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Profilkรฉpkรฉszรญtล‘ megnyitรกsa" @@ -8570,21 +8569,22 @@ msgstr "Beszรฉlgetรฉsi beรกllรญtรกsok megnyitรกsa" msgid "Open draft" msgstr "Piszkozat szerkesztรฉse" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Oldalsรณ menรผ megnyitรกsa" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Emojivรกlasztรณ megnyitรกsa" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Hรญrfolyam tulajdonsรกgainak megnyitรกsa" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Hรญrfolyambeรกllรญtรกsok megnyitรกsa" @@ -8627,7 +8627,7 @@ msgstr "Moderรกlรกsi hibakeresรฉsi oldal megnyitรกsa" msgid "Open muted words and tags settings" msgstr "Elnรฉmรญtott szavak รฉs cรญmkรฉk beรกllรญtรกsainak megnyitรกsa" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Csomag megnyitรกsa" @@ -8699,7 +8699,7 @@ msgstr "Hibakeresรฉsi bejegyzรฉs rรฉszleteinek megnyitรกsa" msgid "Opens alt text dialog" msgstr "Helyettesรญtล‘ szรถveget tartalmazรณ ablak megnyitรกsa" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Az eszkรถz kamerรกjรกnak megnyitรกsa" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Regisztrรกciรณs varรกzslรณ indรญtรกsa" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Bejelentkezรฉsi varรกzslรณ megnyitรกsa" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Megvรกltoztattad a jelszavad!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Szรผnet" @@ -8925,12 +8925,12 @@ msgstr "Szรผnet" msgid "Pause GIF" msgstr "GIF szรผneteltetรฉse" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Videรณ szรผneteltetรฉse" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Szemรฉlyek" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "A(z) {ownerName} รกltal kรถvetett szemรฉlyek kรฉrelmezhetik a csatlakozรกst" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "A(z) @{0} รกltal kรถvetett szemรฉlyek" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Az ล‘t kรถvetล‘ szemรฉlyek: @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Kรถvetett szemรฉlyektล‘l" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Az รltalad kรถvetett szemรฉlyek kรฉrelmezhetik a csatlakozรกst" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Az รltalad kรถvetett szemรฉlyek" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Felnล‘tteknek szรกnt kรฉpek." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Hรญrfolyam kitลฑzรฉse" @@ -9034,7 +9034,7 @@ msgstr "Hรญrfolyam kitลฑzรฉse" msgid "Pin to home" msgstr "Kitลฑzรฉs a kezdล‘oldalra" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Kitลฑzรฉs a kezdล‘oldalra" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Kitลฑzve" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "A(z) {0} hรญrfolyam kitลฑzve" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Kitลฑzted a hรญrfolyamot" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Lejรกtszรกs" @@ -9076,8 +9076,8 @@ msgstr "{0} lejรกtszรกsa" msgid "Play GIF" msgstr "GIF lejรกtszรกsa" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Videรณ lejรกtszรกsa" @@ -9109,11 +9109,11 @@ msgstr "Jelรถld ki a relevรกns tartalomfigyelmeztetรฉsi kategรณriรกkat." 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 e-mailben fogod megkapni. Lehetsรฉges, hogy csak egyโ€“kรฉt perc mรบlva รฉrkezik meg." -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Vรกlassz egy felhasznรกlรณnevet." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Vรกlassz egy jelszรณt." @@ -9122,7 +9122,7 @@ msgstr "Vรกlassz egy jelszรณt." 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 "Kรฉrjรผk, kattints a tล‘lรผnk kapott e-mailben talรกlhatรณ hivatkozรกsra a cรญmed visszaigazolรกsรกhoz. Ez fontos, ha tovรกbbra is hasznรกlni kรญvรกnod a Bluesky รถsszes funkciรณjรกt." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Vรฉgezd el a captchรกs ellenล‘rzรฉst." @@ -9179,7 +9179,7 @@ msgstr "Add meg a megerล‘sรญtล‘kรณdot รฉs az รบj jelszรณt." msgid "Please enter the security code we sent to your previous email address." msgstr "Add meg a korรกbbi e-mail-cรญmedre kรผldรถtt kรณdot." -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Add meg az e-mail-cรญmedet." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "รœzenet megadรกsa:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politika" @@ -9269,7 +9269,7 @@ msgstr "Politika" msgid "Porn" msgstr "Pornรณ" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Kรถzzรฉtรฉtel" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Bejegyzรฉs" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Fรฉnykรฉp kรถzzรฉtรฉtele" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Videรณ kรถzzรฉtรฉtele" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "ร–sszes kรถzzรฉtรฉtele" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Kรถzzรฉtรฉtel mรฉgis" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Letiltott bejegyzรฉs" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} bejegyzรฉse" @@ -9340,7 +9340,7 @@ msgstr "Elrejtetted a bejegyzรฉst" msgid "Post interaction settings" msgstr "Kapcsolatbalรฉpรฉsi beรกllรญtรกsok" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Kapcsolatbalรฉpรฉsi beรกllรญtรกsok" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Bejegyzรฉs kitลฑzve" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Bejegyzรฉs elmentve" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "Bejegyzรฉstรญpus" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Bejegyzรฉs kitลฑzรฉse felolva" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Bejegyzรฉsek" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "A kรผlรถnbรถzล‘ bejegyzรฉseket a szรถvegรผk, cรญmkรฉik vagy mindkettล‘ msgid "Posts hidden" msgstr "Rejtett bejegyzรฉsek" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Bejegyzรฉsek, vรกlaszok" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Potenciรกlisan fรฉlrevezetล‘ hivatkozรกs" @@ -9449,20 +9451,21 @@ msgstr "Adatvรฉdelem" msgid "Privacy and security" msgstr "Adatvรฉdelem รฉs biztonsรกg" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Adatvรฉdelem รฉs biztonsรกg" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Adatvรฉdelmi- รฉs biztonsรกgi beรกllรญtรกsok" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Adatvรฉdelmi irรกnyelvek" msgid "Privacy violation of a minor" msgstr "Kiskorรบak szemรฉlyes jogainak megsรฉrtรฉse" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "GIF feldolgozรกsa folyamatbanโ€ฆ" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Videรณ feldolgozรกsa folyamatbanโ€ฆ" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Nyilvรกnos, megoszthatรณ fiรณklistรกk a tรถmeges elnรฉmรญtรกshoz vagy letiltรกshoz." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Bejegyzรฉs kรถzzรฉtรฉtele" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Bejegyzรฉsek kรถzzรฉtรฉtele" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Vรกlaszok kรถzzรฉtรฉtele" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Vรกlasz kรถzzรฉtรฉtele" @@ -9599,12 +9602,12 @@ msgstr "Idรฉzรฉs letiltva" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Idรฉzรฉsek" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "A bejegyzรฉs idรฉzรฉsei" @@ -9647,21 +9650,21 @@ msgstr "Fiรณk รบjraaktivรกlรกsa" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "{0, plural, other {# tovรกbbi vรกlasz}} megjelenรญtรฉse" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" -msgstr "" +msgstr "Tovรกbbi informรกciรณ a rรฉszletes keresรฉsrล‘l (angol nyelven)" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Blogbejegyzรฉs megtekintรฉse (angolul)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Kevesebb" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Tรถbb" @@ -9687,11 +9690,11 @@ msgstr "A Bluesky adatvรฉdelmi irรกnyelveinek megtekintรฉse" msgid "Read the Bluesky Terms of Service" msgstr "A Bluesky felhasznรกlรณi feltรฉteleinek megtekintรฉse" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Valรณdi pรกrbeszรฉd." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Valรณdi emberek." @@ -9721,10 +9724,6 @@ msgstr "Keresรฉsi elล‘zmรฉnyek" msgid "Recently used" msgstr "Legutรณbb hasznรกlt" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Javasolt" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "รšjracsatlakozรกs" @@ -9748,7 +9747,7 @@ msgstr "Csevegรฉsi kรฉrelem elutasรญtรกsa" msgid "Reject join request" msgstr "Csatlakozรกsi kรฉrelem elutasรญtรกsa" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Beszรฉlgetรฉsek รบjratรถltรฉse" @@ -9766,7 +9765,7 @@ msgstr "Beszรฉlgetรฉsek รบjratรถltรฉse" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Eltรกvolรญtรกs" @@ -9790,10 +9789,10 @@ msgstr "Biztosan el akarod tรกvolรญtani {displayName} felhasznรกlรณt?" #: src/screens/Search/components/SearchHistory.tsx:182 msgid "Remove {q}" -msgstr "" +msgstr "A(z) โ€ž{q}โ€ kifejezรฉs eltรกvolรญtรกsa" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Fiรณk eltรกvolรญtรกsa" @@ -9839,21 +9838,21 @@ msgstr "Hรญrfolyam eltรกvolรญtรกsa" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:143 msgid "Remove filter" -msgstr "" +msgstr "Szลฑrล‘ eltรกvolรญtรกsa" #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Eltรกvolรญtรกs a csevegรฉsbล‘l" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Eltรกvolรญtรกs a hรญrfolyamgyลฑjtemรฉnybล‘l" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Eltรกvolรญtรกs a fiรณklistรกrรณl" @@ -9862,7 +9861,7 @@ msgstr "Eltรกvolรญtรกs a fiรณklistรกrรณl" msgid "Remove from saved feeds" msgstr "Eltรกvolรญtรกs a mentett hรญrfolyamok kรถzรผl" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Eltรกvolรญtรกs a mentett bejegyzรฉsek kรถzรผl" @@ -9880,8 +9879,8 @@ msgstr "Kรฉp eltรกvolรญtรกsa" msgid "Remove live status" msgstr "ร‰lล‘adรกsos รกllapot eltรกvolรญtรกsa" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Tag eltรกvolรญtรกsa" @@ -9943,7 +9942,7 @@ msgstr "Szemรฉly levรฉve a listรกrรณl" msgid "Removed from saved feeds" msgstr "Eltรกvolรญtva a mentett hรญrfolyamok kรถzรผl" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Eltรกvolรญtva a mentett bejegyzรฉsek kรถzรผl" @@ -9952,7 +9951,7 @@ msgstr "Eltรกvolรญtva a mentett bejegyzรฉsek kรถzรผl" msgid "Removed from starter pack" msgstr "Profil eltรกvolรญtva a kezdล‘csomagbรณl" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Vรกlasz a bejegyzรฉsedre" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "{senderName} รผzenete, amelyre vรกlaszoltak. Ugrรกs koppintรกsra" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Az eredeti รผzenet a csatlakozรกsod elล‘ttrล‘l szรกrmazik" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "รœzenet, amelyre vรกlaszoltak. Ugrรกs koppintรกsra" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Vรกlaszok" @@ -10037,7 +10037,7 @@ msgstr "A bejegyzรฉs alatti vรกlaszadรกs le van tiltva." msgid "Reply" msgstr "Vรกlasz" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Vรกlasz kรถzzรฉtรฉtele" @@ -10098,8 +10098,8 @@ msgstr "Beszรฉlgetรฉs jelentรฉse" msgid "Report dialog" msgstr "Pรกrbeszรฉdablak jelentรฉse" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Hรญrfolyam jelentรฉse" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Megosztottad" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Megosztรกsok" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "A bejegyzรฉs megosztรกsai" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Megosztott bejegyzรฉsek megosztรกsa" @@ -10253,7 +10253,7 @@ msgstr "Kรฉrelem elkรผldve" msgid "Requests" msgstr "Kรฉrelmek" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "A legutรณbb meghiรบsult folyamat รบjraprรณbรกlรกsa" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Vissza a kezdล‘oldalra" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Vissza az elล‘zล‘ oldalra" @@ -10446,27 +10446,27 @@ msgstr "Szรผletรฉsi dรกtum mentรฉse" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Vรกltoztatรกsok mentรฉse" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Vรกltoztatรกsok mentรฉse" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Mentรฉs" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Piszkozat mentรฉse" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR-kรณd mentรฉse" msgid "Save these options for next time" msgstr "Beรกllรญtรกsok megjegyzรฉse" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Mentรฉs a hรญrfolyamgyลฑjtemรฉnybe" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Mentett hรญrfolyamok" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Mentett bejegyzรฉsek" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Hรญrfolyam elmentve" @@ -10520,8 +10520,8 @@ msgstr "Hรญrfolyam elmentve" msgid "Say hello!" msgstr "Kรถszรถnj!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "รrj valakinek!" @@ -10535,7 +10535,7 @@ msgstr "Beolvasรกs" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "QR-kรณd beolvasรกsa" @@ -10543,15 +10543,15 @@ msgstr "QR-kรณd beolvasรกsa" msgid "Science" msgstr "Tudomรกny" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Gรถrgetรฉs balra" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Gรถrgetรฉs jobbra" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Ugrรกs az รผzenethez, amelyre vรกlaszoltak" @@ -10564,8 +10564,8 @@ msgstr "Vissza a tetejรฉre" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Keresรฉs" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Keresรฉs @{0} bejegyzรฉsei kรถzรถtt" @@ -10612,11 +10612,11 @@ msgstr "Keresรฉs: {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Keresd meg az ajรกnlani kรญvรกnt hรญrfolyamokat!" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Tovรกbbi fiรณkok keresรฉse" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Tovรกbbi hรญrfolyamok keresรฉse" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIF-ek keresรฉse" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "A keresรฉshez jelenleg bejelentkezรฉs szรผksรฉges" @@ -10661,7 +10661,7 @@ msgstr "Profilok keresรฉse" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 msgid "Search query" -msgstr "" +msgstr "Keresรฉsi kifejezรฉs" #: src/screens/Profile/ProfileSearch.tsx:38 msgid "Search..." @@ -10707,17 +10707,22 @@ 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/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Tovรกbbiak" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Tovรกbbi javasolt profilok megjelenรญtรฉse" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "Tovรกbbi felkapott tรฉmakรถrรถk megjelenรญtรฉse" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Javasolt fiรณkok megtekintรฉse" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Lejรกtszรกsvezรฉrlล‘ sรกv. Az elล‘re-/visszatekerรฉshez hasznรกld a nyรญlbillentyลฑket รฉs a szรผneteltetรฉshez/lejรกtszรกshoz nyomd meg a szรณkรถzt." #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "{interestsDisplayName} kategรณria kivรกlasztรกsa" @@ -10748,7 +10753,7 @@ msgstr "{0} kivรกlasztรกsa" msgid "Select {langName}" msgstr "{langName} kivรกlasztรกsa" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Szรญn kivรกlasztรกsa" @@ -10764,11 +10769,11 @@ msgstr "Fiรณk kivรกlasztรกsa" msgid "Select an app language" msgstr "Alkalmazรกs nyelvรฉnek megadรกsa" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Profilkรฉp kivรกlasztรกsa" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Emoji kivรกlasztรกsa" @@ -10780,12 +10785,13 @@ msgstr "Lehetล‘sรฉg kivรกlasztรกsa" msgid "Select app language" msgstr "Alkalmazรกs nyelvรฉnek megadรกsa" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Feliratfรกjl (.vtt) tรกrsรญtรกsa" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "A(z) {name} csevegรฉs kivรกlasztรกsa" @@ -10801,7 +10807,7 @@ msgstr "Hossz megadรกsa" #. placeholder {0}: labels[filter.field].title #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:102 msgid "Select filter type (currently: {0})" -msgstr "" +msgstr "Szลฑrล‘tรญpus megadรกsa (jelenleg: {0})" #: src/screens/Login/index.tsx:166 msgid "Select from an existing account" @@ -10826,7 +10832,7 @@ msgstr "GIF kivรกlasztรกsa" msgid "Select GIF \"{0}\"" msgstr "โ€ž{0}โ€ GIF kivรกlasztรกsa" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Csoportbeszรฉlgetรฉs tagjainak megadรกsa" @@ -10864,7 +10870,7 @@ msgstr "Elsล‘dleges nyelv megadรกsa" msgid "Select telephone code" msgstr "Orszรกghรญvรณszรกm megadรกsa" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "A(z) {emojiName} emoji kivรกlasztรกsa profilkรฉpkรฉnt" @@ -10945,7 +10951,8 @@ msgstr "รœzenet kรผldรฉse" msgid "Send post to {name}" msgstr "Bejegyzรฉs kรผldรฉse neki: {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Cรญmzett kivรกlasztรกsa" @@ -10963,12 +10970,12 @@ msgstr "รœzenet kรผldรฉse a telefonrรณl" msgid "Send verification email" msgstr "Visszaigazolรณ e-mail kรผldรฉse" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Tovรกbbรญtรกs szemรฉlyes รผzenetben" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Kรผldรฉs csevegรฉsben" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Tรกrhelyszolgรกltatรณ kรฉzi beรกllรญtรกsa" msgid "Sets email for password reset" msgstr "E-mail cรญm beรกllรญtรกsa jelszรณvisszaรกllรญtรกshoz" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Beรกllรญtรกsok" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Sajรกt tevรฉkenysรฉgรฉrtesรญtรฉsi beรกllรญtรกsok" @@ -11036,49 +11043,49 @@ msgstr "Sajรกt tevรฉkenysรฉgรฉrtesรญtรฉsi beรกllรญtรกsok" msgid "Settings for allowing others to be notified of your posts" msgstr "Mรกsok Tล‘led รฉrkezล‘ รฉrtesรญtรฉseit รฉrintล‘ beรกllรญtรกsok" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Kedvelรฉses รฉrtesรญtรฉsek beรกllรญtรกsai" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Megemlรญtรฉses รฉrtesรญtรฉsek beรกllรญtรกsai" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "รšj kรถvetล‘s รฉrtesรญtรฉsek beรกllรญtรกsai" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Egyรฉb รฉrtesรญtรฉsek beรกllรญtรกsai" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Megosztott bejegyzรฉsek kedvelรฉsรฉses รฉrtesรญtรฉseinek beรกllรญtรกsai" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "รšj csevegรฉsi kรฉrelmek รฉrtesรญtรฉseinek beรกllรญtรกsai" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "รšj รผzenetek รฉrtesรญtรฉseinek beรกllรญtรกsai" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Megosztott bejegyzรฉsek megosztรกsos รฉrtesรญtรฉseinek beรกllรญtรกsai" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Idรฉzรฉses รฉrtesรญtรฉsek beรกllรญtรกsai" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Vรกlaszos รฉrtesรญtรฉsek beรกllรญtรกsai" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Megosztรกsos รฉrtesรญtรฉsek beรกllรญtรกsai" @@ -11115,8 +11122,8 @@ msgstr "Korcsoport megosztรกsa" msgid "Share anyway" msgstr "Tovรกbbรญtรกs mรฉgis" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Szerzล‘ DID-jรฉnek tovรกbbรญtรกsa" @@ -11127,7 +11134,7 @@ msgstr "Szerzล‘ DID-jรฉnek tovรกbbรญtรกsa" msgid "Share feedback" msgstr "Visszajelzรฉs kรผldรฉse" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Hivatkozรกsmegosztรกsi pรกrbeszรฉdablak" msgid "Share my profile" msgstr "Sajรกt profil megosztรกsa" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Bejegyzรฉs โ€žat://โ€ URI-jรฉnek tovรกbbรญtรกsa" @@ -11169,14 +11176,14 @@ msgstr "Profil megosztรกsa" msgid "Share QR code" msgstr "QR-kรณd tovรกbbรญtรกsa" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Hรญrfolyam tovรกbbรญtรกsa" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" -msgstr "" +msgstr "Keresรฉs tovรกbbรญtรกsa" #: src/screens/StarterPack/StarterPackScreen.tsx:440 msgid "Share this starter pack" @@ -11186,8 +11193,8 @@ msgstr "Kezdล‘csomag tovรกbbรญtรกsa" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Oszd meg ezt a kezdล‘csomagot, hogy mรกsok is csatlakozhassanak a Blueskyos kรถzรถssรฉgedhez!" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Oszd meg velรผnk a nรฉvjegyeidet รฉs kutatsd fel az ismerล‘seidet" msgid "Share your thoughtsโ€ฆ" msgstr "Visszajelzรฉs megadรกsaโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "โ€žMegosztott beรกllรญtรกsokโ€ tesztelล‘" @@ -11219,7 +11226,7 @@ msgstr "Az Apple-fiรณkodban szereplล‘ korcsoport megosztรกsรกval megรกllapรญthat msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "A Google-fiรณkodban szereplล‘ korcsoport megosztรกsรกval megรกllapรญthatjuk, hogy felnล‘tt vagy-e, de a <0>pontos รฉletkorodat รฉs szรผletรฉsnapodat nem. Ezek az adatok a jelenlegi eszkรถzรถdรถn maradnak, ezรฉrt csak itt oldjรกk fel az รฉletkorhoz kรถtรถtt funkciรณkat. Ha szeretnรฉl minden platformon hozzรกfรฉrรฉst nyerni, akkor <1>igรฉnybe veheted megbรญzhatรณ partnerรผnk, a KWS szolgรกltatรกsรกt is." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Megjelenรญtรฉs" msgid "Show alt text" msgstr "Helyettesรญtล‘ szรถveg megjelenรญtรฉse" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Megjelenรญtรฉs mรฉgis" @@ -11274,8 +11281,8 @@ msgstr "Lista megjelenรญtรฉse mรฉgis" msgid "Show lists of users to select from" msgstr "Vรกlaszthatรณ felhasznรกlรณlistรกk megjelenรญtรฉse" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Tovรกbbiak" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Figyelmeztetรฉs รฉs kiszลฑrรฉs a hรญrfolyamokbรณl" msgid "Show when youโ€™re live" msgstr "Sajรกt รฉlล‘ รกllapot megjelenรญtรฉse" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Tovรกbbi informรกciรณ a bejegyzรฉs dรกtumรกrรณl" @@ -11341,15 +11348,15 @@ msgstr "Tovรกbbi informรกciรณ a bejegyzรฉs dรกtumรกrรณl" msgid "Shows other accounts you can switch to" msgstr "Tovรกbbi fiรณkok megjelenรญtรฉse vรกltรกs cรฉljรกbรณl" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Tartalom megjelenรญtรฉse" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Tartalom megjelenรญtรฉse" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Kijelentkezรฉs" msgid "Sign up" msgstr "Regisztrรกciรณ" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Bejelentkezรฉs szรผksรฉges" @@ -11469,7 +11476,7 @@ msgstr "Kihagyรกs" msgid "Skip contact sharing and continue to the app" msgstr "Kihagyรกs รฉs az alkalmazรกs hasznรกlatรกnak folytatรกsa" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "รœres bejegyzรฉsek kihagyรกsa" @@ -11487,7 +11494,7 @@ msgstr "Lรฉpรฉs kihagyรกsa" msgid "slide" msgstr "csรบszka" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Kisebb" @@ -11499,7 +11506,7 @@ msgstr "Emlรฉkeztetล‘ elhalasztรกsa" msgid "So many thoughts, you should post one" msgstr "Csak gyลฑlnek a gondolatokโ€ฆ Szeretnรฉl kรถzzรฉtenni egyet?" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Kรถzรถssรฉgi oldal, amelyet Te irรกnyรญtasz." @@ -11520,7 +11527,7 @@ msgstr "A feliratkozott moderรกlรณlistรกk nรฉmelyike mรกr nem elรฉrhetล‘." msgid "Some of your verifications are invalid." msgstr "A hitelesรญtรฉseidnek egy rรฉsze รฉrvรฉnytelen." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Tovรกbbi ajรกnlott hรญrfolyamok" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Valaki elhagyta a csoportot." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Valaki {0} emojival reagรกlt" @@ -11554,7 +11561,7 @@ msgstr "Valaki {0} emojival reagรกlt" msgid "Someone reacted {0} to {target}" msgstr "Valaki {0} emojival reagรกlt erre: {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Valaki vรกlaszolt" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Valami balul sรผlt el. Prรณbรกld รบjra" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Valami balul sรผlt el. Prรณbรกld รบjra." msgid "Something went wrong. Please try again." msgstr "Valami balul sรผlt el. Prรณbรกld รบjra." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Valami nem stimmel? Vedd fel velรผnk a kapcsolatot!" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Hamis/kรฉretlen tartalom vagy รกtverรฉs" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "A megkezdett beszรฉlgetรฉsek itt fognak megjelenni." msgid "Start a group chat" msgstr "Csoportbeszรฉlgetรฉs indรญtรกsa" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "รšj csevegรฉs indรญtรกsa" @@ -11682,17 +11689,17 @@ msgstr "Szemรฉlyek felvรฉtele" msgid "Start adding people!" msgstr "Vegyรฉl fel szemรฉlyeket!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Csevegรฉs lรฉtrehozรกsa" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Csevegรฉs indรญtรกsa vele: {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Kezdล‘csomag" @@ -11715,12 +11722,16 @@ msgstr "Kezdล‘csomag โ€“ Sajรกt" msgid "Starter pack is invalid" msgstr "Ez a kezdล‘csomag รฉrvรฉnytelen" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Kezdล‘csomagok" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Kezdล‘csomagok" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "A kezdล‘csomagokkal kรถnnyen megoszthatod a kedvenc hรญrfolyamaidat รฉs szemรฉlyeidet." @@ -11728,7 +11739,7 @@ msgstr "A kezdล‘csomagokkal kรถnnyen megoszthatod a kedvenc hรญrfolyamaidat รฉs msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Egy kezdล‘csomag segรญtsรฉgรฉvel megoszthatod a kedvenc hรญrfolyamaidat รฉs szemรฉlyeidet." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Egy kezdล‘csomag segรญtsรฉgรฉvel megoszthatod a kedvenc hรญrfolyamaidat รฉs szemรฉlyeidet." @@ -11742,7 +11753,7 @@ msgstr "รllapot" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "{1}/{0}. lรฉpรฉs" @@ -11754,7 +11765,7 @@ msgstr "Adatok tรถrรถlve. Indรญtsd รบjra az alkalmazรกst." msgid "Stored as part of a secure code for matching with others" msgstr "Ezeket az adatokat egy titkosรญtott kรณd rรฉszekรฉnt tรกroljuk ismerล‘sfelkutatรกs cรฉljรกbรณl" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Mesekรถnyv" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Feliratkozรกs a(z) {publicationTitle} kiadvรกnyra a kรถvetkezล‘n: {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Az alรกbbi feljegyzรฉsi kategรณriรกk hasznรกlatรกhoz iratkozz fel a(z) @{0} nevลฑ szolgรกltatรณra:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Fiรณk hitelesรญtve" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Javasolt" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Javasolt fiรณkok" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Szรกmodra javasolt" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Szรผrkรผlet" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Ez a funkciรณ a Te orszรกgodban mรฉg nem tรกmogatott. Prรณbรกld รบjra kรฉsล‘bb." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Egy felfรผggesztett fiรณk nem vehet rรฉszt csoportbeszรฉlgetรฉsekben." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Egy felfรผggesztett fiรณk nem vehet rรฉszt csevegรฉsekben." @@ -11921,8 +11934,8 @@ msgstr "Vรกltรกs rรก: {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Rendszer" @@ -11945,7 +11958,7 @@ msgstr "Tรกrsalogjatok sok szem kรถzt." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Koppints az alรกbbi gombra, hogy hozzรกfรฉrรฉst biztosรญts a Blueskynak a tartรณzkodรกsi helyedhez. Ezzel az informรกciรณval automatikusan รฉs pontosan meghatรกrozhatjuk a rรฉgiรณdban megjelenรญthetล‘ tartalmakat รฉs beรกllรญtรกsokat." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Rรฉszletek" @@ -11976,7 +11989,7 @@ msgstr "Koppints ide a helyi menรผ bezรกrรกsรกhoz" msgid "Tap to copy this invite link" msgstr "Koppints ide a meghรญvรณ hivatkozรกsรกnak mรกsolรกsรกhoz" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Koppints ide a bezรกrรกshoz" @@ -12003,7 +12016,7 @@ msgstr "Koppints ide a(z) โ€ž{0}โ€ reakciรณ eltรกvolรญtรกsรกhoz" msgid "Tap to request access to join this group chat" msgstr "Koppints ide a csatlakozรกsi kรฉrelem kรผldรฉsรฉhez" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Koppints ide az รบjraprรณbรกlkozรกshoz" @@ -12016,7 +12029,7 @@ msgstr "Koppints ide a(z) {0} reakciรณ megtekintรฉsรฉhez" msgid "Tap to show all reactions" msgstr "Koppints ide az รถsszes reakciรณ megtekintรฉsรฉhez" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Koppints ide a reakciรณk megtekintรฉsรฉhez" @@ -12032,7 +12045,7 @@ msgstr "Feladat teljesรญtve โ€“ 10 kรถvetรฉs!" msgid "Task complete - 10 likes!" msgstr "Feladat teljesรญtve โ€“ 10 kedvelรฉs!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" "Tanรญtsd meg az algoritmusnak,\n" @@ -12062,7 +12075,7 @@ msgstr "Feltรฉtelek" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12115,11 +12128,11 @@ msgstr "Ez a kezdล‘csomag nem talรกlhatรณ." msgid "That username is already taken" msgstr "Ez a felhasznรกlรณnรฉv mรกr foglalt" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Ez van, srรกcok!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Ez minden!" @@ -12218,7 +12231,7 @@ msgstr "Hibรกt tapasztaltunk a kiszolgรกlรณval. Prรณbรกld รบjra egy pรกr percen msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "A kezdล‘csomag รฉrvรฉnytelen. Ha szeretnรฉd, tรถrรถlheted a listรกrรณl." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "A helyi menรผhรถz kapcsolรณdรณ szemรฉly" @@ -12240,7 +12253,7 @@ msgstr "A megadott ellenล‘rzล‘kรณd รฉrvรฉnytelen. Nรฉzd meg, hogy helyes kรณdot msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "A hitelesรญtรฉsi szolgรกltatรณ kรฉptelen volt kรณdot kรผldeni a telefonszรกmodra. Ellenล‘rizd a megadott telefonszรกmot, majd prรณbรกld รบjra." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tรฉma" @@ -12268,7 +12281,7 @@ msgstr "A GIF-ek betรถltรฉse meghiรบsult. Ellenล‘rizd az internetkapcsolatot, ma msgid "There was a problem with your internet connection, please try again" msgstr "Hรกlรณzati hiba tรถrtรฉnt. Prรณbรกld รบjra" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12276,7 +12289,7 @@ msgstr "Hรกlรณzati hiba tรถrtรฉnt. Prรณbรกld รบjra" msgid "There was an issue contacting the server" msgstr "Megszakadt a kapcsolat a kiszolgรกlรณval" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Megszakadt a kapcsolat a kiszolgรกlรณval. Ellenล‘rizd az internetkapcsolatot, majd prรณbรกld รบjra." @@ -12285,8 +12298,8 @@ msgstr "Megszakadt a kapcsolat a kiszolgรกlรณval. Ellenล‘rizd az internetkapcsol msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Az รฉrtesรญtรฉsek frissรญtรฉse meghiรบsult. Koppints ide az รบjraprรณbรกlkozรกshoz." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "A bejegyzรฉsek lekรฉrรฉse meghiรบsult. Koppints ide az รบjraprรณbรกlkozรกshoz." @@ -12311,7 +12324,7 @@ msgstr "A kiszolgรกlรณd adatainak lekรฉrรฉse meghiรบsult" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "A hรญrfolyam eltรกvolรญtรกsa meghiรบsult. Ellenล‘rizd az internetkapcsolatot, majd prรณbรกld รบjra." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12370,12 +12383,12 @@ msgstr "Ezek az alapรฉrtelmezett beรกllรญtรกsok" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:51 msgid "These domains" -msgstr "" +msgstr "az alรกbbi tartomรกnyokbรณl szรกrmazรณ bejegyzรฉsek" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:44 msgid "These hashtags" -msgstr "" +msgstr "az alรกbbi cรญmkรฉkkel rendelkezล‘ bejegyzรฉsek" #: src/screens/Settings/FollowingFeedPreferences.tsx:66 msgid "These settings only apply to the Following feed." @@ -12384,9 +12397,9 @@ msgstr "Az alรกbbi beรกllรญtรกsok csak a Kรถvetett hรญrfolyamra vonatkoznak." #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 msgid "These URLs" -msgstr "" +msgstr "az alรกbbi hivatkozรกsokat tartalmazรณ bejegyzรฉsek" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Csoporttulajdonos" @@ -12394,7 +12407,7 @@ msgstr "Csoporttulajdonos" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "Mรกr nem lesz kรฉpes ismรฉt csatlakozni, hacsak meg nem hรญvod ล‘t." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Ez a(z) {screenDescription} feljegyzรฉst kapott:" @@ -12410,7 +12423,7 @@ msgstr "A fiรณk tulajdonosa ezt a fiรณkot automatikusnak jelรถlte meg." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Ez a fiรณk legalรกbb egy hitelesรญtรฉsi javaslattal rendelkezik, de mรฉg nincs hitelesรญtve." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Ez a fiรณk azt kรฉrte, hogy a megtekintรฉsรฉhez jelentkezz be." @@ -12539,7 +12552,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Ez a hรญrfolyam รผres. Lehetsรฉges, hogy nem kรถvetsz elรฉg felhasznรกlรณt vagy rosszul van beรกllรญtva a hรญrfolyam." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Ez a hรญrfolyam รผres." @@ -12556,7 +12569,7 @@ msgstr "Ezt a csevegรฉst a tulajdonos zรกrolta" msgid "This handle is reserved. Please try a different one." msgstr "Ez a felhasznรกlรณnรฉv le van foglalva. Adj meg egy mรกsikat." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "A megadott kรฉp nem hasznรกlhatรณ. Javasolt formรกtumok: JPG รฉs PNG." @@ -12598,7 +12611,7 @@ msgstr "Sajรกt feljegyzรฉs." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Ez a feljegyzรฉs a teljes fiรณkra รฉrvรฉnyes รฉs minden bejegyzรฉsรฉn megjelenik." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Ez a feljegyzล‘ nem jelentette ki a feljegyzรฉsi kategรณriรกit, ezรฉrt lehet, hogy nem aktรญv." @@ -12623,13 +12636,13 @@ msgstr "Ez a lista รผres." msgid "This message is hidden" msgstr "Rejtett รผzenet" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Az รผzenet el van rejtve, mivel a mรกsik fรฉl letiltott Tรฉged." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Az รผzenet el van rejtve, mivel letiltottad a mรกsik felet." @@ -12643,7 +12656,7 @@ msgstr "Ez a szemรฉly letiltott Tรฉged" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "A bejegyzรฉs adatai szerint az eredeti lรฉtrehozรกsi dรกtuma <0>{0} volt, de elล‘szรถr ekkor jelent meg a Blueskyon: <1>{1}" @@ -12651,7 +12664,7 @@ msgstr "A bejegyzรฉs adatai szerint az eredeti lรฉtrehozรกsi dรกtuma <0>{0} msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Ez a bejegyzรฉs egy ismeretlen vรกlaszkapu-tรญpussal rendelkezik. Lehetsรฉges, hogy az alkalmazรกs verziรณja elavult." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Ez a bejegyzรฉs csak a bejelentkezett felhasznรกlรณk szรกmรกra lรกthatรณ." @@ -12663,7 +12676,7 @@ msgstr "Ezt a bejegyzรฉst tรถrรถlte a szerzล‘" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ez a bejegyzรฉs el lesz rejtve a hรญrfolyamokbรณl รฉs a vรกlaszlรกncokbรณl. Ez a mลฑvelet nem vonhatรณ vissza." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "A szerzล‘ letiltotta az idรฉzรฉst." @@ -12700,11 +12713,12 @@ msgstr "Ez a folyamat csupรกn nรฉhรกny percet vesz igรฉnybe." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Ez a felhasznรกlรณ nem rendelkezik megjelenรญtendล‘ nรฉvvel, ezรฉrt nem hitelesรญthetล‘." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Ezt a felhasznรกlรณt mรฉg senki sem kรถveti." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "A cรญmzett letiltott Tรฉged, ezรฉrt nem veheted fel vele a kapcsolatot." @@ -12714,6 +12728,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Ez a felhasznรกlรณ letiltott Tรฉged, ezรฉrt nem tekintheted meg a tartalmait." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "A cรญmzett nem fogad รผzeneteket, ezรฉrt nem veheted fel vele a kapcsolatot." @@ -12735,11 +12750,11 @@ msgstr "Ez a felhasznรกlรณ szerepel a(z) <0>{0} c. listรกn, amit elnรฉmรญtot msgid "This user is new here. Press for more info about when they joined." msgstr "Ez a felhasznรกlรณ nemrรฉg regisztrรกlt. Tovรกbbi informรกciรณรฉrt koppints ide." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Ez a felhasznรกlรณ mรฉg senkit sem kรถvet." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "A videรณ lejรกtszรกsa meghiรบsult. Lehetsรฉges, hogy a bรถngรฉszล‘ vagy rendszer nem rendelkezik a szรผksรฉges kodekkel (H.264/AAC)." @@ -12761,7 +12776,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Ez vรฉglegesen tรถrรถlni fogja a(z) <0>{currentHandle} Bluesky-fiรณkot รฉs minden hozzรก tartozรณ adatot. Ez a fiรณkot hasznรกlรณ tรถbbi <1>AT Protokoll-szolgรกltatรกst is รฉrinti." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Ezzel @{0} el lesz tรกvolรญtva a fiรณklistรกrรณl." @@ -12788,7 +12803,7 @@ msgstr "Vรกlaszlรกncok" msgid "Threaded" msgstr "Egymรกsba รกgyazott" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Vรกlaszlรกnc-beรกllรญtรกsok" @@ -12848,7 +12863,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "A nรฉvjegyeid mennyisรฉge meghaladta a korlรกtot" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Felkapott" @@ -12860,7 +12875,7 @@ msgstr "Felkapott" msgid "Top replies first" msgstr "A legjobbra รฉrtรฉkelt vรกlaszok elรถl" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tรฉmakรถr" @@ -12895,7 +12910,9 @@ msgstr "Az ugyanazon nyelvre fordรญtรกst nem tรกmogatja ez az eszkรถz." msgid "Tree view" msgstr "รgas nรฉzet" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Felkapott" @@ -12904,13 +12921,15 @@ msgstr "Felkapott" msgid "Trending GIFs" msgstr "Felkapott GIF-ek" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Felkapott tรฉmakรถrรถk beรกllรญtรกsai" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Felkapott videรณk" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12920,13 +12939,13 @@ msgstr "Provokรกlรกs (โ€žtrollkodรกsโ€)" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "A bizalom kapcsolatok, kรถzรถssรฉgek รฉs egy megosztott kรถrnyezet รบtjรกn alakul ki, ezรฉrt bevezetjรผk a <0>megbรญzhatรณ hitelesรญtล‘k rendszerรฉt is โ€“ ezek olyan egyesรผletek, amelyek kรถzvetlenรผl is kรฉpesek hitelesรญteni mรกsokat." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." -msgstr "" +msgstr "Prรณbรกlkozz mรกsmilyen kifejezรฉssel vagy kevesebb szลฑrล‘vel." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." -msgstr "" +msgstr "Prรณbรกlkozz mรกsmilyen kifejezรฉssel." #: src/features/inviteFriends/InviteScannerScreen.tsx:221 #: src/features/inviteFriends/InviteScannerScreen.tsx:226 @@ -12999,10 +13018,12 @@ msgid "Unable to fetch join requests." msgstr "A csatlakozรกsi kรฉrelmek lekรฉrdezรฉse meghiรบsult." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Az egyik cรญmzett nem talรกlhatรณ." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "A cรญmzett nem talรกlhatรณ." @@ -13026,12 +13047,12 @@ msgstr "Nem elรฉrhetล‘" msgid "Unavailable feed information" msgstr "Nincs elรฉrhetล‘ hรญrfolyam-informรกciรณ" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13071,8 +13092,8 @@ msgstr "Fiรณk tiltรกsรกnak feloldรกsa" msgid "Unblock list" msgstr "Lista tiltรกsรกnak feloldรกsa" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13106,7 +13127,7 @@ msgstr "{0} kรถvetรฉsรฉnek megszรผntetรฉse" msgid "Unfollow account" msgstr "Fiรณk kรถvetรฉsรฉnek megszรผntetรฉse" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Kรถvetรฉs megszรผntetรฉse" @@ -13134,7 +13155,7 @@ msgstr "Nem megfelelล‘en megjelรถlt felnล‘tt tartalom" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Nem megfelelล‘en megjelรถlt, abuzรญv vagy kรถlcsรถnรถs beleegyezรฉs nรฉlkรผli felnล‘tt tartalom" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Mรฉgse tetszik" @@ -13194,7 +13215,7 @@ msgstr "Csoportbeszรฉlgetรฉs nรฉmรญtรกsรกnak feloldรกsa" msgid "Unmute thread" msgstr "Vรกlaszlรกnc nรฉmรญtรกsรกnak feloldรกsa" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Videรณ nรฉmรญtรกsรกnak feloldรกsa" @@ -13204,14 +13225,14 @@ msgid "Unpin" msgstr "Kitลฑzรฉs feloldรกsa" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Kitลฑzรฉs feloldรกsa" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Kitลฑzรฉs feloldรกsa a kezdล‘oldalrรณl" @@ -13226,7 +13247,7 @@ msgid "Unpin moderation list" msgstr "Moderรกlรณlista kitลฑzรฉsรฉnek feloldรกsa" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "A(z) {0} hรญrfolyam kitลฑzรฉse feloldva" @@ -13260,11 +13281,11 @@ msgstr "Leiratkozรกs a feljegyzล‘rล‘l" msgid "Unsubscribed from list" msgstr "Leiratkoztรกl a listรกrรณl" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "A vรกgรณlap tartalma nem tรกmogatott." -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Nem tรกmogatott videรณformรกtum: {mimeType}" @@ -13330,7 +13351,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "A vรกlasz lรกthatรณsรกgรกnak frissรญtรฉse meghiรบsult" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Fรฉnykรฉp feltรถltรฉse" @@ -13357,7 +13378,7 @@ msgstr "Feltรถltรฉs a fรกjlkezelล‘bล‘l" msgid "Upload from Library" msgstr "Feltรถltรฉs a galรฉriรกbรณl" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "GIF feltรถltรฉse folyamatbanโ€ฆ" @@ -13371,7 +13392,7 @@ msgstr "Kรฉpek feltรถltรฉse folyamatbanโ€ฆ" msgid "Uploading link thumbnail..." msgstr "Hivatkozรกs indexkรฉpรฉnek feltรถltรฉse folyamatbanโ€ฆ" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Videรณ feltรถltรฉse folyamatbanโ€ฆ" @@ -13410,7 +13431,7 @@ msgstr "A mรกsik alkalmazรกsba a felhasznรกlรณneveddel รฉs ezzel jelentkezhetsz msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Add meg a fiรณkod e-mail-cรญmรฉt vagy egy mรกsik, tulajdonodat kรฉpzล‘ e-mail-cรญmet, arra az esetre, ha a jรถvล‘ben a KWS-nek vagy a Blueskynak fel kell vennie Veled a kapcsolatot." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "felhasznรกlรณ" @@ -13512,7 +13533,7 @@ msgstr "A hitelesรญtรฉs meghiรบsult. Prรณbรกld รบjra." msgid "Verification settings" msgstr "Hitelesรญtรฉsi beรกllรญtรกsok" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Hitelesรญtรฉsi beรกllรญtรกsok" @@ -13620,34 +13641,34 @@ msgstr "Videรณ" msgid "Video failed to process" msgstr "A videรณ feldolgozรกsa meghiรบsult" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Videรณfolyam" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "{0} videรณja: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "{0} videรณja. Koppints ide a lejรกtszรกshoz/szรผneteltetรฉshez." #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videojรกtรฉkok" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Videรณ szรผneteltetve" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Videรณ lejรกtszรกsa folyamatban" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "A videรณ nem talรกlhatรณ." @@ -13655,7 +13676,7 @@ msgstr "A videรณ nem talรกlhatรณ." msgid "Video settings" msgstr "Videรณbeรกllรญtรกsok" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "A videรณ feltรถltรฉse sikeresen befejezล‘dรถtt" @@ -13664,17 +13685,17 @@ msgstr "A videรณ feltรถltรฉse sikeresen befejezล‘dรถtt" msgid "Video: {0}" msgstr "Videรณ: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videรณk" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "A videรณnak 3 percnรฉl rรถvidebbnek kell lennie." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Megtekintรฉs" @@ -13693,9 +13714,9 @@ msgstr "{0} profilkรฉpรฉnek megtekintรฉse" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "{0} profiljรกnak megtekintรฉse" @@ -13726,13 +13747,13 @@ msgstr "Tovรกbbi rรฉszleteket a blogbejegyzรฉsben olvashatsz (angolul)" msgid "View debug entry" msgstr "Hibakeresรฉsi bejegyzรฉs megtekintรฉse" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Rรฉszletek" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Teljes vรกlaszlรกnc megtekintรฉse" @@ -13752,18 +13773,18 @@ msgstr "Bejรถvล‘ csatlakozรกsi kรฉrelmek megtekintรฉse" msgid "View information about these labels" msgstr "Tovรกbbi informรกciรณ a feljegyzรฉsekrล‘l" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Tovรกbbiak megjelenรญtรฉse" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Tovรกbbi felkapott videรณk megjelenรญtรฉse" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Bejegyzรฉs megtekintรฉse" @@ -13800,15 +13821,15 @@ msgstr "A csoportbeszรฉlgetรฉsek meghรญvรณjรกnak megtekintรฉse" msgid "View the labeling service provided by @{0}" msgstr "A(z) {0} รกltal kรญnรกlt feljegyzรฉsi szolgรกltatรกs megtekintรฉse" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Felhasznรกlรณ hitelesรญtรฉseinek megtekintรฉse" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "A hรญrfolyamot kedvelล‘ felhasznรกlรณk megtekintรฉse" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Videรณ megtekintรฉse" @@ -13833,7 +13854,7 @@ msgstr "Moderรกlรณlistรกk megtekintรฉse" msgid "View your muted accounts" msgstr "Elnรฉmรญtott fiรณkok megjelenรญtรฉse" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Sajรกt hitelesรญtรฉsek megtekintรฉse" @@ -13842,7 +13863,7 @@ msgstr "Sajรกt hitelesรญtรฉsek megtekintรฉse" msgid "Views full image" msgstr "Teljes kรฉp megtekintรฉse" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Videรณ vezรฉrlล‘inek elrejtรฉse" @@ -14037,7 +14058,7 @@ msgid "We're having network issues, try again" msgstr "Hรกlรณzati hiba tรถrtรฉnt. Prรณbรกld รบjra." #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Hรกlรณzati hiba tรถrtรฉnt. Prรณbรกld รบjra." @@ -14045,7 +14066,7 @@ msgstr "Hรกlรณzati hiba tรถrtรฉnt. Prรณbรกld รบjra." msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Bevezetjรผk a hitelesรญtรฉs egy รบj formรกjรกt: egy kรถnnyen lรกthatรณ jelvรฉnyt." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "ร–rvendรผnk, hogy megismerhetรผnk!" @@ -14066,13 +14087,15 @@ msgstr "Sajnรกljuk, de a lista lekรฉrรฉse meghiรบsult. Ha a problรฉma fennรกll, msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Sajnรกljuk, de az elnรฉmรญtott szavak listรกjรกnak betรถltรฉse meghiรบsult. Prรณbรกld รบjra." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "Sajnรกljuk, de a keresรฉs meghiรบsult." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Sajnรกljuk, de a keresรฉs meghiรบsult. Prรณbรกld รบjra pรกr percen belรผl." @@ -14080,7 +14103,7 @@ msgstr "Sajnรกljuk, de a keresรฉs meghiรบsult. Prรณbรกld รบjra pรกr percen belรผ msgid "We're sorry, you cannot access this screen at this time." msgstr "Sajnรกljuk, de jelenleg nem fรฉrhetsz hozzรก ehhez az oldalhoz." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sajnรกljuk, de tรถrรถltรฉk a bejegyzรฉst, amire vรกlaszolnรกl." @@ -14136,7 +14159,7 @@ msgid "whatโ€™s up" msgstr "mi a helyzet" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Mi a helyzet?" @@ -14163,7 +14186,7 @@ msgid "Who can verify?" msgstr "Ki hitelesรญthet?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Hoppรก!" @@ -14222,21 +14245,21 @@ msgstr "Szeretnรฉd letiltani ezt a felhasznรกlรณt รฉs/vagy elhagyni a beszรฉlget msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Szeretnรฉd piszkozatkรฉnt menteni ezt a bejegyzรฉst, mielล‘tt megnyitod a tovรกbbi piszkozataidat?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Szeretnรฉd piszkozatkรฉnt menteni ezt a bejegyzรฉst?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Bejegyzรฉs รญrรกsa" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Bejegyzรฉs รญrรกsa" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Vรกlasz รญrรกsa" @@ -14302,7 +14325,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "A helyi tรถrvรฉnyek szerint a Bluesky haszรกlata elล‘tt igazolnod kell az รฉletkorodat." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "{0} le van tiltva" @@ -14344,7 +14367,7 @@ msgstr "Az รฉlล‘ adรกsod vรฉget รฉrt" msgid "You are not allowed to upload videos." msgstr "Nincs jogosultsรกgod a videรณfeltรถltรฉsre." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Mรฉg senkit sem kรถvetsz" @@ -14364,7 +14387,7 @@ msgstr "Jelenleg hitelesรญtve vagy. Ha megvรกltoztatod a megjelenรญtendล‘ nevede msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Jelenleg hitelesรญtve vagy. Ha megvรกltoztatod a felhasznรกlรณnevedet, azzal elveszik a hitelesรญtรฉsed. <0>Tovรกbbi informรกciรณ." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "A megjelenรญtett รฉrdeklล‘dรฉsi kรถrรถket bรกrmikor szerkesztheted a Tartalom รฉs mellรฉkletek menรผben." @@ -14408,11 +14431,11 @@ msgid "You can now sign in with your new password." msgstr "Mostantรณl bejelentkezhetsz az รบj jelszรณval." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Egy bejegyzรฉshez csak {MAX_GALLERY_IMAGES, plural, other {# fรฉnykรฉp}} csatolhatรณ" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Egy piszkozat legfeljebb 1000 karakter hosszรบ lehet." @@ -14441,9 +14464,11 @@ msgstr "Tovรกbbra is kรฉpes leszel az รผzenetek elolvasรกsรกra, de รบjakat nem t msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Egy bejegyzรฉshez {MAX_GALLERY_IMAGES, plural, other {# kรฉp}} csatolhatรณ." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Biztos vagy benne? Ezt a beรกllรญtรกst kรฉsล‘bb is mรณdosรญthatod." @@ -14453,6 +14478,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Egy รผzenethez legfeljebb {EMOJI_REACTION_LIMIT, plural, one {#} other {#}} reakciรณt lehet csatolni" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Mรฉg nem hozhatsz lรฉtre csoportbeszรฉlgetรฉst." @@ -14557,7 +14583,7 @@ msgstr "Visszaigazoltad az e-mail-cรญmedet โ€“ most mรกr bezรกrhatod ezt az abla msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "รtmenetileg elรฉrted a videรณfeltรถltรฉsi korlรกtot. Prรณbรกld รบjra kรฉsล‘bb." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "A piszkozat tartalma megvรกltozott. Szeretnรฉd menteni?" @@ -14565,7 +14591,7 @@ msgstr "A piszkozat tartalma megvรกltozott. Szeretnรฉd menteni?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "A piszkozat tartalma megvรกltozott. Szeretnรฉd menteni mielล‘tt megnyitod a tovรกbbi piszkozataidat?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Mรฉg egy kezdล‘csomagot sem hoztรกl lรฉtre." @@ -14616,7 +14642,7 @@ msgstr "A csomag legfeljebb {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK msgid "You may only add up to 3 feeds" msgstr "Legfeljebb 3 hรญrfolyamot jelรถlhetsz ki." -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Tagokat csak a csoport tulajdonosa tรกvolรญthat el." @@ -14624,7 +14650,7 @@ msgstr "Tagokat csak a csoport tulajdonosa tรกvolรญthat el." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "A Bluesky hasznรกlatรกhoz be kell tรถltened a 13. รฉletรฉvedet. Tovรกbbi informรกciรณรฉrt olvasd el a <0>felhasznรกlรกsi feltรฉteleket." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Egy kezdล‘csomag lรฉtrehozรกsรกhoz legalรกbb hรฉt kรผlรถnbรถzล‘ szemรฉlyt kรถvetned kell." @@ -14641,7 +14667,7 @@ msgstr "A galรฉriรกhoz hozzรกfรฉrรฉs szรผksรฉges." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Az e-mailes kรฉtlรฉpcsล‘s azonosรญtรกs bekapcsolรกsa elล‘tt vissza kell igazolnod a cรญmedet." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Sajรกt csoport" @@ -14655,7 +14681,7 @@ msgid "You probably want to restart the app now." msgstr "Lehetsรฉges, hogy most elล‘nyรถs lenne bezรกrni รฉs รบjra megnyitni az alkalmazรกst." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "{0} emojival reagรกltรกl" @@ -14669,15 +14695,15 @@ msgstr "{0} emojival reagรกltรกl erre: {target}" msgid "You recently changed your birthdate" msgstr "Nemrรฉg megvรกltoztattad a szรผletรฉsi dรกtumodat" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Vรกlaszoltรกl" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Vรกlaszoltรกl neki: {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Vรกlaszoltรกl magadnak" @@ -14717,11 +14743,11 @@ msgstr "A jรถvล‘ben kรฉptelen leszel ismรฉt csatlakozni, hacsak meg nem hรญvnak. msgid "You: {message}" msgstr "ร‰n: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Az ajรกnlott felhasznรกlรณkat รฉs hรญrfolyamokat a regisztrรกciรณ befejeztรฉtล‘l fogva kรถvetni fogod." -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "A fiรณkod elkรฉszรผltรฉvel kรถvetni fogod a javasolt felhasznรกlรณkat!" @@ -14793,7 +14819,7 @@ msgstr "Elรฉrted az aktรญv tartalom vรฉgรฉt." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Elรฉrted a hรญrfolyamod vรฉgรฉt. Kรถvess mรฉg tรถbb fiรณkot!" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "A piszkozattรกr megtelt." @@ -14801,9 +14827,9 @@ msgstr "A piszkozattรกr megtelt." msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Tรบllรฉpted az egyidejลฑleg megengedett legtรถbb lekรฉrรฉst. Prรณbรกld รบjra kรฉsล‘bb." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." -msgstr "" +msgstr "Legfeljebb {MAX_FILTERS, plural, other {#}} kรผlรถnbรถzล‘ szลฑrล‘t lehet megadni. Szerkessz egy lรฉtezล‘ szลฑrล‘t ahelyett, hogy รบjat hoznรกl lรฉtre." #: src/components/FocusScope/index.tsx:88 msgid "You've reached the start of the active content." @@ -14817,11 +14843,11 @@ msgstr "Elรฉrted a napi videรณfeltรถltรฉsi korlรกtot (bรกjthatรกr meghaladva)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Elรฉrted a napi videรณfeltรถltรฉsi korlรกtot (videรณmennyisรฉg meghaladva)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Kifogytunk a videรณkbรณl. Mit szรณlnรกl egy kis szรผnethez?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Sajรกt fiรณk" @@ -14837,11 +14863,11 @@ msgstr "A fiรณkod felfรผggesztรฉsre kerรผlt" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "A fiรณkod mรฉg nem elรฉg idล‘s a videรณk feltรถltรฉsรฉhez. Prรณbรกld รบjra kรฉsล‘bb." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "รšj fiรณk" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Csoportbeszรฉlgetรฉs lรฉtrehozรกsรกhoz a fiรณkodnak legalรกbb 7 naposnak kell lennie." @@ -14898,7 +14924,7 @@ msgstr "Sajรกt e-mail-cรญm" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Az e-mail-cรญmed รฉrvรฉnytelen." @@ -14932,8 +14958,8 @@ msgstr "E-mail-cรญm alapjรกn nem lehet megรกllapรญtani a tรกrhelyszolgรกltatรณt, msgid "Your hosting provider is detected automatically from the username you enter." msgstr "A tรกrhelyszolgรกltatรณ a felhasznรกlรณnรฉv alapjรกn tรถrtรฉnik megรกllapรญtรกsra." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14945,7 +14971,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "ร‰rdeklล‘dรฉsi kรถrรถk frissรญtve" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Az รฉrdeklล‘dรฉsi kรถreid megadรกsรกval javรญthatod az รฉlmรฉnyedet!" @@ -14969,11 +14995,11 @@ msgstr "A jelszรณvรกltoztatรกs sikeresen megtรถrtรฉnt. A legkรถzelebbi bejelentk msgid "Your password must be at least 8 characters long." msgstr "A jelszรณnak legalรกbb 8 karakter hosszรบnak kell lennie." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Bejegyzรฉs elkรผldve" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Bejegyzรฉsek elkรผldve" @@ -14982,11 +15008,11 @@ msgid "Your preferred language" msgstr "Az elล‘nyben rรฉszesรญtett nyelved" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Sajรกt profilkรฉp" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "A sajรกt profilkรฉped mรกs fiรณkok profilkรฉpeivel kรถrรผlvรฉve, tรถbbrรฉtegลฑ gyลฑrลฑs elrendezรฉsben" @@ -14994,7 +15020,7 @@ msgstr "A sajรกt profilkรฉped mรกs fiรณkok profilkรฉpeivel kรถrรผlvรฉve, tรถbbr msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "A profilod, bejegyzรฉseid, hรญrfolyamaid รฉs listรกid mostantรณl el vannak rejtve a tรถbbi Bluesky-felhasznรกlรณ elล‘l. A fiรณkod รบjraaktivรกlรกsรกhoz jelentkezz be." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Vรกlasz elkรผldve" @@ -15007,7 +15033,7 @@ msgstr "A jelentรฉs cรญmzettje: <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Az รฉrdeklล‘dรฉsi kรถreid megadรกsรกval szemรฉlyre szabhatod a javasolt tartalmakat." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "A kรถzzรฉtรฉtelre vรกrรณ bejegyzรฉsek kรถzรถtt vannak รผresek is. Ezek kihagyรกsra kerรผlnek รฉs a maradรฉk egy vรกlaszlรกncba lesz รถsszefลฑzve." diff --git a/src/locale/locales/ia/messages.po b/src/locale/locales/ia/messages.po index c2ab9cb7b4..3a62022b0b 100644 --- a/src/locale/locales/ia/messages.po +++ b/src/locale/locales/ia/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ia\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Interlingua\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(include contento incorporate)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# horas}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# appreciation} other {# appreciationes}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ha reagite con {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} ha verificate tu conto" msgid "{following} following" msgstr "{following} sequitos" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Non es possibile inviar messages a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# elemento non legite} other {# element msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}h retro" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} es un verificator de confidentia" @@ -842,13 +795,13 @@ msgstr "Verificationes de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {sequito} other {sequitos}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 dies" msgid "7 days" msgstr "7 dies" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "Un nove forma de verification" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Accessibilitate" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Parametros de accessibilitate" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Conto silentiate per lista" msgid "Account options" msgstr "Optiones de conto" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Conto removite del accesso rapide" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Contos con un marca de verification blau festonate <0><1/> pote verificar alteres. Iste verificatores de confidentia es seligite per Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Activitates de alteres" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Adder texto alternative (optional)" msgid "Add another account" msgstr "Adder altere conto" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Adder un altere publication" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Adder reaction con emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Adde iste canal a tu canales" msgid "Add to lists" msgstr "Adder al listas" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Adulto" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@exemplo.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Toto" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Tote le linguas" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Tote le canales que tu ha salvate, in un sol loco." @@ -1560,7 +1511,7 @@ msgstr "Permitte accesso a messages directe" msgid "Already have a code?" msgstr "Ha tu jam un codice?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "Un e-mail ha essite inviate a {0}. Illo include un codice de confirmatio msgid "An error has occurred" msgstr "Un error ha occurrite" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Un error ha occurrite" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "Un error ha occurrite durante le recuperation del canal." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Un error ha occurrite durante le generation de tu pacchetto de initio. Vole tu tentar lo de novo?" @@ -1640,11 +1591,11 @@ msgstr "Un error ha occurrite durante le generation de tu pacchetto de initio. V msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Un error ha occurrite durante le cargamento del video. Per favor tenta lo de novo plus tarde." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Un error ha occurrite durante le cargamento del video. Per favor tenta lo de novo." @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Un problema non includite in iste optiones" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Un problema ha occurrite durante le tentativa de aperir le chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "Quicunque qui me seque" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Le nomines de contrasigno de application debe haber al minus 4 character msgid "App passwords" msgstr "Contrasignos de application" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contrasignos de application" @@ -1891,8 +1838,8 @@ msgstr "Facer appello de iste decision" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archivate desde {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Publication archivate" @@ -1980,7 +1927,7 @@ msgstr "Es tu secur de voler remover isto de tu canales?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Es tu secur de voler discartar iste publication?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "Reproducer automaticamente videos e GIFs" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Ante crear un publication o responder, tu debe verificar tu e-mail." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Ante crear un pacchetto de initio, tu debe primo verificar tu adresse de e-mail." @@ -2135,10 +2091,10 @@ msgstr "Ante que tu pote reciper notificationes pro le publicationes de {name}, #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "Data de nascentia" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Blocate" msgid "Blocked accounts" msgstr "Contos blocate" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Contos blocate" @@ -2282,7 +2244,7 @@ msgstr "Contos blocate non pote responder in tu filos, mentionar te o interager msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Contos blocate non pote responder in tu filos, mentionar te o interager con te de alcun altere maniera. Tu non videra lor contento e illes non potera vider le tue." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blocar non impedi que iste etiquettator applica etiquettas a tu conto." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non pote confirmar le authenticitate del data declarate." @@ -2330,7 +2293,7 @@ msgstr "Bluesky es un rete aperte ubi tu pote eliger tu fornitor de albergamento msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky es un rete aperte ubi tu pote eliger tu proprie fornitor. Si tu es nove hic, nos recommenda eliger le option predefinite, Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky es melior con amicos!" @@ -2358,7 +2321,7 @@ msgstr "Conditiones de servicio de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky eligera un insimul de contos recommendate inter le personas in tu rete." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Percurre altere canales super le pagina Explorar" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Percurrer plus suggestiones" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Percurre plus suggestiones super le pagina Explorar" @@ -2425,24 +2388,25 @@ msgstr "Percurre plus suggestiones super le pagina Explorar" msgid "Browse other feeds" msgstr "Percurrer altere canales" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Percurrer publicationes super {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Percurrer publicationes etiquettate con {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Percurrer le pacchetto de initio {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Percurrer topico {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Percurrer le topico {displayName}" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Per {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Per <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Creante un conto, tu accepta le <0>conditiones de servicio e le <1>p msgid "By creating an account you agree to the <0>Terms of Service." msgstr "In crear un conto, tu accepta le <0>conditiones de servicio." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Per te" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Camera" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Cancellar le reactivation e clauder session" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancellar cerca" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat silentiate" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Cassa de entrata de requestas de chat" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Requestas de chat" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Configurationes de Chat" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat dissilentiate" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2802,7 @@ msgstr "Elige methodo de verification de dominio" msgid "Choose Feeds" msgstr "Eliger canales" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Elige por me" @@ -2854,7 +2819,7 @@ msgstr "Elige personas" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Elige iste color como tu avatar" @@ -2879,7 +2844,7 @@ msgstr "Elige tu proprie linea de tempore! Le canales construite per le communit msgid "Choose your password" msgstr "Elige tu contrasigno" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Elige tu nomine de usator" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Clicca pro tentar inviar le message de novo" @@ -3003,7 +2968,7 @@ msgstr "Clicca pro tentar inviar le message de novo" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Clicca pro tentar inviar le message de novo" msgid "Close" msgstr "Clauder" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Clauder quadro de dialogo active" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Clauder menu" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "Clauder iste quadro de dialogo" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Claude le alerta de actualisation de contrasigno" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Claude le fenestra de redaction e discarta le minuta del publication" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modo de color" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Bandas designate" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directivas del communitate" @@ -3141,7 +3106,7 @@ msgstr "Directivas del communitate" msgid "Complete onboarding and start using your account" msgstr "Concluder le apprentissage e comenciar a usar tu conto" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa le defia" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Scriber un nove publication" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Redige publicationes de usque a {0, plural, other {# characteres}}" @@ -3160,11 +3125,11 @@ msgstr "Redige publicationes de usque a {0, plural, other {# characteres}}" msgid "Compose reply" msgstr "Scriber un responsa" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Compression del video in curso..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contactar supporto" @@ -3253,7 +3218,7 @@ msgstr "Contento e multimedia" msgid "Content and media" msgstr "Contento e multimedia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Contento e multimedia" @@ -3265,10 +3230,6 @@ msgstr "Contento blocate" msgid "Content filters" msgstr "Filtros de contento" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Contento de tote le rete que poterea placer te." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Advertimento de contento" msgid "Content warnings" msgstr "Advertimentos de contento" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fundo de menu contextual. Clicca pro clauder le menu." @@ -3302,7 +3263,7 @@ msgstr "Fundo de menu contextual. Clicca pro clauder le menu." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Continuar filo..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Version de compilation copiate al area de transferentia" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Copiar contrasigno de application" msgid "Copy at:// URI" msgstr "Copiar URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copiar le DID del autor" @@ -3449,10 +3410,10 @@ msgstr "Copiar ligamine" msgid "Copy link to list" msgstr "Copiar ligamine al lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar ligamine al publication" @@ -3470,8 +3431,8 @@ msgstr "Copiar ligamine al pacchetto de initio" msgid "Copy message text" msgstr "Copiar message de texto" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copiar URI at:// del publication" @@ -3490,7 +3451,7 @@ msgstr "Copiar le valor del registro TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politica de derectos de autor" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Non ha essite possibile partir del chat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Non ha essite possibile cargar le canal" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Non ha essite possibile silentiar le chat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crear" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Crear un codice QR pro un pacchetto de initio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Crear un pacchetto de initio" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crea un pacchetto de initio pro me" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Crear conto" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Crear un conto" @@ -3666,15 +3627,15 @@ msgstr "Crear un conto" msgid "Create an account without using this starter pack" msgstr "Crear un conto sin usar iste pacchetto de initio" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "In vice, crear un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Crear un altere" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "Cultura" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Obscur" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Obscur" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Thema obscur" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Predefinite" @@ -3894,7 +3855,7 @@ msgstr "Deler mi conto" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Deler publication" @@ -3988,7 +3949,7 @@ msgstr "Dialogo: adjusta qui pote interager con iste publication" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Tenue" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "Disactivar 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "Disactivate" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Discartar" msgid "Discard changes?" msgstr "Discartar cambiamentos?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Discartar minuta?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Discartar publication?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Discoragiar que applicationes monstra mi conto a usatores sin session aperte" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Discoragiar que applicationes monstra mi conto a usatores sin session ap msgid "Discover new custom feeds" msgstr "Discoperi nove canales personalisate" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Discoperir nove canales" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Clauder" @@ -4103,28 +4064,28 @@ msgstr "Clauder" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Clauder error" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Clauder le guida de introduction" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Clauder interesses" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Clauder iste section" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "Monstrar insignias plus grande de texto alternative" msgid "Display name" msgstr "Nomine a monstrar" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "Preste" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Tocca duo vices o preme longemente le message pro adder un reaction" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tocca duo vices pro clauder le quadro de dialogo" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Tocca duo vices pro appreciar" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Modificar imagine" msgid "Edit interaction settings" msgstr "Modificar parametros de interaction" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Modificar interesses" @@ -4397,7 +4359,7 @@ msgstr "Modificar stato in directo" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Modificar mi canales" @@ -4406,6 +4368,11 @@ msgstr "Modificar mi canales" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Modificar personas" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Modificar qui pote responder" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Modificar tu pacchetto de initio" @@ -4500,8 +4467,8 @@ msgstr "Codice HTML de incorporation" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incorporar publication" @@ -4509,7 +4476,7 @@ msgstr "Incorporar publication" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incorporar iste publication in tu sito web. Basta copiar le sequente fragmento e collar lo in le codice HTML de tu sito web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Reproductor de video incorporate" @@ -4533,7 +4500,7 @@ msgstr "Activar contento pro adultos" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "Activar contento multimedial externe" msgid "Enable media players for" msgstr "Activar reproductores multimedial pro" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activa le notificationes de un conto visitante su profilo e premente le <0>icone de campana <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Activar notificationes push" @@ -4581,7 +4549,7 @@ msgstr "Activar videos de tendentia in tu canal Discoperir" msgid "Enabled" msgstr "Activate" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fin de canal" @@ -4608,7 +4576,7 @@ msgstr "Insere un parola o etiquetta" msgid "Enter code" msgstr "Insere codice" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Passar a plen schermo" @@ -4650,11 +4618,11 @@ msgstr "Insere tu nomine de usator e contrasigno" msgid "Enters full screen" msgstr "Passa a plen schermo" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Intertenimento" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" @@ -4684,7 +4652,7 @@ msgstr "Un error ha occurrite durante le salvamento del file" msgid "Error receiving captcha response." msgstr "Error durante le reception del responsa al captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Error: {error}" @@ -4696,8 +4664,8 @@ msgstr "Totos pote responder" msgid "Everybody can reply to this post." msgstr "Totos pote responder a iste publication." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Totes" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Totes" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Tote le resto" @@ -4738,7 +4706,7 @@ msgstr "Excluder usatores que tu seque" msgid "Excludes users you follow" msgstr "Exclude al usatores que tu seque" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Exir del schermo plen" @@ -4755,11 +4723,11 @@ msgstr "Expander lista de usatores" msgid "Expand or collapse the full post you are replying to" msgstr "Expander o contraher le publication integre al qual tu responde" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Expander le texto del publication" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Expande o contrahe le texto del publication" @@ -4802,15 +4770,15 @@ msgstr "Multimedia explicite o potentialmente perturbator." msgid "Explicit sexual images." msgstr "Imagines sexual explicite." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorar" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "Multimedia externe" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Le contento multimedial externe pote permitter que sitos web collige information super te e tu dispositivo. Necun information es inviate o requestate usque tu preme le button โ€œreproducerโ€." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferentias de multimedia externe" @@ -4886,7 +4854,7 @@ msgstr "Non ha essite possibile cambiar le pseudonymo. Tenta de novo." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Non ha essite possibile cargar le conversationes" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Non ha essite possibile cargar le preferentias de canales" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Non ha essite possibile cargar le parametros de notification." @@ -5012,14 +4981,14 @@ msgstr "Non ha essite possibile cargar le preferentia." msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Non ha essite possibile cargar le canales suggerite" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Non ha essite possibile cargar le suggestiones de usatores a sequer" @@ -5027,12 +4996,12 @@ msgstr "Non ha essite possibile cargar le suggestiones de usatores a sequer" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Canal" @@ -5212,7 +5181,7 @@ msgstr "Creator del canal" msgid "Feed identifier" msgstr "Identificator del canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu de canal" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Canales actualisate!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Canales que pote interessar te." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Obtener actualisation" @@ -5273,34 +5238,22 @@ msgstr "Obtener actualisation" msgid "File saved successfully!" msgstr "File salvate con successo!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtro de canales" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtrar resultatos per lingua" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrar resultatos per lingua (actualmente: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtrar qui pote optar pro reciper notificationes de tu activitate" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtrar de qui tu recipe notificationes" @@ -5352,8 +5305,8 @@ msgstr "Trovar contos a sequer" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Sequer {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Sequer {handle}" @@ -5453,11 +5406,11 @@ msgstr "Sequer {handle}" msgid "Follow 10 accounts" msgstr "Seque 10 contos" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Seque 7 contos" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Sequitores de @{0} que tu cognosce" @@ -5544,7 +5497,7 @@ msgstr "Sequitores que tu cognosce" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Sequente {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Sequente {handle}" @@ -5578,21 +5531,21 @@ msgstr "Sequente {handle}" msgid "Following feed preferences" msgstr "Preferentias del canal Sequente" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferentias del canal Sequente" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Te seque" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Typo de litteras" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Dimension de typo de litteras" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Pro rationes de securitate, tu non potera visualisar isto de novo. Si tu perde iste contrasigno del app, tu debera generar un nove." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Pro le melior experientia, nos recommenda usar le fonte del thema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Pro te" @@ -5628,7 +5581,7 @@ msgstr "Pro te" msgid "Forever" msgstr "Pro sempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "Tu ha oblidate tu contrasigno?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De" @@ -5674,7 +5627,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generar un pacchetto de initio" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "Obtener adjuta" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Reciper notificationes quando le personas te seque." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Reciper notificationes quando le personas apprecia tu publicationes." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Reciper notificationes quando le personas te mentiona." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Reciper notificationes quando le personas cita tu publicationes." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Reciper notificationes quando le personas responde a tu publicationes." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Reciper notificationes quando le personas republica tu publicationes." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Reciper notificationes de nove publicationes" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Reciper notificationes de nove publicationes de {name}" @@ -5799,11 +5752,11 @@ msgstr "Comenciar" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Da un facie a tu profilo" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Entrar in directo per" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6052,7 @@ msgstr "Tu ha un codice? <0>Clicca hic." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Problemas?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "Adjuta" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Adjuta le personas a saper que tu non es un bot cargante un photo o creante un avatar." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Occultate" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Occultate per tu parametros de moderation." @@ -6148,9 +6102,10 @@ msgstr "Occultate per tu parametros de moderation." msgid "Hidden list" msgstr "Lista occultate" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Lista occultate" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Occultar" @@ -6198,7 +6154,7 @@ msgstr "Occultar le responsa pro totes" msgid "Hide reply for me" msgstr "Ocultar le responsa pro me" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Occultar iste carta" @@ -6218,16 +6174,18 @@ msgstr "Occultar iste responsa?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Occultar tendentias" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Occultar tendentias?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Occultar videos in tendentia?" @@ -6240,7 +6198,7 @@ msgstr "Occultar lista de usatores" msgid "Hide verification badges" msgstr "Occultar insignias de verification" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Occulta le contento" @@ -6293,8 +6251,8 @@ msgstr "Le systema non ha succedite a cargar iste servicio de moderation." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Un momento! Nos concede gradualmente le accesso al video, e tu attende ancora in le cauda. Reveni tosto!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Calide" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "Si tu actualisa tu adresse de e-mail, le 2FA per e-mail essera disactiva msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Si tu vole cambiar tu contrasigno, nos te inviara un codice pro verificar que iste conto es tue." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Si tu vole restringer qui pote reciper notificationes del activitates de tu conto, tu pote cambiar lo in <0>Parametros โ†’ Privatessa e securitate." @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "Cassa de entrata vacue!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Nomine de usator o contrasigno incorrecte" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "Codice de invitation" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Codice de invitation non acceptate. Verifica que tu lo ha inserite correctemente e tenta lo de novo." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Tu es le unic al momento! Adde plus personas a tu pacchetto de initio cercante hic supra." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID del processo: {0}" @@ -6816,8 +6766,8 @@ msgstr "Participar al conversation" msgid "Journalism" msgstr "Journalismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etiquettate per {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etiquettate per le autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiquettas" @@ -6852,7 +6802,7 @@ msgstr "Etiquettas addite" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Le etiquettas es annotationes super usatores e contento. Illos pote esser usate pro occultar, advertir e categorisar le rete." @@ -6864,7 +6814,7 @@ msgstr "Etiquettas super tu conto" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Configurationes de lingua" @@ -6874,7 +6824,7 @@ msgstr "Configurationes de lingua" msgid "Languages" msgstr "Linguas" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Plus grande" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Ultime" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Saper plus" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Saper plus super le auto-albergamento de tu PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Saper plus super le moderation applicate a iste contento" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Saper plus super iste advertimento" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Saper plus." @@ -6993,8 +6943,8 @@ msgstr "Partir" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Quitar Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "remane." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lassa me eliger" @@ -7057,7 +7007,7 @@ msgstr "Vamos!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Clar" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Clar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Appreciar" @@ -7076,7 +7026,7 @@ msgstr "Appreciar" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Appreciar ({0, plural, one {# appreciation} other {# appreciationes}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Appreciar 10 publicationes" @@ -7085,7 +7035,7 @@ msgstr "Appreciar 10 publicationes" msgid "Like 10 posts to train the Discover feed" msgstr "Apprecia 10 publicationes pro trainar le canal Discoperir" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Appreciar iste canal" @@ -7093,8 +7043,8 @@ msgstr "Appreciar iste canal" msgid "Like this labeler" msgstr "Appreciar iste etiquettator" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Appreciate per" @@ -7111,27 +7061,45 @@ msgstr "Appreciate per" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Appreciate per {0, plural, one {# usator} other {# usatores}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Appreciate per {likeCount, plural, one {# usator} other {# usatores}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Appreciationes" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Appreciationes de tu republicationes" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Appreciationes de iste publication" @@ -7144,7 +7112,7 @@ msgstr "Linear" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista dissilentiate" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "IN DIRECTO" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "Ligamine al diffusion in directo" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Cargar plus" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Cargar plus canales suggerite" @@ -7292,8 +7260,8 @@ msgstr "Cargar plus canales suggerite" msgid "Load new notifications" msgstr "Cargar nove notificationes" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Registro" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "Ajustar le parametros de e-mail pro tu conto" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Face un pro me" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "Marcar toto como legite" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Marcar como legite" msgid "Marked all as read" msgstr "Marcate toto como legite" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "Forsan plus tarde" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimedia" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Contento multimedial que pote perturbar o esser innapropriate pro certe publicos." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "usatores mentionate" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mentiones" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Message delite" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "Optiones de messages" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Messages" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderation" @@ -7636,7 +7608,7 @@ msgstr "Lista de moderation actualisate" msgid "Moderation lists" msgstr "Listas de moderation" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de moderation" @@ -7645,7 +7617,7 @@ msgstr "Listas de moderation" msgid "moderation settings" msgstr "parametros de moderation" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Statos de moderation" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "Contos silentiate" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Contos silentiate" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Non importa, crea un pseudonymo pro me" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nove" @@ -7893,11 +7864,11 @@ msgstr "Nove {postsCount, plural, one {publication} other {publicationes}} de {f #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nove chat" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Nove function" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nove sequitores" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "Nove lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Nove contrasigno" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nove publication" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Responsas plus nove primo" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Novas" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Proxime imagine" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "Necun contrasigno de application ancora" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "Expiration non definite" msgid "No feeds found. Try searching for something else." msgstr "Necun canal trovate. Tenta cercar un altere cosa." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "Necun imagine" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Necun appreciation ancora" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "Non plus sequente {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "Ancora sin messages" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "Solmente le autor pote citar iste publication." msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Necun publication hic" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Necun citation ancora" @@ -8198,11 +8190,7 @@ msgstr "Necun citation ancora" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "Necun resultato" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Necun resultato" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Necun resultato pro \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "Necun resultato trovate" msgid "No results found for \"{query}\"" msgstr "Necun resultato trovate pro \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Necun resultato." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "No, gratias" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "Necuno" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Necuno ha ancora appreciate isto. Tu poterea esser le prime!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Necuno ha ancora citate isto. Tu poterea esser le prime!" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Nuditate non sexual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Non trovate" @@ -8333,7 +8325,7 @@ msgstr "Nota super compartimento" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky es un rete aperte e public. Iste parametro solmente limita le visibilitate de tu contento super le application e le sito web de Bluesky, e altere applicationes pote non respectar iste parametro. Tu contento pote ancora esser monstrate a usatores sin session aperte per altere applicationes e sitos web." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Nota: Iste publication solmente es visibile a usatores con session aperte." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Parametros de notification" @@ -8353,11 +8345,12 @@ msgstr "Parametros de notification" msgid "Notification sounds" msgstr "Sonos de notification" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Oh no!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "OK" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Reinitialisation del apprentissage" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Manca texto alternative a un o plus GIFs." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Manca texto alternative a un o plus imagines." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Manca texto alternative a un o plus videos." @@ -8471,7 +8466,7 @@ msgstr "Solmente {0} pote responder." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Solmente files WebVTT (.vtt) es supportate" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ops!" @@ -8544,7 +8543,7 @@ msgstr "Ops!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Aperir creator de avatar" @@ -8570,21 +8569,22 @@ msgstr "Aperir optiones de conversation" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Aperir le menu lateral" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Aperir selector de emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Aperir schermo de information de canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Aperir menu de optiones de canal" @@ -8627,7 +8627,7 @@ msgstr "Aperir pagina de depuration del moderation" msgid "Open muted words and tags settings" msgstr "Aperir parametros de parolas e etiquettas silentiate" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Aperir pacchetto" @@ -8699,7 +8699,7 @@ msgstr "Aperi detalios additional pro un entrata de depuration" msgid "Opens alt text dialog" msgstr "Aperi dialogo de texto alternative" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Aperi le camera super le dispositivo" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Aperi le fluxo pro crear un nove conto Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Aperi le fluxo pro aperir session con tu conto Bluesky existente" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Contrasigno actualisate!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausar" @@ -8925,12 +8925,12 @@ msgstr "Pausar" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausar video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personas" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personas sequite per @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personas qui seque @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Personas que io seque" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Imagines destinate a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixar canal" @@ -9034,7 +9034,7 @@ msgstr "Fixar canal" msgid "Pin to home" msgstr "Fixar al initio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fixar al initio" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Fixate" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Fixate {0} al Initio" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Fixate in tu canales" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Reproducer" @@ -9076,8 +9076,8 @@ msgstr "Reproducer {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reproducer video" @@ -9109,11 +9109,11 @@ msgstr "Adde etiquettas de advertimento applicabile al contento multimedial que msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Per favor elige tu pseudonymo." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Per favor elige tu contrasigno." @@ -9122,7 +9122,7 @@ msgstr "Per favor elige tu contrasigno." 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 "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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Per favor completa le captcha de verification." @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "Insere le codice de securitate que nos ha inviate a tu adresse de e-mail precedente." -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Per favor insere tu adresse de e-mail." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politica" @@ -9269,7 +9269,7 @@ msgstr "Politica" msgid "Porn" msgstr "Pornographia" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Publication" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicar toto" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Publication blocate" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Publication de @{0}" @@ -9340,7 +9340,7 @@ msgstr "Publication occultate per te" msgid "Post interaction settings" msgstr "Parametros de interaction del publication" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Parametros de interaction del publication" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "Publication fixate" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "Publication disfixate" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Publicationes" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Publicationes pote esser silentiate secundo lor texto, lor etiquettas, o msgid "Posts hidden" msgstr "Publicationes occultate" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Ligamine potentialmente fallace" @@ -9449,20 +9451,21 @@ msgstr "Privatessa" msgid "Privacy and security" msgstr "Privatessa e securitate" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privatessa e securitate" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Parametros de privatessa e securitate" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Politica de privatessa" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Processante video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Listas public e compartibile de usatores a silentiar o blocar in massa." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publicar" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publicar publicationes" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publicar responsas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publicar responsa" @@ -9599,12 +9602,12 @@ msgstr "Citationes disactivate" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citationes" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citationes de iste publication" @@ -9647,7 +9650,7 @@ msgstr "Reactivar tu conto" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Leger publication del blog" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Leger minus" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Leger plus" @@ -9687,11 +9690,11 @@ msgstr "Lege le politica de privatessa de Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Lege le conditiones de servicio de Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recommendate" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconnecter" @@ -9748,7 +9747,7 @@ msgstr "Rejectar requesta de chat" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Recargar conversationes" @@ -9766,7 +9765,7 @@ msgstr "Recargar conversationes" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Remover" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Remover conto" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Remover de mi canales" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Remover del accesso rapide?" @@ -9862,7 +9861,7 @@ msgstr "Remover del accesso rapide?" msgid "Remove from saved feeds" msgstr "Remover de tu canales salvate" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Remover imagine" msgid "Remove live status" msgstr "Remover stato in directo" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Removite del lista" msgid "Removed from saved feeds" msgstr "Removite del canales salvate" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Responsas" @@ -10037,7 +10037,7 @@ msgstr "Responsas a iste publication es disactivate." msgid "Reply" msgstr "Responsa" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responsa" @@ -10098,8 +10098,8 @@ msgstr "Signalar conversation" msgid "Report dialog" msgstr "Signalar dialogo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Signalar canal" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Republicate per te" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Republicationes" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Republicationes de iste publication" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Republicationes de tu republicationes" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Tenta de novo le ultime action, que ha generate un error" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Retorna al pagina de initio" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Retorna al pagina precedente" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Salvar cambiamentos" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Salvar codice QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Salvar in mi canales" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Canales salvate" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Salvate in tu canales" @@ -10520,8 +10520,8 @@ msgstr "Salvate in tu canales" msgid "Say hello!" msgstr "Dice hallo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Scientia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Rolar al alto" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Cercar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cercar publicationes de @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Cercar canales que tu vole suggerer a alteres." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Cercar plus contos" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Cercar plus canales" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Cercar GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "Vider le publicationes super #{tag} per usator" msgid "See jobs at Bluesky" msgstr "Vider offertas de empleo a Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Cursor de recerca. Usa le claves con flechas pro avantiar e retroceder, e spatio pro reproducer/pausar" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Seliger un color" @@ -10764,11 +10769,11 @@ msgstr "Seliger conto" msgid "Select an app language" msgstr "Selige un lingua pro le application" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Seliger un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Seliger un emoji" @@ -10780,12 +10785,13 @@ msgstr "Selige un option" msgid "Select app language" msgstr "Seliger le lingua del application" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Seliger GIF" msgid "Select GIF \"{0}\"" msgstr "Seliger GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "Seliger le lingua principal" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Seliger le emoji {emojiName} como tu avatar" @@ -10945,7 +10951,8 @@ msgstr "Inviar message" msgid "Send post to {name}" msgstr "Inviar le publication a {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Inviar message a..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Inviar e-mail de verification" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Inviar via message directe" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Defini email pro reinitialisation de contrasigno" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Parametros" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Parametros pro le activitate de alteres" @@ -11036,49 +11043,49 @@ msgstr "Parametros pro le activitate de alteres" msgid "Settings for allowing others to be notified of your posts" msgstr "Parametros pro permitter que alteres sia notificate de tu publicationes" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Parametros pro notificationes de appreciationes" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Parametros pro notificationes de mentiones" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Parametros pro notificationes de nove sequitor" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Parametros pro notificationes de tote le resto" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Parametros pro notificationes de appreciationes de tu republicationes" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Parametros pro notificationes de republicationes de tu republicationes" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Parametros pro notificationes de citationes" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Parametros pro notificationes de responsas" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Parametros pro notificationes de republicationes" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Compartir nonobstante" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Compartir le DID del autor" @@ -11127,7 +11134,7 @@ msgstr "Compartir le DID del autor" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Quadro de dialogo pro compartir ligamine" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Compartir le URI at:// del publication" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Compartir codice QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Compartir iste canal" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Compartir iste pacchetto de initio" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparti iste pacchetto de initio e adjuta le gente a unir se a tu communitate super Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Testator de preferentias compartite" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Monstrar" msgid "Show alt text" msgstr "Monstrar texto alternative" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Mostrar nonobstante" @@ -11274,9 +11281,9 @@ msgstr "Monstrar le lista nonobstante" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Monstrar plus" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Monstrar advertimento e filtrar desde canales" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Monstra information super quando iste publication ha essite create" @@ -11341,15 +11348,15 @@ msgstr "Monstra information super quando iste publication ha essite create" msgid "Shows other accounts you can switch to" msgstr "Monstra altere contos al quales tu pote cambiar" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Monstra le contento" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Monstra le contento" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Clauder session?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Apertura de session necessari" @@ -11469,7 +11476,7 @@ msgstr "Saltar" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Minor" @@ -11499,7 +11506,7 @@ msgstr "Proroga le recordatorio" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "Alcunes de tu verificationes es invalide." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Alcun altere canales que pote placer te" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Alcuno ha reagite con {0}" @@ -11554,7 +11561,7 @@ msgstr "Alcuno ha reagite con {0}" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Alcun error ha occurrite, tenta de novo" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Alcun error ha occurrite. Tenta de novo in alcun instantes." msgid "Something went wrong. Please try again." msgstr "Alcun error ha occurrite. Tenta de novo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Alcun problema? Informa nos." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sports" @@ -11668,7 +11675,7 @@ msgstr "Comencia un conversation e illo apparera hic." msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Comenciar un nove chat" @@ -11682,17 +11689,17 @@ msgstr "Comenciar a adder personas" msgid "Start adding people!" msgstr "Comencia a adder personas!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Initiar chat con {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacchetto de initio" @@ -11715,12 +11722,16 @@ msgstr "Pacchetto de initio tue" msgid "Starter pack is invalid" msgstr "Le pacchetto de initio es invalide" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pacchettos de initio" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Le pacchettos de initio te permitte compartir facilemente tu canales e personas favorite con tu amicos." @@ -11728,7 +11739,7 @@ msgstr "Le pacchettos de initio te permitte compartir facilemente tu canales e p msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Pagina de stato" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Passo {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "Immagazinage radite, tu debe reinitiar le application ora." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscribe te a @{0} pro usar iste etiquettas:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Verificate con successo" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Suggerite pro te" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Poner del sol" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Cambiar a {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Systema" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "Tocca pro clauder le menu contextual" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tocca pro clauder" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Carga complite - 10 personas sequite!" msgid "Task complete - 10 likes!" msgstr "Carga complite - 10 appreciationes!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Insenia a nostra algorithmo lo que te place" @@ -12060,7 +12073,7 @@ msgstr "Terminos" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Le pacchetto de initio non ha potite esser trovate." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Illo es toto, gente!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Illo es toto!" @@ -12216,7 +12229,7 @@ msgstr "Le servitor pare haber problemas. Tenta de novo post alcun instantes." msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Le pacchetto de initio que tu tenta vider es invalide. In vice, tu pote deler iste pacchetto de initio." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Le thema del menu contextual" @@ -12238,7 +12251,7 @@ msgstr "Le codice de verification que tu ha fornite es invalide. Assecura te que msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Thema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Il ha habite un problema durante le connexion con le servitor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Il ha habite un problema durante le connexion con le servitor, verifica tu connexion al internet e tenta de novo." @@ -12283,8 +12296,8 @@ msgstr "Il ha habite un problema durante le connexion con le servitor, verifica msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Il ha habite un problema durante le recuperation del notificationes. Tocca hic pro tentar de novo." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Il ha habite un problema durante le recuperation del publicationes. Tocca hic pro tentar de novo." @@ -12309,7 +12322,7 @@ msgstr "Il ha habite un problema durante le recuperation de tu information de se msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Il ha habite un problema durante le remotion de iste canal. Verifica tu connexion al internet e tenta de novo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Iste parametros se applica solmente al canal Sequente." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Iste {screenDescription} ha essite signalate:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Iste conto ha un o plus tentativas de verification, mais actualmente illo non es verificate." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Iste conto require que usatores aperi session pro vider su profilo." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Iste canal es vacue! Es possibile que tu debe sequer plus usatores o adjustar tu parametros de lingua." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Iste canal es vacue." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Iste pseudonymo es reservate. Tenta un altere." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Iste etiquetta ha essite applicate per te." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Iste etiquettator non ha declarate qual etiquettas illo publica, e pote non esser active." @@ -12621,13 +12634,13 @@ msgstr "Iste lista es vacue." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Iste publication affirma haber essite create in <0>{0}, mais illo ha essite vidite per Bluesky pro le prime vice in <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Iste publication affirma haber essite create in <0>{0}, mais illo ha msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Iste publication ha un typo incognite de restriction de interaction. Es possibile que tu application non es actualisate." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Iste publication es visibile solmente a usatores con session aperte." @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Iste publication essera occultate de canales e filos. Iste action es irreversibile." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Le autor del publication ha disactivate le citationes." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Iste usator non ha un nomine a monstrar, e consequentemente non pote esser verificate." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Iste usator non ha sequitores." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Iste usator te ha blocate. Tu non pote vider su contento." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Iste usator es includite in le lista <0>{0} que tu ha silentiate." msgid "This user is new here. Press for more info about when they joined." msgstr "Iste usator es nove hic. Preme pro plus informationes super quando ille se ha inscribite." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Iste usator non seque alcuno." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Isto removera @{0} del lista de accesso rapide." @@ -12786,7 +12801,7 @@ msgstr "Preferentias de filos" msgid "Threaded" msgstr "Como filos" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferentias de filos" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Populares" @@ -12858,7 +12873,7 @@ msgstr "Populares" msgid "Top replies first" msgstr "Responsas popular primo" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Topico" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "Vista in arbore" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendentias" @@ -12902,13 +12919,15 @@ msgstr "Tendentias" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Videos in tendentia" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Le confidentia emerge del relationes, del communitates e de un contexto compartite, consequentemente nos tamben habilita <0>verificatores de confidentia: organisationes qui pote emitter verificationes directemente." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "Information super le canal indisponibile" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Disblocar le conto?" msgid "Unblock list" msgstr "Disblocar lista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Cessar de sequer {0}" msgid "Unfollow account" msgstr "Cessar de sequer conto" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Cessa de sequer le usator" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Disappreciar" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "Dissilentiar filo" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Dissilentiar video" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Disfixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Disfixar canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Disfixar del initio" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Disfixar lista de moderation" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Disfixate {0} del Initio" @@ -13258,11 +13279,11 @@ msgstr "Cancellar le subscription de iste etiquettator" msgid "Unsubscribed from list" msgstr "Cancellate le subscription del lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Non ha essite possibile actualisar le visibilitate del responsa" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Incargar un photo in su loco" @@ -13355,7 +13376,7 @@ msgstr "Cargar desde files" msgid "Upload from Library" msgstr "Cargar desde bibliotheca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "Incargante imagines..." msgid "Uploading link thumbnail..." msgstr "Incargante miniatura de ligamine..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Incargante video..." @@ -13408,7 +13429,7 @@ msgstr "Usa isto pro aperir session in le altere application insimul con tu pseu msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "Non ha essite possibile verificar, tenta de novo." msgid "Verification settings" msgstr "Parametros de verification" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Parametros de verification" @@ -13618,34 +13639,34 @@ msgstr "Video" msgid "Video failed to process" msgstr "Non ha essite possibile processar le video" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Canal de video" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Video de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videojocos" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video in pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video in reproduction" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video non trovate." @@ -13653,7 +13674,7 @@ msgstr "Video non trovate." msgid "Video settings" msgstr "Configurationes de video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video cargate" @@ -13662,17 +13683,17 @@ msgstr "Video cargate" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "Vider le avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Visualisar profilo de {0}" @@ -13724,13 +13745,13 @@ msgstr "Vider le publication de blog pro plus detalios" msgid "View debug entry" msgstr "Vider entrata de depuration" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Visualisar detalios" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Vider filo complete" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "Vider information super iste etiquettas" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Vider plus" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Vider le servicio de etiquettage fornite per @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Vider le notificationes de usator" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Vider usatores qui apprecia iste canal" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Vider video" @@ -13831,7 +13852,7 @@ msgstr "Vider tu listas de moderation" msgid "View your muted accounts" msgstr "Vider tu contos silentiate" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Vider tu verificationes" @@ -13840,7 +13861,7 @@ msgstr "Vider tu verificationes" msgid "Views full image" msgstr "Vide le imagine complete" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Vide le video in modo immersive" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Nos ha problemas de rete, tenta de novo" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Nos presenta un nove strato de verification in Bluesky โ€” un marca de verification facilemente perceptibile." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "Pardono, mais non ha essite possibile resolver iste lista. Si iste probl msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Pardono, mais non ha essite possibile cargar tu parolas silentiate in iste momento. Tenta de novo." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Nos regretta! Le publication que tu responde ha essite delite." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Qual es le novas?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Qui pote verificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ops!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Scriber message" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Scribe tu responsa" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "Tu non es plus in directo" msgid "You are not allowed to upload videos." msgstr "Tu non es permitte incargar videos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "Tu conto es verificate. Tu perdera tu stato de verification si tu cambia msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Tu conto es verificate. Tu perdera tu stato de verification si tu cambia tu pseundonymo. <0>Sape plus." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Tu pote adjustar tu interesses a qualcunque momento in le parametros de \"Contento e multimedia\"." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Tu pote ora aperir session con tu nove contrasigno." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Tu pote actualisar iste plus tarde desde tu configurationes." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "Tu ha verificate tu adresse de e-mail con successo. Tu pote clauder iste msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Tu ha temporarimente attingite le limite pro le incargamento de video. Tenta lo de novo plus tarde." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Tu non ha create ancora un pacchetto de initio!" @@ -14614,7 +14640,7 @@ msgstr "Tu pote adder solmente {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_P msgid "You may only add up to 3 feeds" msgstr "Tu solmente pote adder usque a 3 canales" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Tu debe sequer al minus septe altere personas pro generar un pacchetto de initio." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "Tu debe verificar tu adresse de e-mail ante que tu pote activar 2FA per e-mail." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Probabilemente tu vole reinitiar le application ora." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Tu ha reagite con {0}" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Tu sequera le usatores e canales suggerite quando tu termina le creation de tu conto!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Tu sequera le usatores suggerite quando tu termina le creation de tu conto!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Tu ha attingite le fin de tu canal! Trova alcun altere contos pro sequer." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Tu ha attingite le numero maxime de requestas permittite. Tenta de novo plus tarde." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Tu ha attingite tu limite diari pro cargas de videos (troppo de bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Tu ha attingite tu limite diari pro cargas de videos (troppo de videos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Il non ha plus videos a spectar. Forsan isto es un bon momento pro facer un pausa?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Tu conto" @@ -14835,11 +14861,11 @@ msgstr "Tu conto ha essite suspendite" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tu conto ancora non ha etate sufficiente pro cargar videos. Tenta de novo plus tarde." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Tu adresse de e-mail pare esser invalide." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Tu interesses ha essite actualisate!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Tu interesses nos adjuta a discoperir lo que te place!" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "Tu contrasigno debe haber al minus 8 characteres." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Tu profilo, publicationes, canales e listas non essera plus visibile a altere usatores de Bluesky. Tu pote reactivar tu conto a qualcunque momento aperiente session." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "Tu signalamento essera inviate a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Le interesses que tu ha seligite nos adjuta a servir te contento que te importa." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po index 665ea7e269..2085559cb0 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategori \"{interestsDisplayName}\" (aktif)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(berisi konten yang disisipkan)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, other {# jam}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, other {# menyukai}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Akun)" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} mengikuti" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} dari 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} menanggapi {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} memverifikasi Anda" msgid "{following} following" msgstr "{following} mengikuti" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} tidak dapat dikirimi pesan" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, other {# item belum dibaca}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} bergabung Bluesky {timeAgoString} yang lalu" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} bergabung Bluesky menggunakan paket pemula {timeAgoString} yang lalu" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}j yang lalu" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} adalah verifikator terpercaya" @@ -842,13 +795,13 @@ msgstr "Verifikasi {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, other {mengikuti}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {kutipan}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {posting ulang}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, other {simpanan}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Masuk<1> atau <2>buat akun<3> <4>untuk mencari berita, olahraga, politik dan semuanya yang terjadi di Bluesky." @@ -971,7 +924,7 @@ msgstr "30 hari" msgid "7 days" msgstr "7 hari" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Kumpulan feed populer yang dapat Anda temukan di Bluesky, termasuk Berita, Booksky, Pengembangan Game, Blacksky, dan Pena Tinta" @@ -988,9 +941,11 @@ msgstr "Kesalahan jaringan terjadi. Silakan periksa koneksi internet Anda" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Kode baru telah dikirim" msgid "A new form of verification" msgstr "Bentuk baru verifikasi" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Aksesibilitas" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Pengaturan Aksesibilitas" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Akun Dibisukan oleh Daftar" msgid "Account options" msgstr "Pengaturan akun" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Akun dihapus dari akses cepat" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Akun dengan tanda cek biru bergerigi <0><1/> dapat memverifikasi lainnya. Verifikator ini telah dipilih oleh Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Aktivitas dari yang lainnya" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Tambahkan teks alt (opsional)" msgid "Add another account" msgstr "Tambahkan akun lain" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Tambahkan postingan lain" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Tambahkan emoji reaksi" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Tambahkan feed ini ke daftar feed Anda" msgid "Add to lists" msgstr "Tambahkan dalam daftar" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Tambahkan ke postingan yang disimpan" @@ -1400,7 +1360,7 @@ msgstr "Dewasa" msgid "Adult content" msgstr "Konten dewasa" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "kresna@contoh.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Semua" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Seluruh teman diikuti!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Semua bahasa" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Berisi semua feed yang telah Anda simpan dalam satu tempat." @@ -1560,7 +1511,7 @@ msgstr "Mengizinkan akses ke pesan langsung" msgid "Already have a code?" msgstr "Sudah memiliki kode?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Sudah memiliki akun?" @@ -1614,7 +1565,7 @@ msgstr "Email telah dikirim ke {0}. Email tersebut berisi kode konfirmasi yang d msgid "An error has occurred" msgstr "Telah terjadi kesalahan" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Terjadi kesalahan" @@ -1631,7 +1582,7 @@ msgstr "Kesalahan terjadi saat mengambil akun yang disarankan." msgid "An error occurred while fetching the feed." msgstr "Terjadi kesalahan saat mengambil feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Terjadi kesalahan saat membuat paket pemula. Coba lagi?" @@ -1640,11 +1591,11 @@ msgstr "Terjadi kesalahan saat membuat paket pemula. Coba lagi?" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Terjadi kesalahan saat memuat video. Silakan coba lagi nanti." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Terjadi kesalahan saat memuat video. Silakan coba lagi." @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Ilustrasi dari beberapa postingan Bluesky bersama dengan ikon posting ulang, suka dan komentar" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Masalah lain yang tidak termasuk dalam pilihan" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Terjadi masalah saat mencoba membuka obrolan" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Siapa saja" @@ -1802,7 +1749,7 @@ msgstr "Siapapun yang mengikuti saya" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Nama sandi aplikasi harus terdiri dari minimal 4 karakter" msgid "App passwords" msgstr "Sandi aplikasi" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Kata Sandi Aplikasi" @@ -1891,8 +1838,8 @@ msgstr "Ajukan banding atas keputusan ini" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arsip dari {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Arsip postingan" @@ -1980,7 +1927,7 @@ msgstr "Anda yakin ingin menghapus ini dari daftar feed Anda?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Anda yakin ingin membuang postingan ini?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "Putar otomatis video dan GIF" msgid "Available" msgstr "Tersedia" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Untuk membuat postingan atau membalas, harap verifikasi email Anda terlebih dahulu." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Untuk membuat paket pemula, harap verifikasi email Anda terlebih dahulu." @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "Fitur Beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "Tanggal lahir" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Diblokir" msgid "Blocked accounts" msgstr "Akun yang diblokir" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Akun yang Diblokir" @@ -2282,7 +2244,7 @@ msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau b msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda. Anda juga tidak akan melihat konten mereka dan mereka akan dicegah melihat konten Anda." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Pemblokiran tidak menghalangi pelabel ini menerapkan label pada akun Anda." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky tidak dapat memastikan keaslian tanggal yang diklaim." @@ -2330,7 +2293,7 @@ msgstr "Bluesky adalah jaringan terbuka yang memungkinkan Anda memilih penyedia msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky merupakan jaringan terbuka dimana Anda dapat memilih layanan Anda sendiri. Jika Anda baru disini, kami sarankan tetap dengan opsi bawaan dari Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky lebih seru jika bersama teman!" @@ -2358,7 +2321,7 @@ msgstr "Ketentuan Layanan Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky akan memilih serangkaian akun yang direkomendasikan dari orang-orang dalam jaringan Anda." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Jelajahi feed lainnya pada halaman Jelajah" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Jelajahi saran lainnya" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Jelajahi saran lainnya pada halaman Jelajah" @@ -2425,24 +2388,25 @@ msgstr "Jelajahi saran lainnya pada halaman Jelajah" msgid "Browse other feeds" msgstr "Telusuri feed lain" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Jelajahi postingan tentang {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Jelajahi postingan yang ditandai dengan {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Telusuri paket pemula {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Jelajahi topik {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Jelajahi topik {displayName}" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Oleh {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Oleh <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Ketentuan Layanan< msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Ketentuan Layanan." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Oleh anda" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Batalkan pengaktifan kembali dan keluar" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Batal mencari" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Obrolan dibisukan" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Kotak masuk permintaan obrolan" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Permintaan obrolan" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Pengaturan obrolan" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Obrolan dibunyikan" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Obrolan" @@ -2837,7 +2802,7 @@ msgstr "Pilih metode verifikasi domain" msgid "Choose Feeds" msgstr "Pilih Feed" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Pilihkan untuk saya" @@ -2854,7 +2819,7 @@ msgstr "Pilih Pengguna" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Pilih warna ini sebagai avatar Anda" @@ -2879,7 +2844,7 @@ msgstr "Pilih sendiri linimasa Anda! Feed buatan komunitas dapat membantu menemu msgid "Choose your password" msgstr "Pilih kata sandi Anda" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Panggilan Anda" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Ketuk untuk mengirim ulang pesan yang gagal" @@ -3003,7 +2968,7 @@ msgstr "Ketuk untuk mengirim ulang pesan yang gagal" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Ketuk untuk mengirim ulang pesan yang gagal" msgid "Close" msgstr "Tutup" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Tutup dialog aktif" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Tutup menu" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "Tutup dialog ini" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Menutup peringatan pembaruan kata sandi" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Menutup komposer pos dan menghapus draf postingan" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Mode warna" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Komik" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Panduan Komunitas" @@ -3141,7 +3106,7 @@ msgstr "Panduan Komunitas" msgid "Complete onboarding and start using your account" msgstr "Selesaikan orientasi dan mulai menggunakan akun Anda" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Selesaikan tantangan" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Tulis postingan baru" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Tulis postingan hingga {0, plural, other {# karakter}} panjangnya" @@ -3160,11 +3125,11 @@ msgstr "Tulis postingan hingga {0, plural, other {# karakter}} panjangnya" msgid "Compose reply" msgstr "Tulis balasan" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Mengompres video..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Hubungi pusat dukungan" @@ -3253,7 +3218,7 @@ msgstr "Konten & Media" msgid "Content and media" msgstr "Konten dan media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Konten dan Media" @@ -3265,10 +3230,6 @@ msgstr "Konten Diblokir" msgid "Content filters" msgstr "Penyaring konten" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Konten dari seluruh jaringan yang mungkin Anda sukai." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Peringatan Konten" msgid "Content warnings" msgstr "Peringatan konten" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Latar menu konteks, klik untuk menutup menu." @@ -3302,7 +3263,7 @@ msgstr "Latar menu konteks, klik untuk menutup menu." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Lanjutkan utas..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Versi build disalin ke papan klip" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Salin Sandi Aplikasi" msgid "Copy at:// URI" msgstr "Salin URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Salin DID pemosting" @@ -3449,10 +3410,10 @@ msgstr "Salin Tautan" msgid "Copy link to list" msgstr "Salin tautan daftar" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Salin tautan postingan" @@ -3470,8 +3431,8 @@ msgstr "Salin tautan ke paket pemula" msgid "Copy message text" msgstr "Salin teks pesan" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Salin URI postingan at://" @@ -3490,7 +3451,7 @@ msgstr "Salin nilai data TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Kebijakan Hak Cipta" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Tidak dapat meninggalkan obrolan" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Tidak dapat memuat feed" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Tidak dapat membisukan obrolan" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Buat" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Buat kode QR untuk paket pemula" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Buat paket pemula" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Buatkan paket pemula untuk saya" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Daftar" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Buat akun" @@ -3666,15 +3627,15 @@ msgstr "Buat akun" msgid "Create an account without using this starter pack" msgstr "Buat akun tanpa menggunakan paket pemula ini" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Buat avatar saja" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Buat paket lain" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "Budaya" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Gelap" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Gelap" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema gelap" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Standar" @@ -3894,7 +3855,7 @@ msgstr "Hapus akun saya" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Hapus postingan" @@ -3988,7 +3949,7 @@ msgstr "Dialog: sesuaikan siapa saja yang dapat berinteraksi dengan postingan in msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Redup" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "Nonaktifkan 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "Dinonaktifkan" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Buang" msgid "Discard changes?" msgstr "Buang perubahan?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Buang draf?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Buang postingan?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Cegah aplikasi menampilkan akun saya ke pengguna yang tidak masuk" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Cegah aplikasi menampilkan akun saya ke pengguna yang tidak masuk" msgid "Discover new custom feeds" msgstr "Temukan feed kustom baru" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Temukan Feed Baru" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Tutup" @@ -4103,28 +4064,28 @@ msgstr "Tutup" msgid "Dismiss banner" msgstr "Abaikan spanduk" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Abaikan kesalahan" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Tutup panduan memulai" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Abaikan minat" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Abaikan spanduk siaran langsung" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Tutup bagian ini" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Abaikan saran ini" @@ -4142,7 +4103,7 @@ msgstr "Tampilkan lencana teks alt yang lebih besar" msgid "Display name" msgstr "Nama tampilan" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "Selesai" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Ketuk dua kali atau tekan lama pada pesan untuk menambahkan reaksi" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Ketuk dua kali untuk menutup dialog" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Ketuk dua kali untuk menyukai" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Edit gambar" msgid "Edit interaction settings" msgstr "Ubah pengaturan interaksi" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Ubah minat" @@ -4397,7 +4359,7 @@ msgstr "Ubah status siaran langsung" msgid "Edit moderation list" msgstr "Ubah daftar moderasi" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Ubah Daftar Feed" @@ -4406,6 +4368,11 @@ msgstr "Ubah Daftar Feed" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Ubah Daftar Pengguna" @@ -4444,7 +4411,7 @@ msgstr "Ubah daftar pengguna" msgid "Edit who can reply" msgstr "Ubah siapa yang dapat membalas" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Ubah paket pemula Anda" @@ -4500,8 +4467,8 @@ msgstr "Sisipkan kode HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Sisipkan postingan" @@ -4509,7 +4476,7 @@ msgstr "Sisipkan postingan" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Sisipkan postingan ini di situs web Anda. Salin potongan kode berikut dan tempelkan ke dalam kode HTML situs web Anda." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Pemutar video tertanam" @@ -4533,7 +4500,7 @@ msgstr "Aktifkan konten dewasa" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Aktifkan teks keterangan" @@ -4550,12 +4517,13 @@ msgstr "Aktifkan media eksternal" msgid "Enable media players for" msgstr "Aktifkan pemutar media untuk" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Nyalakan notifikasi untuk akun dengan mengunjungi akun mereka dan menekan tombol ikon <0>lonceng <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Aktifkan notifikasi push" @@ -4581,7 +4549,7 @@ msgstr "Aktifkan tren video dalam feed Discover Anda" msgid "Enabled" msgstr "Diaktifkan" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Akhir feed" @@ -4608,7 +4576,7 @@ msgstr "Masukkan kata atau tagar" msgid "Enter code" msgstr "Masukkan kode" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Masuk ke layar penuh" @@ -4650,11 +4618,11 @@ msgstr "Masukkan nama pengguna dan kata sandi Anda" msgid "Enters full screen" msgstr "Masuk ke mode layar penuh" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Hiburan" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Galat" @@ -4684,7 +4652,7 @@ msgstr "Terjadi kesalahan saat menyimpan berkas" msgid "Error receiving captcha response." msgstr "Kesalahan saat menerima respons captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Kesalahan: {error}" @@ -4696,8 +4664,8 @@ msgstr "Semua dapat membalas" msgid "Everybody can reply to this post." msgstr "Semua orang dapat membalas postingan ini." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Semua orang" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Semua orang" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Yang lainnya" @@ -4738,7 +4706,7 @@ msgstr "Kecualikan pengguna yang Anda ikuti" msgid "Excludes users you follow" msgstr "Kecuali pengguna yang Anda ikuti" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Keluar dari layar penuh" @@ -4755,11 +4723,11 @@ msgstr "Bentangkan daftar pengguna" msgid "Expand or collapse the full post you are replying to" msgstr "Bentangkan atau ciutkan postingan lengkap yang Anda balas" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Bentangkan teks posting" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Bentangkan atau ciutkan postingan" @@ -4802,15 +4770,15 @@ msgstr "Media eksplisit atau berpotensi mengganggu." msgid "Explicit sexual images." msgstr "Gambar seksual eksplisit." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Jelajahi" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Jelajahi aplikasi" @@ -4844,7 +4812,7 @@ msgstr "Media Eksternal" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Media eksternal memungkinkan situs web untuk mengumpulkan informasi tentang Anda dan perangkat Anda. Tidak ada informasi yang dikirim atau diminta hingga Anda menekan tombol \"putar\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferensi Media Eksternal" @@ -4886,7 +4854,7 @@ msgstr "Gagal mengubah panggilan. Silakan coba lagi." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Gagal memuat percakapan" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Gagal memuat feed" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Gagal memuat preferensi feed" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Gagal memuat pengaturan notifikasi." @@ -5012,14 +4981,14 @@ msgstr "Gagal memuat preferensi." msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Gagal memuat daftar feed yang disarankan" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Gagal memuat saran akun untuk diikuti" @@ -5027,12 +4996,12 @@ msgstr "Gagal memuat saran akun untuk diikuti" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Gagal menyimpan draf" @@ -5191,7 +5160,7 @@ msgstr "Akun palsu atau bot" msgid "False information about elections" msgstr "Informasi palsu tentang pemilihan umum" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5181,7 @@ msgstr "Pembuat feed" msgid "Feed identifier" msgstr "Tanda pengenal feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu feed" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Masukkan dikirim ke operator feed" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Daftar feed diperbarui!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feed yang kami rasa Anda sukai." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Ambil pembaruan" @@ -5273,34 +5238,22 @@ msgstr "Ambil pembaruan" msgid "File saved successfully!" msgstr "Berkas berhasil disimpan!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Saring dari feed" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Saring pencarian berdasarkan bahasa" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Saring pencarian berdasarkan bahasa (saat ini: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "Saring siapa saja yang dapat memilih untuk menerima notifikasi untuk aktivitas Anda" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Saring dari siapa saja Anda akan menerima notifikasi" @@ -5352,8 +5305,8 @@ msgstr "Temukan akun untuk diikuti" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Cari Kontak" @@ -5387,7 +5340,7 @@ msgstr "Cari teman Anda" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Ikuti {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Ikuti {handle}" @@ -5453,11 +5406,11 @@ msgstr "Ikuti {handle}" msgid "Follow 10 accounts" msgstr "Ikuti 10 akun" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Ikuti 7 akun" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Pengikut @{0} yang Anda kenal" @@ -5544,7 +5497,7 @@ msgstr "Pengikut yang Anda kenal" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Mengikuti {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Mengikuti {handle}" @@ -5578,21 +5531,21 @@ msgstr "Mengikuti {handle}" msgid "Following feed preferences" msgstr "Preferensi feed Mengikuti" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferensi Feed Mengikuti" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Mengikuti Anda" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Font" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Ukuran font" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Untuk alasan keamanan, Anda tidak akan dapat melihat ini lagi. Jika Anda lupa sandi aplikasi ini, Anda harus membuat yang baru." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Untuk pengalaman terbaik, kami sarankan menggunakan font tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Untuk Anda" @@ -5628,7 +5581,7 @@ msgstr "Untuk Anda" msgid "Forever" msgstr "Selamanya" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "Lupa kata sandi?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Bebaskan feed Anda" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Dari" @@ -5674,7 +5627,7 @@ msgstr "Dari <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Buatkan paket pemula" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "Dapatkan bantuan" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Dapatkan notifikasi ketika orang menyebutkan Anda." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Dapatkan notifikasi ketika orang mengutip postingan Anda." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Dapatkan notifikasi ketika orang membalas postingan Anda." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Dapatkan notifikasi ketika orang memposting ulang postingan Anda." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "Memulai" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Beri wajah pada profil Anda" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Siaran langsung untuk" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Tagar" @@ -6098,7 +6052,7 @@ msgstr "Punya kode? <0>Klik di sini." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Mengalami masalah?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "Bantuan" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Beri tahu orang-orang bahwa Anda bukan bot dengan mengunggah gambar atau membuat avatar." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Disembunyikan" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Disembunyikan berdasarkan aturan moderasi Anda." @@ -6148,9 +6102,10 @@ msgstr "Disembunyikan berdasarkan aturan moderasi Anda." msgid "Hidden list" msgstr "Daftar yang disembunyikan" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Daftar yang disembunyikan" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Sembunyikan" @@ -6198,7 +6154,7 @@ msgstr "Sembunyikan balasan untuk semua" msgid "Hide reply for me" msgstr "Sembunyikan balasan untuk saya" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Sembunyikan kartu ini" @@ -6218,16 +6174,18 @@ msgstr "Sembunyikan balasan ini?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Sembunyikan tren topik" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Sembunyikan tren topik?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Sembunyikan tren video?" @@ -6240,7 +6198,7 @@ msgstr "Sembunyikan daftar pengguna" msgid "Hide verification badges" msgstr "Sembunyikan lencana verifikasi" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Menyembunyikan konten" @@ -6293,8 +6251,8 @@ msgstr "Hmmmm, kami tidak dapat memuat layanan moderasi." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Harap tunggu! Kami secara bertahap memberikan akses video, dan Anda masih dalam antrian. Periksa kembali nanti!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Sedang hangat" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "Jika Anda memperbarui alamat email Anda, email 2FA akan dinonaktifkan." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Jika Anda ingin mengubah kata sandi, kami akan mengirimkan kode untuk memverifikasi bahwa ini adalah akun Anda." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Jika Anda ingin membatasi siapa saja yang dapat menerima notifikasi untuk aktivitas akun Anda, Anda dapat mengubahnya di <0>Pengaturan โ†’ Privasi dan Keamanan." @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "Kotak masuk kosong!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Nama pengguna atau kata sandi salah" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "Kode Undangan" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Kode undangan salah. Periksa bahwa Anda memasukkannya dengan benar dan coba lagi." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Hanya ada Anda saat ini! Tambahkan lebih banyak orang ke paket pemula Anda melalui pencarian di atas." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID Kerja: {0}" @@ -6816,8 +6766,8 @@ msgstr "Bergabunglah dengan kami" msgid "Journalism" msgstr "Jurnalisme" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "Situs KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Dilabeli oleh {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Dilabeli oleh pemosting." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Label" @@ -6852,7 +6802,7 @@ msgstr "Label ditambahkan" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Label adalah anotasi yang diterapkan pada pengguna dan konten. Label dapat digunakan untuk menyembunyikan, memperingatkan, dan mengkategorikan jaringan." @@ -6864,7 +6814,7 @@ msgstr "Label pada akun Anda" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Pengaturan Bahasa" @@ -6874,7 +6824,7 @@ msgstr "Pengaturan Bahasa" msgid "Languages" msgstr "Bahasa" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Lebih besar" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Terbaru" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Pelajari Lebih Lanjut" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Pelajari lebih lanjut mengenai hosting mandiri PDS Anda." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Pelajari lebih lanjut tentang moderasi yang diterapkan pada konten ini" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Pelajari lebih lanjut tentang peringatan ini" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Pelajari lebih lanjut." @@ -6993,8 +6943,8 @@ msgstr "Tinggalkan" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Meninggalkan Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "yang tersisa" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Biarkan saya memilih" @@ -7057,7 +7007,7 @@ msgstr "Ayo!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Terang" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Terang" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Suka" @@ -7076,7 +7026,7 @@ msgstr "Suka" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Suka ({0, plural, other {# suka}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Sukai 10 postingan" @@ -7085,7 +7035,7 @@ msgstr "Sukai 10 postingan" msgid "Like 10 posts to train the Discover feed" msgstr "Sukai 10 postingan untuk melatih feed Discover" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Sukai feed ini" @@ -7093,8 +7043,8 @@ msgstr "Sukai feed ini" msgid "Like this labeler" msgstr "Sukai labeler ini" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Disukai oleh" @@ -7111,27 +7061,45 @@ msgstr "Disukai Oleh" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Disukai oleh {0, plural, other {# pengguna}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Disukai oleh {likeCount, plural, other {# pengguna}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Suka" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Suka pada postingan ulang Anda" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Suka pada postingan ini" @@ -7144,7 +7112,7 @@ msgstr "Linier" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Daftar" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Daftar batal dibisukan" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "Siaran langsung" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "Tautan siaran langsung" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Muat lebih banyak" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Muat lebih banyak feed yang disarankan" @@ -7292,8 +7260,8 @@ msgstr "Muat lebih banyak feed yang disarankan" msgid "Load new notifications" msgstr "Muat notifikasi baru" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Catatan" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "Buat penyesuaian untuk pengaturan email akun Anda" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Buatkan untuk saya" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "Tandai semua sebagai dibaca" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Tandai telah dibaca" msgid "Marked all as read" msgstr "Ditandai semua sebagai dibaca" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "Mungkin nanti" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Media" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media yang mungkin mengganggu atau tidak pantas untuk sebagian orang." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "pengguna yang Anda sebut" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Sebutan" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Pesan dihapus" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "Opsi pesan" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Pesan" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderasi" @@ -7636,7 +7608,7 @@ msgstr "Daftar moderasi diperbarui" msgid "Moderation lists" msgstr "Daftar moderasi" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Daftar Moderasi" @@ -7645,7 +7617,7 @@ msgstr "Daftar Moderasi" msgid "moderation settings" msgstr "pengaturan moderasi" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Status moderasi" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "Akun yang dibisukan" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Akun yang Dibisukan" @@ -7867,7 +7839,6 @@ msgstr "Ingin melaporkan pelanggaran hak cipta, permintaan hukum, atau masalah k msgid "Nevermind, create a handle for me" msgstr "Tidak usah, buatkan panggilan untuk saya" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Baru" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Obrolan baru" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Fitur Baru" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Pengikut baru" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "Daftar baru" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Kata sandi baru" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Postingan baru" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Balasan terbaru lebih dulu" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Berita" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Gambar berikutnya" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "Tidak ada sandi aplikasi" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "Tidak ada kadaluarsa dipasang" msgid "No feeds found. Try searching for something else." msgstr "Tidak ditemukan feed apa pun. Coba pencarian lain." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "Tidak ada gambar" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Belum ada yang menyukai" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "Tidak lagi mengikuti {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "Belum ada pesan" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "Tak seorang pun dapat mengutip postingan ini selain pemosting." msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Tidak ada postingan di sini" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Belum ada kutipan" @@ -8198,11 +8190,7 @@ msgstr "Belum ada kutipan" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "Tidak ada hasil" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Tidak ada hasil" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Tidak ada hasil untuk \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "Tidak ditemukan hasil" msgid "No results found for \"{query}\"" msgstr "Tidak ditemukan hasil untuk \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Tidak ada hasil." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "Tidak terima kasih" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "Tak seorang pun" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Belum ada yang menyukai ini. Mungkin Anda bisa jadi yang pertama!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Belum ada yang mengutip. Mungkin Anda bisa jadi yang pertama!" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Ketelanjangan Non-Seksual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Tidak Ditemukan" @@ -8333,7 +8325,7 @@ msgstr "Catatan tentang berbagi" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Catatan: Bluesky merupakan jaringan terbuka dan publik. Pengaturan ini hanya membatasi visibilitas konten Anda pada aplikasi dan situs web Bluesky. Konten Anda mungkin tetap ditampilkan oleh aplikasi atau situs web lain kepada pengguna yang tidak masuk." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Catatan: Postingan ini hanya dapat dilihat untuk pengguna yang masuk." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Pengaturan notifikasi" @@ -8353,11 +8345,12 @@ msgstr "Pengaturan notifikasi" msgid "Notification sounds" msgstr "Suara notifikasi" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Oh tidak!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Oke" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Pengaturan ulang orientasi" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Satu atau beberapa GIF belum memiliki teks alt." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Satu atau beberapa gambar belum memiliki teks alt." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Satu atau beberapa video belum memiliki teks alt." @@ -8471,7 +8466,7 @@ msgstr "Hanya {0} yang dapat membalas." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Hanya mendukung berkas WebVTT (.vtt)" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ups!" @@ -8544,7 +8543,7 @@ msgstr "Ups!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Buka pembuat avatar" @@ -8570,21 +8569,22 @@ msgstr "Buka opsi percakapan" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Buka menu geser" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Buka pemilih emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Buka halaman info feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Buka menu opsi feed" @@ -8627,7 +8627,7 @@ msgstr "Buka halaman debug moderasi" msgid "Open muted words and tags settings" msgstr "Buka pengaturan kata dan tagar yang dibisukan" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Buka paket" @@ -8699,7 +8699,7 @@ msgstr "Membuka detail tambahan untuk entri debug" msgid "Opens alt text dialog" msgstr "Membuka dialog teks alt" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Membuka kamera pada perangkat" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Membuka alur untuk membuat akun baru Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Membuka alur untuk masuk ke akun Bluesky Anda yang sudah ada" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Kata sandi diganti!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Jeda" @@ -8925,12 +8925,12 @@ msgstr "Jeda" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Jeda video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Profil" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Orang yang diikuti oleh @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Orang yang mengikuti @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Orang yang saya ikuti" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Gambar yang ditujukan untuk orang dewasa." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Sematkan feed" @@ -9034,7 +9034,7 @@ msgstr "Sematkan feed" msgid "Pin to home" msgstr "Sematkan ke beranda" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Sematkan ke Beranda" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Disematkan" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} disematkan ke Beranda" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Disematkan ke daftar feed Anda" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Putar" @@ -9076,8 +9076,8 @@ msgstr "Putar {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Putar video" @@ -9109,11 +9109,11 @@ msgstr "Silakan tambahkan label peringatan konten yang sesuai dengan media yang msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Silakan tentukan panggilan Anda." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Masukkan kata sandi Anda." @@ -9122,7 +9122,7 @@ msgstr "Masukkan kata sandi Anda." 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 "Silakan klik pada tautan dalam email yang telah kami kirimkan untuk memverifikasi alamat email baru Anda. Ini merupakan langkah penting agar Anda menikmati terus semua fitur dari Bluesky." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Mohon selesaikan verifikasi captcha." @@ -9179,7 +9179,7 @@ msgstr "" 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:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Masukkan email Anda." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politik" @@ -9269,7 +9269,7 @@ msgstr "Politik" msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Posting" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Postingan" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Posting Semua" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Postingan diblokir" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Postingan oleh @{0}" @@ -9340,7 +9340,7 @@ msgstr "Postingan yang Anda sembunyikan" msgid "Post interaction settings" msgstr "Pengaturan interaksi postingan" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Pengaturan Interaksi Postingan" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "Postingan disematkan" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "Postingan dilepaskan" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Postingan" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Postingan dapat dibisukan berdasarkan teks, tagar, atau keduanya. Sebaik msgid "Posts hidden" msgstr "Postingan disembunyikan" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Tautan yang berpotensi menyesatkan" @@ -9449,20 +9451,21 @@ msgstr "Privasi" msgid "Privacy and security" msgstr "Privasi dan keamanan" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privasi dan Keamanan" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Pengaturan Privasi dan Keamanan" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Kebijakan Privasi" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Memproses video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Daftar terbuka yang dapat dibagikan untuk membisukan atau memblokir pengguna secara massal." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Kirim postingan" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Kirim postingan" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Kirim balasan" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Kirim balasan" @@ -9599,12 +9602,12 @@ msgstr "Kutipan dinonaktifkan" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Kutipan" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Kutipan postingan ini" @@ -9647,7 +9650,7 @@ msgstr "Aktifkan kembali akun Anda" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "Baca blog postingan (dalam bahasa Inggris)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Sembunyikan" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Lihat selengkapnya" @@ -9687,11 +9690,11 @@ msgstr "Baca Kebijakan Privasi Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Baca Ketentuan Layanan Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Direkomendasikan" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Hubungkan kembali" @@ -9748,7 +9747,7 @@ msgstr "Tolak permintaan obrolan" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Memuat ulang percakapan" @@ -9766,7 +9765,7 @@ msgstr "Memuat ulang percakapan" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Hapus" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Hapus akun" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Hapus dari daftar feed saya" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Hapus dari akses cepat?" @@ -9862,7 +9861,7 @@ msgstr "Hapus dari akses cepat?" msgid "Remove from saved feeds" msgstr "Hapus dari feed tersimpan" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Hapus gambar" msgid "Remove live status" msgstr "Hapus status siaran langsung" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Dihapus dari daftar" msgid "Removed from saved feeds" msgstr "Dihapus dari feed tersimpan" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Balasan" @@ -10037,7 +10037,7 @@ msgstr "Balasan ke postingan ini dinonaktifkan." msgid "Reply" msgstr "Balas" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Balas" @@ -10098,8 +10098,8 @@ msgstr "Laporkan percakapan" msgid "Report dialog" msgstr "Dialog laporan" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Laporkan feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Diposting ulang oleh Anda" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Postingan ulang" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Postingan ulang postingan ini" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Postingan ulang dari posting ulang Anda" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Mencoba kembali tindakan terakhir yang gagal" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Kembali ke beranda" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Kembali ke halaman sebelumnya" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Simpan perubahan" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Simpan kode QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Simpan ke daftar feed saya" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feed Tersimpan" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Disimpan ke daftar feed Anda" @@ -10520,8 +10520,8 @@ msgstr "Disimpan ke daftar feed Anda" msgid "Say hello!" msgstr "Katakan halo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Sains" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Gulir ke atas" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Cari" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cari postingan @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Cari feed yang ingin Anda sarankan kepada orang lain." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Cari lebih banyak akun" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Cari lebih banyak umpan" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Cari GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Pencarian saat ini tidak tersedia saat Anda keluar" @@ -10707,17 +10707,22 @@ msgstr "Lihat postingan #{tag} dari pengguna" msgid "See jobs at Bluesky" msgstr "Lihat lowongan pekerjaan di Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Lihat lebih banyak" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Tombol geser. Gunakan tombol panah untuk maju dan mundur, dan spasi untuk memutar/menjeda" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Pilih warna" @@ -10764,11 +10769,11 @@ msgstr "Pilih akun" msgid "Select an app language" msgstr "Pilih bahasa aplikasi" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Pilih avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Pilih emoji" @@ -10780,12 +10785,13 @@ msgstr "Pilih suatu opsi" msgid "Select app language" msgstr "Pilih bahasa aplikasi" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Pilih GIF" msgid "Select GIF \"{0}\"" msgstr "Pilih GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "Pilih bahasa utama" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Pilih emoji {emojiName} sebagai avatar Anda" @@ -10945,7 +10951,8 @@ msgstr "Kirim pesan" msgid "Send post to {name}" msgstr "Kirim postingan ke {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Kirim postingan ke..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Kirim email verifikasi" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Kirim melalui pesan" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Atur email untuk pengaturan ulang kata sandi" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Pengaturan" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Pengaturan untuk aktivitas dari yang lainnya" @@ -11036,49 +11043,49 @@ msgstr "Pengaturan untuk aktivitas dari yang lainnya" msgid "Settings for allowing others to be notified of your posts" msgstr "Pengaturan untuk mengizinkan orang lain diberi tahu tentang postingan Anda" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Pengaturan untuk notifikasi suka" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Pengaturan untuk notifikasi sebutan" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Pengaturan untuk notifikasi pengikut baru" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Pengaturan untuk notifikasi kutipan" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Pengaturan untuk notifikasi balasan" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Tetap bagikan" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Bagikan DID pemosting" @@ -11127,7 +11134,7 @@ msgstr "Bagikan DID pemosting" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialog berbagi tautan" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Bagikan URI postingan at://" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Bagikan kode QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Bagikan feed ini" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Bagikan paket pemula ini" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Bagikan paket pemula ini dan bantu orang-orang untuk bergabung dengan komunitas Anda di Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Penguji Preferensi Bersama" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Tampilkan" msgid "Show alt text" msgstr "Tampilkan teks alt" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Tetap tampilkan" @@ -11274,9 +11281,9 @@ msgstr "Tetap tampilkan daftar" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Tampilkan Lebih Lanjut" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Tampilkan peringatan dan saring dari feed" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Menampilkan informasi tentang kapan postingan ini dibuat" @@ -11341,15 +11348,15 @@ msgstr "Menampilkan informasi tentang kapan postingan ini dibuat" msgid "Shows other accounts you can switch to" msgstr "Menampilkan akun lain yang dapat Anda alihkan" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Menampilkan konten" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Menampilkan konten" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Keluar?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Wajib Masuk" @@ -11469,7 +11476,7 @@ msgstr "Lewati" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Lebih kecil" @@ -11499,7 +11506,7 @@ msgstr "Menunda pengingat" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "Beberapa dari verifikasi Anda tidak valid." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Beberapa feed lain yang mungkin Anda suka" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Seseorang menanggapi {0}" @@ -11554,7 +11561,7 @@ msgstr "Seseorang menanggapi {0}" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Ada yang tidak beres, silakan coba lagi" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "Ada yang tidak beres. Silakan coba lagi." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Ada masalah? Beri tahu kami." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Olahraga" @@ -11668,7 +11675,7 @@ msgstr "Mulai percakapan, dan percakapan akan muncul di sini." msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Mulai obrolan baru" @@ -11682,17 +11689,17 @@ msgstr "Mulai tambahkan orang" msgid "Start adding people!" msgstr "Mulai tambahkan orang!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Mulai obrolan dengan {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paket Pemula" @@ -11715,12 +11722,16 @@ msgstr "Paket pemula dari Anda" msgid "Starter pack is invalid" msgstr "Paket pemula tidak valid" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Paket Pemula" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Paket pemula memudahkan Anda untuk berbagi feed dan akun favorit Anda dengan teman." @@ -11728,7 +11739,7 @@ msgstr "Paket pemula memudahkan Anda untuk berbagi feed dan akun favorit Anda de msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Halaman Status" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Langkah {0} dari {1}" @@ -11754,7 +11765,7 @@ msgstr "Penyimpanan dibersihkan, Anda perlu memulai ulang aplikasi sekarang." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Berlangganan @{0} untuk menggunakan label berikut:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Berhasil diverifikasi" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Disarankan untuk Anda" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Terbenam" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Beralih ke {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistem" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "Ketuk untuk tutup menu konteks" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Ketuk untuk menutup" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Tugas selesai - mengikuti 10 akun!" msgid "Task complete - 10 likes!" msgstr "Tugas selesai - 10 suka!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Latih algoritma kami dengan apa yang Anda sukai" @@ -12060,7 +12073,7 @@ msgstr "Ketentuan" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Tidak dapat menemukan paket pemula." msgid "That username is already taken" msgstr "Nama pengguna telah terpakai" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Sekian!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Itu saja!" @@ -12216,7 +12229,7 @@ msgstr "Server tampaknya mengalami masalah. Silahkan coba lagi dalam beberapa sa msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Paket pemula yang ingin Anda lihat tidak valid. Anda dapat menghapus paket pemula ini." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Subyek dari menu konteks" @@ -12238,7 +12251,7 @@ msgstr "Kode verifikasi yang Anda berikan tidak valid. Pastikan Anda telah mengg msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Ada masalah saat menghubungi server" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Ada masalah saat menghubungi server, silakan periksa koneksi internet Anda dan coba lagi." @@ -12283,8 +12296,8 @@ msgstr "Ada masalah saat menghubungi server, silakan periksa koneksi internet An msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ada masalah saat mengambil notifikasi. Ketuk di sini untuk mencoba lagi." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Ada masalah saat mengambil postingan. Ketuk di sini untuk mencoba lagi." @@ -12309,7 +12322,7 @@ msgstr "Ada masalah saat mengambil info layanan Anda" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Ada masalah saat menghapus feed ini. Silakan periksa koneksi internet Anda dan coba lagi." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Pengaturan ini hanya berlaku untuk feed Mengikuti." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} ini telah ditandai:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Akun ini memiliki satu atau beberapa kali upaya verifikasi, namun saat ini belum terverifikasi." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Akun ini mewajibkan pengguna untuk masuk agar bisa melihat profilnya." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Feed ini kosong! Anda mungkin perlu mengikuti lebih banyak pengguna atau menyesuaikan pengaturan bahasa." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Feed ini kosong." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Panggilan ini sudah digunakan. Silakan coba yang lain." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Label ini diterapkan oleh Anda." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Pelabel ini belum menyatakan label apa yang diterbitkannya, dan mungkin tidak aktif." @@ -12621,13 +12634,13 @@ msgstr "Daftar ini kosong." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Postingan ini mengklaim dibuat pada <0>{0}, tetapi baru terlihat di Bluesky pada <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Postingan ini mengklaim dibuat pada <0>{0}, tetapi baru terlihat di msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Postingan ini menggunakan pembatasan interaksi yang tidak dikenali. Anda mungkin perlu memperbarui aplikasi." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Postingan ini hanya dapat dilihat untuk pengguna yang masuk." @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Postingan ini akan disembunyikan dari semua feed dan utas. Tindakan ini tidak dapat dibatalkan." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Pembuat postingan ini telah menonaktifkan kutipan." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Pengguna ini tidak memiliki nama tampilan, dan oleh karena itu tidak dapat diverifikasi." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Pengguna ini tidak memiliki pengikut." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Pengguna ini telah memblokir Anda. Anda tidak dapat melihat konten mereka." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Pengguna ini termasuk dalam daftar <0>{0} yang telah Anda bisukan" msgid "This user is new here. Press for more info about when they joined." msgstr "Pengguna ini masih baru. Tekan untuk informasi lebih lanjut tentang kapan ia bergabung." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Pengguna ini tidak mengikuti siapa pun." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Ini akan menghapus @{0} dari daftar akses cepat." @@ -12786,7 +12801,7 @@ msgstr "Preferensi Utas" msgid "Threaded" msgstr "Bersusun" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferensi Utas" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Teratas" @@ -12858,7 +12873,7 @@ msgstr "Teratas" msgid "Top replies first" msgstr "Balasan teratas lebih dulu" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Topik" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "Tampilan pohon" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Trending" @@ -12902,13 +12919,15 @@ msgstr "Trending" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Tren Video" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Percaya muncul dari hubungan, komunitas, dan konteks bersama, oleh karena itu kami juga aktifkan <0>verifikator terpecaya: organisasi yang bisa langsung terbitkan verifikasi." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "Tidak tersedia" msgid "Unavailable feed information" msgstr "Informasi feed tidak tersedia" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Buka Blokir Akun?" msgid "Unblock list" msgstr "Buka blokir daftar" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Berhenti ikuti {0}" msgid "Unfollow account" msgstr "Berhenti ikuti akun" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Berhenti mengikuti pengguna" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Batal suka" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "Bunyikan utas" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Bunyikan video" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Lepas sematan" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Lepaskan feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Lepaskan sematan dari beranda" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Lepas sematan daftar moderasi" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} dilepaskan dari Beranda" @@ -13258,11 +13279,11 @@ msgstr "Berhenti langganan pelabel ini" msgid "Unsubscribed from list" msgstr "Telah berhenti berlangganan dari daftar" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Gagal memperbarui visibilitas balasan" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Unggah foto saja" @@ -13355,7 +13376,7 @@ msgstr "Unggah dari Berkas" msgid "Upload from Library" msgstr "Unggah dari Pustaka" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "Mengunggah gambar..." msgid "Uploading link thumbnail..." msgstr "Mengunggah keluku tautan..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Mengunggah video..." @@ -13408,7 +13429,7 @@ msgstr "Gunakan sandi ini untuk masuk ke aplikasi lain bersama dengan panggilan msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "Verifikasi gagal, silakan coba lagi." msgid "Verification settings" msgstr "Pengaturan verifikasi" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Pengaturan Verifikasi" @@ -13618,34 +13639,34 @@ msgstr "Video" msgid "Video failed to process" msgstr "Video gagal diproses" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Feed Video" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Video dari {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Permainan Video" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video telah dijeda" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video sedang diputar" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video tidak ditemukan." @@ -13653,7 +13674,7 @@ msgstr "Video tidak ditemukan." msgid "Video settings" msgstr "Pengaturan video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video diunggah" @@ -13662,17 +13683,17 @@ msgstr "Video diunggah" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Video" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "Lihat avatar {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Lihat profil {0}" @@ -13724,13 +13745,13 @@ msgstr "Lihat postingan blog untuk detail lebih lanjut" msgid "View debug entry" msgstr "Lihat entri debug" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Lihat detail" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Lihat utas lengkap" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "Lihat informasi tentang label ini" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Lihat lainnya" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Lihat layanan pelabelan yang disediakan oleh @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Lihat verifikasi pengguna ini" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Lihat pengguna yang menyukai feed ini" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Lihat video" @@ -13831,7 +13852,7 @@ msgstr "Lihat daftar moderasi Anda" msgid "View your muted accounts" msgstr "Lihat daftar akun yang Anda bisukan" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Lihat verifikasi Anda" @@ -13840,7 +13861,7 @@ msgstr "Lihat verifikasi Anda" msgid "Views full image" msgstr "Melihat gambar penuh" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Melihat video dalam mode imersif" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Kami mengalami masalah jaringan, coba lagi" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Kami memperkenalkan lapisan verifikasi baru di Bluesky โ€” tanda centang yang mudah dilihat." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "Maaf, kami tidak dapat memuat daftar ini. Jika masalah berlanjut, silaka msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Mohon maaf, untuk saat ini kami tidak dapat memuat kata yang Anda bisukan. Silakan coba lagi." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Kami mohon maaf! Postingan yang Anda balas telah dihapus." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Apa kabar?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Siapa yang dapat memverifikasi?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Waduh!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Tulis postingan" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Tulis balasan Anda" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "Anda tidak lagi bersiaran langsung" msgid "You are not allowed to upload videos." msgstr "Anda tidak diizinkan untuk mengunggah video." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "Anda telah diverfikasi. Status verifikasi Anda akan hilang jika Anda men msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Anda telah diverfikasi. Status verifikasi Anda akan hilang jika Anda mengganti nama panggilan Anda. <0>Pelajari selengkapnya." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Anda dapat menyesuaikan minat Anda kapan saja melalui pengaturan \"Konten dan Media\"." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Sekarang Anda dapat masuk dengan kata sandi baru." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Anda bisa mengubahnya nanti melalui pengaturan." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "Anda telah berhasil memverifikasi alamat email Anda. Anda dapat menutup msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Anda telah mencapai batas sementara unggahan video. Silakan coba lagi nanti." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Anda belum membuat paket pemula!" @@ -14614,7 +14640,7 @@ msgstr "Anda hanya dapat menambahkan hingga {STARTER_PACK_MAX_SIZE, plural, othe msgid "You may only add up to 3 feeds" msgstr "Anda hanya boleh menambahkan maksimal 3 feed" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Anda harus mengikuti setidaknya tujuh orang sebelum membuat paket pemula." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "Anda perlu memverifikasi email Anda sebelum Anda mengaktifkan email 2FA." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Anda mungkin ingin memuat ulang aplikasi sekarang." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Anda menanggapi {0}" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Anda akan mengikuti pengguna dan feed yang disarankan setelah selesai membuat akun!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Anda akan mengikuti pengguna yang disarankan setelah selesai membuat akun!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Anda telah mencapai bagian akhir feed! Temukan lebih banyak akun lain untuk diikuti." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Anda telah mencapai jumlah maksimum permintaan yang diizinkan. Silakan coba lagi." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak bita)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak video)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Anda kehabisan video untuk ditonton. Mungkin sudah saatnya untuk beristirahat?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Akun Anda" @@ -14835,11 +14861,11 @@ msgstr "Akun Anda telah ditangguhkan" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Usia akun Anda belum cukup lama untuk menggungah video. Silakan coba lagi nanti." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "Email Anda" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Email Anda tidak valid." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Minat Anda telah diperbarui!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Minat Anda membantu kami mencari apa yang Anda sukai!" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "Kata sandi Anda harus terdiri dari setidaknya 8 karakter." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Preferensi bahasa Anda" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Profil, postingan, feed, dan daftar Anda tidak akan terlihat lagi oleh pengguna Bluesky lain. Anda dapat mengaktifkan kembali kapan saja dengan cara masuk ke akun." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "Laporan anda akan dikirimkan ke <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Minat yang anda pilih membantu kami menyajikan konten yang Anda inginkan." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po index 7d61269429..dfb2e06073 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Italian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categoria \"{interestsDisplayName}\" (attiva)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(messaggio bloccato nascosto)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(contiene allegati)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(messaggio eliminato)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(link di invito alla chat non valido)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(messaggio inviato prima che tu partecipassi)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# ora} other {# ore}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# etichetta applicata al tuo post} other {# etichette applicate al tuo post}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# etichetta applicata} other {# etichette applicate}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# mi piace} other {# mi piace}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membro} other {# membri}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# nuova richiesta di partecipazione} other {# nuove ric #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {# persona ha} other {# persone hanno}} reagito โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (account)" @@ -251,36 +252,13 @@ msgstr "{0} aggiunto alla chat" msgid "{0} and {1} added to chat" msgstr "{0} e {1} aggiunti alla chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "Piace a {0} e {1}" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "Piace a {0} e {others, plural, one {{1} altro} other {{2} altri}}" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "Piace a {0} e {othersLabel}" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} seguiti" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} ti sta bloccando" @@ -324,14 +302,6 @@ msgstr "{0} ha abbandonato" msgid "{0} left the group" msgstr "{0} ha lasciato il gruppo" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "Piace a {0}" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} di 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ha reagito con {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} e {memberCount, plural, one {# altro} other {# altri}} aggiunti alla chat" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "Piace a {0}, {1} e {others, plural, one {{2} altro} other {{3} altri}}" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "Piace a {0}, {1} e {othersLabel}" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} ti ha verificato" msgid "{following} following" msgstr "{following} seguiti" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "Non รจ possibile aggiungere {handle}" @@ -698,7 +660,7 @@ msgstr "Non รจ possibile aggiungere {handle}" msgid "{handle} can't be messaged" msgstr "{handle} non puรฒ ricevere messaggi" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "{handle} non puรฒ ricevere messaggi" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# elemento non letto} other {# elementi msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contatto trovato} other {# contatti trovati}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} altro} other {{1} altri}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} ha iniziato a usare Bluesky {timeAgoString} fa" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} ha iniziato a usare Bluesky {timeAgoString} fa con uno starter pack" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {# carattere rimanente} other {# caratteri rimanenti}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} ha risposto" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} ha risposto a {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} ti ha risposto" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# richiesta} other {# richieste}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ richieste" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}h fa" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} รจ un certificatore attendibile" @@ -842,13 +795,13 @@ msgstr "Verifiche di {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {seguito} other {seguiti}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citazione} other {citazioni}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} other {repost}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {salvato} other {salvati}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {mi piace} other {mi piace}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> ti ha aggiunto" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Accedi<1> o <2>crea un account<3> <4>per cercare notizie, sport, politica e tutto quello che accade su Bluesky." @@ -971,7 +924,7 @@ msgstr "30 giorni" msgid "7 days" msgstr "7 giorni" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Una raccolta di feed popolari che puoi trovare su Bluesky, tra cui News, Booksky, Game Dev, Blacksky e Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Si รจ verificato un errore di rete. Controlla la tua connessione a inter #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "รˆ stato inviato un nuovo codice" msgid "A new form of verification" msgstr "Una nuova forma di verifica" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Una risposta a un messaggio inviato prima che tu partecipassi" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Uno screenshot mentre si scrive un post con un nuovo pulsante accanto al pulsante \"Post\" che ha testo \"Bozze\", con un effetto fuochi d'artificio color arcobaleno. Di seguito, nell'editor si legge \"Ehi, hai sentito la notizia? Bluesky ha le bozze ora!!!\"." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Uno dei destinatari selezionati non รจ seguito dal mittente." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Richiesta di adesione inoltrata: il proprietario del gruppo esaminerร  l msgid "Accessibility" msgstr "Accessibilitร " -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Impostazioni di accessibilitร " -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Account silenziato dalla lista" msgid "Account options" msgstr "Opzioni dell'account" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Account rimosso dall'accesso rapido" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Gli account con una spunta blu dentellata <0><1/> possono verificare l'identitร  di altri account. I certificatori attendibili sono selezionati da Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Attivitร  da altri" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Aggiungi testo alternativo (opzionale)" msgid "Add another account" msgstr "Aggiungi un altro account" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Aggiungi un altro post" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Aggiungi un altro post al thread" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Aggiungi un altro filtro di ricerca" @@ -1253,7 +1213,7 @@ msgstr "Aggiungi etichetta automazione all'account" msgid "Add emoji reaction" msgstr "Aggiungi reazione con emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Aggiungi filtro" @@ -1338,7 +1298,7 @@ msgstr "Aggiungi feed" msgid "Add to lists" msgstr "Aggiungi a liste" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Aggiungi ai post salvati" @@ -1400,7 +1360,7 @@ msgstr "Esplicito" msgid "Adult content" msgstr "Contenuto per adulti" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Tutte" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Tutti gli amici seguiti!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Tutte le lingue" @@ -1491,11 +1447,6 @@ msgstr "Nei tuoi feed verranno mostrate tutte le lingue." msgid "All of these words" msgstr "Tutte queste parole" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "Tutti i post" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Tutti i feed che hai salvato, in un unico posto." @@ -1560,7 +1511,7 @@ msgstr "Consente l'accesso ai tuoi messaggi" msgid "Already have a code?" msgstr "Hai giร  un codice?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Hai giร  un account?" @@ -1614,7 +1565,7 @@ msgstr "รˆ stata inviata un'email a {0}. Include un codice di conferma che puoi msgid "An error has occurred" msgstr "Si รจ verificato un errore" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Si รจ verificato un errore" @@ -1631,7 +1582,7 @@ msgstr "Si รจ verificato un errore durante il recupero degli account suggeriti." msgid "An error occurred while fetching the feed." msgstr "Si รจ verificato un errore recuperando il feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Si รจ verificato un errore nel creare il tuo starter pack. Vuoi riprovare?" @@ -1640,11 +1591,11 @@ msgstr "Si รจ verificato un errore nel creare il tuo starter pack. Vuoi riprovar msgid "An error occurred while hiding suggestion. {0}" msgstr "Si รจ verificato un errore nascondendo il suggerimento. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Si รจ verificato un errore durante il caricamento del video. Riprova piรน tardi." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Si รจ verificato un errore durante il caricamento del video. Riprova." @@ -1684,7 +1635,7 @@ msgstr "Si รจ verificato un errore. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Un'illustrazione che raffigura avatar utente che passano da una rubrica all'app Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Unโ€™immagine di diversi post su Bluesky con accanto le icone per ripubblicare, mettere mi piace e commentare" @@ -1705,17 +1656,15 @@ msgstr "Un link di invito consente ad altri di partecipare a questa chat di grup msgid "An issue not included in these options" msgstr "Un problema non incluso in queste opzioni" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Si รจ verificato un problema durante la creazione della chat di gruppo, riprova." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Si รจ verificato un problema durante l'avvio della chat, riprova." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Si รจ verificato un problema nell'aprire la chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "Qualsiasi data" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Chiunque" @@ -1802,7 +1749,7 @@ msgstr "Chiunque mi segua" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Chiunque lo abbia non potrร  piรน iscriversi o chiedere di partecipare. Puoi sempre crearne uno nuovo." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "I nomi delle password per app devono essere lunghi almeno 4 caratteri" msgid "App passwords" msgstr "Password per app" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Password per app" @@ -1891,8 +1838,8 @@ msgstr "Fai ricorso contro questa decisione" msgid "Appeal this label" msgstr "Contesta questa etichetta" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Applica pull request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archiviato da {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Post archiviato" @@ -1980,7 +1927,7 @@ msgstr "Vuoi rimuoverlo dai tuoi feed?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Annullare la richiesta di partecipare a {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Scartare questo post?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Account automatizzato" @@ -2033,7 +1985,7 @@ msgstr "Automatico" msgid "Automation label" msgstr "Etichetta automazione" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Etichetta automazione" @@ -2050,12 +2002,16 @@ msgstr "Riproduci automaticamente video e GIF" msgid "Available" msgstr "Disponibile" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Devi verificare il tuo indirizzo email prima di creare un post o rispondere." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Prima di creare uno starter pack, devi verificare la tua email." @@ -2135,10 +2091,10 @@ msgstr "Devi verificare il tuo indirizzo email prima di poter ricevere notifiche #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2116,28 @@ msgstr "Inizia il processo di verifica dell'etร  compilando i campi sottostanti. msgid "Beta Feature" msgstr "Funzionalitร  beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" +msgstr "Funzionalitร  beta" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" msgstr "" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Le funzionalitร  beta potrebbero essere instabili. Alcune modifiche potrebbero richiedere di ricaricare l'app." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Le funzionalitร  beta potrebbero essere instabili. Alcune modifiche potrebbero richiedere di riavviare l'app." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2147,9 @@ msgstr "Data di nascita" msgid "Birthday" msgstr "Compleanno" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Bloccato" msgid "Blocked accounts" msgstr "Account bloccati" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Account bloccati" @@ -2282,7 +2244,7 @@ msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzio msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzionarti, o interagire in nessun altro modo con te. Non vedrai il loro contenuto e non vedranno il tuo." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Il blocco non impedisce all'etichettatore di inserire etichette sul tuo account." @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non puรฒ confermare l'autenticitร  della data dichiarata." @@ -2330,7 +2293,7 @@ msgstr "Bluesky รจ una rete aperta dove puoi scegliere il fornitore che ospita i msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky รจ una rete aperta che ti permette di scegliere chi ospita i tuoi dati. Se sei un nuovo utente, ti consigliamo di iniziare con l'opzione predefinita Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky รจ meglio con gli amici!" @@ -2358,7 +2321,7 @@ msgstr "Termini di servizio di Bluesky" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky memorizza i tuoi contatti come dati codificati. La rimozione dei tuoi contatti eliminerร  immediatamente questi dati." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky sceglierร  un set di account consigliati dal tuo network." @@ -2403,20 +2366,20 @@ msgstr "Riunisci fino a 50 amici in un'unica chat." msgid "Browse custom feeds" msgstr "Esplora feed personalizzati" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Esplora piรน account" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Scopri nuovi feed nella pagina Esplora" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Scopri nuovi suggerimenti" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Scopri nuovi suggerimenti nella pagina Esplora" @@ -2425,24 +2388,25 @@ msgstr "Scopri nuovi suggerimenti nella pagina Esplora" msgid "Browse other feeds" msgstr "Cerca altri feed" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Sfoglia i post su {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Sfoglia i post con tag {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Sfoglia lo starter pack {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Sfoglia l'argomento {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Sfoglia l'argomento {displayName}" @@ -2461,8 +2425,8 @@ msgstr "Pulsante per tornare alla timeline principale" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Di {0}" @@ -2473,9 +2437,9 @@ msgstr "di @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Di <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Iscrivendoti accetti i <0>Termini di servizio e l'<1>Informativa sul msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Iscrivendoti accetti i <0>Termini di servizio." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Da te" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Fotocamera" @@ -2534,7 +2498,7 @@ msgstr "Accesso alla fotocamera necessario" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Accesso alla fotocamera necessario" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Annulla la riattivazione e disconnettiti" msgid "Cancel reply" msgstr "Annulla risposta" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Annulla la ricerca" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Le modifiche allo starter pack fatte dopo la sua creazione non cambieranno la lista. La lista sarร  una copia indipendente." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Conversazione silenziata" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Chat non trovata." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Opzioni chat" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "I proprietari delle chat non possono lasciare una chat di gruppo." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Destinatario della chat non seguito dal mittente." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Richieste" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Richieste di messaggi" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Impostazioni chat" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Conversazione riattivata" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Messaggi" @@ -2810,7 +2775,7 @@ msgstr "Controlla la tua casella di posta <0>{currentEmail}: dovrebbe arriva #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Ricontrolla in seguito!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2802,7 @@ msgstr "Scegli il metodo di verifica del dominio" msgid "Choose Feeds" msgstr "Scegli feed" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Scegli per me" @@ -2854,7 +2819,7 @@ msgstr "Scegli utenti" msgid "Choose post languages" msgstr "Seleziona lingue del post" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Scegli questo colore per il tuo avatar" @@ -2879,7 +2844,7 @@ msgstr "Personalizza la tua cronologia! I feed creati dalla collettivitร  ti per msgid "Choose your password" msgstr "Scegli la tua password" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Scegli il tuo nome utente" @@ -2966,7 +2931,7 @@ msgstr "Fai clic qui per visualizzare il link di invito per questa chat di grupp msgid "Click to open tag menu for {0}" msgstr "Fai clic per aprire il menu dei tag di {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Clicca per riprovare l'invio" @@ -3003,7 +2968,7 @@ msgstr "Clicca per riprovare l'invio" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Clicca per riprovare l'invio" msgid "Close" msgstr "Chiudi" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Chiudi la finestra attiva" @@ -3047,7 +3012,7 @@ msgstr "Chiudi banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Chiudi visualizzatore immagini" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Chiudi menu" @@ -3090,7 +3055,7 @@ msgstr "Chiudi il banner delle richieste in arrivo" msgid "Close this dialog" msgstr "Chiudi la finestra" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Chiudi finestra di benvenuto" @@ -3098,7 +3063,7 @@ msgstr "Chiudi finestra di benvenuto" msgid "Closes password update alert" msgstr "Chiude l'avviso di aggiornamento della password" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Annulla la creazione del post ed elimina la bozza" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Colore" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modalitร  colore" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Fumetti" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Linee guida della community" @@ -3141,7 +3106,7 @@ msgstr "Linee guida della community" msgid "Complete onboarding and start using your account" msgstr "Completa la registrazione e inizia a usare il tuo account" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Completa la challenge" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Scrivi un nuovo post" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Scrivi post fino a {0, plural, other {# caratteri}}" @@ -3160,11 +3125,11 @@ msgstr "Scrivi post fino a {0, plural, other {# caratteri}}" msgid "Compose reply" msgstr "Scrivi la risposta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Compressione GIF in corso..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Compressione del video..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Contatta il nostro team di supporto" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contatta il supporto" @@ -3253,7 +3218,7 @@ msgstr "Contenuti e media" msgid "Content and media" msgstr "Contenuti e media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Contenuti e media" @@ -3265,10 +3230,6 @@ msgstr "Contenuto bloccato" msgid "Content filters" msgstr "Filtri dei contenuti" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Contenuti dalla rete che potrebbero piacerti." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Lingue dei contenuti" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Contenuti che promuovono o raffigurano autolesionismo" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Avviso sul contenuto" msgid "Content warnings" msgstr "Avviso sui contenuti" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Sfondo del menu contestuale, clicca per chiudere il menu." @@ -3302,7 +3263,7 @@ msgstr "Sfondo del menu contestuale, clicca per chiudere il menu." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Continua thread..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continua al nome del gruppo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "Conversazione non trovata." msgid "Copied build version to clipboard" msgstr "Versione della build copiata negli appunti" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Link copiato negli appunti" @@ -3376,7 +3337,7 @@ msgstr "Link copiato negli appunti" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Copia password per app" msgid "Copy at:// URI" msgstr "Copia URL at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copia DID dell'autore" @@ -3449,10 +3410,10 @@ msgstr "Copia link" msgid "Copy link to list" msgstr "Copia link della lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copia link del post" @@ -3470,8 +3431,8 @@ msgstr "Copia link allo starter pack" msgid "Copy message text" msgstr "Copia testo del messaggio" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copia URL at:// del post" @@ -3490,7 +3451,7 @@ msgstr "Copia valore del record TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politica sul diritto d'autore" @@ -3540,11 +3501,11 @@ msgstr "Impossibile seguire tutte le corrispondenze. {0}" msgid "Could not leave chat" msgstr "Impossibile abbandonare la chat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Impossibile abbandonare la chat." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Non รจ stato possibile caricare il feed" @@ -3562,7 +3523,7 @@ msgstr "Impossibile caricare il profilo" msgid "Could not mute chat" msgstr "Errore nel silenziare la conversazione" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Impossibile rimuovere il membro." @@ -3606,8 +3567,8 @@ msgstr "mucche maiali" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Crea" @@ -3624,26 +3585,26 @@ msgstr "Crea una lista da questo starter pack" msgid "Create a QR code for a starter pack" msgstr "Crea un codice QR per uno starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Crea uno starter pack" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Crea uno starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crea uno starter pack per me" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Crea account" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Crea un account" @@ -3666,15 +3627,15 @@ msgstr "Crea un account" msgid "Create an account without using this starter pack" msgstr "Crea un account senza usare questo starter pack" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "In alternativa crea un avatar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Creane un altro" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Crea chat di gruppo" @@ -3743,7 +3704,7 @@ msgstr "Cultura" msgid "Current beta features" msgstr "Funzionalitร  beta attuali" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Chat corrente" @@ -3770,8 +3731,8 @@ msgstr "Abuso di sostanze o droghe pericolose" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Scuro" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Scuro" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema scuro" @@ -3814,7 +3775,7 @@ msgstr "Rifiuta questa lingua suggerita" msgid "Deepfake adult content" msgstr "Contenuti per adulti deepfake" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Predefinito" @@ -3894,7 +3855,7 @@ msgstr "Elimina il mio account" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Elimina il post" @@ -3988,7 +3949,7 @@ msgstr "Dialog: configura chi puรฒ interagire con questo post" msgid "Dialog: Set search filters" msgstr "Finestra: imposta filtri di ricerca" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Soffuso" @@ -4002,7 +3963,7 @@ msgstr "Disabilita" msgid "Disable 2FA" msgstr "Disabilita 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Disabilita sottotitoli" @@ -4045,9 +4006,9 @@ msgstr "Disabilitato" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Scarta" msgid "Discard changes?" msgstr "Scartare le modifiche?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Scartare la bozza?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Scartare il post?" @@ -4079,6 +4040,10 @@ msgstr "Disconnetti Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi" msgid "Discover new custom feeds" msgstr "Scopri nuovi feed personalizzati" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Scopri nuovi feed" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Scopri nuovi feed" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ignora" @@ -4103,28 +4064,28 @@ msgstr "Ignora" msgid "Dismiss banner" msgstr "Chiudi banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Ignora errore" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Ignora la guida iniziale" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Ignora gli interessi" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Chiudi il banner delle dirette" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Ignora questa sezione" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Ignora questo suggerimento" @@ -4142,7 +4103,7 @@ msgstr "Aumenta dimensione dell'icona del testo alternativo" msgid "Display name" msgstr "Nome visualizzato" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Lascia perdere i troll e gli acchiappa-click. Trova persone vere e conversazioni che ti interessano." @@ -4205,8 +4166,8 @@ msgstr "Non preoccuparti! Tutti i messaggi e le impostazioni esistenti sono stat #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Non preoccuparti! Tutti i messaggi e le impostazioni esistenti sono stat msgid "Done" msgstr "Fatto" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Tocca due volte o tieni premuto il messaggio per aggiungere una reazione" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Tocca due volte per chiudere la finestra" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Tocca due volte per mettere mi piace" @@ -4328,6 +4289,7 @@ msgstr "Disturbi alimentari" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Modifica immagine" msgid "Edit interaction settings" msgstr "Modifica impostazioni di interazione" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Modifica interessi" @@ -4397,7 +4359,7 @@ msgstr "Modifica stato in diretta" msgid "Edit moderation list" msgstr "Modifica lista di moderazione" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Modifica i miei feed" @@ -4406,6 +4368,11 @@ msgstr "Modifica i miei feed" msgid "Edit name" msgstr "Modifica nome" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Modifica utenti" @@ -4444,7 +4411,7 @@ msgstr "Modifica lista di utenti" msgid "Edit who can reply" msgstr "Modifica chi puรฒ rispondere" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Modifica il tuo starter pack" @@ -4500,8 +4467,8 @@ msgstr "Incorpora il codice HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incorpora il post" @@ -4509,7 +4476,7 @@ msgstr "Incorpora il post" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incorpora questo post nel tuo sito web. Copia il seguente ritaglio e incollalo nel codice HTML del tuo sito web." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Lettore video incorporato" @@ -4533,7 +4500,7 @@ msgstr "Attiva il contenuto per adulti" msgid "Enable beta features" msgstr "Abilita funzionalitร  beta" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Abilita sottotitoli" @@ -4550,12 +4517,13 @@ msgstr "Abilita i media esterni" msgid "Enable media players for" msgstr "Attiva i lettori multimediali per" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Abilita le notifiche per un account visitandone il profilo e premendo l'<0>icona a forma di campanella <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Abilita notifiche push" @@ -4581,7 +4549,7 @@ msgstr "Attiva i video di tendenza nel feed Discover" msgid "Enabled" msgstr "Abilitato" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fine del feed" @@ -4608,7 +4576,7 @@ msgstr "Inserisci una parola o tag" msgid "Enter code" msgstr "Inserisci codice" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Passa a schermo intero" @@ -4650,11 +4618,11 @@ msgstr "Inserisci il tuo nome utente e la tua password" msgid "Enters full screen" msgstr "Passa a schermo intero" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Intrattenimento" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Errore" @@ -4684,7 +4652,7 @@ msgstr "C'รจ stato un errore durante il salvataggio del file" msgid "Error receiving captcha response." msgstr "Errore nella risposta del captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Errore: {error}" @@ -4696,8 +4664,8 @@ msgstr "Tutti possono rispondere" msgid "Everybody can reply to this post." msgstr "Tutti possono rispondere a questo post." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Tutti" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Tutti" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Tutto il resto" @@ -4738,7 +4706,7 @@ msgstr "Escludi utenti che segui" msgid "Excludes users you follow" msgstr "Esclude gli utenti che segui" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Esci da schermo intero" @@ -4755,11 +4723,11 @@ msgstr "Espandi la lista di utenti" msgid "Expand or collapse the full post you are replying to" msgstr "Espandi o comprimi il post a cui stai rispondendo" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Espandi testo del post" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Espande o comprime il testo del post" @@ -4802,15 +4770,15 @@ msgstr "Media espliciti o potenzialmente inquietanti." msgid "Explicit sexual images." msgstr "Immagini sessuali esplicite." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Esplora" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Esplora l'app" @@ -4844,7 +4812,7 @@ msgstr "Media esterni" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "I media esterni potrebbero consentire ai siti web di raccogliere informazioni su di te e sul tuo dispositivo. Nessuna informazione viene inviata o richiesta finchรฉ non si preme il pulsante \"Riproduci\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferenze media esterni" @@ -4886,7 +4854,7 @@ msgstr "Non รจ stato possibile cambiare il nome utente. Riprovare." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Impossibile copiare il link" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Impossibile abbandonare la chat di gruppo" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Impossibile caricare le conversazioni" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Impossibile caricare i feed" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Impossibile caricare preferenze feed" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Non รจ stato possibile caricare le impostazioni delle notifiche." @@ -5012,14 +4981,14 @@ msgstr "Impossibile caricare le preferenze." msgid "Failed to load profiles" msgstr "Impossibile caricare i profili" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Impossibile caricare feed consigliati" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Impossibile caricare follow consigliati" @@ -5027,12 +4996,12 @@ msgstr "Impossibile caricare follow consigliati" msgid "Failed to lock group chat" msgstr "Impossibile bloccare la chat di gruppo" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Impossibile contrassegnare tutte le chat come lette" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "Impossibile annullare la richiesta. Riprova." msgid "Failed to resolve location. Please try again." msgstr "Impossibile determinare la posizione. Riprova." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Impossibile salvare la bozza" @@ -5191,7 +5160,7 @@ msgstr "Account falso o bot" msgid "False information about elections" msgstr "False informazioni sulle elezioni" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5181,7 @@ msgstr "Autore del feed" msgid "Feed identifier" msgstr "Identificativo del feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu del feed" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback inviato" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feed aggiornati!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feed che potrebbero piacerti." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Scarica aggiornamento" @@ -5273,34 +5238,22 @@ msgstr "Scarica aggiornamento" msgid "File saved successfully!" msgstr "File salvato con successo!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Filtra per autore" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtra per autore (attualmente: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Filtra per media" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Filtra per media (attualmente: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtra dai feed" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtra la ricerca per lingua" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtra la ricerca per lingua (attualmente: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "Filtra questa ricerca per {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtra chi puรฒ scegliere di ricevere notifiche per le tue attivitร " -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtra da chi ricevi le notifiche" @@ -5352,8 +5305,8 @@ msgstr "Scopri account da seguire" msgid "Find and invite friends" msgstr "Trova e invita amici" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Trova contatti" @@ -5387,7 +5340,7 @@ msgstr "Trova i tuoi amici" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Trova i tuoi amici su Bluesky verificando il tuo numero di telefono e confrontandolo con i tuoi contatti. Proteggiamo le tue informazioni e hai il controllo su ciรฒ che accade dopo. <0>Maggiori informazioni" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Trova le tue persone" @@ -5429,7 +5382,7 @@ msgstr "Attiva il campo di ricerca" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Segui {0}" msgid "Follow {displayName}" msgstr "Segui {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Segui {handle}" @@ -5453,11 +5406,11 @@ msgstr "Segui {handle}" msgid "Follow 10 accounts" msgstr "Segui 10 account" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Segui 10 persone per iniziare" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Segui 7 account" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Chi segue puรฒ partecipare" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Follower di @{0} che conosci" @@ -5544,7 +5497,7 @@ msgstr "Follower che conosci" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Stai seguendo {0}" msgid "Following {displayName}" msgstr "Seguendo {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Stai seguendo {handle}" @@ -5578,21 +5531,21 @@ msgstr "Stai seguendo {handle}" msgid "Following feed preferences" msgstr "Preferenze del feed Seguiti" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferenze del feed Seguiti" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Ti segue" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Carattere" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Dimensione carattere" @@ -5612,13 +5565,13 @@ msgstr "Per motivi di sicurezza invieremo un codice di conferma al tuo indirizzo msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Per motivi di sicurezza non potrai piรน visualizzarla. Se perdi questa password per app, dovrai generarne una nuova." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Per una migliore esperienza, consigliamo di usare il font del tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Per te" @@ -5628,7 +5581,7 @@ msgstr "Per te" msgid "Forever" msgstr "Per sempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Niente piรน chiasso inutile" @@ -5647,11 +5600,11 @@ msgstr "Password dimenticata?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Quattro fumetti che rappresentano una chat di gruppo. Primo messaggio: \"Hai sentito la novitร ? Bluesky ora ha le chat di gruppo!\" Secondo messaggio: \"Cavolo, non ci credo\" Terzo messaggio: \"Wow, 50 persone in una sola chat!\" Quarto messaggio: \"Puoi anche inviare link di invito!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Libera il tuo feed" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Da" @@ -5674,7 +5627,7 @@ msgstr "Da <0/>" msgid "From these people" msgstr "Da queste persone" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Genera uno starter pack" @@ -5718,39 +5671,39 @@ msgstr "Ottieni accesso anticipato alle funzionalitร  sperimentali che stiamo pr msgid "Get help" msgstr "Ottieni aiuto" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Ricevi notifiche per le iscrizioni agli starter pack, per le verifiche e per altre attivitร ." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Ricevi notifiche quando le persone ti seguono." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Ricevi notifiche quando le persone mettono mi piace ai tuoi post." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Ricevi notifiche quando le persone mettono mi piace ai tuoi post." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Ricevi notifiche quando le persone ti menzionano." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Ricevi notifiche quando le persone citano i tuoi post." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Ricevi notifiche quando le persone rispondono ai tuoi post." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Ricevi notifiche quando le persone ripostano i tuoi post." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Ricevi notifiche quando le persone ripostano i tuoi repost." @@ -5762,15 +5715,15 @@ msgstr "Ricevi notifiche quando le persone ti inviano richieste di messaggi." msgid "Get notifications when people send you messages." msgstr "Ricevi notifiche quando le persone ti inviano messaggi." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Ricevi notifiche quando ci sono attivitร  relative ai post a cui sei iscritto." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Ricevi notifiche di nuovi post" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Ricevi notifiche di nuovi post di {name}" @@ -5799,11 +5752,11 @@ msgstr "Per cominciare" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF caricata" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Dai un volto al tuo profilo" @@ -5813,20 +5766,20 @@ msgstr "Glorificazione della violenza" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Vai in diretta per" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Vai al profilo di {0}" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Nome chat di gruppo aggiornato" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Impostazioni chat di gruppo" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Le chat di gruppo possono avere un massimo di {0, plural, other {# persone}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Il gruppo รจ bloccato" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Nome del gruppo" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Il nome del gruppo รจ troppo lungo. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {Il numero massimo di caratteri รจ #.}}" @@ -6077,7 +6031,7 @@ msgstr "Attivitร  nocive o a rischio elevato" msgid "Harming or endangering minors" msgstr "Danni o pericoli per i minori" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6052,7 @@ msgstr "Hai un codice? <0>Fai clic qui." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Abbiamo sbagliato la tua posizione? <0>Tocca qui per aggiornare la tua posizione tramite GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Ci sono problemi?" @@ -6114,7 +6068,7 @@ msgstr "Conservato da Bluesky per 7 giorni per prevenire abusi, poi eliminato" msgid "Help" msgstr "Aiuto" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Aiuta le persone a sapere che tu non sei un bot caricando una immagine o creando un avatar." @@ -6135,12 +6089,12 @@ msgstr "Ciao!" msgid "Hi there!" msgstr "Ciao!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Nascosto" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Nascosto dalle tue impostazioni di moderazione." @@ -6148,9 +6102,10 @@ msgstr "Nascosto dalle tue impostazioni di moderazione." msgid "Hidden list" msgstr "Lista nascosta" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Lista nascosta" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Nascondi" @@ -6198,7 +6154,7 @@ msgstr "Nascondi risposta per tutti" msgid "Hide reply for me" msgstr "Nascondi risposta per me" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Nascondi" @@ -6218,16 +6174,18 @@ msgstr "Nascondere questa risposta?" msgid "Hide translation" msgstr "Nascondi traduzione" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Nascondi gli argomenti di tendenza" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Nascondere gli argomenti di tendenza?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Nascondere i video di tendenza?" @@ -6240,7 +6198,7 @@ msgstr "Nascondi elenco utenti" msgid "Hide verification badges" msgstr "Nascondi spunta di verifica" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Nasconde il contenuto" @@ -6293,8 +6251,8 @@ msgstr "Non siamo riusciti a caricare il servizio di moderazione." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Un po' di pazienza: stiamo gradualmente dando accesso al video e tu sei ancora in coda. Ricontrolla presto!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "Fornitore di hosting: {0}" msgid "Hosting provider: Bluesky" msgstr "Fornitore di hosting: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Hot" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Come funziona:" @@ -6409,6 +6363,7 @@ msgstr "Se aggiorni il tuo indirizzo email, la 2FA via email verrร  disabilitata msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se vuoi modificare la password, ti invieremo un codice per verificare che questo รจ il tuo account." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Per limitare chi puรฒ ricevere notifiche sull'attivitร  del tuo account vai in <0>Impostazioni โ†’ Privacy e sicurezza." @@ -6548,7 +6503,7 @@ msgstr "Nell'app, push, tutti" msgid "In-app, push, people you follow" msgstr "Nell'app, push, persone che segui" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Posta in arrivo vuota" @@ -6564,7 +6519,6 @@ msgstr "Nessuna richiesta!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "Includi" @@ -6573,7 +6527,7 @@ msgstr "Includi" msgid "Include or exclude matching posts (currently: {0})" msgstr "Includi o escludi post corrispondenti (attualmente: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Includi post e/o risposte (attualmente: {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "Includi post pubblicati da questa data" msgid "Include posts made until this date" msgstr "Includi post pubblicati fino a questa data" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Includi questi risultati" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Nome utente o password errati" @@ -6683,7 +6633,7 @@ msgstr "Invita {name} a unirsi a Bluesky" msgid "Invite code" msgstr "Codice d'invito" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Codice invito non accettato. Controlla di averlo inserito correttamente e riprova." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Sei solo tu al momento! Aggiungi altre persone al tuo starter pack cercandole qui in alto." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID processo: {0}" @@ -6816,8 +6766,8 @@ msgstr "Partecipa alla conversazione" msgid "Journalism" msgstr "Giornalismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continua a modificare" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "Sito web di KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etichettato da {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etichettato dall'autore." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etichette" @@ -6852,7 +6802,7 @@ msgstr "Etichette aggiunte" msgid "Labels applied to this post" msgstr "Etichette applicate a questo post" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Le etichette sono annotazioni su utenti e contenuti. Possono essere usate per nascondere, apporre avvisi e classificare il network." @@ -6864,7 +6814,7 @@ msgstr "Etichette sul tuo account" msgid "Language" msgstr "Lingua" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Impostazione delle lingue" @@ -6874,7 +6824,7 @@ msgstr "Impostazione delle lingue" msgid "Languages" msgstr "Lingue" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Piรน grande" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Ultimo avvio adesso" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Recenti" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Maggiori informazioni" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Maggiori informazioni" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Maggiori informazioni su <0>come usare la ricerca avanzata." @@ -6937,8 +6887,8 @@ msgstr "Maggiori informazioni sull'importazione dei contatti" msgid "Learn more about self hosting your PDS." msgstr "Maggiori informazioni su come ospitare il tuo server." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Maggiori informazioni sulla moderazione applicata a questo contenuto" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Maggiori informazioni su queste modifiche e su come condividere le tue opinioni con noi nel nostro post sul blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Maggiori informazioni su questo avviso" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Maggiori informazioni nelle <0>impostazioni dell'account." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Maggiori informazioni." @@ -6993,8 +6943,8 @@ msgstr "Abbandona" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Stai lasciando Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Se la abbandoni, questa chat verrร  bloccata definitivamente e non potrai parteciparvi piรน." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Chat di gruppo abbandonata." @@ -7042,7 +6992,7 @@ msgstr "Chat di gruppo abbandonata." msgid "left to go." msgstr "mancanti." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lascia scegliere a me" @@ -7057,7 +7007,7 @@ msgstr "Andiamo!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Chiaro" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Chiaro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Mi piace" @@ -7076,7 +7026,7 @@ msgstr "Mi piace" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Mi piace ({0, plural, one {# mi piace} other {# mi piace}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Metti mi piace a 10 post" @@ -7085,7 +7035,7 @@ msgstr "Metti mi piace a 10 post" msgid "Like 10 posts to train the Discover feed" msgstr "Metti mi piace a 10 post per allenare il feed Discover" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Metti mi piace a questo feed" @@ -7093,8 +7043,8 @@ msgstr "Metti mi piace a questo feed" msgid "Like this labeler" msgstr "Mi piace" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Piace a" @@ -7111,27 +7061,45 @@ msgstr "Piace a" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Piace a {0, plural, one {# utente} other {# utenti}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Piace a {likeCount, plural, one {# utente} other {# utenti}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Mi piace" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Mi piace dei tuoi repost" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Mi piace in questo post" @@ -7144,7 +7112,7 @@ msgstr "Classico" msgid "Link copied to clipboard" msgstr "Link copiato negli appunti" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista riattivata" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "Evento attualmente in diretta: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Evento in diretta nascosto" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Evento in diretta non nascosto" @@ -7279,12 +7247,12 @@ msgstr "La funzionalitร  In diretta รจ in beta" msgid "Live link" msgstr "Link alla diretta" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Carica di piรน" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Carica piรน feed consigliati" @@ -7292,8 +7260,8 @@ msgstr "Carica piรน feed consigliati" msgid "Load new notifications" msgstr "Carica piรน notifiche" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Blocca questa chat di gruppo" msgid "Locked" msgstr "Bloccato" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Log" @@ -7387,7 +7355,7 @@ msgstr "GIF dโ€™amore" msgid "Make adjustments to email settings for your account" msgstr "Modifica le impostazioni dell'email del tuo account" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Creane uno per me" @@ -7418,15 +7386,15 @@ msgstr "Manuale" msgid "Mark all as read" msgstr "Segna tutto come letto" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Contrassegna tutte le chat come lette" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Segna come letto" msgid "Marked all as read" msgstr "Segnato tutto come letto" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Tutte le chat sono state contrassegnate come lette" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Tutte le richieste sono state contrassegnate come lette" @@ -7456,8 +7424,12 @@ msgstr "Tutte le richieste sono state contrassegnate come lette" msgid "Maybe later" msgstr "Forse piรน tardi" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Media" @@ -7475,7 +7447,7 @@ msgstr "Media salvati su un altro dispositivo" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Contenuti che potrebbero disturbare o risultare inappropriati per alcuni tipi di pubblico." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Membro rimosso dalla chat di gruppo." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "utenti menzionati" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menzioni" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Messaggio eliminato" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Impossibile inviare il messaggio." @@ -7563,15 +7535,15 @@ msgstr "Il messaggio รจ troppo lungo ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Opzioni messaggio" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Messaggi" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "I messaggi di questa persona sono nascosti mentre ti sta bloccando." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "I messaggi di questa persona sono nascosti mentre la stai bloccando." @@ -7592,7 +7564,7 @@ msgstr "Ingannevole" msgid "Missing media" msgstr "File multimediale mancante" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderazione" @@ -7636,7 +7608,7 @@ msgstr "Lista di moderazione aggiornata" msgid "Moderation lists" msgstr "Liste di moderazione" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liste di moderazione" @@ -7645,7 +7617,7 @@ msgstr "Liste di moderazione" msgid "moderation settings" msgstr "impostazioni di moderazione" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Stato di moderazione" @@ -7786,7 +7758,7 @@ msgstr "Silenziato" msgid "Muted accounts" msgstr "Account silenziati" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Account silenziati" @@ -7867,7 +7839,6 @@ msgstr "Vuoi segnalare una violazione del diritto d'autore, una richiesta legale msgid "Nevermind, create a handle for me" msgstr "Non importa, crea un nome utente per me" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nuova" @@ -7893,11 +7864,11 @@ msgstr "{postsCount, plural, one {Nuovo} other {Nuovi}} post di {firstAuthorName #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nuova chat" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Nuova funzionalitร " #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nuovi follower" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nuova chat di gruppo" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nuova chat di gruppo" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nuova chat di gruppo con:" @@ -7966,13 +7937,13 @@ msgstr "Nuova lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Nuove richieste di messaggi" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Nuovi messaggi" @@ -7982,12 +7953,12 @@ msgstr "Nuovi messaggi" msgid "New password" msgstr "Nuova password" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nuovo post" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Prima le risposte piรน recenti" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Notizie" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Immagine successiva" msgid "Night" msgstr "Notte" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Niente pubblicitร , niente tracciamenti invasivi, niente inganni. Bluesky rispetta il tuo tempo e la tua attenzione." @@ -8065,6 +8036,11 @@ msgstr "Niente pubblicitร , niente tracciamenti invasivi, niente inganni. Bluesk msgid "No app passwords yet" msgstr "Ancora nessuna password per app" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "Al momento non ci sono funzionalitร  beta." @@ -8098,7 +8074,7 @@ msgstr "Scadenza non impostata" msgid "No feeds found. Try searching for something else." msgstr "Nessun feed trovato. Prova a cercarne altri." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Ancora nessun follower" @@ -8116,9 +8092,15 @@ msgstr "Nessuna GIF da mostrare in questo momento. Riprova tra un istante." msgid "No image" msgstr "Nessuna immagine" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Ancora nessun mi piace" @@ -8135,7 +8117,12 @@ msgstr "Nessuna lista" msgid "No longer following {0}" msgstr "Non segui piรน {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Ancora nessun media" @@ -8143,7 +8130,7 @@ msgstr "Ancora nessun media" msgid "No messages yet" msgstr "Ancora nessun messaggio" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Niente piรน notizie deprimenti e algoritmi spazzatura. Scopri feed pensati per te, non contro di te." @@ -8180,16 +8167,21 @@ msgstr "Solo l'autore puรฒ citare questo post." msgid "No one can send messages" msgstr "Nessuno puรฒ inviare messaggi" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Nessun post qui" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Ancora nessun post" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Ancora nessuna citazione" @@ -8198,11 +8190,7 @@ msgstr "Ancora nessuna citazione" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Ancora nessuna GIF recente. Selezionane una per vederla qui." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "Nessuna risposta" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Ancora nessuna risposta" @@ -8217,13 +8205,13 @@ msgstr "Nessun risultato" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Nessun risultato" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Nessun risultato per \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "Nessun risultato trovato" msgid "No results found for \"{query}\"" msgstr "Nessun risultato trovato per \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "Nessun risultato trovato per โ€œ<0>{query}โ€ con i filtri di ricerca avanzata specificati." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "Nessun risultato per โ€œ<0>{query}โ€." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Nessun risultato trovato per la tua ricerca con i filtri di ricerca avanzata applicati." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Nessun risultato." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Ancora nessuno starter pack" @@ -8265,7 +8253,7 @@ msgstr "No grazie" msgid "No translation received from your device." msgstr "Nessuna traduzione ricevuta dal tuo dispositivo." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Ancora nessun post video" @@ -8278,7 +8266,7 @@ msgstr "Nessuno" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nessuno ha ancora messo mi piace. Magari potresti essere il primo!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Nessuno ha ancora citato questo post. Magari potresti essere il primo!" @@ -8298,6 +8286,10 @@ msgstr "Immagini intime non consensuali" msgid "Non-sexual Nudity" msgstr "Nuditร  non sessuale" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Non disponibile su questa piattaforma." msgid "Not followed by anyone youโ€™re following" msgstr "Non seguito da nessuno che segui" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Non trovato" @@ -8333,7 +8325,7 @@ msgstr "Nota sulla condivisione" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky รจ una rete aperta e pubblica. Questa impostazione limita solo la visibilitร  dei tuoi contenuti sull'app e sul sito web di Bluesky e altre app potrebbero non rispettare questa impostazione. I tuoi contenuti potrebbero comunque essere mostrati agli utenti disconnessi da altre app e siti web." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Nota: questo post รจ visibile solo agli utenti che hanno effettuato l'accesso." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Non รจ stato ancora salvato nulla" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Impostazioni notifiche" @@ -8353,11 +8345,12 @@ msgstr "Impostazioni notifiche" msgid "Notification sounds" msgstr "Suoni di notifica" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Oh no!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Va bene" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Reimposta account" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Uno dei destinatari selezionati non consente le chat di gruppo." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Uno dei destinatari selezionati ti ha bloccato e non puoi inviargli messaggi." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Una o piรน GIF non hanno un testo alternativo." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "A una o piรน immagini manca il testo alternativo." @@ -8454,11 +8449,11 @@ msgstr "Uno o piรน file selezionati non sono supportati." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "Uno o piรน dei file selezionati รจ troppo grande. La dimensione massima รจ di {VIDEO_MAX_SIZE_MB}ย MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Uno o piรน post sono troppo lunghi per essere salvati come bozza. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Il numero massimo di caratteri รจ #.} other {Il numero massimo di caratteri รจ #.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "In uno o piรน video manca il testo alternativo." @@ -8471,7 +8466,7 @@ msgstr "Solo gli {0} possono rispondere." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Solo {0} {2, plural, one {immagine รจ stata aggiunta} other {immagini sono state aggiunte}} su {1}; il limite รจ {MAX_GALLERY_IMAGES}" @@ -8507,6 +8502,10 @@ msgstr "Solo le persone che seguono {0} possono partecipare." msgid "Only people the chat owner follows can join" msgstr "Solo le persone seguite dal proprietario della chat possono partecipare" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "Solo post con media" @@ -8519,7 +8518,7 @@ msgstr "Solo post con video" msgid "Only replies" msgstr "Solo risposte" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Solo i file WebVTT (.vtt) sono supportati" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ops, questo profilo non esiste. Prova a scansionarne un altro." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ops!" @@ -8544,7 +8543,7 @@ msgstr "Ops!" msgid "Open advanced search options" msgstr "Apri opzioni di ricerca avanzata" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Apri il creatore di avatar" @@ -8570,21 +8569,22 @@ msgstr "Apri opzioni conversazione" msgid "Open draft" msgstr "Apri bozza" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Apri il menu a scomparsa" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Apri il selettore emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Apri schermata informazioni del feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Apri il menu delle opzioni del feed" @@ -8627,7 +8627,7 @@ msgstr "Apri pagina di debug della moderazione" msgid "Open muted words and tags settings" msgstr "Apri le impostazioni delle parole e dei tag silenziati" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Apri pack" @@ -8699,7 +8699,7 @@ msgstr "Apre dettagli aggiuntivi per una debug entry" msgid "Opens alt text dialog" msgstr "Apre la finestra di dialogo del testo alternativo" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Apre la fotocamera sul dispositivo" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Apre il procedimento per creare un nuovo account Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Apre la procedura per accedere al tuo account esistente di Bluesky" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Password aggiornata!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausa" @@ -8925,12 +8925,12 @@ msgstr "Pausa" msgid "Pause GIF" msgstr "Metti GIF in pausa" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Metti video in pausa" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Utenti" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Le persone seguite da {ownerName} possono chiedere di partecipare" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Persone seguite da @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Persone che seguono @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Persone che seguo" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Le persone che seguo possono chiedere di partecipare" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Persone che segui" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Immagini consigliate ad un pubblico adulto." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fissa feed" @@ -9034,7 +9034,7 @@ msgstr "Fissa feed" msgid "Pin to home" msgstr "Fissa su home" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fissa su home" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Fissato" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} fissato su home" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Fissato ai tuoi feed" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Riproduci" @@ -9076,8 +9076,8 @@ msgstr "Riproduci {0}" msgid "Play GIF" msgstr "Riproduci GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Riproduci video" @@ -9109,11 +9109,11 @@ msgstr "Aggiungi eventuali etichette di avviso applicabili ai contenuti che stai 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Scegli il tuo nome utente." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Scegli la tua password." @@ -9122,7 +9122,7 @@ msgstr "Scegli la tua password." 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 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Si prega di completare il captcha di verifica." @@ -9179,7 +9179,7 @@ msgstr "Inserisci il codice che hai ricevuto e la nuova password che vuoi usare. 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:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Inserisci la tua email." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Scrivi il tuo messaggio qui sotto:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politica" @@ -9269,7 +9269,7 @@ msgstr "Politica" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Post" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Post" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Pubblica una foto" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Pubblica un video" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Posta tutti" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Pubblica comunque" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Post bloccato" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Pubblicato da @{0}" @@ -9340,7 +9340,7 @@ msgstr "Post nascosto da te" msgid "Post interaction settings" msgstr "Gestisci interazioni post" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Impostazioni interazioni" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Post fissato" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Post salvato" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Post non piรน fissato" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Post" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "Post e risposte" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "I post possono essere silenziati in base al loro testo, ai loro tag o a msgid "Posts hidden" msgstr "Post nascosto" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Link potenzialmente ingannevole" @@ -9449,20 +9451,21 @@ msgstr "Privacy" msgid "Privacy and security" msgstr "Privacy e sicurezza" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacy e sicurezza" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Impostazioni privacy e sicurezza" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Informativa sulla privacy" msgid "Privacy violation of a minor" msgstr "Violazione della privacy di un minore" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Elaborazione GIF in corso..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Elaborazione video in corso..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Elenchi pubblici e condivisibili di utenti da silenziare o bloccare in massa." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Pubblica post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Pubblica i post" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Pubblica risposte" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Pubblica risposta" @@ -9599,12 +9602,12 @@ msgstr "Citazioni disattivate" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citazioni" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citazioni post" @@ -9647,7 +9650,7 @@ msgstr "Riattiva account" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Leggi {0, plural, one {# altra risposta} other {# altre risposte}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Scopri come usare i filtri di ricerca avanzati" @@ -9657,11 +9660,11 @@ msgstr "Scopri come usare i filtri di ricerca avanzati" msgid "Read blog post" msgstr "Leggi post del blog" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Leggi di meno" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Leggi di piรน" @@ -9687,11 +9690,11 @@ msgstr "Leggi l'informativa sulla privacy di Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Leggi i termini di servizio di Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Conversazioni reali." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Persone vere." @@ -9721,10 +9724,6 @@ msgstr "Ricerche recenti" msgid "Recently used" msgstr "Usate di recente" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Consigliati" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Riconnetti" @@ -9748,7 +9747,7 @@ msgstr "Rifiuta richiesta" msgid "Reject join request" msgstr "Rifiuta richiesta di partecipazione" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Ricarica conversazioni" @@ -9766,7 +9765,7 @@ msgstr "Ricarica conversazioni" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Rimuovi" @@ -9792,8 +9791,8 @@ msgstr "Rimuovere {displayName}?" msgid "Remove {q}" msgstr "Rimuovi {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Rimuovi account" @@ -9845,15 +9844,15 @@ msgstr "Rimuovi filtro" msgid "Remove from chat" msgstr "Rimuovi dalla chat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Rimuovi dai miei feed" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Rimuovere da accesso rapido?" @@ -9862,7 +9861,7 @@ msgstr "Rimuovere da accesso rapido?" msgid "Remove from saved feeds" msgstr "Rimuovi dai feed salvati" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Rimuovi dai post salvati" @@ -9880,8 +9879,8 @@ msgstr "Rimuovi immagine" msgid "Remove live status" msgstr "Rimuovi stato in diretta" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Rimuovi membro" @@ -9943,7 +9942,7 @@ msgstr "Rimosso dalla lista" msgid "Removed from saved feeds" msgstr "Rimosso dai feed salvati" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Rimosso dai post salvati" @@ -9952,7 +9951,7 @@ msgstr "Rimosso dai post salvati" msgid "Removed from starter pack" msgstr "Rimosso dallo starter pack" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Ti ha risposto" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Messaggio da {senderName} a cui รจ stato risposto, tocca per scorrere fino a esso" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Il messaggio a cui รจ stato risposto รจ stato inviato prima che tu partecipassi" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Messaggio a cui รจ stato risposto, tocca per scorrere fino a esso" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Risposte" @@ -10037,7 +10037,7 @@ msgstr "Le risposte a questo post sono disattivate." msgid "Reply" msgstr "Rispondi" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Rispondi" @@ -10098,8 +10098,8 @@ msgstr "Segnala conversazione" msgid "Report dialog" msgstr "Segnala dialogo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Segnala feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Ripubblicato da te" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Repost" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Ripubblicazioni di questo post" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Repost dei tuoi repost" @@ -10253,7 +10253,7 @@ msgstr "Richiesto" msgid "Requests" msgstr "Richieste" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Ritenta l'ultima azione che ha generato un errore" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Ritorna alla home" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Ritorna alla pagina precedente" @@ -10446,27 +10446,27 @@ msgstr "Salva data di nascita" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Salva modifiche" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Salvare le modifiche?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Salva bozza" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Salvare la bozza?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Salva codice QR" msgid "Save these options for next time" msgstr "Salva queste opzioni per la prossima volta" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Salva nei miei feed" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feed salvati" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Post salvati" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Salvato nei tuoi feed" @@ -10520,8 +10520,8 @@ msgstr "Salvato nei tuoi feed" msgid "Say hello!" msgstr "Di' ciao!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Saluta qualcuno" @@ -10535,7 +10535,7 @@ msgstr "Scansiona" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Scansiona codice QR" @@ -10543,15 +10543,15 @@ msgstr "Scansiona codice QR" msgid "Science" msgstr "Scienza" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Scorri a sinistra" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Scorri a destra" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Scorri fino al messaggio a cui questa risposta si riferisce" @@ -10564,8 +10564,8 @@ msgstr "Scorri verso l'alto" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Cerca" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cerca post di @{0}" @@ -10612,11 +10612,11 @@ msgstr "Cerca {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Cerca feed che potresti suggerire ad altri utenti." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Cerca altri account" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Cerca altri feed" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Cerca GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "La ricerca non รจ disponibile per gli utenti che non hanno effettuato l'accesso" @@ -10707,17 +10707,22 @@ msgstr "Vedi post dell'utente su #{tag}" msgid "See jobs at Bluesky" msgstr "Vedi offerte di lavoro in Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Vedi di piรน" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Vedi altri profili consigliati" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Vedi account suggeriti" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Cursore di ricerca. Usa i tasti freccia per cercare avanti e indietro, lo spazio per riprodurre/mettere in pausa" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Seleziona categoria \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Seleziona {0}" msgid "Select {langName}" msgstr "Seleziona {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Scegli un colore" @@ -10764,11 +10769,11 @@ msgstr "Seleziona account" msgid "Select an app language" msgstr "Seleziona una lingua per l'app" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Scegli un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Scegli un emoji" @@ -10780,12 +10785,13 @@ msgstr "Seleziona un'opzione" msgid "Select app language" msgstr "Seleziona lingua app" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Seleziona file dei sottotitoli (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Seleziona chat \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Seleziona GIF" msgid "Select GIF \"{0}\"" msgstr "Seleziona GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Seleziona membri della chat di gruppo" @@ -10864,7 +10870,7 @@ msgstr "Seleziona lingua principale" msgid "Select telephone code" msgstr "Seleziona codice telefonico" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Scegli la {emojiName} emoji come tuo avatar" @@ -10945,7 +10951,8 @@ msgstr "Invia messaggio" msgid "Send post to {name}" msgstr "Invia post a {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Invia post a..." @@ -10963,12 +10970,12 @@ msgstr "Invia il messaggio dal tuo telefono" msgid "Send verification email" msgstr "Invia email di verifica" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Invia tramite messaggi" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Imposta il tuo fornitore di hosting manualmente" msgid "Sets email for password reset" msgstr "Imposta l'email per la reimpostazione della password" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Impostazioni" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Impostazioni per attivitร  degli altri" @@ -11036,49 +11043,49 @@ msgstr "Impostazioni per attivitร  degli altri" msgid "Settings for allowing others to be notified of your posts" msgstr "Impostazioni per consentire ad altri di ricevere notifiche dei tuoi post" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Impostazioni per notifiche di mi piace" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Impostazioni per notifiche di menzioni" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Impostazioni per notifiche di nuovi follower" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Impostazioni per notifiche di tutto il resto" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Impostazioni per notifiche di mi piace ai tuoi repost" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Impostazioni per le notifiche di nuove richieste di messaggi" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Impostazioni per le notifiche di nuovi messaggi" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Impostazioni per notifiche di repost dei tuoi repost" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Impostazioni per notifiche di citazioni" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Impostazioni per notifiche di risposte" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Impostazioni per notifiche di repost" @@ -11115,8 +11122,8 @@ msgstr "Condividi fascia d'etร " msgid "Share anyway" msgstr "Condividi comunque" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Condividi DID autore" @@ -11127,7 +11134,7 @@ msgstr "Condividi DID autore" msgid "Share feedback" msgstr "Condividi feedback" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Finestra link di condivisione" msgid "Share my profile" msgstr "Condividi il mio profilo" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Condividi URL at:// del post" @@ -11169,12 +11176,12 @@ msgstr "Condividi profilo" msgid "Share QR code" msgstr "Condividi codice QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Condividi questo feed" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Condividi questa ricerca" @@ -11186,8 +11193,8 @@ msgstr "Condividi starter pack" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Condividi questo starter pack e invita le persone a far parte della tua community su Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Condividi i tuoi contatti per trovare amici" msgid "Share your thoughtsโ€ฆ" msgstr "Condividi le tue opinioniโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Test preferenze condivise" @@ -11219,7 +11226,7 @@ msgstr "La condivisione della tua fascia d'etร  rivela solo l'intervallo associa msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "La condivisione della tua fascia d'etร  rivela solo l'intervallo associato al tuo account Google, ad esempio che hai almeno 18 anni. <0>La tua etร  esatta e la tua data di nascita non vengono mai condivise e questi dati non lasciano mai questo dispositivo. Questo comporta che l'accesso รจ abilitato solo su questo dispositivo. In alternativa, per completare la verifica e abilitare l'accesso su tutte le piattaforme, <1>puoi utilizzare il nostro partner di fiducia KWS." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Mostra" msgid "Show alt text" msgstr "Mostra testo alternativo" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Mostra comunque" @@ -11274,8 +11281,8 @@ msgstr "Mostra comunque lista" msgid "Show lists of users to select from" msgstr "Mostra le liste di utenti tra cui scegliere" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Mostra di piรน" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Mostra avviso e filtra dai feed" msgid "Show when youโ€™re live" msgstr "Mostra quando sei in diretta" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Mostra informazioni sulla data di creazione del post" @@ -11341,15 +11348,15 @@ msgstr "Mostra informazioni sulla data di creazione del post" msgid "Shows other accounts you can switch to" msgstr "Mostra gli altri account a cui puoi passare" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Mostra il contenuto" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Mostra il contenuto" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Vuoi uscire?" msgid "Sign up" msgstr "Registrati" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "รˆ richiesto l'accesso" @@ -11469,7 +11476,7 @@ msgstr "Salta" msgid "Skip contact sharing and continue to the app" msgstr "Salta la condivisione dei contatti e continua con l'app" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Saltare i post vuoti?" @@ -11487,7 +11494,7 @@ msgstr "Vai al passo successivo" msgid "slide" msgstr "slide" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Piรน piccolo" @@ -11499,7 +11506,7 @@ msgstr "Posticipa il promemoria" msgid "So many thoughts, you should post one" msgstr "Cosรฌ tante idee, dovresti pubblicarne una" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Un social media sotto il tuo controllo." @@ -11520,7 +11527,7 @@ msgstr "Alcuni servizi di moderazione nella tua lista non sono piรน disponibili. msgid "Some of your verifications are invalid." msgstr "Alcune delle tue verifiche non sono valide." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Altri feed che potrebbero piacerti" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Qualcuno ha lasciato il gruppo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Qualcuno ha reagito con {0}" @@ -11554,7 +11561,7 @@ msgstr "Qualcuno ha reagito con {0}" msgid "Someone reacted {0} to {target}" msgstr "Qualcuno ha reagito con {0} a {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Qualcuno ha risposto" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Qualcosa รจ andato storto: riprova" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Qualcosa รจ andato storto, riprova tra qualche istante." msgid "Something went wrong. Please try again." msgstr "C'รจ stato qualche problema. Riprovare." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Qualcosa non va? Faccelo sapere." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam o altri comportamenti non autentici o ingannevoli" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sport" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Individua i post a cui i tuoi amici e le persone che segui hanno messo mi piace." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Inizia una conversazione, e comparirร  qui." msgid "Start a group chat" msgstr "Avvia una chat di gruppo" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Avvia una nuova conversazione" @@ -11682,17 +11689,17 @@ msgstr "Inizia ad aggiungere persone" msgid "Start adding people!" msgstr "Inizia ad aggiungere persone!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Avvia chat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Avvia conversazione con {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Starter Pack" @@ -11715,12 +11722,16 @@ msgstr "Starter pack tuoi" msgid "Starter pack is invalid" msgstr "Lo starter pack non รจ valido" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Starter pack" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Gli starter pack ti permettono di condividere utenti e feed preferiti con i tuoi amici." @@ -11728,7 +11739,7 @@ msgstr "Gli starter pack ti permettono di condividere utenti e feed preferiti co msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Gli starter pack ti permettono di condividere i tuoi feed e utenti preferiti con i tuoi amici." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Gli starter pack ti permettono di condividere utenti e feed preferiti con i tuoi amici." @@ -11742,7 +11753,7 @@ msgstr "Pagina di stato" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Step {0} di {1}" @@ -11754,7 +11765,7 @@ msgstr "Spazio di archiviazione eliminato. Riavvia l'app." msgid "Stored as part of a secure code for matching with others" msgstr "Archiviato come parte di un codice sicuro per trovare corrispondenze con altri" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Cronologia" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Iscriviti a {publicationTitle} su {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Iscriviti a @{0} per usare queste etichette:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Verificato con successo" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Suggeriti" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Account suggeriti" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Suggerito per te" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Tramonto" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Il supporto per questa funzionalitร  non รจ ancora attivo nella tua nazione! Riprova in seguito." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Gli account sospesi non possono partecipare alle chat di gruppo." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Gli account sospesi non possono partecipare alle chat." @@ -11921,8 +11934,8 @@ msgstr "Passa a {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Porta la conversazione in privato." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Tocca qui sotto per consentire a Bluesky di accedere alla tua posizione GPS. Utilizzeremo tali dati per determinare con maggiore precisione il contenuto e le funzionalitร  disponibili nella tua zona." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tocca per dettagli" @@ -11976,7 +11989,7 @@ msgstr "Tocca per chiudere il menu" msgid "Tap to copy this invite link" msgstr "Tocca per copiare questo link di invito" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tocca per ignorare" @@ -12003,7 +12016,7 @@ msgstr "Tocca per rimuovere la tua reazione {0}" msgid "Tap to request access to join this group chat" msgstr "Tocca per chiedere di partecipare a questa chat di gruppo" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tocca per riprovare" @@ -12016,7 +12029,7 @@ msgstr "Tocca per mostrare le reazioni {0}" msgid "Tap to show all reactions" msgstr "Tocca per mostrare tutte le reazioni" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tocca per vedere le reazioni" @@ -12032,7 +12045,7 @@ msgstr "Completato - segui 10 account!" msgid "Task complete - 10 likes!" msgstr "Completato - 10 mi piace!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Insegna all'algoritmo cosa ti piace" @@ -12060,7 +12073,7 @@ msgstr "Termini" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Impossibile trovare starter pack." msgid "That username is already taken" msgstr "Questo nome utente รจ giร  in uso" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Questo รจ tutto, gente!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "รˆ tutto!" @@ -12216,7 +12229,7 @@ msgstr "Sembra che ci siano problemi sul server. Riprova tra qualche istante." msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Questo starter pack non รจ valido. Prova a eliminare questo starter pack invece." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "L'oggetto del menu contestuale" @@ -12238,7 +12251,7 @@ msgstr "Il codice di verifica che hai fornito non รจ valido. Assicurati di aver msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Il fornitore che verifica non รจ stato in grado di inviare un codice al tuo numero di telefono. Verifica il tuo numero di telefono e riprova." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "Si รจ verificato un problema durante il caricamento delle GIF. Controlla msgid "There was a problem with your internet connection, please try again" msgstr "Si รจ verificato un problema con la tua connessione a internet, riprova" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Si รจ verificato un problema con la tua connessione a internet, riprova" msgid "There was an issue contacting the server" msgstr "Si รจ verificato un problema durante il contatto con il server" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Si รจ verificato un problema contattando il server, verifica la tua connessione a internet e riprova." @@ -12283,8 +12296,8 @@ msgstr "Si รจ verificato un problema contattando il server, verifica la tua conn msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Si รจ verificato un problema durante il recupero delle notifiche. Tocca qui per riprovare." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Si รจ verificato un problema nel recupero dei post. Tocca qui per riprovare." @@ -12309,7 +12322,7 @@ msgstr "Si รจ verificato un problema durante il recupero delle tue informazioni msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Si รจ verificato un problema durante la rimozione di questo feed. Verifica la tua connessione a internet e riprova." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Queste impostazioni si applicano solo al feed Seguiti." msgid "These URLs" msgstr "Questi URL" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "รˆ il proprietario di questa chat" @@ -12392,7 +12405,7 @@ msgstr "รˆ il proprietario di questa chat" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "Non potrร  piรน partecipare finchรฉ non lo inviti di nuovo." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Questa {screenDescription} รจ stata segnalata:" @@ -12408,7 +12421,7 @@ msgstr "Questo account รจ stato contrassegnato come automatizzato dal suo propri msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Questo account ha uno o piรน tentativi di verifica, ma non รจ ancora verificato." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Questo account ha richiesto agli utenti di accedere a Bluesky per visualizzare il profilo." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Questo feed รจ vuoto! Prova a seguire piรน utenti o ottimizza le impostazioni della lingua." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Questo feed รจ vuoto." @@ -12554,7 +12567,7 @@ msgstr "Questo gruppo รจ bloccato da un'azione di moderazione sul proprietario" msgid "This handle is reserved. Please try a different one." msgstr "Questo nome utente รจ riservato. Prova con un altro nome utente." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Questa immagine non puรฒ essere usata. Prova un altro formato come .jpg o .png." @@ -12596,7 +12609,7 @@ msgstr "Questa etichetta รจ stata applicata da te." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Questa etichetta รจ stata applicata a tutto l'account utente e apparirร  in tutti i post." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Questo etichettatore non ha dichiarato quali etichette pubblica e potrebbe non essere attivo." @@ -12621,13 +12634,13 @@ msgstr "Questa lista รจ vuota." msgid "This message is hidden" msgstr "Questo messaggio รจ nascosto" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Questo messaggio รจ nascosto perchรฉ questo utente ti sta bloccando." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Questo messaggio รจ nascosto perchรฉ stai bloccando questo utente." @@ -12641,7 +12654,7 @@ msgstr "Questa persona ti sta bloccando" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Questo post dichiara di essere stato creato il <0>{0}, ma รจ stato visto per la prima volta da Bluesky il <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Questo post dichiara di essere stato creato il <0>{0}, ma รจ stato v msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Questo post ha un tipo sconosciuto di restrizione. La tua app potrebbe non essere aggiornata." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Questo post รจ visibile solo agli utenti che hanno effettuato l'accesso." @@ -12661,7 +12674,7 @@ msgstr "Questo post รจ stato eliminato dal suo autore" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Questo post verrร  nascosto dai feed e dai thread. L'azione รจ irreversibile." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "L'autore del post ha disattivato le citazioni." @@ -12698,11 +12711,12 @@ msgstr "Dovrebbe richiedere solo pochi minuti." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Questo utente non puรฒ essere verificato poichรฉ non ha un nome visualizzato." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Questo utente non ha follower." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Questo utente ti ha bloccato e non puoi inviargli messaggi." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Questo utente ti ha bloccato. Non รจ possibile visualizzare il suo contenuto." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Questo utente ha disabilitato la chat e รจ possibile inviargli messaggi." @@ -12733,11 +12748,11 @@ msgstr "Questo utente รจ incluso nella lista <0>{0} che hai silenziato." msgid "This user is new here. Press for more info about when they joined." msgstr "Questo utente รจ nuovo qui. Clicca per maggiori informazioni riguardo a quando si sono iscritti." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Questo utente non sta seguendo nessuno." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Impossibile riprodurre questo video sul tuo dispositivo. Il tuo browser o il tuo sistema potrebbero non disporre dei codec video necessari (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Il tuo account Bluesky <0>{currentHandle} e tutti i dati associati verranno eliminati irreversibilmente. Nota che questo influenzerร  qualsiasi altro servizio che usa il <1>protocollo AT con questo account." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Questo rimuoverร  @{0} dalla lista d'accesso rapido." @@ -12786,7 +12801,7 @@ msgstr "Preferenze delle discussioni" msgid "Threaded" msgstr "Thread" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferenze per le discussioni" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Troppi contatti: hai superato il numero di contatti che puoi importare per trovare i tuoi amici" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Popolari" @@ -12858,7 +12873,7 @@ msgstr "Popolari" msgid "Top replies first" msgstr "Prima le risposte piรน popolari" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Argomento" @@ -12893,7 +12908,9 @@ msgstr "La traduzione nella stessa lingua non รจ disponibile sul tuo dispositivo msgid "Tree view" msgstr "Vista ad albero" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Di tendenza" @@ -12902,13 +12919,15 @@ msgstr "Di tendenza" msgid "Trending GIFs" msgstr "GIF di tendenza" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opzioni per le tendenze" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Video di tendenza" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Comportamento provocatorio / trolling" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "La fiducia nasce dalle relazioni, dalle comunitร  e dal contesto condiviso, quindi stiamo anche introducendo i <0>certificatori attendibili: organizzazioni che possono rilasciare direttamente la verifica." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Prova con un altro termine di ricerca o rimuovi alcuni filtri." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Prova con un altro termine di ricerca." @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Impossibile recuperare le richieste di partecipazione." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Impossibile trovare uno dei destinatari selezionati." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Impossibile trovare il destinatario selezionato." @@ -13024,12 +13045,12 @@ msgstr "Non disponibile" msgid "Unavailable feed information" msgstr "Informazioni sui feed non disponibili" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Sblocca account?" msgid "Unblock list" msgstr "Sblocca lista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Smetti di seguire {0}" msgid "Unfollow account" msgstr "Smetti di seguire" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Smetti di seguire" @@ -13132,7 +13153,7 @@ msgstr "Altro contenuto per adulti" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Altro contenuto per adulti, offensivo o non consensuale" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Non mi piace piรน" @@ -13192,7 +13213,7 @@ msgstr "Riattiva questa chat di gruppo" msgid "Unmute thread" msgstr "Riattiva questa discussione" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Riattiva audio" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Non fissare piรน" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Non fissare piรน il feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Non fissare piรน su home" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Non fissare piรน la lista di moderazione" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} non piรน fissato su home" @@ -13258,11 +13279,11 @@ msgstr "Disiscriviti da etichetta" msgid "Unsubscribed from list" msgstr "Disiscritto dalla lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Contenuto degli appunti non supportato" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Tipo di video non supportato: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Impossibile aggiornare visibilitร  risposte" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "In alternativa carica una foto" @@ -13355,7 +13376,7 @@ msgstr "Carica dai file" msgid "Upload from Library" msgstr "Carica dalla galleria" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Caricamento GIF in corso..." @@ -13369,7 +13390,7 @@ msgstr "Caricamento immagini..." msgid "Uploading link thumbnail..." msgstr "Caricamento miniatura del link..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Caricamento del video..." @@ -13408,7 +13429,7 @@ msgstr "Usalo per accedere all'altra app insieme al tuo nome utente." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Usa l'indirizzo email del tuo account o un altro indirizzo email reale di cui hai il controllo, nel caso in cui KWS o Bluesky abbiano bisogno di contattarti." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "utente" @@ -13510,7 +13531,7 @@ msgstr "Verifica non riuscita, riprovare." msgid "Verification settings" msgstr "Impostazioni di verifica" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Impostazioni di verifica" @@ -13618,34 +13639,34 @@ msgstr "Video" msgid "Video failed to process" msgstr "Elaborazione video fallita" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Feed dei video" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Video da {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Video di {0}. Tocca per riprodurre o mettere in pausa il video" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videogiochi" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video in pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video in riproduzione" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video non trovato." @@ -13653,7 +13674,7 @@ msgstr "Video non trovato." msgid "Video settings" msgstr "Impostazioni video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video caricato" @@ -13662,17 +13683,17 @@ msgstr "Video caricato" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Video" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "I video devono durare meno di 3 minuti." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Vedi" @@ -13691,9 +13712,9 @@ msgstr "Vedi l'avatar di {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Vedi il profilo di {0}" @@ -13724,13 +13745,13 @@ msgstr "Vedi il post del blog per maggiori dettagli" msgid "View debug entry" msgstr "Vedi le informazioni del debug" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Vedi dettagli" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Vedi la discussione completa" @@ -13750,18 +13771,18 @@ msgstr "Visualizza le richieste di partecipazione a questa chat di gruppo" msgid "View information about these labels" msgstr "Visualizza le informazioni su queste etichette" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Mostra di piรน" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Vedi altri video di tendenza" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Vedi post" @@ -13798,15 +13819,15 @@ msgstr "Vedi il link di invito per questa chat di gruppo" msgid "View the labeling service provided by @{0}" msgstr "Visualizza il servizio di etichettatura fornito da @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Vedi le verifiche di questo utente" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Visualizza gli utenti a cui piace questo feed" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Guarda video" @@ -13831,7 +13852,7 @@ msgstr "Vedi le tue liste di moderazione" msgid "View your muted accounts" msgstr "Vedi i tuoi account silenziati" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Vedi le tue verifiche" @@ -13840,7 +13861,7 @@ msgstr "Vedi le tue verifiche" msgid "Views full image" msgstr "Vedi l'immagine completa" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Mostra video in modalitร  immersiva" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Stiamo riscontrando problemi di rete, riprova" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Stiamo riscontrando problemi di rete, riprova" @@ -14043,7 +14064,7 @@ msgstr "Stiamo riscontrando problemi di rete, riprova" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Stiamo introducendo un nuovo livello di verifica su Bluesky -- una spunta riconoscibile." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Siamo felici che tu ti unisca a noi!" @@ -14064,13 +14085,15 @@ msgstr "Siamo spiacenti, ma non siamo riusciti a risolvere questa lista. Se il p msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Non รจ stato possibile caricare le parole silenziate. Riprova." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "Ci dispiace, non รจ stato possibile completare la ricerca." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Non รจ stato possibile completare la ricerca. Riprova tra qualche minuto." @@ -14078,7 +14101,7 @@ msgstr "Non รจ stato possibile completare la ricerca. Riprova tra qualche minuto msgid "We're sorry, you cannot access this screen at this time." msgstr "Spiacenti: non puoi accedere a questa schermata al momento." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ci dispiace! Il post a cui cerchi di rispondere รจ stato eliminato." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "come va" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Come va?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Chi puรฒ verificare?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ops!" @@ -14220,21 +14243,21 @@ msgstr "Bloccare questo utente e/o abbandonare questa conversazione?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Salvare come bozza prima di visualizzare le tue bozze?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Salvare come bozza da modificare piรน tardi?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Scrivi un post" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Scrivi un post" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Scrivi la tua risposta" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Stai accedendo a Bluesky da una regione che ci impone per legge di verificare la tua etร  prima di consentirti l'accesso all'app." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Stai bloccando {0}" @@ -14342,7 +14365,7 @@ msgstr "Non sei piรน in diretta" msgid "You are not allowed to upload videos." msgstr "Non sei autorizzato a caricare video." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Non segui ancora nessuno" @@ -14362,7 +14385,7 @@ msgstr "Sei verificato. Se cambi il tuo nome visualizzato, perderai lo stato di msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Sei verificato. Se cambi il tuo nome utente, perderai lo stato di verifica. <0>Maggiori informazioni." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Puoi modificare i tuoi interessi in qualsiasi momento nelle impostazioni \"Contenuti e media\"." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Adesso puoi accedere con la tua nuova password." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Puoi aggiungere fino a {MAX_GALLERY_IMAGES, plural, other {# immagini}} per post" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Puoi salvare le bozze solo se hanno fino a 1000 caratteri." @@ -14439,9 +14462,11 @@ msgstr "Puoi leggere la cronologia della chat ma non puoi inviare nuovi messaggi msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Puoi selezionare fino a {MAX_GALLERY_IMAGES, plural, other {# immagini}} in totale." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Puoi modificare questa preferenza dalle impostazioni." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Non puoi aggiungere piรน di {EMOJI_REACTION_LIMIT, plural, one {# reazione emoji} other {# reazioni emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Non puoi ancora creare una chat di gruppo." @@ -14555,7 +14581,7 @@ msgstr "Hai verificato correttamente il tuo indirizzo email. Puoi chiudere quest msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Hai raggiunto il limite temporaneo dei video caricati. Riprova piรน tardi." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Hai delle modifiche non salvate a questa bozza: vuoi salvarle?" @@ -14563,7 +14589,7 @@ msgstr "Hai delle modifiche non salvate a questa bozza: vuoi salvarle?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Hai delle modifiche non salvate. Salvarle prima di visualizzare le tue bozze?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Non hai ancora creato uno starter pack!" @@ -14614,7 +14640,7 @@ msgstr "Puoi aggiungere fino a {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_P msgid "You may only add up to 3 feeds" msgstr "Puoi aggiungere un massimo di 3 feed" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Devi essere un proprietario della chat per rimuovere un membro." @@ -14622,7 +14648,7 @@ msgstr "Devi essere un proprietario della chat per rimuovere un membro." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Devi avere almeno 13 anni per usare Bluesky. Leggi i <0>Termini di Servizio per maggiori informazioni." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Devi seguire almeno altri 7 utenti per creare uno starter pack." @@ -14639,7 +14665,7 @@ msgstr "รˆ necessario consentire l'accesso alla tua libreria multimediale." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Per abilitare l'autenticazione a due fattori via email รจ necessario verificare il tuo indirizzo email." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Sei il proprietario di questa chat" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Probabilmente รจ il momento di riavviare l'app." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Hai reagito con {0}" @@ -14667,15 +14693,15 @@ msgstr "Hai reagito con {0} a {target}" msgid "You recently changed your birthdate" msgstr "Hai cambiato di recente la tua data di nascita" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Hai risposto" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Hai risposto a {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Ti sei risposto" @@ -14715,11 +14741,11 @@ msgstr "Non sarai in grado di rientrare finchรฉ non sarai invitato a farlo." msgid "You: {message}" msgstr "Tu: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguirai gli utenti e i feed consigliati alla fine della creazione del tuo account!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguirai gli utenti consigliati alla fine della creazione del tuo account!" @@ -14791,7 +14817,7 @@ msgstr "Hai raggiunto la fine del contenuto attivo." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Hai raggiunto la fine del tuo feed! Trova altri account da seguire." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Hai raggiunto il numero massimo di bozze" @@ -14799,7 +14825,7 @@ msgstr "Hai raggiunto il numero massimo di bozze" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Hai raggiunto il numero massimo di richieste consentite. Riprova piรน tardi." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Hai raggiunto il numero massimo di {MAX_FILTERS, plural, one {# filtro} other {# filtri}}. Aggiungi altri valori a un filtro esistente invece di crearne di nuovi." @@ -14815,11 +14841,11 @@ msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi byte)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi video)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Non ci sono altri video da guardare. Forse รจ il momento giusto per fare una pausa?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Il tuo account" @@ -14835,11 +14861,11 @@ msgstr "Il tuo account รจ stato sospeso" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Il tuo account รจ troppo recente per caricare video. Riprova piรน tardi." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Il tuo account รจ troppo recente" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Il tuo account deve essere stato creato da almeno 7 giorni prima di poter creare una nuova chat di gruppo." @@ -14896,7 +14922,7 @@ msgstr "La tua email" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Sembra che il tuo indirizzo email non sia corretto." @@ -14930,8 +14956,8 @@ msgstr "Il tuo fornitore di hosting non puรฒ essere rilevato da un indirizzo ema msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Il tuo fornitore di hosting viene rilevato automaticamente dal nome utente che inserisci." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "I tuoi interessi sono stati salvati!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "I tuoi interessi ci aiutano a trovare quello che piรน ti piace!" @@ -14967,11 +14993,11 @@ msgstr "La tua password รจ stata cambiata con successo! D'ora in poi usa la tua msgid "Your password must be at least 8 characters long." msgstr "La tua password deve essere lunga almeno 8 caratteri." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Il tuo post รจ stato inviato" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "I tuoi post sono stati inviati" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "La tua lingua preferita" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Immagine del tuo profilo" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "L'immagine del tuo profilo circondata da cerchi concentrici con immagini del profilo di altri utenti" @@ -14992,7 +15018,7 @@ msgstr "L'immagine del tuo profilo circondata da cerchi concentrici con immagini msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Il tuo profilo, i tuoi post, i tuoi feed e le tue liste non saranno piรน visibili agli altri utenti. Puoi riattivare il tuo account in qualsiasi momento effettuando l'accesso." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Risposta inviata" @@ -15005,7 +15031,7 @@ msgstr "La segnalazione sarร  inviata a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Gli interessi che selezioni ci permettono di mostrare i contenuti piรน pertinenti." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Il tuo thread ha dei post vuoti che verranno saltati. Gli altri post verranno pubblicati come thread." diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index fd3bea19c8..69628e404a 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" ใ‚ซใƒ†ใ‚ดใƒชใƒผ๏ผˆใ‚ขใ‚ฏใƒ†ใ‚ฃใƒ–๏ผ‰" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "๏ผˆใƒ–ใƒญใƒƒใ‚ฏใ•ใ‚ŒใŸใƒกใƒƒใ‚ปใƒผใ‚ธใฏ้ž่กจ็คบใงใ™๏ผ‰" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "๏ผˆๅŸ‹ใ‚่พผใฟใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚ใ‚Š๏ผ‰" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "๏ผˆๅ‰Š้™คใ•ใ‚ŒใŸใƒกใƒƒใ‚ปใƒผใ‚ธ๏ผ‰" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "๏ผˆ็„กๅŠนใชใƒใƒฃใƒƒใƒˆๆ‹›ๅพ…ใƒชใƒณใ‚ฏ๏ผ‰" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "๏ผˆๅ‚ๅŠ ใ™ใ‚‹ๅ‰ใซ้€ใ‚‰ใ‚ŒใŸใƒกใƒƒใ‚ปใƒผใ‚ธ๏ผ‰" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, other {#ๆ™‚้–“}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, other {#ๅ€‹ใฎใƒฉใƒ™ใƒซใŒใ‚ใชใŸใฎๆŠ•็จฟใซ้ฉ็”จใ•ใ‚Œใพใ—ใŸ}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, other {#ๅ€‹ใฎใƒฉใƒ™ใƒซใŒ้ฉ็”จใ•ใ‚Œใพใ—ใŸ}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, other {# ใ„ใ„ใญ}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {ใƒกใƒณใƒใƒผ#ไบบ}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, other {#ๅ€‹ใฎๆ–ฐ่ฆๅ‚ๅŠ ใƒชใ‚ฏใ‚จใ‚นใƒˆ}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, other {#ไบบ}}ใŒใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณใ—ใพใ—ใŸ โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{1} {0}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0}๏ผˆใ‚ขใ‚ซใ‚ฆใƒณใƒˆ๏ผ‰" @@ -251,36 +252,13 @@ msgstr "{0}ใŒใƒใƒฃใƒƒใƒˆใซ่ฟฝๅŠ ใ•ใ‚Œใพใ—ใŸ" msgid "{0} and {1} added to chat" msgstr "{0}ใจ{1}ใŒใƒใƒฃใƒƒใƒˆใซ่ฟฝๅŠ ใ•ใ‚Œใพใ—ใŸ" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0}ใจ{1}ใŒใ„ใ„ใญ" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0}ใจ{others, plural, other {ไป–{2}ไบบใŒ}}ใ„ใ„ใญ" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0}ใจ{othersLabel}ใŒใ„ใ„ใญ" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} ใƒ•ใ‚ฉใƒญใƒผไธญ" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0}ใฏใ‚ใชใŸใ‚’ใƒ–ใƒญใƒƒใ‚ฏใ—ใฆใ„ใพใ™" @@ -324,14 +302,6 @@ msgstr "{0}ใŒ้€€ๅ‡บใ—ใพใ—ใŸ" msgid "{0} left the group" msgstr "{0}ใŒใ‚ฐใƒซใƒผใƒ—ใ‹ใ‚‰้€€ๅ‡บใ—ใพใ—ใŸ" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0}ใŒใ‚’ใ„ใ„ใญ" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} / 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0}ใŒ{1}ใจใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณใ—ใพใ—ใŸ" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}ใ€{1}ใใ—ใฆ{memberCount, plural, other {ไป–#ไบบ}}ใŒใƒใƒฃใƒƒใƒˆใซ่ฟฝๅŠ ใ•ใ‚Œใพใ—ใŸ" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}ใ€{1}ใใ—ใฆ{others, plural, other {ไป–{3}ไบบ}}ใŒใ„ใ„ใญ" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}ใ€{1}ใใ—ใฆ{othersLabel}ใŒใ„ใ„ใญ" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} ใŒใ‚ใชใŸใ‚’่ช่จผใ—ใพใ—ใŸ" msgid "{following} following" msgstr "{following} ใƒ•ใ‚ฉใƒญใƒผ" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, other {ไปถใฎๆŠ•็จฟ}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle}ใฏ่ฟฝๅŠ ใงใใพใ›ใ‚“" @@ -698,7 +660,7 @@ msgstr "{handle}ใฏ่ฟฝๅŠ ใงใใพใ›ใ‚“" msgid "{handle} can't be messaged" msgstr "{handle}ใซใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’้€ใ‚Œใพใ›ใ‚“" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "{handle}ใซใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’้€ใ‚Œใพใ›ใ‚“" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, other {#ไปถใฎๆœช่ชญ}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {้€ฃ็ตกๅ…ˆใŒ#ๅ€‹่ฆ‹ใคใ‹ใ‚Šใพใ—ใŸ}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, other {ไป–{1}ไบบ}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName}ใฏBlueskyใซ{timeAgoString}ๅ‰ใซๅ‚ๅŠ ใ—ใพใ—ใŸ" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName}ใฏใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ไฝฟใฃใฆ{timeAgoString}ๅ‰ใซๅ‚ๅŠ ใ—ใพใ—ใŸ" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, other {ๆฎ‹ใ‚Š#ๆ–‡ๅญ—}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName}ใŒ่ฟ”ไฟกใ—ใพใ—ใŸ" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName}ใŒ{originalName}ใซ่ฟ”ไฟกใ—ใพใ—ใŸ" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName}ใ•ใ‚“ใŒใ‚ใชใŸใซ่ฟ”ไฟกใ—ใพใ—ใŸ" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, other {#ใƒชใ‚ฏใ‚จใ‚นใƒˆ}}" msgid "{requestCount}+ requests" msgstr "{requestCount}ไปถไปฅไธŠใฎใƒชใ‚ฏใ‚จใ‚นใƒˆ" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}ๆ™‚้–“ๅ‰" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} ใฏไฟก้ ผใ•ใ‚ŒใŸ่ช่จผ่€…ใงใ™" @@ -842,13 +795,13 @@ msgstr "{userName}ใฎ่ช่จผๆƒ…ๅ ฑ" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, other {ใƒ•ใ‚ฉใƒญใƒผ}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {ๅผ•็”จ}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {ใƒชใƒใ‚นใƒˆ}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, other {ไฟๅญ˜}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, other {ใ„ใ„ใญ}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2>ใŒใ‚ใชใŸใ‚’่ฟฝๅŠ ใ—ใพใ—ใŸ" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<4>ใƒ‹ใƒฅใƒผใ‚นใ€ใ‚นใƒใƒผใƒ„ใ€ๆ”ฟๆฒปใ€ใปใ‹ใ€BlueskyไธŠใง่ตทใ“ใฃใฆใ„ใ‚‹ใใฎไป–ใ™ในใฆใฎใ“ใจใ‚’ๆคœ็ดขใ™ใ‚‹ใŸใ‚ใซใฏ<0>ใ‚ตใ‚คใƒณใ‚คใƒณ<1>ใ™ใ‚‹ใ‹<2>ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝœๆˆ<3>ใ—ใฆใใ ใ•ใ„ใ€‚" @@ -971,7 +924,7 @@ msgstr "30ๆ—ฅ" msgid "7 days" msgstr "7ๆ—ฅ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Newsใ€Bookskyใ€Game Devใ€Blackskyใ€ใใ—ใฆFountain Pensใจใ„ใฃใŸBlueskyใง่ฆ‹ใคใ‘ใ‚‹ใ“ใจใฎใงใใ‚‹ไบบๆฐ—ใฎใƒ•ใ‚ฃใƒผใƒ‰ใฎใ‚ณใƒฌใ‚ฏใ‚ทใƒงใƒณ" @@ -988,9 +941,11 @@ msgstr "ใƒใƒƒใƒˆใƒฏใƒผใ‚ฏใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚คใƒณใ‚ฟใƒผใƒใƒƒใƒˆ #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "ๆ–ฐใ—ใ„ใ‚ณใƒผใƒ‰ใŒ้€ไฟกใ•ใ‚Œใพใ—ใŸ" msgid "A new form of verification" msgstr "่ช่จผใฎๆ–ฐใ—ใ„ๅฝข" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "ๅ‚ๅŠ ใ™ใ‚‹ๅ‰ใซ้€ใ‚‰ใ‚ŒใŸใƒกใƒƒใ‚ปใƒผใ‚ธใธใฎ่ฟ”ไฟก" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "ๆŠ•็จฟใƒœใ‚ฟใƒณใฎ้šฃใซ่™น่‰ฒใฎ่Šฑ็ซใฎใ‚จใƒ•ใ‚งใ‚ฏใƒˆใง้ฃพใ‚‰ใ‚ŒใŸใ€Œไธ‹ๆ›ธใใ€ใจๆ›ธใ‹ใ‚ŒใŸๆ–ฐใ—ใ„ใƒœใ‚ฟใƒณใŒใ‚ใ‚‹ๆŠ•็จฟไฝœๆˆ็”ป้ขใฎใ‚นใ‚ฏใƒชใƒผใƒณใ‚ทใƒงใƒƒใƒˆใ€‚ไธ‹ใซใฏใ€Œใญใˆใ€ใƒ‹ใƒฅใƒผใ‚นใ‚’่žใ„ใŸ๏ผŸBlueskyใซไธ‹ๆ›ธใใŒๅ‡บๆฅใŸใฃใฆ!!!ใ€ใจๆŠ•็จฟ็”ป้ขใซๆ›ธใ‹ใ‚Œใฆใ„ใ‚‹ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "้ธๆŠžใ•ใ‚ŒใŸๅ—ไฟก่€…ใฏ้€ไฟก่€…ใŒใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใพใ›ใ‚“ใ€‚" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "ใ‚ขใ‚ฏใ‚ปใ‚นใ‚’ใƒชใ‚ฏใ‚จใ‚นใƒˆใ—ใพใ—ใŸ๏ผใ‚ฐใƒซใƒผใƒ—ใฎใ‚ชใƒผใƒŠใƒผ msgid "Accessibility" msgstr "ใ‚ขใ‚ฏใ‚ปใ‚ทใƒ“ใƒชใƒ†ใ‚ฃ" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "ใ‚ขใ‚ฏใ‚ปใ‚ทใƒ“ใƒชใƒ†ใ‚ฃใฎ่จญๅฎš" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "ใƒชใ‚นใƒˆใซใ‚ˆใฃใฆใƒŸใƒฅใƒผใƒˆไธญใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" msgid "Account options" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚ชใƒ—ใ‚ทใƒงใƒณ" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "ใ‚ฏใ‚คใƒƒใ‚ฏใ‚ขใ‚ฏใ‚ปใ‚นใ‹ใ‚‰ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’่งฃ้™ค" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "ใ‚นใ‚ซใƒฉใƒƒใƒ—็Šถ๏ผˆๅธ†็ซ‹่ฒใฎๅฝข็Šถ๏ผ‰ใฎ้’่‰ฒใฎใƒใ‚งใƒƒใ‚ฏใƒžใƒผใ‚ฏ <0><1/> ใฎใ‚ใ‚‹ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฏไป–ใฎใƒฆใƒผใ‚ถใ‚’่ช่จผใงใใพใ™ใ€‚ใ“ใ‚Œใ‚‰ใฎไฟก้ ผใงใใ‚‹่ช่จผ่€…ใฏBlueskyใซใ‚ˆใฃใฆ้ธๆŠžใ•ใ‚Œใฆใ„ใพใ™ใ€‚" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "ไป–ใฎใƒฆใƒผใ‚ถใƒผใ‹ใ‚‰ใฎใ‚ขใ‚ฏใƒ†ใ‚ฃใƒ“ใƒ†ใ‚ฃ" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "ใ‚ขใ‚ฏใƒ†ใ‚ฃใƒ“ใƒ†ใ‚ฃใฎ้€š็Ÿฅ" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "ALTใƒ†ใ‚ญใ‚นใƒˆใ‚’่ฟฝๅŠ ๏ผˆใ‚ชใƒ—ใ‚ทใƒงใƒณ๏ผ‰" msgid "Add another account" msgstr "ไป–ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’่ฟฝๅŠ " -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "ไป–ใฎๆŠ•็จฟใ‚’่ฟฝๅŠ " -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "ใ‚นใƒฌใƒƒใƒ‰ใซไป–ใฎๆŠ•็จฟใ‚’่ฟฝๅŠ " -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "ไป–ใฎๆคœ็ดขใƒ•ใ‚ฃใƒซใ‚ฟใƒผใ‚’่ฟฝๅŠ " @@ -1253,7 +1213,7 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใซ่‡ชๅ‹•ๅŒ–ใƒฉใƒ™ใƒซใ‚’่ฟฝๅŠ " msgid "Add emoji reaction" msgstr "็ตตๆ–‡ๅญ—ใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณใ‚’่ฟฝๅŠ " -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "ใƒ•ใ‚ฃใƒซใ‚ฟใƒผใ‚’่ฟฝๅŠ " @@ -1338,7 +1298,7 @@ msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ใ‚ใชใŸใฎใƒ•ใ‚ฃใƒผใƒ‰ใซ่ฟฝๅŠ ใ™ใ‚‹" msgid "Add to lists" msgstr "ใƒชใ‚นใƒˆใซ่ฟฝๅŠ " -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "ไฟๅญ˜ๆธˆๆŠ•็จฟใธ่ฟฝๅŠ " @@ -1400,7 +1360,7 @@ msgstr "ๆˆไบบๅ‘ใ‘๏ผˆใƒใƒซใƒŽ็ญ‰๏ผ‰" msgid "Adult content" msgstr "ๆˆไบบๅ‘ใ‘ใ‚ณใƒณใƒ†ใƒณใƒ„" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "ใ™ในใฆ" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "ใ™ในใฆใฎๅ‹้”ใ‚’ใƒ•ใ‚ฉใƒญใƒผใ—ใพใ—ใŸ๏ผ" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "ใ™ในใฆใฎ่จ€่ชž" @@ -1491,11 +1447,6 @@ msgstr "ใ™ในใฆใฎ่จ€่ชžใŒใƒ•ใ‚ฃใƒผใƒ‰ใซ่กจ็คบใ•ใ‚Œใพใ™ใ€‚" msgid "All of these words" msgstr "ใ“ใ‚Œใ‚‰ใฎๅ˜่ชžใ™ในใฆ" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "ใ™ในใฆใฎๆŠ•็จฟ" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "ไฟๅญ˜ใ•ใ‚ŒใŸใ™ในใฆใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’1็ฎ‡ๆ‰€ใซใพใจใ‚ใพใ™ใ€‚" @@ -1560,7 +1511,7 @@ msgstr "ใƒ€ใ‚คใƒฌใ‚ฏใƒˆใƒกใƒƒใ‚ปใƒผใ‚ธใธใฎใ‚ขใ‚ฏใ‚ปใ‚นใ‚’่จฑๅฏ" msgid "Already have a code?" msgstr "ใ‚ณใƒผใƒ‰ใ‚’ใ™ใงใซๆŒใฃใฆใ„ใพใ™ใ‹๏ผŸ" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "ๆ—ขใซใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ๆŒใฃใฆใพใ™ใ‹๏ผŸ" @@ -1614,7 +1565,7 @@ msgstr "ใƒกใƒผใƒซใŒ{0}ใซ้€ไฟกใ•ใ‚Œใพใ—ใŸใ€‚ไปฅไธ‹ใซๅ…ฅๅŠ›ใงใใ‚‹็ขบ่ช msgid "An error has occurred" msgstr "ใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "ใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸ" @@ -1631,7 +1582,7 @@ msgstr "ใ‚ชใ‚นใ‚นใƒกใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎๅ–ๅพ—ไธญใซใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸ msgid "An error occurred while fetching the feed." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎๅ–ๅพ—ไธญใซใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใฎ็”Ÿๆˆไธญใซใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ—ใพใ™ใ‹๏ผŸ" @@ -1640,11 +1591,11 @@ msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใฎ็”Ÿๆˆไธญใซใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ msgid "An error occurred while hiding suggestion. {0}" msgstr "ๆๆกˆใ‚’้ž่กจ็คบไธญใซใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚{0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "ใƒ“ใƒ‡ใ‚ชใฎ่ชญใฟ่พผใฟๆ™‚ใซใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ๆ™‚้–“ใ‚’ใŠใ„ใฆใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "ใƒ“ใƒ‡ใ‚ชใฎ่ชญใฟ่พผใฟๆ™‚ใซใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" @@ -1684,7 +1635,7 @@ msgstr "ใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚{0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "้€ฃ็ตกๅธณใ‹ใ‚‰Blueskyใ‚ขใƒ—ใƒชใซๆตใ‚Œใ‚‹ใƒฆใƒผใ‚ถใƒผใฎใ‚ขใƒใ‚ฟใƒผใ‚’ๆใ„ใŸใ‚คใƒฉใ‚นใƒˆ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "ใƒชใƒใ‚นใƒˆใ€ใ„ใ„ใญใ€ใใ—ใฆใ‚ณใƒกใƒณใƒˆใฎใ‚ขใ‚คใ‚ณใƒณใจไธ€็ท’ใซไธฆใ‚“ใ ใ„ใใคใ‹ใฎBlueskyใฎๆŠ•็จฟใฎใ‚คใƒฉใ‚นใƒˆ" @@ -1705,17 +1656,15 @@ msgstr "ๆ‹›ๅพ…ใƒชใƒณใ‚ฏใ‚’ไฝฟ็”จใ™ใ‚‹ใจใ€ใƒฆใƒผใ‚ถใƒผใ‚’็›ดๆŽฅ่ฟฝๅŠ ใ›ใšใซ msgid "An issue not included in these options" msgstr "ใปใ‹ใฎ้ธๆŠž่‚ขใซใฏใ‚ใฆใฏใพใ‚‰ใชใ„ๅ•้กŒ" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "ใ‚ฐใƒซใƒผใƒ— ใƒใƒฃใƒƒใƒˆใฎไฝœๆˆไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆใ‚„ใ‚Š็›ดใ—ใฆใใ ใ•ใ„ใ€‚" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "ใƒใƒฃใƒƒใƒˆ้–‹ๅง‹ๆ™‚ใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆใ‚„ใ‚Š็›ดใ—ใฆใใ ใ•ใ„ใ€‚" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "ใƒใƒฃใƒƒใƒˆใ‚’้–‹ๅง‹ใ—ใ‚ˆใ†ใจใ—ใŸๆ™‚ใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸ" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใฎ้–‹ๅง‹ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "ๆ—ฅไป˜ใ‚’้ธๆŠž" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "่ชฐใงใ‚‚" @@ -1802,7 +1749,7 @@ msgstr "ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใ‚‹ไบบ" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "ใใ‚Œใ‚’ๆŒใฃใฆใ„ใ‚‹ไบบใฏใ‚‚ใ†ๅ‚ๅŠ ใงใใชใใชใ‚Šใ€ใพใŸใ€ๅ‚ๅŠ ใฎใƒชใ‚ฏใ‚จใ‚นใƒˆใ‚‚ใงใใชใใชใ‚Šใพใ™ใ€‚ใ„ใคใงใ‚‚ๆ–ฐใ—ใ„ใ‚‚ใฎใ‚’ไฝœๆˆใงใใพใ™ใ€‚" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฎๅๅ‰ใฏ้•ทใ•ใŒ4ๆ–‡ๅญ—ไปฅไธŠใงใ‚ใ‚‹ๅฟ… msgid "App passwords" msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰" @@ -1891,8 +1838,8 @@ msgstr "ใ“ใฎๆฑบๅฎšใซ็•ฐ่ญฐใ‚’็”ณใ—็ซ‹ใฆใ‚‹" msgid "Appeal this label" msgstr "ใ“ใฎใƒฉใƒ™ใƒซใซ็•ฐ่ญฐ็”ณใ—็ซ‹ใฆ" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "ใƒ—ใƒซใƒชใ‚ฏใ‚จใ‚นใƒˆใ‚’้ฉ็”จ" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "{0}ใฎใ‚ขใƒผใ‚ซใ‚คใƒ–" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "ใ‚ขใƒผใ‚ซใ‚คใƒ–ๆŠ•็จฟ" @@ -1980,7 +1927,7 @@ msgstr "ๆœฌๅฝ“ใซใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ใ‚ใชใŸใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ๅ‰Š้™คใ—ใŸ msgid "Are you sure you want to rescind your request to join {0}?" msgstr "ๆœฌๅฝ“ใซ{0}ใซๅ‚ๅŠ ใ™ใ‚‹ใƒชใ‚ฏใ‚จใ‚นใƒˆใ‚’ๅ–ใ‚Šๆถˆใ—ใพใ™ใ‹๏ผŸ" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "ๆœฌๅฝ“ใซใ“ใฎๆŠ•็จฟใ‚’ๅ‰Š้™คใ—ใพใ™ใ‹๏ผŸ" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "ใ‚ชใƒผใƒญใƒฉ" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "ๆŠ•็จฟ่€…" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "่‡ชๅ‹•ๅŒ–ใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" @@ -2033,7 +1985,7 @@ msgstr "่‡ชๅ‹•" msgid "Automation label" msgstr "่‡ชๅ‹•ๅŒ–ใƒฉใƒ™ใƒซ" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "่‡ชๅ‹•ๅŒ–ใƒฉใƒ™ใƒซ" @@ -2050,12 +2002,16 @@ msgstr "ใƒ“ใƒ‡ใ‚ชใจGIFใฎ่‡ชๅ‹•ๅ†็”Ÿ" msgid "Available" msgstr "ๅˆฉ็”จๅฏ่ƒฝ" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "ใ‚ขใƒใ‚ฟใƒผใƒปใ‚ฏใƒชใ‚จใ‚คใ‚ฟใƒผ" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "ๆŠ•็จฟใ‚„่ฟ”ไฟกใซใฏใ€ใพใšใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใฎ็ขบ่ชใŒๅฟ…่ฆใงใ™ใ€‚" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ไฝœใ‚‹ๅ‰ใซใ€ใพใšใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใ‚’็ขบ่ชใ—ใชใ‘ใ‚Œใฐใชใ‚Šใพใ›ใ‚“ใ€‚" @@ -2135,10 +2091,10 @@ msgstr "{name}ใฎๆŠ•็จฟใฎ้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ๅ‰ใซใ€ใพใšใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌ #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "ๅนด้ฝขไฟ่จผใƒ—ใƒญใ‚ปใ‚นใ‚’้–‹ๅง‹ใ™ใ‚‹ใซใฏใ€ไปฅไธ‹ใฎใƒ•ใ‚ฃใƒผใƒซใƒ‰ msgid "Beta Feature" msgstr "ใƒ™ใƒผใ‚ฟๆฉŸ่ƒฝ" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "ใƒ™ใƒผใ‚ฟ็‰ˆใฎๆฉŸ่ƒฝ" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "ใƒ™ใƒผใ‚ฟ็‰ˆใฎๆฉŸ่ƒฝใŒๆœ‰ๅŠนใซใชใ‚Šใพใ—ใŸ" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "็”Ÿๅนดๆœˆๆ—ฅ" msgid "Birthday" msgstr "็”Ÿๅนดๆœˆๆ—ฅ" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "ใƒ–ใƒญใƒƒใ‚ฏใ•ใ‚Œใฆใ„ใพใ™" msgid "Blocked accounts" msgstr "ใƒ–ใƒญใƒƒใ‚ฏไธญใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "ใƒ–ใƒญใƒƒใ‚ฏไธญใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" @@ -2282,7 +2244,7 @@ msgstr "ใƒ–ใƒญใƒƒใ‚ฏไธญใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฏใ€ใ‚ใชใŸใฎใ‚นใƒฌใƒƒใƒ‰ใงใฎ่ฟ” msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "ใƒ–ใƒญใƒƒใ‚ฏไธญใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฏใ€ใ‚ใชใŸใฎใ‚นใƒฌใƒƒใƒ‰ใงใฎ่ฟ”ไฟกใ€ใ‚ใชใŸใธใฎใƒกใƒณใ‚ทใƒงใƒณใ€ใใฎไป–ใฎๆ–นๆณ•ใงใ‚ใชใŸใจใ‚„ใ‚Šๅ–ใ‚Šใ™ใ‚‹ใ“ใจใฏใงใใพใ›ใ‚“ใ€‚ใ‚ใชใŸใฏ็›ธๆ‰‹ใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚’่ฆ‹ใ‚‹ใ“ใจใŒใงใใšใ€็›ธๆ‰‹ใฏใ‚ใชใŸใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚’่ฆ‹ใ‚‹ใ“ใจใŒใงใใชใใชใ‚Šใพใ™ใ€‚" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ใƒ–ใƒญใƒƒใ‚ฏใ—ใฆใ‚‚ใ“ใฎใƒฉใƒ™ใƒฉใƒผใŒใ‚ใชใŸใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใซใƒฉใƒ™ใƒซใ‚’้ฉ็”จใ™ใ‚‹ใ“ใจใŒใงใใพใ™ใ€‚" @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Blueskyใงใฏใ€ใ“ใฎๆŠ•็จฟๆ—ฅๆ™‚ใฎไฟกๆ†‘ๆ€งใ‚’็ขบ่ชใงใใพใ›ใ‚“ใ€‚" @@ -2330,7 +2293,7 @@ msgstr "Bluesky ใฏใ€ใƒ›ใ‚นใƒ†ใ‚ฃใƒณใ‚ฐ ใƒ—ใƒญใƒใ‚คใƒ€ใƒผใ‚’้ธๆŠžใงใใ‚‹ใ‚ช msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Blueskyใฏใ‚ชใƒผใƒ—ใƒณใชใƒใƒƒใƒˆใƒฏใƒผใ‚ฏใงใ€่‡ชๅˆ†่‡ช่บซใงใƒ—ใƒญใƒใ‚คใƒ€ใƒผใ‚’้ธใถใ“ใจใŒใงใใพใ™ใ€‚ๅˆใ‚ใฆๅˆฉ็”จใ™ใ‚‹ใฎใงใ‚ใ‚Œใฐใ€ใƒ‡ใƒ•ใ‚ฉใƒซใƒˆใฎใ‚ชใƒ—ใ‚ทใƒงใƒณใงใ‚ใ‚‹Bluesky Socialใฎใพใพใซใ—ใฆใŠใใฎใ‚’ใŠๅ‹งใ‚ใ—ใพใ™ใ€‚" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Blueskyใฏๅ‹้”ใจไธ€็ท’ใฎใปใ†ใŒๆฅฝใ—ใ„๏ผ" @@ -2358,7 +2321,7 @@ msgstr "Bluesky Socialๅˆฉ็”จ่ฆ็ด„" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Blueskyใฏ้€ฃ็ตกๅ…ˆใ‚’็ฌฆๅทๅŒ–ใ—ใŸใƒ‡ใƒผใ‚ฟใจใ—ใฆไฟๅญ˜ใ—ใพใ™ใ€‚้€ฃ็ตกๅ…ˆใ‚’ๅ‰Š้™คใ™ใ‚‹ใจใ™ใใซใ“ใฎใƒ‡ใƒผใ‚ฟใŒๅ‰Š้™คใ•ใ‚Œใพใ™ใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Blueskyใฏใ‚ใชใŸใฎใคใชใŒใฃใฆใ„ใ‚‹ใƒฆใƒผใ‚ถใƒผใ‹ใ‚‰ใŠใ™ใ™ใ‚ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’้ธใณใพใ™ใ€‚" @@ -2403,20 +2366,20 @@ msgstr "ๆœ€ๅคง50ไบบใฎๅ‹้”ใ‚’ไธ€ใคใฎใƒใƒฃใƒƒใƒˆใซ้›†ใ‚ใพใ—ใ‚‡ใ†ใ€‚" msgid "Browse custom feeds" msgstr "ใ‚ซใ‚นใ‚ฟใƒ ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่ฆ‹ใ‚‹" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "ใ•ใ‚‰ใซใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’่ฆ‹ใ‚‹" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "ๆคœ็ดขใƒšใƒผใ‚ธใงใ•ใ‚‰ใซใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่ฆ‹ใ‚‹" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "ใ•ใ‚‰ใซใŠใ™ใ™ใ‚ใ‚’่ฆ‹ใ‚‹" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "ๆคœ็ดขใƒšใƒผใ‚ธใงใ•ใ‚‰ใซใŠใ™ใ™ใ‚ใ‚’่ฆ‹ใ‚‹" @@ -2425,24 +2388,25 @@ msgstr "ๆคœ็ดขใƒšใƒผใ‚ธใงใ•ใ‚‰ใซใŠใ™ใ™ใ‚ใ‚’่ฆ‹ใ‚‹" msgid "Browse other feeds" msgstr "ไป–ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่ฆ‹ใ‚‹" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "{displayName}ใซใคใ„ใฆใฎๆŠ•็จฟใ‚’่ฆ‹ใ‚‹" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "{displayName}ใฎใ‚ฟใ‚ฐใฎไป˜ใ„ใŸๆŠ•็จฟใ‚’่ฆ‹ใ‚‹" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "{displayName}ใจใ„ใ†ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’่ฆ‹ใ‚‹" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "ใƒˆใƒ”ใƒƒใ‚ฏใ€Œ{0}ใ€ใ‚’่ฆ‹ใ‚‹" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "{displayName}ใจใ„ใ†ใƒˆใƒ”ใƒƒใ‚ฏใ‚’่ฆ‹ใ‚‹" @@ -2461,8 +2425,8 @@ msgstr "ใƒ›ใƒผใƒ ใ‚ฟใ‚คใƒ ใƒฉใ‚คใƒณใซๆˆปใ‚‹ใƒœใ‚ฟใƒณ" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "ไฝœๆˆ่€…๏ผš{0}" @@ -2473,9 +2437,9 @@ msgstr "่‘—่€…๏ผš@{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "ไฝœๆˆ่€…๏ผš<0>{0}" @@ -2504,11 +2468,11 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝœๆˆใ™ใ‚‹ใ“ใจใงใ€<0>ๅˆฉ็”จ่ฆ็ด„ใจ<1>ใƒ— msgid "By creating an account you agree to the <0>Terms of Service." msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝœๆˆใ™ใ‚‹ใ“ใจใงใ€<0>ๅˆฉ็”จ่ฆ็ด„ใซๅŒๆ„ใ—ใŸใ‚‚ใฎใจใฟใชใ•ใ‚Œใพใ™ใ€‚" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "ไฝœๆˆ่€…๏ผšใ‚ใชใŸ" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "ใ‚ซใƒกใƒฉ" @@ -2534,7 +2498,7 @@ msgstr "ใ‚ซใƒกใƒฉใธใฎใ‚ขใ‚ฏใ‚ปใ‚นใŒๅฟ…่ฆใงใ™" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "ใ‚ซใƒกใƒฉใธใฎใ‚ขใ‚ฏใ‚ปใ‚นใŒๅฟ…่ฆใงใ™" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "ๅ†ๆœ‰ๅŠนๅŒ–ใ‚’ใ‚ญใƒฃใƒณใ‚ปใƒซใ—ใฆใ‚ตใ‚คใƒณใ‚ขใ‚ฆใƒˆ" msgid "Cancel reply" msgstr "่ฟ”ไฟกใ‚’ใ‚ญใƒฃใƒณใ‚ปใƒซ" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "ๆคœ็ดขใ‚’ใ‚ญใƒฃใƒณใ‚ปใƒซ" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "ไฝœๆˆๅพŒใ€ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใธใฎๅค‰ๆ›ดใฏใƒชใ‚นใƒˆใซๅๆ˜ ใ•ใ‚Œใพใ›ใ‚“ใ€‚ใƒชใ‚นใƒˆใฏ็‹ฌ็ซ‹ใ—ใŸใ‚ณใƒ”ใƒผใจใชใ‚Šใพใ™ใ€‚" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "ใƒใƒฃใƒƒใƒˆใ‚’ใƒŸใƒฅใƒผใƒˆใ—ใพใ—ใŸ" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "ใƒใƒฃใƒƒใƒˆใŒ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใงใ—ใŸใ€‚" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "ใƒใƒฃใƒƒใƒˆใฎใ‚ชใƒ—ใ‚ทใƒงใƒณ" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "ใƒใƒฃใƒƒใƒˆใ‚ชใƒผใƒŠใƒผใฏใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใ‚’้€€ๅ‡บใงใใพใ›ใ‚“ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "ใƒใƒฃใƒƒใƒˆใฎๅ—ไฟก่€…ใฏ้€ไฟก่€…ใŒใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใพใ›ใ‚“ใ€‚" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "ใƒใƒฃใƒƒใƒˆ่ฆๆฑ‚ใฎๅ—ไฟกใƒˆใƒฌใ‚ค" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "ใƒใƒฃใƒƒใƒˆใฎ่ฆๆฑ‚" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "ใƒใƒฃใƒƒใƒˆใฎ่จญๅฎš" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "ใƒใƒฃใƒƒใƒˆใฎใƒŸใƒฅใƒผใƒˆใ‚’่งฃ้™คใ—ใพใ—ใŸ" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "ใƒใƒฃใƒƒใƒˆ" @@ -2837,7 +2802,7 @@ msgstr "ใƒ‰ใƒกใ‚คใƒณๅใฎ็ขบ่ชๆ–นๆณ•ใ‚’้ธๆŠž" msgid "Choose Feeds" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎ้ธๆŠž" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "็งๅ‘ใ‘ใซ้ธใ‚“ใง" @@ -2854,7 +2819,7 @@ msgstr "ใƒฆใƒผใ‚ถใƒผใฎ้ธๆŠž" msgid "Choose post languages" msgstr "ๆŠ•็จฟใฎ่จ€่ชžใ‚’้ธๆŠž" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "ใ“ใฎ่‰ฒใ‚’ใ‚ขใƒใ‚ฟใƒผใจใ—ใฆ้ธๆŠž" @@ -2879,7 +2844,7 @@ msgstr "่‡ชๅˆ†่‡ช่บซใฎใ‚ฟใ‚คใƒ ใƒฉใ‚คใƒณใ‚’้ธใณใพใ—ใ‚‡ใ†๏ผใ‚ณใƒŸใƒฅใƒ‹ใƒ† msgid "Choose your password" msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ๅ…ฅๅŠ›" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "ใƒฆใƒผใ‚ถใƒผๅใ‚’้ธใ‚“ใงใใ ใ•ใ„" @@ -2966,7 +2931,7 @@ msgstr "ใ“ใ“ใ‚’ใ‚ฏใƒชใƒƒใ‚ฏใ—ใฆใ“ใฎใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใฎๆ‹›ๅพ…ใƒชใƒณ msgid "Click to open tag menu for {0}" msgstr "ใ‚ฏใƒชใƒƒใ‚ฏใ—ใฆ {0} ใฎใ‚ฟใ‚ฐใƒกใƒ‹ใƒฅใƒผใ‚’้–‹ใ" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "้€ไฟกๅคฑๆ•—ใ—ใŸใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’ๅ†้€ไฟก" @@ -3003,7 +2968,7 @@ msgstr "้€ไฟกๅคฑๆ•—ใ—ใŸใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’ๅ†้€ไฟก" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "้€ไฟกๅคฑๆ•—ใ—ใŸใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’ๅ†้€ไฟก" msgid "Close" msgstr "้–‰ใ˜ใ‚‹" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "ใ‚ขใ‚ฏใƒ†ใ‚ฃใƒ–ใชใƒ€ใ‚คใ‚ขใƒญใ‚ฐใ‚’้–‰ใ˜ใ‚‹" @@ -3047,7 +3012,7 @@ msgstr "ใƒใƒŠใƒผใ‚’้–‰ใ˜ใ‚‹" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "็”ปๅƒใƒ“ใƒฅใƒผใƒฏใƒผใ‚’้–‰ใ˜ใ‚‹" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "ใƒกใƒ‹ใƒฅใƒผใ‚’้–‰ใ˜ใ‚‹" @@ -3090,7 +3055,7 @@ msgstr "ใƒชใ‚ฏใ‚จใ‚นใƒˆใƒใƒŠใƒผใ‚’้–‰ใ˜ใ‚‹" msgid "Close this dialog" msgstr "ใ“ใฎใƒ€ใ‚คใ‚ขใƒญใ‚ฐใ‚’้–‰ใ˜ใ‚‹" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "ใ‚ฆใ‚งใƒซใ‚ซใƒ ใƒขใƒผใƒ€ใƒซใ‚’้–‰ใ˜ใ‚‹" @@ -3098,7 +3063,7 @@ msgstr "ใ‚ฆใ‚งใƒซใ‚ซใƒ ใƒขใƒผใƒ€ใƒซใ‚’้–‰ใ˜ใ‚‹" msgid "Closes password update alert" msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ๆ›ดๆ–ฐใ‚ขใƒฉใƒผใƒˆใ‚’้–‰ใ˜ใ‚‹" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "ๆŠ•็จฟใฎ็ทจ้›†็”ป้ขใ‚’้–‰ใ˜ใฆไธ‹ๆ›ธใใ‚’็ ดๆฃ„" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "ใ‚ซใƒฉใƒผ" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "ใ‚ซใƒฉใƒผใƒขใƒผใƒ‰" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "ๆผซ็”ป" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "ใ‚ณใƒŸใƒฅใƒ‹ใƒ†ใ‚ฃใ‚ฌใ‚คใƒ‰ใƒฉใ‚คใƒณ" @@ -3141,7 +3106,7 @@ msgstr "ใ‚ณใƒŸใƒฅใƒ‹ใƒ†ใ‚ฃใ‚ฌใ‚คใƒ‰ใƒฉใ‚คใƒณ" msgid "Complete onboarding and start using your account" msgstr "ๅˆๆœŸ่จญๅฎšใ‚’ๅฎŒไบ†ใ—ใฆใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝฟใ„ๅง‹ใ‚ใ‚‹" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "ใƒ†ใ‚นใƒˆใ‚’ใ‚ฏใƒชใ‚ขใ—ใฆใใ ใ•ใ„" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "ๆ–ฐใ—ใ„ๆŠ•็จฟใ‚’ไฝœๆˆ" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "ๆœ€ๅคง{0, plural, other {#ๆ–‡ๅญ—}}ใพใงๆŠ•็จฟใ‚’็ทจ้›†" @@ -3160,11 +3125,11 @@ msgstr "ๆœ€ๅคง{0, plural, other {#ๆ–‡ๅญ—}}ใพใงๆŠ•็จฟใ‚’็ทจ้›†" msgid "Compose reply" msgstr "่ฟ”ไฟกใ‚’ไฝœๆˆ" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIFใ‚’ๅœง็ธฎไธญโ€ฆ" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "ใƒ“ใƒ‡ใ‚ชใ‚’ๅœง็ธฎไธญโ€ฆ" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "ใ‚ตใƒใƒผใƒˆใƒใƒผใƒ ใซ้€ฃ็ตก" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "ใ‚ตใƒใƒผใƒˆใซ้€ฃ็ตก" @@ -3253,7 +3218,7 @@ msgstr "ใ‚ณใƒณใƒ†ใƒณใƒ„๏ผ†ใƒกใƒ‡ใ‚ฃใ‚ข" msgid "Content and media" msgstr "ใ‚ณใƒณใƒ†ใƒณใƒ„ใจใƒกใƒ‡ใ‚ฃใ‚ข" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "ใ‚ณใƒณใƒ†ใƒณใƒ„ใจใƒกใƒ‡ใ‚ฃใ‚ข" @@ -3265,10 +3230,6 @@ msgstr "ใƒ–ใƒญใƒƒใ‚ฏใ•ใ‚ŒใŸใ‚ณใƒณใƒ†ใƒณใƒ„" msgid "Content filters" msgstr "ใ‚ณใƒณใƒ†ใƒณใƒ„ใฎใƒ•ใ‚ฃใƒซใ‚ฟใƒผ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "ใŠๅฅฝใฟใ‹ใ‚‚ใ—ใ‚Œใชใ„ใƒใƒƒใƒˆใƒฏใƒผใ‚ฏใ‹ใ‚‰ใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใ€‚" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "ใ‚ณใƒณใƒ†ใƒณใƒ„ใฎ่จ€่ชž" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "่‡ชๅ‚ท่กŒ็‚บใ‚’ๅŠฉ้•ทใพใŸใฏๆๅ†™ใ™ใ‚‹ใ‚ณใƒณใƒ†ใƒณใƒ„" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "ใ‚ณใƒณใƒ†ใƒณใƒ„ใฎ่ญฆๅ‘Š" msgid "Content warnings" msgstr "ใ‚ณใƒณใƒ†ใƒณใƒ„ใฎ่ญฆๅ‘Š" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "ใ‚ณใƒณใƒ†ใ‚ญใ‚นใƒˆใƒกใƒ‹ใƒฅใƒผใฎ่ƒŒๆ™ฏใ‚’ใ‚ฏใƒชใƒƒใ‚ฏใ—ใ€ใƒกใƒ‹ใƒฅใƒผใ‚’้–‰ใ˜ใ‚‹ใ€‚" @@ -3302,7 +3263,7 @@ msgstr "ใ‚ณใƒณใƒ†ใ‚ญใ‚นใƒˆใƒกใƒ‹ใƒฅใƒผใฎ่ƒŒๆ™ฏใ‚’ใ‚ฏใƒชใƒƒใ‚ฏใ—ใ€ใƒกใƒ‹ใƒฅใƒผ #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "ใ‚นใƒฌใƒƒใƒ‰ใฎ็ถšใโ€ฆ" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "ใ‚ฐใƒซใƒผใƒ—ๅใซ้€ฒใ‚€" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "ไผš่ฉฑใŒ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใ€‚" msgid "Copied build version to clipboard" msgstr "ใƒ“ใƒซใƒ‰ใƒใƒผใ‚ธใƒงใƒณใ‚’ใ‚ฏใƒชใƒƒใƒ—ใƒœใƒผใƒ‰ใซใ‚ณใƒ”ใƒผใ—ใพใ—ใŸ" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "ใƒชใƒณใ‚ฏใ‚’ใ‚ฏใƒชใƒƒใƒ—ใƒœใƒผใƒ‰ใซใ‚ณใƒ”ใƒผใ—ใพใ—ใŸ" @@ -3376,7 +3337,7 @@ msgstr "ใƒชใƒณใ‚ฏใ‚’ใ‚ฏใƒชใƒƒใƒ—ใƒœใƒผใƒ‰ใซใ‚ณใƒ”ใƒผใ—ใพใ—ใŸ" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ใ‚ณใƒ”ใƒผ" msgid "Copy at:// URI" msgstr "at:// URIใ‚’ใ‚ณใƒ”ใƒผ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "ๆŠ•็จฟ่€…ใฎDIDใ‚’ใ‚ณใƒ”ใƒผ" @@ -3449,10 +3410,10 @@ msgstr "ใƒชใƒณใ‚ฏใ‚’ใ‚ณใƒ”ใƒผ" msgid "Copy link to list" msgstr "ใƒชใ‚นใƒˆใธใฎใƒชใƒณใ‚ฏใ‚’ใ‚ณใƒ”ใƒผ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "ๆŠ•็จฟใธใฎใƒชใƒณใ‚ฏใ‚’ใ‚ณใƒ”ใƒผ" @@ -3470,8 +3431,8 @@ msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใธใฎใƒชใƒณใ‚ฏใ‚’ใ‚ณใƒ”ใƒผ" msgid "Copy message text" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใฎใƒ†ใ‚ญใ‚นใƒˆใ‚’ใ‚ณใƒ”ใƒผ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "ๆŠ•็จฟใฎat:// URIใ‚’ใ‚ณใƒ”ใƒผ" @@ -3490,7 +3451,7 @@ msgstr "TXTใƒฌใ‚ณใƒผใƒ‰ใฎๅ€คใ‚’ใ‚ณใƒ”ใƒผ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "่‘—ไฝœๆจฉใƒใƒชใ‚ทใƒผ" @@ -3540,11 +3501,11 @@ msgstr "ใƒžใƒƒใƒใ—ใŸๅ…จๅ“กใ‚’ใƒ•ใ‚ฉใƒญใƒผใงใใพใ›ใ‚“ใงใ—ใŸใ€‚{0}" msgid "Could not leave chat" msgstr "ใƒใƒฃใƒƒใƒˆใ‹ใ‚‰ใฎ้€€ๅ‡บใซๅคฑๆ•—ใ—ใพใ—ใŸ" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "ใƒใƒฃใƒƒใƒˆใ‚’้€€ๅ‡บใงใใพใ›ใ‚“ใงใ—ใŸใ€‚" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸ" @@ -3562,7 +3523,7 @@ msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’่ชญใฟ่พผใ‚ใพใ›ใ‚“ใงใ—ใŸ" msgid "Could not mute chat" msgstr "ใƒใƒฃใƒƒใƒˆใฎใƒŸใƒฅใƒผใƒˆใซๅคฑๆ•—ใ—ใพใ—ใŸ" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "ใƒกใƒณใƒใƒผใ‚’ๅค–ใ›ใพใ›ใ‚“ใงใ—ใŸใ€‚" @@ -3606,8 +3567,8 @@ msgstr "cows pigs" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "ไฝœๆˆ" @@ -3624,26 +3585,26 @@ msgstr "ใ“ใฎใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‹ใ‚‰ใƒชใ‚นใƒˆใ‚’ไฝœๆˆใ™ใ‚‹" msgid "Create a QR code for a starter pack" msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใฎQRใ‚ณใƒผใƒ‰ใ‚’ไฝœๆˆ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ไฝœๆˆ" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ไฝœๆˆ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "็งๅ‘ใ‘ใฎใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ไฝœๆˆ" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝœๆˆ" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝœๆˆ" @@ -3666,15 +3627,15 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝœๆˆ" msgid "Create an account without using this starter pack" msgstr "ใ“ใฎใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ไฝฟ็”จใ›ใšใซใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝœๆˆใ™ใ‚‹" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "ไปฃใ‚ใ‚Šใซใ‚ขใƒใ‚ฟใƒผใ‚’ไฝœๆˆ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "ๅˆฅใฎใ‚‚ใฎใ‚’ไฝœๆˆ" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "ใ‚ฐใƒซใƒผใƒ— ใƒใƒฃใƒƒใƒˆใ‚’ไฝœๆˆ" @@ -3743,7 +3704,7 @@ msgstr "ๆ–‡ๅŒ–" msgid "Current beta features" msgstr "็พๅœจใฎใƒ™ใƒผใ‚ฟ็‰ˆใฎๆฉŸ่ƒฝ" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "็พๅœจใฎใƒใƒฃใƒƒใƒˆ" @@ -3770,8 +3731,8 @@ msgstr "ๅฑ้™บ็‰ฉ่ณชใพใŸใฏ่–ฌ็‰ฉใฎไนฑ็”จ" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "ใƒ€ใƒผใ‚ฏ" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "ใƒ€ใƒผใ‚ฏ" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "ใƒ€ใƒผใ‚ฏใƒ†ใƒผใƒž" @@ -3814,7 +3775,7 @@ msgstr "ใ“ใฎ่จ€่ชžใฎๆๆกˆใ‚’ๆ‹’ๅฆใ™ใ‚‹" msgid "Deepfake adult content" msgstr "ใƒ‡ใ‚ฃใƒผใƒ—ใƒ•ใ‚งใ‚คใ‚ฏใซใ‚ˆใ‚‹ๆˆไบบๅ‘ใ‘ใ‚ณใƒณใƒ†ใƒณใƒ„" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "ใƒ‡ใƒ•ใ‚ฉใƒซใƒˆ" @@ -3894,7 +3855,7 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ๅ‰Š้™ค" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "ๆŠ•็จฟใ‚’ๅ‰Š้™ค" @@ -3988,7 +3949,7 @@ msgstr "ใƒ€ใ‚คใ‚ขใƒญใ‚ฐ๏ผšใ“ใฎๆŠ•็จฟใซ่ชฐใŒๅๅฟœใงใใ‚‹ใ‹่ชฟๆ•ด" msgid "Dialog: Set search filters" msgstr "ใƒ€ใ‚คใ‚ขใƒญใ‚ฐ๏ผšๆคœ็ดขใƒ•ใ‚ฃใƒซใ‚ฟใƒผใ‚’่จญๅฎš" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "ใ‚ฐใƒฌใƒผ" @@ -4002,7 +3963,7 @@ msgstr "็„กๅŠนใซใ™ใ‚‹" msgid "Disable 2FA" msgstr "2่ฆ็ด ่ช่จผใ‚’็„กๅŠนใซ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "ใ‚ญใƒฃใƒ—ใ‚ทใƒงใƒณใ‚’็„กๅŠนๅŒ–" @@ -4045,9 +4006,9 @@ msgstr "็„กๅŠน" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "็ ดๆฃ„" msgid "Discard changes?" msgstr "ๅค‰ๆ›ดใ‚’็ ดๆฃ„ใ—ใพใ™ใ‹๏ผŸ" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "ไธ‹ๆ›ธใใ‚’ๅ‰Š้™คใ—ใพใ™ใ‹๏ผŸ" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "ๆŠ•็จฟใ‚’ๅ‰Š้™คใ—ใพใ™ใ‹๏ผŸ" @@ -4079,6 +4040,10 @@ msgstr "Germ DMใ‚’ๅˆ‡ๆ–ญ" msgid "Discourage apps from showing my account to logged-out users" msgstr "ใ‚ขใƒ—ใƒชใŒใƒญใ‚ฐใ‚ขใ‚ฆใƒˆใ—ใŸใƒฆใƒผใ‚ถใƒผใซ่‡ชๅˆ†ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’่กจ็คบใ—ใชใ„ใ‚ˆใ†ใซใ™ใ‚‹" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๆŽขใ™" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "ใ‚ขใƒ—ใƒชใŒใƒญใ‚ฐใ‚ขใ‚ฆใƒˆใ—ใŸใƒฆใƒผใ‚ถใƒผใซ่‡ชๅˆ†ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ msgid "Discover new custom feeds" msgstr "ๆ–ฐใ—ใ„ใ‚ซใ‚นใ‚ฟใƒ ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่ฆ‹ใคใ‘ใ‚‹" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "ๆ–ฐใ—ใ„ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๆŽขใ™" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "ๆ–ฐใ—ใ„ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๆŽขใ™" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "ๆถˆใ™" @@ -4103,28 +4064,28 @@ msgstr "ๆถˆใ™" msgid "Dismiss banner" msgstr "ใƒใƒŠใƒผใ‚’้–‰ใ˜ใ‚‹" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "ใ‚จใƒฉใƒผใ‚’ๆถˆใ™" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "ๅ…ฅ้–€ใ‚ฌใ‚คใƒ‰ใ‚’ๆถˆใ™" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "ใ€Œๆฐ—ใซใชใ‚‹ใ“ใจใ€ใ‚’ๆถˆใ™" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "ใƒฉใ‚คใƒ–ใ‚คใƒ™ใƒณใƒˆใฎใƒใƒŠใƒผใ‚’ๆถˆใ™" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "ใ“ใฎใ‚ปใ‚ฏใ‚ทใƒงใƒณใ‚’ๆถˆใ™" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "ๆๆกˆใ‚’ๆถˆใ™" @@ -4142,7 +4103,7 @@ msgstr "ๅคงใใชALTใƒ†ใ‚ญใ‚นใƒˆใฎใƒใƒƒใ‚ธใ‚’่กจ็คบ" msgid "Display name" msgstr "่กจ็คบๅ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "่’ใ‚‰ใ—ใ‚„ใ‚ฏใƒชใƒƒใ‚ฏ็จผใŽใฎ้‡ฃใ‚Š่ฆ‹ๅ‡บใ—ใฏๆจใฆใฆใ—ใพใŠใ†ใ€‚ใ‚ใชใŸใซใจใฃใฆๅคงๅˆ‡ใชใ€ใƒชใ‚ขใƒซใชไบบใ€…ใ‚„ไผš่ฉฑใ‚’่ฆ‹ใคใ‘ใ‚ˆใ†ใ€‚" @@ -4205,8 +4166,8 @@ msgstr "ๅฟƒ้…ใ—ใชใ„ใงใใ ใ•ใ„๏ผใ™ในใฆใฎๆ—ขๅญ˜ใฎใƒกใƒƒใ‚ปใƒผใ‚ธใจ #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "ๅฟƒ้…ใ—ใชใ„ใงใใ ใ•ใ„๏ผใ™ในใฆใฎๆ—ขๅญ˜ใฎใƒกใƒƒใ‚ปใƒผใ‚ธใจ msgid "Done" msgstr "ๅฎŒไบ†" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’ใƒ€ใƒ–ใƒซใ‚ฟใƒƒใƒ—ใ‹้•ทๆŠผใ—ใงใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณใ‚’่ฟฝๅŠ " -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "ใƒ€ใƒ–ใƒซใ‚ฟใƒƒใƒ—ใงใƒ€ใ‚คใ‚ขใƒญใ‚ฐใ‚’้–‰ใ˜ใ‚‹" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "ใƒ€ใƒ–ใƒซใ‚ฟใƒƒใƒ—ใงใ„ใ„ใญ" @@ -4328,6 +4289,7 @@ msgstr "ๆ‘‚้ฃŸ้šœๅฎณ" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "็”ปๅƒใ‚’็ทจ้›†" msgid "Edit interaction settings" msgstr "ๅๅฟœ้–ข้€ฃใฎ่จญๅฎšใ‚’็ทจ้›†" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "ใ€Œๆฐ—ใซใชใ‚‹ใ“ใจใ€ใ‚’็ทจ้›†" @@ -4397,7 +4359,7 @@ msgstr "ใƒฉใ‚คใƒ–ใ‚นใƒ†ใƒผใ‚ฟใ‚นใ‚’็ทจ้›†" msgid "Edit moderation list" msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใƒชใ‚นใƒˆใ‚’็ทจ้›†" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "ใƒžใ‚คใƒ•ใ‚ฃใƒผใƒ‰ใ‚’็ทจ้›†" @@ -4406,6 +4368,11 @@ msgstr "ใƒžใ‚คใƒ•ใ‚ฃใƒผใƒ‰ใ‚’็ทจ้›†" msgid "Edit name" msgstr "ๅๅ‰ใ‚’็ทจ้›†" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "{0}ใ‹ใ‚‰ใฎ้€š็Ÿฅใ‚’็ทจ้›†" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "ใƒฆใƒผใ‚ถใƒผใ‚’็ทจ้›†" @@ -4444,7 +4411,7 @@ msgstr "ใƒฆใƒผใ‚ถใƒผใƒชใ‚นใƒˆใ‚’็ทจ้›†" msgid "Edit who can reply" msgstr "่ชฐใŒ่ฟ”ไฟกใงใใ‚‹ใฎใ‹ใ‚’็ทจ้›†" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’็ทจ้›†" @@ -4500,8 +4467,8 @@ msgstr "HTMLใ‚ณใƒผใƒ‰ใ‚’ๅŸ‹ใ‚่พผใ‚€" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "ๆŠ•็จฟใ‚’ๅŸ‹ใ‚่พผใ‚€" @@ -4509,7 +4476,7 @@ msgstr "ๆŠ•็จฟใ‚’ๅŸ‹ใ‚่พผใ‚€" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "ใ“ใฎๆŠ•็จฟใ‚’ใ‚ใชใŸใฎใ‚ฆใ‚งใƒ–ใ‚ตใ‚คใƒˆใซๅŸ‹ใ‚่พผใฟใพใ™ใ€‚ไปฅไธ‹ใฎใ‚นใƒ‹ใƒšใƒƒใƒˆใ‚’ใ‚ณใƒ”ใƒผใ—ใฆใ€ใ‚ใชใŸใฎใ‚ฆใ‚งใƒ–ใ‚ตใ‚คใƒˆใฎHTMLใ‚ณใƒผใƒ‰ใซ่ฒผใ‚Šไป˜ใ‘ใ‚‹ใ ใ‘ใงใ™ใ€‚" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "ๅŸ‹ใ‚่พผใฟใƒ“ใƒ‡ใ‚ชใƒ—ใƒฌใƒผใƒคใƒผ" @@ -4533,7 +4500,7 @@ msgstr "ๆˆไบบๅ‘ใ‘ใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚’ๆœ‰ๅŠนใซใ™ใ‚‹" msgid "Enable beta features" msgstr "ใƒ™ใƒผใ‚ฟ็‰ˆใฎๆฉŸ่ƒฝใ‚’ๆœ‰ๅŠนใซใ™ใ‚‹" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "ใ‚ญใƒฃใƒ—ใ‚ทใƒงใƒณใ‚’ๆœ‰ๅŠนๅŒ–" @@ -4550,12 +4517,13 @@ msgstr "ๅค–้ƒจใƒกใƒ‡ใ‚ฃใ‚ขใ‚’ๆœ‰ๅŠนใซใ™ใ‚‹" msgid "Enable media players for" msgstr "ๆœ‰ๅŠนใซใ™ใ‚‹ใƒกใƒ‡ใ‚ฃใ‚ขใƒ—ใƒฌใƒผใƒคใƒผ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใซใ‚ขใ‚ฏใ‚ปใ‚นใ—ใฆ<0>ใƒ™ใƒซใฎใ‚ขใ‚คใ‚ณใƒณ<1/>ใ‚’ๆŠผใ™ใ“ใจใงใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎ้€š็Ÿฅใ‚’ๆœ‰ๅŠนใซใ—ใพใ™ใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "ใƒ—ใƒƒใ‚ทใƒฅ้€š็Ÿฅใ‚’ๆœ‰ๅŠนใซใ™ใ‚‹" @@ -4581,7 +4549,7 @@ msgstr "Discoverใƒ•ใ‚ฃใƒผใƒ‰ใงใƒˆใƒฌใƒณใƒ‰ใƒปใƒ“ใƒ‡ใ‚ชใ‚’ๆœ‰ๅŠนใซใ™ใ‚‹" msgid "Enabled" msgstr "ๆœ‰ๅŠน" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎ็ต‚ใ‚ใ‚Š" @@ -4608,7 +4576,7 @@ msgstr "ใƒฏใƒผใƒ‰ใพใŸใฏใ‚ฟใ‚ฐใ‚’ๅ…ฅๅŠ›" msgid "Enter code" msgstr "ใ‚ณใƒผใƒ‰ใ‚’ๅ…ฅๅŠ›" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "ๅ…จ็”ป้ข่กจ็คบใซใ™ใ‚‹" @@ -4650,11 +4618,11 @@ msgstr "ใƒฆใƒผใ‚ถใƒผๅใจใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ๅ…ฅๅŠ›ใ—ใฆใใ ใ•ใ„" msgid "Enters full screen" msgstr "ใƒ•ใƒซใ‚นใ‚ฏใƒชใƒผใƒณใง่กจ็คบ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "ใ‚จใƒณใ‚ฟใƒผใƒ†ใ‚คใƒณใƒกใƒณใƒˆ" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "ใ‚จใƒฉใƒผ" @@ -4684,7 +4652,7 @@ msgstr "ใƒ•ใ‚กใ‚คใƒซใฎไฟๅญ˜ไธญใซใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸ" msgid "Error receiving captcha response." msgstr "CAPTCHAใƒฌใ‚นใƒใƒณใ‚นใฎๅ—ไฟกไธญใซใ‚จใƒฉใƒผใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "ใ‚จใƒฉใƒผ๏ผš{error}" @@ -4696,8 +4664,8 @@ msgstr "่ชฐใงใ‚‚่ฟ”ไฟกๅฏ่ƒฝ" msgid "Everybody can reply to this post." msgstr "ใ“ใฎๆŠ•็จฟใซๅ…จๅ“กใŒ่ฟ”ไฟกใงใใ‚‹ใ€‚" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "ๅ…จๅ“ก" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "ๅ…จๅ“ก" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "ไป–ใ™ในใฆ" @@ -4738,7 +4706,7 @@ msgstr "ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใ‚‹ใƒฆใƒผใ‚ถใƒผใฏ้™คๅค–" msgid "Excludes users you follow" msgstr "ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใ‚‹ใƒฆใƒผใ‚ถใƒผใฏ้™คๅค–" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "ๅ…จ็”ป้ข่กจ็คบใ‚’็ต‚ไบ†" @@ -4755,11 +4723,11 @@ msgstr "ใƒฆใƒผใ‚ถใƒผใƒชใ‚นใƒˆใ‚’ๅฑ•้–‹" msgid "Expand or collapse the full post you are replying to" msgstr "่ฟ”ไฟกใ™ใ‚‹ๆŠ•็จฟๅ…จไฝ“ใ‚’ๅฑ•้–‹ใพใŸใฏๆŠ˜ใ‚ŠใŸใŸใ‚€" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "ๆŠ•็จฟใฎใƒ†ใ‚ญใ‚นใƒˆใ‚’ๅฑ•้–‹" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "ใƒ†ใ‚ญใ‚นใƒˆใ‚’ๅฑ•้–‹ใพใŸใฏๆŠ˜ใ‚ŠใŸใŸใ‚€" @@ -4802,15 +4770,15 @@ msgstr "้œฒ้ชจใชใ€ใพใŸใฏไธๆ„‰ๅฟซใซใชใ‚‹ๅฏ่ƒฝๆ€งใฎใ‚ใ‚‹ใƒกใƒ‡ใ‚ฃใ‚ขใ€‚ msgid "Explicit sexual images." msgstr "้œฒ้ชจใชๆ€ง็š„็”ปๅƒใ€‚" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "ๆคœ็ดข" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "ใ‚ขใƒ—ใƒชใ‚’ๆŽข็ดข" @@ -4844,7 +4812,7 @@ msgstr "ๅค–้ƒจใƒกใƒ‡ใ‚ฃใ‚ข" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ๅค–้ƒจใƒกใƒ‡ใ‚ฃใ‚ขใ‚’ๆœ‰ๅŠนใซใ™ใ‚‹ใจใ€ใใ‚Œใ‚‰ใฎใƒกใƒ‡ใ‚ฃใ‚ขใฎใ‚ฆใ‚งใƒ–ใ‚ตใ‚คใƒˆใŒใ‚ใชใŸใ‚„ใŠไฝฟใ„ใฎใƒ‡ใƒใ‚คใ‚นใซ้–ขใ™ใ‚‹ๆƒ…ๅ ฑใ‚’ๅŽ้›†ใ™ใ‚‹ๅ ดๅˆใŒใ‚ใ‚Šใพใ™ใ€‚ใใฎๅ ดๅˆใงใ‚‚ใ€ใ‚ใชใŸใŒใ€Œๅ†็”Ÿใ€ใƒœใ‚ฟใƒณใ‚’ๆŠผใ™ใพใงๆƒ…ๅ ฑใฏ้€ไฟกใ•ใ‚Œใšใ€่ฆๆฑ‚ใ‚‚ใ•ใ‚Œใพใ›ใ‚“ใ€‚" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "ๅค–้ƒจใƒกใƒ‡ใ‚ฃใ‚ขใฎ่จญๅฎš" @@ -4886,7 +4854,7 @@ msgstr "ใƒใƒณใƒ‰ใƒซใฎๅค‰ๆ›ดใซๅคฑๆ•—ใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ—ใฆใใ  #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "ใƒชใƒณใ‚ฏใฎใ‚ณใƒ”ใƒผใซๅคฑๆ•—ใ—ใพใ—ใŸ" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใ‹ใ‚‰ใฎ้€€ๅ‡บใซๅคฑๆ•—" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "ไผš่ฉฑใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸ" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸ" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎ่จญๅฎšใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸ" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "้€š็Ÿฅ่จญๅฎšใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸใ€‚" @@ -5012,14 +4981,14 @@ msgstr "่จญๅฎšใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸใ€‚" msgid "Failed to load profiles" msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "ใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฃใƒผใƒ‰ใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸ" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "ใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฉใƒญใƒผใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸ" @@ -5027,12 +4996,12 @@ msgstr "ใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฉใƒญใƒผใฎ่ชญใฟ่พผใฟใซๅคฑๆ•—ใ—ใพใ—ใŸ" msgid "Failed to lock group chat" msgstr "ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใฎใƒญใƒƒใ‚ฏใซๅคฑๆ•—ใ—ใพใ—ใŸ" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "ใ™ในใฆใฎใƒใƒฃใƒƒใƒˆใ‚’ๆ—ข่ชญใซใงใใพใ›ใ‚“ใงใ—ใŸ" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "ใƒชใ‚ฏใ‚จใ‚นใƒˆใ‚’ๅ–ใ‚Šๆถˆใ™ใ“ใจใŒใงใใพใ›ใ‚“ใงใ—ใŸใ€‚ใ‚‚ใ† msgid "Failed to resolve location. Please try again." msgstr "ไฝ็ฝฎๆƒ…ๅ ฑใฎ่ชฟๆŸปใซๅคฑๆ•—ใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ—ใฆใใ ใ•ใ„ใ€‚" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "ไธ‹ๆ›ธใใฎไฟๅญ˜ใซๅคฑๆ•—ใ—ใพใ—ใŸ" @@ -5191,7 +5160,7 @@ msgstr "ๅฝใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใพใŸใฏใƒœใƒƒใƒˆ" msgid "False information about elections" msgstr "้ธๆŒ™ใซ้–ขใ™ใ‚‹่ชคใฃใŸๆƒ…ๅ ฑ" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰" @@ -5212,7 +5181,7 @@ msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎไฝœ่€…" msgid "Feed identifier" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎ่ญ˜ๅˆฅๅญ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใƒกใƒ‹ใƒฅใƒผ" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎ้‹ๅ–ถ่€…ใซใƒ•ใ‚ฃใƒผใƒ‰ใƒใƒƒใ‚ฏใ‚’้€ใ‚Šใพใ—ใŸ" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๆ›ดๆ–ฐใ—ใพใ—ใŸ๏ผ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "ใŠๆฐ—ใซๅ…ฅใ‚Šใซใชใ‚‹ใ‹ใ‚‚ใ—ใ‚Œใชใ„ใƒ•ใ‚ฃใƒผใƒ‰ใ€‚" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "ๆ›ดๆ–ฐใ‚’ๅ–ๅพ—" @@ -5273,34 +5238,22 @@ msgstr "ๆ›ดๆ–ฐใ‚’ๅ–ๅพ—" msgid "File saved successfully!" msgstr "ใƒ•ใ‚กใ‚คใƒซใฎไฟๅญ˜ใซๆˆๅŠŸใ—ใพใ—ใŸ๏ผ" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "ๆŠ•็จฟ่€…ใงใƒ•ใ‚ฃใƒซใ‚ฟใƒผ" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "ๆŠ•็จฟ่€…ใงใƒ•ใ‚ฃใƒซใ‚ฟใƒผ๏ผˆ็พๅœจ๏ผš{currentLabel}๏ผ‰" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "ใƒกใƒ‡ใ‚ฃใ‚ขใงใƒ•ใ‚ฃใƒซใ‚ฟใƒผ" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "ใƒกใƒ‡ใ‚ฃใ‚ขใงใƒ•ใ‚ฃใƒซใ‚ฟใƒผ๏ผˆ็พๅœจ๏ผš {currentLabel}๏ผ‰" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ใฎใƒ•ใ‚ฃใƒซใ‚ฟใƒผ" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "่จ€่ชžใงๆคœ็ดขใ‚’ใƒ•ใ‚ฃใƒซใ‚ฟใƒผ" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "่จ€่ชžใงๆคœ็ดขใ‚’ใƒ•ใ‚ฃใƒซใ‚ฟใƒผ๏ผˆ็พๅœจใฎ่จญๅฎš๏ผš{currentLanguageLabel}๏ผ‰" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "ใƒกใƒ‡ใ‚ฃใ‚ขใงๆคœ็ดขใ‚’ใƒ•ใ‚ฃใƒซใ‚ฟใƒผ๏ผˆ็พๅœจ๏ผš {currentLabel}๏ผ‰" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "{0}ใงใ“ใฎๆคœ็ดขใ‚’ใƒ•ใ‚ฃใƒซใ‚ฟใƒผ" msgid "Filter who can opt to receive notifications for your activity" msgstr "ใ‚ใชใŸใฎใ‚ขใ‚ฏใƒ†ใ‚ฃใƒ“ใƒ†ใ‚ฃใฎ้€š็Ÿฅใซใคใ„ใฆใ€่ชฐใŒๅ—ไฟกใงใใ‚‹ใฎใ‹ใƒ•ใ‚ฃใƒซใ‚ฟใƒผใ‚’่จญๅฎšใ—ใพใ™" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใƒฆใƒผใ‚ถใƒผใ‚’ใƒ•ใ‚ฃใƒซใ‚ฟใƒผใ™ใ‚‹" @@ -5352,8 +5305,8 @@ msgstr "ใƒ•ใ‚ฉใƒญใƒผใ™ใ‚‹ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ๆŽขใ™" msgid "Find and invite friends" msgstr "ๅ‹้”ใ‚’ๆŽขใ—ใฆๆ‹›ๅพ…ใ™ใ‚‹" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "้€ฃ็ตกๅ…ˆใ‚’่ฆ‹ใคใ‘ใ‚‹" @@ -5387,7 +5340,7 @@ msgstr "ๅ‹้”ใ‚’่ฆ‹ใคใ‘ใ‚‹" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "้›ป่ฉฑ็•ชๅทใ‚’็…งๅˆใ—ใ€้€ฃ็ตกๅ…ˆใจใƒžใƒƒใƒใƒณใ‚ฐใ™ใ‚‹ใ“ใจใงใ‚ใชใŸใฎๅ‹้”ใ‚’่ฆ‹ใคใ‘ใพใ™ใ€‚็ง้”ใฏใ‚ใชใŸใฎๆƒ…ๅ ฑใ‚’ไฟ่ญทใ—ใ€ใ‚ใชใŸใฏๆฌกใซไฝ•ใŒ่ตทใ“ใ‚‹ใฎใ‹ใ‚’ใ‚ณใƒณใƒˆใƒญใƒผใƒซใงใใพใ™ใ€‚<0>่ฉณ็ดฐใฏใ“ใกใ‚‰" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "ไปฒ้–“ใ‚’ๆŽขใใ†" @@ -5429,7 +5382,7 @@ msgstr "ๆคœ็ดขใƒ•ใ‚ฃใƒผใƒซใƒ‰ใซใƒ•ใ‚ฉใƒผใ‚ซใ‚นใ™ใ‚‹" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "{0}ใ‚’ใƒ•ใ‚ฉใƒญใƒผ" msgid "Follow {displayName}" msgstr "{displayName}ใ‚’ใƒ•ใ‚ฉใƒญใƒผ" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle}ใ‚’ใƒ•ใ‚ฉใƒญใƒผ" @@ -5453,11 +5406,11 @@ msgstr "{handle}ใ‚’ใƒ•ใ‚ฉใƒญใƒผ" msgid "Follow 10 accounts" msgstr "10ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ใƒ•ใ‚ฉใƒญใƒผ" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "10 ไบบใ‚’ใƒ•ใ‚ฉใƒญใƒผใ—ใฆๅง‹ใ‚ใ‚ˆใ†" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "7ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ใƒ•ใ‚ฉใƒญใƒผ" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "ใƒ•ใ‚ฉใƒญใƒฏใƒผใฏๅ‚ๅŠ ใงใใพใ™" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "ใ‚ใชใŸใŒ็Ÿฅใฃใฆใ„ใ‚‹@{0}ใฎใƒ•ใ‚ฉใƒญใƒฏใƒผ" @@ -5544,7 +5497,7 @@ msgstr "ใ‚ใชใŸใŒ็Ÿฅใฃใฆใ„ใ‚‹ใƒ•ใ‚ฉใƒญใƒฏใƒผ" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "{0}ใ‚’ใƒ•ใ‚ฉใƒญใƒผใ—ใพใ—ใŸ" msgid "Following {displayName}" msgstr "{displayName}ใ‚’ใƒ•ใ‚ฉใƒญใƒผไธญ" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "{handle}ใ‚’ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใพใ™" @@ -5578,21 +5531,21 @@ msgstr "{handle}ใ‚’ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใพใ™" msgid "Following feed preferences" msgstr "Followingใƒ•ใ‚ฃใƒผใƒ‰ใฎ่จญๅฎš" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Followingใƒ•ใ‚ฃใƒผใƒ‰ใฎ่จญๅฎš" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "ใ‚ใชใŸใ‚’ใƒ•ใ‚ฉใƒญใƒผ" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "ใƒ•ใ‚ฉใƒณใƒˆ" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "ใƒ•ใ‚ฉใƒณใƒˆใ‚ตใ‚คใ‚บ" @@ -5612,13 +5565,13 @@ msgstr "ใ‚ปใ‚ญใƒฅใƒชใƒ†ใ‚ฃไธŠใฎ็†็”ฑใ‹ใ‚‰ใ€ใ‚ใชใŸใฎใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚น msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "ใ‚ปใ‚ญใƒฅใƒชใƒ†ใ‚ฃไธŠใฎ็†็”ฑใ‹ใ‚‰ใ€ใ“ใ‚Œใ‚’ๅ†ๅบฆ่กจ็คบใ™ใ‚‹ใ“ใจใฏใงใใพใ›ใ‚“ใ€‚ใ“ใฎใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’็ด›ๅคฑใ—ใŸๅ ดๅˆใฏใ€ๆ–ฐใ—ใ„ใ‚‚ใฎใ‚’็”Ÿๆˆใ™ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚Šใพใ™ใ€‚" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "ใƒ™ใ‚นใƒˆใชไฝ“้จ“ใฎใŸใ‚ใซใ€ใƒ†ใƒผใƒžใƒ•ใ‚ฉใƒณใƒˆใฎไฝฟ็”จใ‚’ใŠๅ‹งใ‚ใ—ใพใ™ใ€‚" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "ใ‚ใชใŸใธ" @@ -5628,7 +5581,7 @@ msgstr "ใ‚ใชใŸใธ" msgid "Forever" msgstr "ๆฐธไน…" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "ใƒŽใ‚คใ‚บใ‚’ๅฟ˜ใ‚Œใ‚ˆใ†" @@ -5647,11 +5600,11 @@ msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ๅฟ˜ใ‚ŒใŸ๏ผŸ" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใ‚’่กจ็พใ™ใ‚‹ๅ››ใคใฎใƒกใƒƒใ‚ปใƒผใ‚ธใƒใƒ–ใƒซใ€‚ไธ€ใค็›ฎใฎใƒกใƒƒใ‚ปใƒผใ‚ธ๏ผšใ€Œใƒ‹ใƒฅใƒผใ‚น่žใ„ใŸ๏ผŸBlueskyใซใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใŒใงใใŸใ‚ˆ๏ผใ€ไบŒใค็›ฎใฎใƒกใƒƒใ‚ปใƒผใ‚ธ๏ผšใ€Œใˆใฃใ€ใพใ˜ใงใ€ไธ‰ใค็›ฎใฎใƒกใƒƒใ‚ปใƒผใ‚ธ๏ผšใ€Œใ™ใ”ใ„ใ€ไธ€ใคใฎใƒใƒฃใƒƒใƒˆใซ50ไบบ๏ผใ€ๅ››ใค็›ฎใฎใƒกใƒƒใ‚ปใƒผใ‚ธ๏ผšใ€Œๆ‹›ๅพ…ใƒชใƒณใ‚ฏใ‚‚้€ใ‚Œใ‚‹ใ‚ˆ๏ผใ€" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่งฃๆ”พใ—ใ‚ˆใ†" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "่ชฐใ‹ใ‚‰" @@ -5674,7 +5627,7 @@ msgstr "<0/>ใ‹ใ‚‰" msgid "From these people" msgstr "ใ“ใ‚Œใ‚‰ใฎไบบใ‹ใ‚‰" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’็”Ÿๆˆ" @@ -5718,39 +5671,39 @@ msgstr "ใƒ†ใ‚นใƒˆไธญใฎๅฎŸ้จ“็š„ใชๆฉŸ่ƒฝใซๆ—ฉๆœŸใซใ‚ขใ‚ฏใ‚ปใ‚นใงใใพใ™ใ€‚ msgid "Get help" msgstr "ใƒ˜ใƒซใƒ—ใ‚’่กจ็คบ" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใงใฎๅ‚ๅŠ ใ€่ช่จผใ€ใใฎไป–ใฎใ‚ขใ‚ฏใƒ†ใ‚ฃใƒ“ใƒ†ใ‚ฃใฎ้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "ใƒ•ใ‚ฉใƒญใƒผใ•ใ‚ŒใŸใจใใซ้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "ๆŠ•็จฟใ‚’ใ„ใ„ใญใ•ใ‚ŒใŸใ‚‰้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "ใƒชใƒใ‚นใƒˆใŒใ„ใ„ใญใ•ใ‚ŒใŸใ‚‰้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "ใƒกใƒณใ‚ทใƒงใƒณใ•ใ‚ŒใŸใ‚‰้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "ๆŠ•็จฟใ‚’ๅผ•็”จใ•ใ‚ŒใŸใ‚‰้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "ๆŠ•็จฟใซ่ฟ”ไฟกใŒใ‚ใฃใŸใ‚‰้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "ๆŠ•็จฟใ‚’ใƒชใƒใ‚นใƒˆใ•ใ‚ŒใŸใ‚‰้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "ใƒชใƒใ‚นใƒˆใŒใƒชใƒใ‚นใƒˆใ•ใ‚ŒใŸใ‚‰้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ€‚" @@ -5762,15 +5715,15 @@ msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใƒชใ‚ฏใ‚จใ‚นใƒˆใŒ้€ไฟกใ•ใ‚ŒใŸใ‚‰้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ msgid "Get notifications when people send you messages." msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใŒ้€ไฟกใ•ใ‚ŒใŸใ‚‰้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "่ณผ่ชญใ—ใฆใ„ใ‚‹ๆŠ•็จฟใซใ‚ขใ‚ฏใƒ†ใ‚ฃใƒ“ใƒ†ใ‚ฃใŒใ‚ใ‚Œใฐ้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹ใ€‚" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "ๆ–ฐใ—ใ„ๆŠ•็จฟใฎ้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "้ธๆŠžใ—ใŸใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‹ใ‚‰ใฎๆŠ•็จฟใ‚„่ฟ”ไฟกใซใคใ„ใฆ้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚Šใพใ™ใ€‚" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "{name} ใฎๆ–ฐใ—ใ„ๆŠ•็จฟใฎ้€š็Ÿฅใ‚’ๅ—ใ‘ๅ–ใ‚‹" @@ -5799,11 +5752,11 @@ msgstr "้–‹ๅง‹" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIFใ‚’ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ใ—ใพใ—ใŸ" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใซ้ก”ใ‚’ใคใ‘ใ‚‹" @@ -5813,20 +5766,20 @@ msgstr "ๆšดๅŠ›ใฎ่ณ›็พŽ" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "ใƒฉใ‚คใƒ–ไบˆๅฎšๆ™‚้–“" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "{0}ใฎใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใธ็งปๅ‹•" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆๅใŒๆ›ดๆ–ฐใ•ใ‚Œใพใ—ใŸ" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใฎ่จญๅฎš" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใฎๆœ€ๅคงไบบๆ•ฐใฏ{0, plural, other {#ไบบ}}ใงใ™ใ€‚" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "ใ‚ฐใƒซใƒผใƒ—ใฏใƒญใƒƒใ‚ฏใ•ใ‚Œใฆใ„ใพใ™" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "ใ‚ฐใƒซใƒผใƒ—ๅ" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "ใ‚ฐใƒซใƒผใƒ—ๅใŒ้•ทใ™ใŽใพใ™ใ€‚{MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {ๆœ€ๅคงใง#ๆ–‡ๅญ—ใงใ™ใ€‚}}" @@ -6077,7 +6031,7 @@ msgstr "ๆœ‰ๅฎณใพใŸใฏ้ซ˜ใƒชใ‚นใ‚ฏใฎๆดปๅ‹•" msgid "Harming or endangering minors" msgstr "ๆœชๆˆๅนด่€…ใธใฎๅฑๅฎณใพใŸใฏๅฑ้™บ่กŒ็‚บ" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "ใƒใƒƒใ‚ทใƒฅใ‚ฟใ‚ฐ" @@ -6098,7 +6052,7 @@ msgstr "ใ‚ณใƒผใƒ‰ใŒใ‚ใ‚Šใพใ›ใ‚“ใ‹๏ผŸ<0>ใ“ใ“ใ‚’ใ‚ฏใƒชใƒƒใ‚ฏใ—ใฆใใ ใ• msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "ไฝ็ฝฎๆƒ…ๅ ฑใŒ้–“้•ใฃใฆใ„ใพใ™ใ‹๏ผŸ<0>ใ“ใ“ใ‚’ใ‚ฟใƒƒใƒ—ใ—ใฆGPSใงไฝ็ฝฎๆƒ…ๅ ฑใ‚’ๆ›ดๆ–ฐใ—ใฆใใ ใ•ใ„ใ€‚" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "ใชใซใ‹ๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ‹๏ผŸ" @@ -6114,7 +6068,7 @@ msgstr "ไธๆญฃๅˆฉ็”จ้˜ฒๆญขใฎใŸใ‚ใ€Bluesky ใŒ7ๆ—ฅ้–“ไฟๆŒใ—ใŸๅพŒใซๅ‰Š้™ค msgid "Help" msgstr "ใƒ˜ใƒซใƒ—" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "็”ปๅƒใ‚’ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ใ™ใ‚‹ใ‹ใ‚ขใƒใ‚ฟใƒผใ‚’ไฝœใฃใฆใ‚ใชใŸใŒbotใงใฏใชใ„ใ“ใจใ‚’ใฟใ‚“ใชใซ็Ÿฅใ‚‰ใ›ใพใ—ใ‚‡ใ†ใ€‚" @@ -6135,12 +6089,12 @@ msgstr "ใ‚„ใ‚๏ผ" msgid "Hi there!" msgstr "ใ“ใ‚“ใซใกใฏ๏ผ" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "้ž่กจ็คบ" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "ใ‚ใชใŸใฎใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใฎ่จญๅฎšใง้ž่กจ็คบใซใชใฃใฆใ„ใพใ™ใ€‚" @@ -6148,9 +6102,10 @@ msgstr "ใ‚ใชใŸใฎใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใฎ่จญๅฎšใง้ž่กจ็คบใซใชใฃใฆใ„ใพ msgid "Hidden list" msgstr "้ž่กจ็คบใฎใƒชใ‚นใƒˆ" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "้ž่กจ็คบใฎใƒชใ‚นใƒˆ" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "้ž่กจ็คบ" @@ -6198,7 +6154,7 @@ msgstr "่ฟ”ไฟกใ‚’ๅ…จๅ“กใซ้ž่กจ็คบ" msgid "Hide reply for me" msgstr "่ฟ”ไฟกใ‚’่‡ชๅˆ†ใซใฏ้ž่กจ็คบ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "ใ“ใฎใ‚ซใƒผใƒ‰ใ‚’้ž่กจ็คบ" @@ -6218,16 +6174,18 @@ msgstr "ใ“ใฎ่ฟ”ไฟกใ‚’้ž่กจ็คบใซใ—ใพใ™ใ‹๏ผŸ" msgid "Hide translation" msgstr "็ฟป่จณใ‚’้ž่กจ็คบ" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "ใƒˆใƒฌใƒณใƒ‰ใƒปใƒˆใƒ”ใƒƒใ‚ฏใ‚’้ž่กจ็คบใซใ™ใ‚‹" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "ใƒˆใƒฌใƒณใƒ‰ใƒปใƒˆใƒ”ใƒƒใ‚ฏใ‚’้ž่กจ็คบใซใ—ใพใ™ใ‹๏ผŸ" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "ใƒˆใƒฌใƒณใƒ‰ใƒปใƒ“ใƒ‡ใ‚ชใ‚’้ž่กจ็คบใซใ—ใพใ™ใ‹๏ผŸ" @@ -6240,7 +6198,7 @@ msgstr "ใƒฆใƒผใ‚ถใƒผใƒชใ‚นใƒˆใ‚’้ž่กจ็คบ" msgid "Hide verification badges" msgstr "่ช่จผใƒใƒƒใ‚ธใ‚’้ž่กจ็คบ" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "ใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚’้ž่กจ็คบ" @@ -6293,8 +6251,8 @@ msgstr "ใใฎใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใ‚ตใƒผใƒ“ใ‚นใ‚’่ชญใฟ่พผใ‚ใพใ›ใ‚“ใงใ—ใŸ msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "ๅพ…ใฃใฆ๏ผๅพใ€…ใซใƒ“ใƒ‡ใ‚ชใธใฎใ‚ขใ‚ฏใ‚ปใ‚นใ‚’่จฑๅฏใ—ใฆใ„ใพใ™ใŒใ€ใ‚ใชใŸใฎ้ †็•ชใฏใพใ ใงใ™ใ€‚ใ—ใฐใ‚‰ใใ—ใฆใ‚‚ใ†ไธ€ๅบฆ็ขบ่ชใ‚’๏ผ" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "ใƒ›ใ‚นใƒ†ใ‚ฃใƒณใ‚ฐใƒ—ใƒญใƒใ‚คใƒ€ใƒผ๏ผš{0}" msgid "Hosting provider: Bluesky" msgstr "ใƒ›ใ‚นใƒ†ใ‚ฃใƒณใ‚ฐใƒ—ใƒญใƒใ‚คใƒ€ใƒผ๏ผšBluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "ใƒ›ใƒƒใƒˆ" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "ไป•็ต„ใฟ๏ผš" @@ -6409,6 +6363,7 @@ msgstr "ใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใ‚’ๆ›ดๆ–ฐใ™ใ‚‹ใจใ€ใƒกใƒผใƒซใงใฎ2่ฆ็ด ่ช่จผ msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ๅค‰ๆ›ดใ™ใ‚‹ๅ ดๅˆใฏใ€ใ‚ใชใŸใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใงใ‚ใ‚‹ใ“ใจใ‚’็ขบ่ชใ™ใ‚‹ใŸใ‚ใฎใ‚ณใƒผใƒ‰ใ‚’ใŠ้€ใ‚Šใ—ใพใ™ใ€‚" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "ใ‚ใชใŸใฎใ‚ขใ‚ฏใƒ†ใ‚ฃใƒ“ใƒ†ใ‚ฃใฎ้€š็Ÿฅใ‚’ๅ—ไฟกใงใใ‚‹ใƒฆใƒผใ‚ถใƒผใ‚’ๅˆถ้™ใ—ใŸใ„ๅ ดๅˆใฏใ€<0>่จญๅฎš โ†’ ใƒ—ใƒฉใ‚คใƒใ‚ทใƒผใจใ‚ปใ‚ญใƒฅใƒชใƒ†ใ‚ฃใงๅค‰ๆ›ดใงใใพใ™ใ€‚" @@ -6548,7 +6503,7 @@ msgstr "ใ‚ขใƒ—ใƒชๅ†…ใ€ใƒ—ใƒƒใ‚ทใƒฅใ€ๅ…จๅ“ก" msgid "In-app, push, people you follow" msgstr "ใ‚ขใƒ—ใƒชๅ†…ใ€ใƒ—ใƒƒใ‚ทใƒฅใ€ใƒ•ใ‚ฉใƒญใƒผไธญใฎไบบ" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "ๅ—ไฟกใƒˆใƒฌใ‚คใŒ็ฉบใงใ™" @@ -6564,7 +6519,6 @@ msgstr "ๅ—ไฟกใƒˆใƒฌใ‚คใŒ็ฉบใงใ™๏ผ" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "ๅซใ‚ใ‚‹" @@ -6573,7 +6527,7 @@ msgstr "ๅซใ‚ใ‚‹" msgid "Include or exclude matching posts (currently: {0})" msgstr "ไธ€่‡ดใ™ใ‚‹ๆŠ•็จฟใ‚’ๅซใ‚ใ‚‹ใ‹้™คๅค–ใ™ใ‚‹๏ผˆ็พๅœจ๏ผš{0}๏ผ‰" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "ๆŠ•็จฟใŠใ‚ˆใณ/ใพใŸใฏ่ฟ”ไฟกใ‚’ๅซใ‚ใ‚‹๏ผˆ็พๅœจ๏ผš{currentLabel}๏ผ‰" @@ -6587,10 +6541,6 @@ msgstr "ใ“ใฎๆ—ฅไป˜ไปฅ้™ใฎๆŠ•็จฟใ‚’ๅซใ‚ใ‚‹" msgid "Include posts made until this date" msgstr "ใ“ใฎๆ—ฅไป˜ไปฅๅ‰ใฎๆŠ•็จฟใ‚’ๅซใ‚ใ‚‹" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "ใ“ใ‚Œใ‚‰ใฎ็ตๆžœใ‚’ๅซใ‚ใ‚‹" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "็„กๅŠนใชใƒฆใƒผใ‚ถใƒผๅใพใŸใฏใƒ‘ใ‚นใƒฏใƒผใƒ‰" @@ -6683,7 +6633,7 @@ msgstr "{name}ใ‚’Blueskyใธๆ‹›ๅพ…" msgid "Invite code" msgstr "ๆ‹›ๅพ…ใ‚ณใƒผใƒ‰" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "ๆ‹›ๅพ…ใ‚ณใƒผใƒ‰ใŒ็ขบ่ชใงใใพใ›ใ‚“ใ€‚ๆญฃใ—ใๅ…ฅๅŠ›ใ•ใ‚Œใฆใ„ใ‚‹ใ“ใจใ‚’็ขบ่ชใ—ใ€ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ—ใฆใใ ใ•ใ„ใ€‚" @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "ไปŠใฏใ‚ใชใŸใ ใ‘๏ผไธŠใงๆคœ็ดขใ—ใฆใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใซใ‚ˆใ‚Šๅคšใใฎใƒฆใƒผใ‚ถใƒผใ‚’่ฟฝๅŠ ใ—ใฆใใ ใ•ใ„ใ€‚" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ใ‚ธใƒงใƒ–ID๏ผš{0}" @@ -6816,8 +6766,8 @@ msgstr "ไผš่ฉฑใซๅ‚ๅŠ " msgid "Journalism" msgstr "ๅ ฑ้“" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "็ทจ้›†ใ‚’็ถšใ‘ใ‚‹" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "KWS ใฎใ‚ฆใ‚งใƒ–ใ‚ตใ‚คใƒˆ" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0}ใซใ‚ˆใ‚‹ใƒฉใƒ™ใƒซ" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "ๆŠ•็จฟ่€…ใซใ‚ˆใ‚‹ใƒฉใƒ™ใƒซใ€‚" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "ใƒฉใƒ™ใƒซ" @@ -6852,7 +6802,7 @@ msgstr "ใƒฉใƒ™ใƒซใŒ่ฟฝๅŠ ใ•ใ‚Œใพใ—ใŸ" msgid "Labels applied to this post" msgstr "ใ“ใฎๆŠ•็จฟใซ้ฉ็”จใ•ใ‚ŒใŸใƒฉใƒ™ใƒซ" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ใƒฉใƒ™ใƒซใฏใ€ใƒฆใƒผใ‚ถใƒผใ‚„ใ‚ณใƒณใƒ†ใƒณใƒ„ใซๅฏพใ™ใ‚‹ๆณจ้‡ˆใงใ™ใ€‚ใƒฉใƒ™ใƒซใฏใƒใƒƒใƒˆใƒฏใƒผใ‚ฏใ‚’้ž่กจ็คบใซใ—ใŸใ‚Šใ€่ญฆๅ‘Šใ—ใŸใ‚Šใ€ๅˆ†้กžใ—ใŸใ‚Šใ™ใ‚‹ใฎใซไฝฟใ‚ใ‚Œใพใ™ใ€‚" @@ -6864,7 +6814,7 @@ msgstr "ใ‚ใชใŸใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎใƒฉใƒ™ใƒซ" msgid "Language" msgstr "่จ€่ชž" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "่จ€่ชžใฎ่จญๅฎš" @@ -6874,7 +6824,7 @@ msgstr "่จ€่ชžใฎ่จญๅฎš" msgid "Languages" msgstr "่จ€่ชž" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "ๅคงใใ„" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "ๆœ€ๅพŒใฎ้–‹ๅง‹๏ผšใŸใฃใŸไปŠ" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "ๆœ€ๆ–ฐ" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "่ฉณ็ดฐ๏ผˆ่‹ฑ่ชž๏ผ‰" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "่ฉณ็ดฐ" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "<0>้ซ˜ๅบฆใชๆคœ็ดขใƒ•ใ‚ฃใƒซใ‚ฟใฎไฝฟใ„ๆ–นใซใคใ„ใฆ่ฉณ็ดฐใ‚’่ฆ‹ใ‚‹ใ€‚" @@ -6937,8 +6887,8 @@ msgstr "้€ฃ็ตกๅ…ˆใฎ่ชญใฟ่พผใฟใซใคใ„ใฆ่ฉณ็ดฐใ‚’่ฆ‹ใ‚‹" msgid "Learn more about self hosting your PDS." msgstr "่‡ชๅˆ†็”จใฎPDSใ‚’ใƒ›ใ‚นใƒ†ใ‚ฃใƒณใ‚ฐใ™ใ‚‹ๆ–นๆณ•ใ‚’ๅญฆใถใ€‚" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "ใ“ใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใซ้ฉ็”จใ•ใ‚Œใ‚‹ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใฏใ“ใกใ‚‰ใ‚’ๅ‚็…งใ—ใฆใใ ใ•ใ„" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "็งใŸใกใฎใƒ–ใƒญใ‚ฐใฎ่จ˜ไบ‹ใ‚’่ชญใ‚“ใงใ€ใ“ใ‚Œใ‚‰ใฎๅค‰ๆ›ดใซใคใ„ใฆใฎ่ฉณ็ดฐใจใ€ใ‚ใชใŸใฎ่€ƒใˆใ‚’็งใŸใกใจๅ…ฑๆœ‰ใ™ใ‚‹ๆ–นๆณ•ใ‚’ใ”่ฆงใใ ใ•ใ„ใ€‚" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "ใ“ใฎ่ญฆๅ‘Šใฎ่ฉณ็ดฐ" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "<0>ใ‚ขใ‚ซใ‚ฆใƒณใƒˆ่จญๅฎšใง่ฉณ็ดฐใ‚’็ขบ่ชใ™ใ‚‹ใ€‚" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "่ฉณ็ดฐใ€‚" @@ -6993,8 +6943,8 @@ msgstr "้€€ๅ‡บ" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Blueskyใ‹ใ‚‰้›ขใ‚Œใ‚‹" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "ใ“ใฎใƒใƒฃใƒƒใƒˆใ‹ใ‚‰้€€ๅ‡บใ™ใ‚‹ใจๅฎŒๅ…จใซใƒญใƒƒใ‚ฏใ•ใ‚Œใ€ๅ†ใณๅ‚ๅŠ ใ™ใ‚‹ใ“ใจใฏใงใใพใ›ใ‚“ใ€‚" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใ‚’้€€ๅ‡บใ—ใพใ—ใŸใ€‚" @@ -7042,7 +6992,7 @@ msgstr "ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใ‚’้€€ๅ‡บใ—ใพใ—ใŸใ€‚" msgid "left to go." msgstr "ใ‚ใจๅฐ‘ใ—ใงใ™ใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "้ธใฐใ›ใฆ" @@ -7057,7 +7007,7 @@ msgstr "ใ•ใ‚ๅง‹ใ‚ใพใ—ใ‚‡ใ†๏ผ" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "ใƒฉใ‚คใƒˆ" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "ใƒฉใ‚คใƒˆ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "ใ„ใ„ใญใ™ใ‚‹" @@ -7076,7 +7026,7 @@ msgstr "ใ„ใ„ใญใ™ใ‚‹" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "ใ„ใ„ใญใ™ใ‚‹๏ผˆ{0, plural, other {#ไปถใฎใ„ใ„ใญ}}๏ผ‰" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10ๆŠ•็จฟใ‚’ใ„ใ„ใญ" @@ -7085,7 +7035,7 @@ msgstr "10ๆŠ•็จฟใ‚’ใ„ใ„ใญ" msgid "Like 10 posts to train the Discover feed" msgstr "Discoverใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่จ“็ทดใ™ใ‚‹ใŸใ‚ใซ10ๆŠ•็จฟใ‚’ใ„ใ„ใญใ™ใ‚‹" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ใ„ใ„ใญ" @@ -7093,8 +7043,8 @@ msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ใ„ใ„ใญ" msgid "Like this labeler" msgstr "ใ“ใฎใƒฉใƒ™ใƒฉใƒผใ‚’ใ„ใ„ใญ" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "ใ„ใ„ใญใ—ใŸใƒฆใƒผใ‚ถใƒผ" @@ -7111,27 +7061,45 @@ msgstr "ใ„ใ„ใญใ—ใŸใƒฆใƒผใ‚ถใƒผ" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, other {#ไบบใฎใƒฆใƒผใ‚ถใƒผ}}ใŒใ„ใ„ใญ" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "{0}ใŒใ„ใ„ใญใ—ใพใ—ใŸ" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "{0}ใจ{1}ใŒใ„ใ„ใญใ—ใพใ—ใŸ" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, other {#ไบบใฎใƒฆใƒผใ‚ถใƒผ}}ใŒใ„ใ„ใญ" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "ใ„ใ„ใญ" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "ใƒชใƒใ‚นใƒˆใธใฎใ„ใ„ใญ" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "ใ“ใฎๆŠ•็จฟใ‚’ใ„ใ„ใญใ™ใ‚‹" @@ -7144,7 +7112,7 @@ msgstr "ใƒชใƒ‹ใ‚ข" msgid "Link copied to clipboard" msgstr "ใƒชใƒณใ‚ฏใ‚’ใ‚ฏใƒชใƒƒใƒ—ใƒœใƒผใƒ‰ใซใ‚ณใƒ”ใƒผใ—ใพใ—ใŸ" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "ใƒชใ‚นใƒˆ" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "ใƒชใ‚นใƒˆใฎใƒŸใƒฅใƒผใƒˆใ‚’่งฃ้™คใ—ใพใ—ใŸ" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "ใƒฉใ‚คใƒ–" msgid "Live event happening now: {0}" msgstr "ใƒฉใ‚คใƒ–ใ‚คใƒ™ใƒณใƒˆ้–‹ๅ‚ฌไธญ: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "ใƒฉใ‚คใƒ–ใ‚คใƒ™ใƒณใƒˆใ‚’้ž่กจ็คบใซใ™ใ‚‹" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "ใƒฉใ‚คใƒ–ใ‚คใƒ™ใƒณใƒˆใฎ้ž่กจ็คบใ‚’่งฃ้™ค" @@ -7279,12 +7247,12 @@ msgstr "ใƒฉใ‚คใƒ–ๆฉŸ่ƒฝใฏใƒ™ใƒผใ‚ฟ็‰ˆใงใ™" msgid "Live link" msgstr "ใƒฉใ‚คใƒ–ใฎใƒชใƒณใ‚ฏ" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "ใ•ใ‚‰ใซ่ชญใฟ่พผใ‚€" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "ใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ใ•ใ‚‰ใซ่ชญใฟ่พผใ‚€" @@ -7292,8 +7260,8 @@ msgstr "ใŠใ™ใ™ใ‚ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ใ•ใ‚‰ใซ่ชญใฟ่พผใ‚€" msgid "Load new notifications" msgstr "ๆœ€ๆ–ฐใฎ้€š็Ÿฅใ‚’่ชญใฟ่พผใ‚€" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "ใ“ใฎใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใ‚’ใƒญใƒƒใ‚ฏ" msgid "Locked" msgstr "ใƒญใƒƒใ‚ฏไธญ" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "ใƒญใ‚ฐ" @@ -7387,7 +7355,7 @@ msgstr "ๆ„›ใฎGIF" msgid "Make adjustments to email settings for your account" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎใƒกใƒผใƒซ่จญๅฎšใ‚’่ชฟๆ•ดใ™ใ‚‹" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "็งใฎใŸใ‚ใซไฝœใฃใฆ" @@ -7418,15 +7386,15 @@ msgstr "ๆ‰‹ๅ‹•" msgid "Mark all as read" msgstr "ใ™ในใฆๆ—ข่ชญใซใ™ใ‚‹" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "ใ™ในใฆใฎใƒใƒฃใƒƒใƒˆใ‚’ๆ—ข่ชญใซใ™ใ‚‹" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "ๆ—ข่ชญใซใ™ใ‚‹" msgid "Marked all as read" msgstr "ใ™ในใฆๆ—ข่ชญใซใ—ใพใ—ใŸ" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "ใ™ในใฆใฎใƒใƒฃใƒƒใƒˆใ‚’ๆ—ข่ชญใซใ—ใพใ—ใŸ" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "ใ™ในใฆใฎใƒชใ‚ฏใ‚จใ‚นใƒˆใ‚’ๆ—ข่ชญใซใ—ใพใ—ใŸ" @@ -7456,8 +7424,12 @@ msgstr "ใ™ในใฆใฎใƒชใ‚ฏใ‚จใ‚นใƒˆใ‚’ๆ—ข่ชญใซใ—ใพใ—ใŸ" msgid "Maybe later" msgstr "ๅพŒใง" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "่‡ชๅˆ†" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "ใƒกใƒ‡ใ‚ฃใ‚ข" @@ -7475,7 +7447,7 @@ msgstr "ไป–ใฎใƒ‡ใƒใ‚คใ‚นใซไฟๅญ˜ใ•ใ‚Œใฆใ„ใ‚‹ใƒกใƒ‡ใ‚ฃใ‚ข" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "ไธ€้ƒจใฎ้–ฒ่ฆง่€…ใซใจใฃใฆใฏๅ›ฐๆƒ‘ใ™ใ‚‹ใ€ใ‚ใ‚‹ใ„ใฏไธ้ฉๅˆ‡ใชใƒกใƒ‡ใ‚ฃใ‚ขใงใ™ใ€‚" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "ใƒกใƒณใƒใƒผใŒใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใ‹ใ‚‰ๅค–ใ•ใ‚Œใพใ—ใŸใ€‚" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "ใƒกใƒณใ‚ทใƒงใƒณใ•ใ‚ŒใŸใƒฆใƒผใ‚ถใƒผ" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "ใƒกใƒณใ‚ทใƒงใƒณ" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใฏๅ‰Š้™คใ•ใ‚Œใพใ—ใŸ" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’้€ไฟกใงใใพใ›ใ‚“ใงใ—ใŸใ€‚" @@ -7563,15 +7535,15 @@ msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใŒ้•ทใ™ใŽใพใ™๏ผˆ{graphemeCount}/{MAX_DM_GRAPHEME_LEN msgid "Message options" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใฎใ‚ชใƒ—ใ‚ทใƒงใƒณ" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธ" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใ‹ใ‚‰ใฎใƒกใƒƒใ‚ปใƒผใ‚ธใฏใ‚ใชใŸใ‚’ใƒ–ใƒญใƒƒใ‚ฏไธญใฏ้ž่กจ็คบใงใ™ใ€‚" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใ‹ใ‚‰ใฎใƒกใƒƒใ‚ปใƒผใ‚ธใฏใ‚ใชใŸใŒใƒ–ใƒญใƒƒใ‚ฏไธญใฏ้ž่กจ็คบใงใ™ใ€‚" @@ -7592,7 +7564,7 @@ msgstr "่ชค่งฃใ‚’ๆ‹›ใใ“ใจ" msgid "Missing media" msgstr "ใƒกใƒ‡ใ‚ฃใ‚ขใŒ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณ" @@ -7636,7 +7608,7 @@ msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใƒชใ‚นใƒˆใ‚’ๆ›ดๆ–ฐใ—ใพใ—ใŸ" msgid "Moderation lists" msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใƒชใ‚นใƒˆ" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใƒชใ‚นใƒˆ" @@ -7645,7 +7617,7 @@ msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใƒชใ‚นใƒˆ" msgid "moderation settings" msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใฎ่จญๅฎš" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใฎใ‚นใƒ†ใƒผใ‚ฟใ‚น" @@ -7786,7 +7758,7 @@ msgstr "ใƒŸใƒฅใƒผใƒˆๆธˆใฟ" msgid "Muted accounts" msgstr "ใƒŸใƒฅใƒผใƒˆไธญใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "ใƒŸใƒฅใƒผใƒˆไธญใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" @@ -7867,7 +7839,6 @@ msgstr "่‘—ไฝœๆจฉไพตๅฎณใ€ๆณ•็š„่ฆๆฑ‚ใ€ใพใŸใฏ่ฆๅˆถ้ตๅฎˆใฎๅ•้กŒใ‚’ๅ ฑๅ‘Š msgid "Nevermind, create a handle for me" msgstr "ๆฐ—ใซใ›ใšใซใƒใƒณใƒ‰ใƒซใ‚’ไฝœๆˆ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "ๆ–ฐ่ฆ" @@ -7893,11 +7864,11 @@ msgstr "{firstAuthorName}ใ‹ใ‚‰ใฎๆ–ฐใ—ใ„{postsCount, plural, other {ๆŠ•็จฟ}}" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "ๆ–ฐใ—ใ„ใƒใƒฃใƒƒใƒˆ" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "ๆ–ฐๆฉŸ่ƒฝ" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "ๆ–ฐใ—ใ„ใƒ•ใ‚ฉใƒญใƒฏใƒผ" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "ๆ–ฐใ—ใ„ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆ" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "ๆ–ฐใ—ใ„ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆ" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "ๆ–ฐใ—ใ„ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆ๏ผš" @@ -7966,13 +7937,13 @@ msgstr "ๆ–ฐใ—ใ„ใƒชใ‚นใƒˆ" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "ๆ–ฐใ—ใ„ใƒกใƒƒใ‚ปใƒผใ‚ธใƒชใ‚ฏใ‚จใ‚นใƒˆ" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "ๆ–ฐใ—ใ„ใƒกใƒƒใ‚ปใƒผใ‚ธ" @@ -7982,12 +7953,12 @@ msgstr "ๆ–ฐใ—ใ„ใƒกใƒƒใ‚ปใƒผใ‚ธ" msgid "New password" msgstr "ๆ–ฐใ—ใ„ใƒ‘ใ‚นใƒฏใƒผใƒ‰" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "ๆ–ฐใ—ใ„ๆŠ•็จฟ" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "ๆ–ฐใ—ใ„้ †ใซ่ฟ”ไฟกใ‚’่กจ็คบ" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "ใƒ‹ใƒฅใƒผใ‚น" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "ๆฌกใฎ็”ปๅƒ" msgid "Night" msgstr "ๅคœ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "ๅบƒๅ‘Šใ‚ผใƒญใ€‚ใ—ใคใ“ใ„่ฟฝ่ทกใชใ—ใ€‚ไฝฟใ„็ถšใ‘ใ•ใ›ใ‚‹ใŸใ‚ใซๆ‰‹ๆ”พใ›ใชใใ™ใ‚‹็ฝ ใ€ใ‚จใƒณใ‚ฒใƒผใ‚ธใƒกใƒณใƒˆใƒˆใƒฉใƒƒใƒ—ใ‚‚ใชใ—ใ€‚Blueskyใฏใ€ใ‚ใชใŸใฎๆ™‚้–“ใจ้›†ไธญใ‚’ๅคงๅˆ‡ใซใ—ใพใ™ใ€‚" @@ -8065,6 +8036,11 @@ msgstr "ๅบƒๅ‘Šใ‚ผใƒญใ€‚ใ—ใคใ“ใ„่ฟฝ่ทกใชใ—ใ€‚ไฝฟใ„็ถšใ‘ใ•ใ›ใ‚‹ใŸใ‚ใซ msgid "No app passwords yet" msgstr "ใ‚ขใƒ—ใƒชใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฏใพใ ใ‚ใ‚Šใพใ›ใ‚“" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "ๆŠ•็จฟ่€…ใƒ•ใ‚ฃใƒซใ‚ฟใƒผใชใ—" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "็พๅœจใƒ™ใƒผใ‚ฟ็‰ˆใฎๆฉŸ่ƒฝใฏใ‚ใ‚Šใพใ›ใ‚“ใ€‚" @@ -8098,7 +8074,7 @@ msgstr "็ต‚ไบ†ๆ™‚้–“ๆœชๅฎš" msgid "No feeds found. Try searching for something else." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใŒ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใงใ—ใŸใ€‚ไป–ใ‚’ๆŽขใ—ใฆใฟใฆใ€‚" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "ใพใ ใƒ•ใ‚ฉใƒญใƒฏใƒผใŒใ„ใพใ›ใ‚“" @@ -8116,9 +8092,15 @@ msgstr "็พๅœจ่กจ็คบใ™ใ‚‹GIFใŒใ‚ใ‚Šใพใ›ใ‚“ใ€‚ใ—ใฐใ‚‰ใใ—ใฆใ‹ใ‚‰ใ‚‚ใ† msgid "No image" msgstr "็”ปๅƒใชใ—" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "่จ€่ชžใƒ•ใ‚ฃใƒซใ‚ฟใƒผใชใ—" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "ใ„ใ„ใญใฏใ‚ใ‚Šใพใ›ใ‚“" @@ -8135,7 +8117,12 @@ msgstr "ใƒชใ‚นใƒˆใชใ—" msgid "No longer following {0}" msgstr "{0}ใฎใƒ•ใ‚ฉใƒญใƒผใ‚’่งฃ้™คใ—ใพใ—ใŸ" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "ใƒกใƒ‡ใ‚ฃใ‚ขใƒ•ใ‚ฃใƒซใ‚ฟใƒผใชใ—" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "ใพใ ใƒกใƒ‡ใ‚ฃใ‚ขใŒใ‚ใ‚Šใพใ›ใ‚“" @@ -8143,7 +8130,7 @@ msgstr "ใพใ ใƒกใƒ‡ใ‚ฃใ‚ขใŒใ‚ใ‚Šใพใ›ใ‚“" msgid "No messages yet" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใฏใ‚ใ‚Šใพใ›ใ‚“" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "ๅปถใ€…ใจๆตใ‚Œใฆใใ‚‹ๅซŒใชใ‚‚ใฎใ‹ใ‚‰็›ฎใŒ้›ขใ›ใชใใชใ‚‹ใƒ‰ใ‚ฅใƒผใƒ ใ‚นใ‚ฏใƒญใƒผใƒซใ‚’็”Ÿใ‚€ใƒŽใ‚คใ‚บใพใฟใ‚Œใฎใ‚ขใƒซใ‚ดใƒชใ‚บใƒ ใฏใ€ใ‚‚ใ†ใ„ใ‚‰ใชใ„ใ€‚ใ‚ใชใŸใฎๅ‘ณๆ–นใ‚’ใ™ใ‚‹ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่ฆ‹ใคใ‘ใ‚ˆใ†ใ€‚" @@ -8180,16 +8167,21 @@ msgstr "ๆŠ•็จฟ่€…ใ ใ‘ใŒใ“ใฎๆŠ•็จฟใ‚’ๅผ•็”จใงใใพใ™ใ€‚" msgid "No one can send messages" msgstr "่ชฐใ‚‚ใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’้€ไฟกใงใใพใ›ใ‚“" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "ๆŠ•็จฟใƒ•ใ‚ฃใƒซใ‚ฟใƒผใชใ—" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "ใ“ใ“ใซๆŠ•็จฟใฏใ‚ใ‚Šใพใ›ใ‚“" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "ใพใ ๆŠ•็จฟใŒใ‚ใ‚Šใพใ›ใ‚“" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "ใพใ ๅผ•็”จใŒใ‚ใ‚Šใพใ›ใ‚“" @@ -8198,11 +8190,7 @@ msgstr "ใพใ ๅผ•็”จใŒใ‚ใ‚Šใพใ›ใ‚“" msgid "No recent GIFs yet. Pick one to see it here." msgstr "ๆœ€่ฟ‘ใฎGIFใฏใพใ ใ‚ใ‚Šใพใ›ใ‚“ใ€‚ใ“ใ“ใซ่กจ็คบใ™ใ‚‹ใซใฏไฝ•ใ‹้ธๆŠžใ—ใฆใใ ใ•ใ„ใ€‚" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "่ฟ”ไฟกใ‚’ๅซใพใชใ„" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "ใพใ ่ฟ”ไฟกใŒใ‚ใ‚Šใพใ›ใ‚“" @@ -8217,13 +8205,13 @@ msgstr "็ตๆžœใฏใ‚ใ‚Šใพใ›ใ‚“" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "็ตๆžœใฏใ‚ใ‚Šใพใ›ใ‚“" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "ใ€Œ{0}ใ€ใซ่ฉฒๅฝ“ใ™ใ‚‹ใ‚‚ใฎใฏ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใงใ—ใŸใ€‚" @@ -8236,23 +8224,23 @@ msgstr "็ตๆžœใฏ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“" msgid "No results found for \"{query}\"" msgstr "ใ€Œ{query}ใ€ใฎๆคœ็ดข็ตๆžœใฏใ‚ใ‚Šใพใ›ใ‚“" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "้ซ˜ๅบฆใชๆคœ็ดขใƒ•ใ‚ฃใƒซใ‚ฟใƒผใ‚’้ฉ็”จใ—ใŸใ€Œ<0>{query}ใ€ใฎ็ตๆžœใฏ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใงใ—ใŸใ€‚" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "ใ€Œ<0>{query}ใ€ใฎๆคœ็ดข็ตๆžœใฏใ‚ใ‚Šใพใ›ใ‚“ใ€‚" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "้ซ˜ๅบฆใชๆคœ็ดขใƒ•ใ‚ฃใƒซใ‚ฟใƒผใ‚’้ฉ็”จใ—ใŸๆคœ็ดขๆกไปถใง็ตๆžœใŒ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใงใ—ใŸใ€‚" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใงใ—ใŸใ€‚" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "ใพใ ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใฏใ‚ใ‚Šใพใ›ใ‚“" @@ -8265,7 +8253,7 @@ msgstr "็ตๆง‹ใงใ™" msgid "No translation received from your device." msgstr "ใ‚ไฝฟใ„ใฎใƒ‡ใƒใ‚คใ‚นใ‹ใ‚‰็ฟป่จณใ‚’ๅ—ใ‘ๅ–ใ‚Œใพใ›ใ‚“ใงใ—ใŸใ€‚" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "ใพใ ใƒ“ใƒ‡ใ‚ชใฎๆŠ•็จฟใŒใ‚ใ‚Šใพใ›ใ‚“" @@ -8278,7 +8266,7 @@ msgstr "่ฟ”ไฟกไธๅฏ" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "ใพใ ่ชฐใ‚‚ใ“ใ‚Œใ‚’ใ„ใ„ใญใ—ใฆใ„ใพใ›ใ‚“ใ€‚ใ‚ใชใŸใŒๆœ€ๅˆใซใชใ‚‹ในใใ‹ใ‚‚ใ—ใ‚Œใพใ›ใ‚“๏ผ" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "ใพใ ่ชฐใ‚‚ใ“ใ‚Œใ‚’ๅผ•็”จใ—ใฆใ„ใพใ›ใ‚“ใ€‚ใ‚ใชใŸใŒๆœ€ๅˆใซใชใ‚‹ในใใ‹ใ‚‚ใ—ใ‚Œใพใ›ใ‚“๏ผ" @@ -8298,6 +8286,10 @@ msgstr "ๅŒๆ„ใฎใชใ„่ฆชๅฏ†็”ปๅƒ๏ผˆNCII๏ผ‰" msgid "Non-sexual Nudity" msgstr "ๆ€ง็š„ใงใฏใชใ„ใƒŒใƒผใƒ‰" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "ใชใ—" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "ใ“ใฎใƒ—ใƒฉใƒƒใƒˆใƒ•ใ‚ฉใƒผใƒ ใงใฏๅˆฉ็”จใงใใพใ›ใ‚“ใ€‚" msgid "Not followed by anyone youโ€™re following" msgstr "ใ‚ใชใŸใŒใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใ‚‹่ชฐใ‹ใ‚‰ใ‚‚ใƒ•ใ‚ฉใƒญใƒผใ•ใ‚Œใฆใ„ใพใ›ใ‚“" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“" @@ -8333,7 +8325,7 @@ msgstr "ๅ…ฑๆœ‰ใซใคใ„ใฆใฎๆณจๆ„ไบ‹้ …" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "ๆณจ่จ˜๏ผšBlueskyใฏใ‚ชใƒผใƒ—ใƒณใงใƒ‘ใƒ–ใƒชใƒƒใ‚ฏใชใƒใƒƒใƒˆใƒฏใƒผใ‚ฏใงใ™ใ€‚ใ“ใฎ่จญๅฎšใฏBlueskyใฎใ‚ขใƒ—ใƒชใŠใ‚ˆใณใ‚ฆใ‚งใƒ–ใ‚ตใ‚คใƒˆไธŠใฎใฟใงใฎใ‚ใชใŸใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใฎๅฏ่ฆ–ๆ€งใ‚’ๅˆถ้™ใ™ใ‚‹ใ‚‚ใฎใงใ‚ใ‚Šใ€ไป–ใฎใ‚ขใƒ—ใƒชใงใฏใ“ใฎ่จญๅฎšใ‚’ๅฐŠ้‡ใ—ใชใ„ๅ ดๅˆใŒใ‚ใ‚Šใพใ™ใ€‚ไป–ใฎใ‚ขใƒ—ใƒชใ‚„ใ‚ฆใ‚งใƒ–ใ‚ตใ‚คใƒˆใงใฏใ€ใƒญใ‚ฐใ‚ขใ‚ฆใƒˆใ—ใŸใƒฆใƒผใ‚ถใƒผใซใ‚ใชใŸใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใŒ่กจ็คบใ•ใ‚Œใ‚‹ๅ ดๅˆใŒใ‚ใ‚Šใพใ™ใ€‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "ๆณจ๏ผšใ“ใฎๆŠ•็จฟใฏใƒญใ‚ฐใ‚คใƒณไธญใฎใƒฆใƒผใ‚ถใƒผใซใฎใฟ่กจ็คบใ•ใ‚Œใพใ™ใ€‚" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "ใพใ ไฝ•ใ‚‚ไฟๅญ˜ใ•ใ‚Œใฆใ„ใพใ›ใ‚“" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "้€š็Ÿฅ่จญๅฎš" @@ -8353,11 +8345,12 @@ msgstr "้€š็Ÿฅ่จญๅฎš" msgid "Notification sounds" msgstr "้€š็Ÿฅ้Ÿณ" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "ใกใ‚‡ใฃใจ๏ผ" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "OK" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "ใ‚ชใƒณใƒœใƒผใƒ‡ใ‚ฃใƒณใ‚ฐใฎใƒชใ‚ปใƒƒใƒˆ" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "้ธๆŠžใ—ใŸๅ—ไฟก่€…ใฎใ„ใšใ‚Œใ‹ใŒใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใ‚’่จฑๅฏใ—ใฆใ„ใพใ›ใ‚“ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "้ธๆŠžใ—ใŸๅ—ไฟก่€…ใฎใ„ใšใ‚Œใ‹ใŒใ‚ใชใŸใ‚’ใƒ–ใƒญใƒƒใ‚ฏใ—ใฆใ„ใฆใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’้€ใ‚Œใพใ›ใ‚“ใ€‚" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "1ใคใ‚‚ใ—ใใฏ่ค‡ๆ•ฐใฎGIFใซALTใƒ†ใ‚ญใ‚นใƒˆใŒใ‚ใ‚Šใพใ›ใ‚“ใ€‚" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "1ใคใ‚‚ใ—ใใฏ่ค‡ๆ•ฐใฎ็”ปๅƒใซALTใƒ†ใ‚ญใ‚นใƒˆใŒใ‚ใ‚Šใพใ›ใ‚“ใ€‚" @@ -8454,11 +8449,11 @@ msgstr "้ธๆŠžใ—ใŸใƒ•ใ‚กใ‚คใƒซใฎ 1ใคไปฅไธŠใŒใ‚ตใƒใƒผใƒˆใ•ใ‚Œใฆใ„ใพใ› msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "้ธๆŠžใ—ใŸใƒ•ใ‚กใ‚คใƒซใฎ1ใคไปฅไธŠใŒๅคงใใ™ใŽใพใ™ใ€‚ๆœ€ๅคงใ‚ตใ‚คใ‚บใฏ {VIDEO_MAX_SIZE_MB}MBใงใ™ใ€‚" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "ไธ€ใคไปฅไธŠใฎๆŠ•็จฟใŒไธ‹ๆ›ธใใจใ—ใฆใฏ้•ทใ™ใŽใพใ™ใ€‚{MAX_DRAFT_GRAPHEME_LENGTH, plural,other {ๆœ€ๅคงใง#ๆ–‡ๅญ—ใงใ™ใ€‚}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "1ใคใ‚‚ใ—ใใฏ่ค‡ๆ•ฐใฎใƒ“ใƒ‡ใ‚ชใซALTใƒ†ใ‚ญใ‚นใƒˆใŒใ‚ใ‚Šใพใ›ใ‚“ใ€‚" @@ -8471,7 +8466,7 @@ msgstr "{0}ใฎใฟ่ฟ”ไฟกๅฏ่ƒฝใ€‚" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "{1}ๆžšใฎ{2, plural, other {็”ปๅƒ}}ไธญ{0}ๆžšใฎใฟใ‚’่ฟฝๅŠ ใ—ใพใ—ใŸใ€‚ๆœ€ๅคงใง{MAX_GALLERY_IMAGES}ๆžšใงใ™" @@ -8507,6 +8502,10 @@ msgstr "{0}ใŒใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใ‚‹ใƒฆใƒผใ‚ถใƒผใ ใ‘ใŒๅ‚ๅŠ ใงใใพใ™ใ€‚ msgid "Only people the chat owner follows can join" msgstr "ใƒใƒฃใƒƒใƒˆใฎใ‚ชใƒผใƒŠใƒผใŒใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใ‚‹ใƒฆใƒผใ‚ถใƒผใ ใ‘ใŒๅ‚ๅŠ ใงใใพใ™" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "ๆŠ•็จฟใฎใฟ" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "ใƒกใƒ‡ใ‚ฃใ‚ขไป˜ใใฎๆŠ•็จฟใฎใฟ" @@ -8519,7 +8518,7 @@ msgstr "ๅ‹•็”ปไป˜ใใฎๆŠ•็จฟใฎใฟ" msgid "Only replies" msgstr "่ฟ”ไฟกใฎใฟ" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT๏ผˆ.vtt๏ผ‰ใƒ•ใ‚กใ‚คใƒซใฎใฟใซๅฏพๅฟœใ—ใฆใ„ใพใ™" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "ใ“ใฎใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใฏๅญ˜ๅœจใ—ใพใ›ใ‚“ใ€‚ๅˆฅใฎใ‚‚ใฎใ‚’ใ‚นใ‚ญใƒฃใƒณใ—ใฆใฟใฆใใ ใ•ใ„ใ€‚" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "ใŠใฃใจ๏ผ" @@ -8544,7 +8543,7 @@ msgstr "ใŠใฃใจ๏ผ" msgid "Open advanced search options" msgstr "้ซ˜ๅบฆใชๆคœ็ดขใ‚ชใƒ—ใ‚ทใƒงใƒณใ‚’้–‹ใ" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "ใ‚ขใƒใ‚ฟใƒผใƒปใ‚ฏใƒชใ‚จใ‚คใ‚ฟใƒผใ‚’้–‹ใ" @@ -8570,21 +8569,22 @@ msgstr "ไผš่ฉฑใฎใ‚ชใƒ—ใ‚ทใƒงใƒณใ‚’้–‹ใ" msgid "Open draft" msgstr "ไธ‹ๆ›ธใใ‚’้–‹ใ" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "ๅผ•ใๅ‡บใ—ใƒกใƒ‹ใƒฅใƒผใ‚’้–‹ใ" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "็ตตๆ–‡ๅญ—ใ‚’ๅ…ฅๅŠ›" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’็”ป้ขใง้–‹ใ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎ่จญๅฎšใƒกใƒ‹ใƒฅใƒผใ‚’้–‹ใ" @@ -8627,7 +8627,7 @@ msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใƒ‡ใƒใƒƒใ‚ฐใƒšใƒผใ‚ธใ‚’้–‹ใ" msgid "Open muted words and tags settings" msgstr "ใƒŸใƒฅใƒผใƒˆใ—ใŸใƒฏใƒผใƒ‰ใจใ‚ฟใ‚ฐใฎ่จญๅฎšใ‚’้–‹ใ" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "ใƒ‘ใƒƒใ‚ฏใ‚’้–‹ใ" @@ -8699,7 +8699,7 @@ msgstr "ใƒ‡ใƒใƒƒใ‚ฐใ‚จใƒณใƒˆใƒชใƒผใฎ่ฟฝๅŠ ่ฉณ็ดฐใ‚’้–‹ใ" msgid "Opens alt text dialog" msgstr "ALTใƒ†ใ‚ญใ‚นใƒˆใฎใƒ€ใ‚คใ‚ขใƒญใ‚ฐใ‚’้–‹ใ" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "ใƒ‡ใƒใ‚คใ‚นใฎใ‚ซใƒกใƒฉใ‚’้–‹ใ" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "ๆ–ฐใ—ใ„Blueskyใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝœๆˆใ™ใ‚‹ใƒ•ใƒญใƒผใ‚’้–‹ใ" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "ๆ—ขๅญ˜ใฎBlueskyใ‚ขใ‚ซใ‚ฆใƒณใƒˆใซใ‚ตใ‚คใƒณใ‚คใƒณใ™ใ‚‹็”ป้ขใ‚’้–‹ใใพใ™" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใŒๆ›ดๆ–ฐใ•ใ‚Œใพใ—ใŸ๏ผ" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "ไธ€ๆ™‚ๅœๆญข" @@ -8925,12 +8925,12 @@ msgstr "ไธ€ๆ™‚ๅœๆญข" msgid "Pause GIF" msgstr "GIFใ‚’ไธ€ๆ™‚ๅœๆญข" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "ใƒ“ใƒ‡ใ‚ชใ‚’ไธ€ๆ™‚ๅœๆญข" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "ใƒฆใƒผใ‚ถใƒผ" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "{ownerName}ใŒใƒ•ใ‚ฉใƒญใƒผไธญใฎไบบใฏๅ‚ๅŠ ใ‚’ใƒชใ‚ฏใ‚จใ‚นใƒˆใงใใพใ™" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0}ใŒใƒ•ใ‚ฉใƒญใƒผไธญใฎใƒฆใƒผใ‚ถใƒผ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "@{0}ใ‚’ใƒ•ใ‚ฉใƒญใƒผไธญใฎใƒฆใƒผใ‚ถใƒผ" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "ใƒ•ใ‚ฉใƒญใƒผไธญใฎไบบ" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "ใƒ•ใ‚ฉใƒญใƒผไธญใฎไบบใฏๅ‚ๅŠ ใ‚’ใƒชใ‚ฏใ‚จใ‚นใƒˆใงใใพใ™" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "ใƒ•ใ‚ฉใƒญใƒผไธญใฎไบบ" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "ๆˆไบบๅ‘ใ‘ใฎ็”ปๅƒใงใ™ใ€‚" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ใƒ”ใƒณ็•™ใ‚" @@ -9034,7 +9034,7 @@ msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ใƒ”ใƒณ็•™ใ‚" msgid "Pin to home" msgstr "ใƒ›ใƒผใƒ ใซใƒ”ใƒณ็•™ใ‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "ใƒ›ใƒผใƒ ใซใƒ”ใƒณ็•™ใ‚" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "ๅ›บๅฎš" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0}ใ‚’ใƒ›ใƒผใƒ ใซใƒ”ใƒณ็•™ใ‚ใ—ใพใ—ใŸ" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใซใƒ”ใƒณ็•™ใ‚ใ—ใพใ—ใŸ" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "ๅ†็”Ÿ" @@ -9076,8 +9076,8 @@ msgstr "{0}ใ‚’ๅ†็”Ÿ" msgid "Play GIF" msgstr "GIFใ‚’ๅ†็”Ÿ" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "ใƒ“ใƒ‡ใ‚ชใ‚’ๅ†็”Ÿ" @@ -9109,11 +9109,11 @@ msgstr "ๆŠ•็จฟใ™ใ‚‹ใƒกใƒ‡ใ‚ฃใ‚ขใซ่ฉฒๅฝ“ใ™ใ‚‹ใ‚ณใƒณใƒ†ใƒณใƒ„่ญฆๅ‘Šใƒฉใƒ™ใƒซใ‚’ 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "ใƒใƒณใƒ‰ใƒซใ‚’ใŠ้ธใณใใ ใ•ใ„ใ€‚" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’้ธๆŠžใ—ใฆใใ ใ•ใ„ใ€‚" @@ -9122,7 +9122,7 @@ 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 "ๆ–ฐใ—ใ„ใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใ‚’็ขบ่ชใ™ใ‚‹ใŸใ‚ใซ้€ไฟกใ—ใŸใƒกใƒผใƒซใฎใƒชใƒณใ‚ฏใ‚’ใ‚ฏใƒชใƒƒใ‚ฏใ—ใฆใใ ใ•ใ„ใ€‚ ใ“ใ‚Œใฏใ€Blueskyใฎใ™ในใฆใฎๆฉŸ่ƒฝใ‚’ๆฅฝใ—ใฟ็ถšใ‘ใ‚‹ใŸใ‚ใฎ้‡่ฆใชใ‚นใƒ†ใƒƒใƒ—ใงใ™ใ€‚" -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "CAPTCHA่ช่จผใ‚’ๅฎŒไบ†ใ—ใฆใใ ใ•ใ„ใ€‚" @@ -9179,7 +9179,7 @@ msgstr "ๅ—ใ‘ๅ–ใฃใŸใ‚ณใƒผใƒ‰ใจใ€ไฝฟ็”จใ—ใŸใ„ๆ–ฐใ—ใ„ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ msgid "Please enter the security code we sent to your previous email address." msgstr "ๅ‰ใฎใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใซ้€ใฃใŸใ‚ปใ‚ญใƒฅใƒชใƒ†ใ‚ฃใ‚ณใƒผใƒ‰ใ‚’ๅ…ฅๅŠ›ใ—ใฆใใ ใ•ใ„ใ€‚" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "ใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใ‚’ๅ…ฅๅŠ›ใ—ใฆใใ ใ•ใ„ใ€‚" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’ไปฅไธ‹ใซ่จ˜ๅ…ฅใ—ใฆใใ ใ•ใ„๏ผš" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "ๆ”ฟๆฒป" @@ -9269,7 +9269,7 @@ msgstr "ๆ”ฟๆฒป" msgid "Porn" msgstr "ใƒใƒซใƒŽ" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "ๆŠ•็จฟ" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "ๆŠ•็จฟ" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "ๅ†™็œŸใ‚’ๆŠ•็จฟ" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "ใƒ“ใƒ‡ใ‚ชใ‚’ๆŠ•็จฟ" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "ใ™ในใฆใƒใ‚นใƒˆ" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "ใจใซใ‹ใๆŠ•็จฟใ™ใ‚‹" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "ใƒ–ใƒญใƒƒใ‚ฏใ•ใ‚ŒใŸๆŠ•็จฟ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0}ใซใ‚ˆใ‚‹ๆŠ•็จฟ" @@ -9340,7 +9340,7 @@ msgstr "ใ‚ใชใŸใŒ้ž่กจ็คบใซใ—ใŸๆŠ•็จฟ" msgid "Post interaction settings" msgstr "ๆŠ•็จฟใธใฎๅๅฟœใฎ่จญๅฎš" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "ๆŠ•็จฟใธใฎๅๅฟœใฎ่จญๅฎš" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "ๆŠ•็จฟใ‚’ๅ›บๅฎšใ—ใพใ—ใŸ" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "ๆŠ•็จฟใ‚’ไฟๅญ˜ใ—ใพใ—ใŸ" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "ๆŠ•็จฟใ‚ฟใ‚คใƒ—" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "ๆŠ•็จฟใฎๅ›บๅฎšใ‚’่งฃ้™คใ—ใพใ—ใŸ" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "ๆŠ•็จฟ" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "ๆŠ•็จฟใจ่ฟ”ไฟก" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "ๆŠ•็จฟใฏใƒ†ใ‚ญใ‚นใƒˆใ€ใ‚ฟใ‚ฐใ€ใพใŸใฏใใฎไธกๆ–นใซๅŸบใฅใ„ใฆใƒŸใƒฅใƒผใƒˆใงใใพใ™ใ€‚ๆŠ•็จฟใŒ่กจ็คบใ•ใ‚Œใชใใชใ‚‹ๅฏ่ƒฝๆ€งใŒใ‚ใ‚‹ใŸใ‚ใ€ๅคšใใฎๆŠ•็จฟใซไฝฟใ‚ใ‚Œใ‚‹ไธ€่ˆฌ็š„ใชใƒฏใƒผใƒ‰ใฏ้ฟใ‘ใ‚‹ใ“ใจใ‚’ใŠใ™ใ™ใ‚ใ—ใพใ™ใ€‚" @@ -9398,6 +9396,10 @@ msgstr "ๆŠ•็จฟใฏใƒ†ใ‚ญใ‚นใƒˆใ€ใ‚ฟใ‚ฐใ€ใพใŸใฏใใฎไธกๆ–นใซๅŸบใฅใ„ใฆใƒŸ msgid "Posts hidden" msgstr "้ž่กจ็คบใฎๆŠ•็จฟ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "ๆŠ•็จฟใ€่ฟ”ไฟก" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "่ชค่งฃใ‚’ๆ‹›ใๅฏ่ƒฝๆ€งใฎใ‚ใ‚‹ใƒชใƒณใ‚ฏ" @@ -9449,20 +9451,21 @@ msgstr "ใƒ—ใƒฉใ‚คใƒใ‚ทใƒผ" msgid "Privacy and security" msgstr "ใƒ—ใƒฉใ‚คใƒใ‚ทใƒผใจใ‚ปใ‚ญใƒฅใƒชใƒ†ใ‚ฃ" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "ใƒ—ใƒฉใ‚คใƒใ‚ทใƒผใจใ‚ปใ‚ญใƒฅใƒชใƒ†ใ‚ฃ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "ใƒ—ใƒฉใ‚คใƒใ‚ทใƒผใจใ‚ปใ‚ญใƒฅใƒชใƒ†ใ‚ฃใฎ่จญๅฎš" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "ใƒ—ใƒฉใ‚คใƒใ‚ทใƒผใƒใƒชใ‚ทใƒผ" msgid "Privacy violation of a minor" msgstr "ๆœชๆˆๅนด่€…ใฎใƒ—ใƒฉใ‚คใƒใ‚ทใƒผไพตๅฎณ" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "GIFใ‚’ๅ‡ฆ็†ใ—ใฆใ„ใพใ™โ€ฆ" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "ใƒ“ใƒ‡ใ‚ชใ‚’ๅ‡ฆ็†ไธญโ€ฆ" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "ใƒฆใƒผใ‚ถใƒผใ‚’ไธ€ๆ‹ฌใงใƒŸใƒฅใƒผใƒˆใพใŸใฏใƒ–ใƒญใƒƒใ‚ฏใ™ใ‚‹ใ€ๅ…ฌ้–‹ใ•ใ‚ŒใŸๅ…ฑๆœ‰ๅฏ่ƒฝใชใƒชใ‚นใƒˆใ€‚" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "ๆŠ•็จฟใ‚’ๅ…ฌ้–‹" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "ๆŠ•็จฟใ‚’ๅ…ฌ้–‹" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "่ฟ”ไฟกใ‚’ๅ…ฌ้–‹" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "่ฟ”ไฟกใ‚’ๅ…ฌ้–‹" @@ -9599,12 +9602,12 @@ msgstr "ๅผ•็”จๆŠ•็จฟใฏ็„กๅŠนใงใ™" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "ๅผ•็”จ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "ใ“ใฎๆŠ•็จฟใ‚’ๅผ•็”จใ™ใ‚‹" @@ -9647,7 +9650,7 @@ msgstr "ใ‚ใชใŸใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ๅ†ๆœ‰ๅŠนๅŒ–" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "{0, plural, other {ใ•ใ‚‰ใซ#ๅ€‹ใฎ่ฟ”ไฟก}}ใ‚’่ชญใ‚€" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "้ซ˜ๅบฆใชๆคœ็ดขใƒ•ใ‚ฃใƒซใ‚ฟใƒผใฎไฝฟใ„ๆ–นใ‚’่ชญใ‚€" @@ -9657,11 +9660,11 @@ msgstr "้ซ˜ๅบฆใชๆคœ็ดขใƒ•ใ‚ฃใƒซใ‚ฟใƒผใฎไฝฟใ„ๆ–นใ‚’่ชญใ‚€" msgid "Read blog post" msgstr "ใƒ–ใƒญใ‚ฐ่จ˜ไบ‹ใ‚’่ชญใ‚€" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "ๆ–‡ๅญ—ใ‚’ๆธ›ใ‚‰ใ™" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "ใ‚‚ใฃใจ่ชญใ‚€" @@ -9687,11 +9690,11 @@ msgstr "Blueskyใฎใƒ—ใƒฉใ‚คใƒใ‚ทใƒผใƒใƒชใ‚ทใƒผใ‚’่ชญใ‚€" msgid "Read the Bluesky Terms of Service" msgstr "Blueskyใฎๅˆฉ็”จ่ฆ็ด„ใ‚’่ชญใ‚€" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "ใƒชใ‚ขใƒซใชไผš่ฉฑใ€‚" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "ใƒชใ‚ขใƒซใชไบบใ€…ใ€‚" @@ -9721,10 +9724,6 @@ msgstr "ๆคœ็ดขๅฑฅๆญด" msgid "Recently used" msgstr "ๆœ€่ฟ‘ไฝฟ็”จ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "ใŠใ™ใ™ใ‚" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "ๅ†ๆŽฅ็ถš" @@ -9748,7 +9747,7 @@ msgstr "ใƒใƒฃใƒƒใƒˆใฎใƒชใ‚ฏใ‚จใ‚นใƒˆใ‚’ๆ‹’ๅฆใ™ใ‚‹" msgid "Reject join request" msgstr "ๅ‚ๅŠ ใƒชใ‚ฏใ‚จใ‚นใƒˆใ‚’ๆ‹’ๅฆ" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "ไผš่ฉฑใ‚’ๅ†่ชญใฟ่พผใฟ" @@ -9766,7 +9765,7 @@ msgstr "ไผš่ฉฑใ‚’ๅ†่ชญใฟ่พผใฟ" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "ๅ‰Š้™ค" @@ -9792,8 +9791,8 @@ msgstr "{displayName}ใ‚’ๅค–ใ—ใพใ™ใ‹๏ผŸ" msgid "Remove {q}" msgstr "{q}ใ‚’ๅ‰Š้™ค" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆๅˆ‡ๆ›ฟใƒชใ‚นใƒˆใ‹ใ‚‰ๅ–ใ‚Š้™คใ" @@ -9845,15 +9844,15 @@ msgstr "ใƒ•ใ‚ฃใƒซใ‚ฟใƒผใ‚’ๅ‰Š้™ค" msgid "Remove from chat" msgstr "ใƒใƒฃใƒƒใƒˆใ‹ใ‚‰ๅ‰Š้™ค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "ใƒžใ‚คใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ๅ‰Š้™ค" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "ใ‚ฏใ‚คใƒƒใ‚ฏใ‚ขใ‚ฏใ‚ปใ‚นใ‹ใ‚‰ๅ‰Š้™คใ—ใพใ™ใ‹๏ผŸ" @@ -9862,7 +9861,7 @@ msgstr "ใ‚ฏใ‚คใƒƒใ‚ฏใ‚ขใ‚ฏใ‚ปใ‚นใ‹ใ‚‰ๅ‰Š้™คใ—ใพใ™ใ‹๏ผŸ" msgid "Remove from saved feeds" msgstr "ไฟๅญ˜ใ•ใ‚ŒใŸใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ๅ‰Š้™ค" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "ไฟๅญ˜ๆธˆๆŠ•็จฟใ‹ใ‚‰ๅ‰Š้™ค" @@ -9880,8 +9879,8 @@ msgstr "ใ‚คใƒกใƒผใ‚ธใ‚’ๅ‰Š้™ค" msgid "Remove live status" msgstr "ใƒฉใ‚คใƒ–ใ‚นใƒ†ใƒผใ‚ฟใ‚นใ‚’ๅ‰Š้™ค" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "ใƒกใƒณใƒใƒผใ‚’ๅค–ใ™" @@ -9943,7 +9942,7 @@ msgstr "ใƒชใ‚นใƒˆใ‹ใ‚‰ๅ‰Š้™คใ•ใ‚Œใพใ—ใŸ" msgid "Removed from saved feeds" msgstr "ไฟๅญ˜ใ•ใ‚ŒใŸใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ๅ‰Š้™คใ—ใพใ—ใŸ" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "ไฟๅญ˜ๆธˆๆŠ•็จฟใ‹ใ‚‰ๅ‰Š้™คใ—ใพใ—ใŸ" @@ -9952,7 +9951,7 @@ msgstr "ไฟๅญ˜ๆธˆๆŠ•็จฟใ‹ใ‚‰ๅ‰Š้™คใ—ใพใ—ใŸ" msgid "Removed from starter pack" msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‹ใ‚‰ๅ‰Š้™คใ—ใพใ—ใŸ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "ใ‚ใชใŸใธใฎ่ฟ”ไฟก" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "{senderName}ใ‹ใ‚‰ใฎ่ฟ”ไฟกๅ…ˆใƒกใƒƒใ‚ปใƒผใ‚ธใ€‚ใ‚ฟใƒƒใƒ—ใ—ใฆใ‚นใ‚ฏใƒญใƒผใƒซ" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "ๅ‚ๅŠ ใ™ใ‚‹ๅ‰ใซ้€ใ‚‰ใ‚ŒใŸ่ฟ”ไฟกๅ…ˆใƒกใƒƒใ‚ปใƒผใ‚ธ" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "่ฟ”ไฟกๅ…ˆใฎใƒกใƒƒใ‚ปใƒผใ‚ธใ€ใ‚ฟใƒƒใƒ—ใ—ใฆใ‚นใ‚ฏใƒญใƒผใƒซ" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "่ฟ”ไฟก" @@ -10037,7 +10037,7 @@ msgstr "ใ“ใฎๆŠ•็จฟใธใฎ่ฟ”ไฟกใฏ็„กๅŠนๅŒ–ใ•ใ‚Œใฆใ„ใพใ™ใ€‚" msgid "Reply" msgstr "่ฟ”ไฟก" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "่ฟ”ไฟก" @@ -10098,8 +10098,8 @@ msgstr "ไผš่ฉฑใ‚’ๅ ฑๅ‘Š" msgid "Report dialog" msgstr "ๅ ฑๅ‘Šใƒ€ใ‚คใ‚ขใƒญใ‚ฐ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๅ ฑๅ‘Š" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "ใ‚ใชใŸใฎใƒชใƒใ‚นใƒˆ" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "ใƒชใƒใ‚นใƒˆ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "ใ“ใฎๆŠ•็จฟใ‚’ใƒชใƒใ‚นใƒˆใ™ใ‚‹" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "ใƒชใƒใ‚นใƒˆใฎใƒชใƒใ‚นใƒˆ" @@ -10253,7 +10253,7 @@ msgstr "ใƒชใ‚ฏใ‚จใ‚นใƒˆๆธˆ" msgid "Requests" msgstr "ใƒชใ‚ฏใ‚จใ‚นใƒˆ" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "ใ‚จใƒฉใƒผใซใชใฃใŸๆœ€ๅพŒใฎใ‚ขใ‚ฏใ‚ทใƒงใƒณใ‚’ใ‚„ใ‚Š็›ดใ™" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "ใƒ›ใƒผใƒ ใƒšใƒผใ‚ธใซๆˆปใ‚‹" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "ๅ‰ใฎใƒšใƒผใ‚ธใซๆˆปใ‚‹" @@ -10446,27 +10446,27 @@ msgstr "็”Ÿๅนดๆœˆๆ—ฅใ‚’ไฟๅญ˜" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "ๅค‰ๆ›ดใ‚’ไฟๅญ˜" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "ๅค‰ๆ›ดใ‚’ไฟๅญ˜ใ—ใพใ™ใ‹๏ผŸ" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "ไธ‹ๆ›ธใใ‚’ไฟๅญ˜" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "ไธ‹ๆ›ธใใ‚’ไฟๅญ˜ใ—ใพใ™ใ‹๏ผŸ" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QRใ‚ณใƒผใƒ‰ใ‚’ไฟๅญ˜" msgid "Save these options for next time" msgstr "ใ“ใ‚Œใ‚‰ใฎใ‚ชใƒ—ใ‚ทใƒงใƒณใ‚’ๆฌกๅ›žใฎใŸใ‚ใซไฟๅญ˜ใ™ใ‚‹" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "ใƒžใ‚คใƒ•ใ‚ฃใƒผใƒ‰ใซไฟๅญ˜" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "ไฟๅญ˜ใ•ใ‚ŒใŸใƒ•ใ‚ฃใƒผใƒ‰" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "ไฟๅญ˜ๆธˆๆŠ•็จฟ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ไฟๅญ˜ใ—ใพใ—ใŸ" @@ -10520,8 +10520,8 @@ msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ไฟๅญ˜ใ—ใพใ—ใŸ" msgid "Say hello!" msgstr "ใ‚ˆใ‚ใ—ใ๏ผ" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "่ชฐใ‹ใซๆŒจๆ‹ถใ—ใฆใฟใ‚ˆใ†" @@ -10535,7 +10535,7 @@ msgstr "ใ‚นใ‚ญใƒฃใƒณ" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "QRใ‚ณใƒผใƒ‰ใ‚’ใ‚นใ‚ญใƒฃใƒณ" @@ -10543,15 +10543,15 @@ msgstr "QRใ‚ณใƒผใƒ‰ใ‚’ใ‚นใ‚ญใƒฃใƒณ" msgid "Science" msgstr "็ง‘ๅญฆ" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "ๅทฆใซใ‚นใ‚ฏใƒญใƒผใƒซ" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "ๅณใซใ‚นใ‚ฏใƒญใƒผใƒซ" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "่ฟ”ไฟกๅ…ˆใฎใƒกใƒƒใ‚ปใƒผใ‚ธใซใ‚นใ‚ฏใƒญใƒผใƒซ" @@ -10564,8 +10564,8 @@ msgstr "ไธ€็•ชไธŠใพใงใ‚นใ‚ฏใƒญใƒผใƒซ" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "ๆคœ็ดข" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "@{0}ใฎๆŠ•็จฟใ‚’ๆคœ็ดข" @@ -10612,11 +10612,11 @@ msgstr "{q}ใ‚’ๆคœ็ดข" msgid "Search for feeds that you want to suggest to others." msgstr "ไป–ใฎไบบใซใŠใ™ใ™ใ‚ใ—ใŸใ„ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๆคœ็ดขใ€‚" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "ใ‚‚ใฃใจใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ๆคœ็ดข" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "ใ‚‚ใฃใจใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๆคœ็ดข" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIFใ‚’ๆคœ็ดข" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "ใƒญใ‚ฐใ‚ขใ‚ฆใƒˆๆ™‚ใฎๆคœ็ดขใฏ็พๅœจๅˆฉ็”จใงใใพใ›ใ‚“" @@ -10707,17 +10707,22 @@ msgstr "#{tag} ใฎๆŠ•็จฟใ‚’่กจ็คบ๏ผˆใ“ใฎใƒฆใƒผใ‚ถใƒผใฎใฟ๏ผ‰" msgid "See jobs at Bluesky" msgstr "Blueskyใฎๆฑ‚ไบบใ‚’่ฆ‹ใ‚‹" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "ใ‚‚ใฃใจ่ฆ‹ใ‚‹" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "ๆŽจๅฅจใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’ใ‚‚ใฃใจ่ฆ‹ใ‚‹" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "ใƒˆใƒฌใƒณใƒ‰ใƒปใƒˆใƒ”ใƒƒใ‚ฏใ‚’ใ‚‚ใฃใจ่ฆ‹ใ‚‹" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "ใŠใ™ใ™ใ‚ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’่ฆ‹ใ‚‹" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "ใ‚ทใƒผใ‚ฏใƒใƒผใ€‚็Ÿขๅฐใ‚ญใƒผใงๆ—ฉ้€ใ‚Šใ‚„ๆ—ฉๆˆปใ—ใ€ใ‚นใƒšใƒผใ‚นใงๅ†็”Ÿ๏ผไธ€ๆ™‚ๅœๆญข" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "\"{interestsDisplayName}\" ใ‚ซใƒ†ใ‚ดใƒชใƒผใ‚’้ธๆŠž" @@ -10748,7 +10753,7 @@ msgstr "{0}ใ‚’้ธๆŠž" msgid "Select {langName}" msgstr "{langName}ใ‚’้ธๆŠž" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "่‰ฒใ‚’้ธๆŠž" @@ -10764,11 +10769,11 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’้ธๆŠž" msgid "Select an app language" msgstr "ใ‚ขใƒ—ใƒชใฎ่จ€่ชžใ‚’้ธๆŠž" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "ใ‚ขใƒใ‚ฟใƒผใ‚’้ธๆŠž" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "็ตตๆ–‡ๅญ—ใ‚’้ธๆŠž" @@ -10780,12 +10785,13 @@ msgstr "ใ‚ชใƒ—ใ‚ทใƒงใƒณใ‚’้ธๆŠž" msgid "Select app language" msgstr "ใ‚ขใƒ—ใƒชใฎ่จ€่ชžใ‚’้ธๆŠž" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "ใ‚ญใƒฃใƒ—ใ‚ทใƒงใƒณใƒ•ใ‚กใ‚คใƒซใ‚’้ธๆŠž๏ผˆ.vtt๏ผ‰" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "ใƒใƒฃใƒƒใƒˆ\"{name}\"ใ‚’้ธๆŠž" @@ -10826,7 +10832,7 @@ msgstr "GIFใ‚’้ธใถ" msgid "Select GIF \"{0}\"" msgstr "GIFใ€Œ{0}ใ€ใ‚’้ธใถ" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใฎใƒกใƒณใƒใƒผใ‚’้ธๆŠž" @@ -10864,7 +10870,7 @@ msgstr "็ฌฌไธ€่จ€่ชžใ‚’้ธๆŠž" msgid "Select telephone code" msgstr "้›ป่ฉฑใฎๅ›ฝ็•ชๅทใ‚’้ธๆŠž" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "็ตตๆ–‡ๅญ—{emojiName}ใ‚’ใ‚ขใƒใ‚ฟใƒผใจใ—ใฆ้ธๆŠž" @@ -10945,7 +10951,8 @@ msgstr "ใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’้€ไฟก" msgid "Send post to {name}" msgstr "ๆŠ•็จฟใ‚’ {name} ใซ้€ใ‚‹" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "ๆŠ•็จฟใ‚’้€ใ‚‹โ€ฆ" @@ -10963,12 +10970,12 @@ msgstr "ๆบๅธฏ้›ป่ฉฑใ‹ใ‚‰ใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’้€ไฟกใ™ใ‚‹" msgid "Send verification email" msgstr "็ขบ่ชใƒกใƒผใƒซใ‚’้€ไฟก" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "ใƒ€ใ‚คใƒฌใ‚ฏใƒˆใƒกใƒƒใ‚ปใƒผใ‚ธใง้€ไฟก" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "ใƒใƒฃใƒƒใƒˆใง้€ไฟก" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "ใƒ›ใ‚นใƒ†ใ‚ฃใƒณใ‚ฐใƒ—ใƒญใƒใ‚คใƒ€ใƒผใ‚’ๆ‰‹ๅ‹•ใง่จญๅฎš" msgid "Sets email for password reset" msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ใƒชใ‚ปใƒƒใƒˆใ™ใ‚‹ใŸใ‚ใฎใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใ‚’ๅ…ฅๅŠ›" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "ไป–ใฎใƒฆใƒผใ‚ถใƒผใฎใ‚ขใ‚ฏใƒ†ใ‚ฃใƒ“ใƒ†ใ‚ฃใฎ้€š็Ÿฅใฎ่จญๅฎš" @@ -11036,49 +11043,49 @@ msgstr "ไป–ใฎใƒฆใƒผใ‚ถใƒผใฎใ‚ขใ‚ฏใƒ†ใ‚ฃใƒ“ใƒ†ใ‚ฃใฎ้€š็Ÿฅใฎ่จญๅฎš" msgid "Settings for allowing others to be notified of your posts" msgstr "ใ‚ใชใŸใฎๆŠ•็จฟใฎ้€š็Ÿฅใ‚’ไป–ใฎใƒฆใƒผใ‚ถใƒผใŒๅ—ใ‘ๅ–ใ‚‹ใฎใ‚’่จฑๅฏใ™ใ‚‹่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "ใ„ใ„ใญใฎ้€š็Ÿฅใฎ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "ใƒกใƒณใ‚ทใƒงใƒณใฎ้€š็Ÿฅใฎ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "ๆ–ฐใ—ใ„ใƒ•ใ‚ฉใƒญใƒฏใƒผใฎ้€š็Ÿฅใฎ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "ใใฎไป–ใ™ในใฆใฎ้€š็Ÿฅใฎ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "ใƒชใƒใ‚นใƒˆใธใฎใ„ใ„ใญใฎ้€š็Ÿฅใฎ่จญๅฎš" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "ๆ–ฐใ—ใ„ใƒกใƒƒใ‚ปใƒผใ‚ธใƒชใ‚ฏใ‚จใ‚นใƒˆใฎ้€š็Ÿฅใฎ่จญๅฎš" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "ๆ–ฐใ—ใ„ใƒกใƒƒใ‚ปใƒผใ‚ธใฎ้€š็Ÿฅใฎ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "ใƒชใƒใ‚นใƒˆใฎใƒชใƒใ‚นใƒˆใฎ้€š็Ÿฅใฎ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "ๅผ•็”จใฎ้€š็Ÿฅใฎ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "่ฟ”ไฟกใฎ้€š็Ÿฅใฎ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "ใƒชใƒใ‚นใƒˆใฎ้€š็Ÿฅใฎ่จญๅฎš" @@ -11115,8 +11122,8 @@ msgstr "ๅนด้ฝข็ฏ„ๅ›ฒใ‚’ๅ…ฑๆœ‰" msgid "Share anyway" msgstr "ใจใซใ‹ใๅ…ฑๆœ‰" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "่‘—่€…DIDใ‚’ๅ…ฑๆœ‰" @@ -11127,7 +11134,7 @@ msgstr "่‘—่€…DIDใ‚’ๅ…ฑๆœ‰" msgid "Share feedback" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใƒใƒƒใ‚ฏใ‚’ๅ…ฑๆœ‰" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "ใƒชใƒณใ‚ฏๅ…ฑๆœ‰ใฎใƒ€ใ‚คใ‚ขใƒญใ‚ฐ" msgid "Share my profile" msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’ๅ…ฑๆœ‰" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "ๆŠ•็จฟใฎat:// URIใ‚’ใ‚ณใƒ”ใƒผ" @@ -11169,12 +11176,12 @@ msgstr "ใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’ๅ…ฑๆœ‰" msgid "Share QR code" msgstr "QRใ‚ณใƒผใƒ‰ใ‚’ๅ…ฑๆœ‰" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ๅ…ฑๆœ‰" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "ใ“ใฎๆคœ็ดขใ‚’ๅ…ฑๆœ‰" @@ -11186,8 +11193,8 @@ msgstr "ใ“ใฎใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ๅ…ฑๆœ‰" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "ใ“ใฎใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ๅ…ฑๆœ‰ใ—ใฆใ€ไป–ใฎใƒฆใƒผใ‚ถใƒผใŒBlueskyใงใฎใ‚ณใƒŸใƒฅใƒ‹ใƒ†ใ‚ฃใซๅ‚ๅŠ ใ™ใ‚‹ใ‚ˆใ†ๆ‰‹ไผใ„ใพใ™" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "้€ฃ็ตกๅ…ˆใ‚’ๅ…ฑๆœ‰ใ—ใฆๅ‹้”ใ‚’่ฆ‹ใคใ‘ใ‚‹" msgid "Share your thoughtsโ€ฆ" msgstr "ใ‚ใชใŸใฎ่€ƒใˆใ‚’ๅ…ฑๆœ‰โ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Shared Preferencesใฎใƒ†ใ‚นใ‚ฟใƒผ" @@ -11219,7 +11226,7 @@ msgstr "ๅนด้ฝข็ฏ„ๅ›ฒใ‚’ๅ…ฑๆœ‰ใ™ใ‚‹ใจใ€Appleใ‚ขใ‚ซใ‚ฆใƒณใƒˆใซ้–ข้€ฃไป˜ใ‘ใ‚‰ msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "ๅนด้ฝข็ฏ„ๅ›ฒใ‚’ๅ…ฑๆœ‰ใ™ใ‚‹ใจใ€Googleใ‚ขใ‚ซใ‚ฆใƒณใƒˆใซ้–ข้€ฃไป˜ใ‘ใ‚‰ใ‚ŒใŸ็ฏ„ๅ›ฒใฎใฟใŒ้–‹็คบใ•ใ‚Œใพใ™๏ผˆไพ‹๏ผš18ๆญณไปฅไธŠใงใ‚ใ‚‹ใ“ใจ๏ผ‰ใ€‚<0>ๆญฃ็ขบใชๅนด้ฝขใ‚„่ช•็”Ÿๆ—ฅใŒๅ…ฑๆœ‰ใ•ใ‚Œใ‚‹ใ“ใจใฏใชใใ€ใ“ใฎใƒ‡ใƒผใ‚ฟใŒใ“ใฎใƒ‡ใƒใ‚คใ‚นใ‹ใ‚‰้€ไฟกใ•ใ‚Œใ‚‹ใ“ใจใ‚‚ใ‚ใ‚Šใพใ›ใ‚“ใ€‚ใใฎใŸใ‚ใ€ใ“ใฎใƒ‡ใƒใ‚คใ‚นใงใฎใฟใ‚ขใ‚ฏใ‚ปใ‚นใŒๆœ‰ๅŠนใซใชใ‚Šใพใ™ใ€‚ใพใŸใฏใ€<1>ไฟก้ ผใงใใ‚‹ใƒ‘ใƒผใƒˆใƒŠใƒผใงใ‚ใ‚‹ KWS ใ‚’ๅˆฉ็”จใ—ใฆ่ช่จผใ‚’ๅฎŒไบ†ใ—ใ€ใ™ในใฆใฎใƒ—ใƒฉใƒƒใƒˆใƒ•ใ‚ฉใƒผใƒ ใงใ‚ขใ‚ฏใ‚ปใ‚นใ‚’ๆœ‰ๅŠนใซใ™ใ‚‹ใ“ใจใ‚‚ใงใใพใ™ใ€‚" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "่กจ็คบ" msgid "Show alt text" msgstr "ALTใƒ†ใ‚ญใ‚นใƒˆใ‚’่กจ็คบ" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "ใจใซใ‹ใ่กจ็คบ" @@ -11274,8 +11281,8 @@ msgstr "ใจใซใ‹ใใƒชใ‚นใƒˆใ‚’่กจ็คบ" msgid "Show lists of users to select from" msgstr "้ธๆŠžใ™ใ‚‹ใƒฆใƒผใ‚ถใƒผใฎใƒชใ‚นใƒˆใ‚’่กจ็คบใ—ใพใ™" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "ใ•ใ‚‰ใซ่กจ็คบ" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "่ญฆๅ‘Šใฎ่กจ็คบใจใƒ•ใ‚ฃใƒผใƒ‰ใ‹ใ‚‰ใฎใƒ•ใ‚ฃใƒซใ‚ฟใƒชใƒณใ‚ฐ" msgid "Show when youโ€™re live" msgstr "ใƒฉใ‚คใƒ–็Šถๆ…‹ใ‚’่กจ็คบ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "ใ“ใฎๆŠ•็จฟใŒใ„ใคไฝœๆˆใ•ใ‚ŒใŸใ‹ใซใคใ„ใฆใฎๆƒ…ๅ ฑใ‚’่กจ็คบใ™ใ‚‹" @@ -11341,15 +11348,15 @@ msgstr "ใ“ใฎๆŠ•็จฟใŒใ„ใคไฝœๆˆใ•ใ‚ŒใŸใ‹ใซใคใ„ใฆใฎๆƒ…ๅ ฑใ‚’่กจ็คบใ™ msgid "Shows other accounts you can switch to" msgstr "ๅˆ‡ๆ›ฟๅฏ่ƒฝใชไป–ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’่กจ็คบ" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "ใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚’่กจ็คบ" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "ใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚’่กจ็คบ" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "ใ‚ตใ‚คใƒณใ‚ขใ‚ฆใƒˆใ—ใพใ™ใ‹๏ผŸ" msgid "Sign up" msgstr "ใ‚ตใ‚คใƒณใ‚ขใƒƒใƒ—" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "ใ‚ตใ‚คใƒณใ‚คใƒณใŒๅฟ…่ฆ" @@ -11469,7 +11476,7 @@ msgstr "ใ‚นใ‚ญใƒƒใƒ—" msgid "Skip contact sharing and continue to the app" msgstr "้€ฃ็ตกๅ…ˆใฎๅ…ฑๆœ‰ใ‚’ใ‚นใ‚ญใƒƒใƒ—ใ—ใฆใ‚ขใƒ—ใƒชใซ้€ฒใ‚€" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "็ฉบใฎๆŠ•็จฟใ‚’ใ‚นใ‚ญใƒƒใƒ—ใ—ใพใ™ใ‹๏ผŸ" @@ -11487,7 +11494,7 @@ msgstr "ๆฌกใฎใ‚นใƒ†ใƒƒใƒ—ใธใ‚นใ‚ญใƒƒใƒ—" msgid "slide" msgstr "ใ‚นใƒฉใ‚คใƒ‰" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "ๅฐใ•ใ„" @@ -11499,7 +11506,7 @@ msgstr "ใƒชใƒžใ‚คใƒณใƒ€ใƒผใ‚’ใ‚นใƒŒใƒผใ‚บ" msgid "So many thoughts, you should post one" msgstr "ไธ‹ๆ›ธใใŒใ„ใฃใฑใ„ใ ใ€ใฉใ‚Œใ‹ใฒใจใคๆŠ•็จฟใ—ใ‚ˆใ†" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "ใ‚ใชใŸใŒใ‚ณใƒณใƒˆใƒญใƒผใƒซใ™ใ‚‹ใ‚ฝใƒผใ‚ทใƒฃใƒซใƒกใƒ‡ใ‚ฃใ‚ขใ€‚" @@ -11520,7 +11527,7 @@ msgstr "ใƒชใ‚นใƒˆไธญใฎใ„ใใคใ‹ใฎใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใ‚ตใƒผใƒ“ใ‚นใฏๅˆฉ็”จ msgid "Some of your verifications are invalid." msgstr "่ช่จผใฎไธ€้ƒจใŒ็„กๅŠนใงใ™ใ€‚" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "ใŠๅฅฝใฟใ‹ใ‚‚ใ—ใ‚Œใชใ„ไป–ใฎใƒ•ใ‚ฃใƒผใƒ‰" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "่ชฐใ‹ใŒใ‚ฐใƒซใƒผใƒ—ใ‹ใ‚‰้€€ๅ‡บใ—ใพใ—ใŸ" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "่ชฐใ‹ใŒ{0}ใจใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณใ—ใพใ—ใŸ" @@ -11554,7 +11561,7 @@ msgstr "่ชฐใ‹ใŒ{0}ใจใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณใ—ใพใ—ใŸ" msgid "Someone reacted {0} to {target}" msgstr "่ชฐใ‹ใŒ{target}ใซ{0}ใจใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณใ—ใพใ—ใŸ" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "่ชฐใ‹ใŒ่ฟ”ไฟกใ—ใพใ—ใŸ" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "ไฝ•ใ‚‰ใ‹ใฎๅ•้กŒใŒ็™บ็”Ÿใ—ใŸใ‚ˆใ†ใชใฎใงใ€ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "ๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ—ใฐใ‚‰ใใ—ใฆใ‹ใ‚‰ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆ msgid "Something went wrong. Please try again." msgstr "ๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "ไฝ•ใ‹ๅ•้กŒใŒใ‚ใ‚Šใพใ™ใ‹๏ผŸใŠ็Ÿฅใ‚‰ใ›ใใ ใ•ใ„ใ€‚" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "ใ‚นใƒ‘ใƒ ใ€ใใฎไป–ใฎไธๆญฃใƒปๆฌบ็žž็š„่กŒ็‚บ" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "ใ‚นใƒใƒผใƒ„" @@ -11668,7 +11675,7 @@ msgstr "ไผš่ฉฑใ‚’้–‹ๅง‹ใ™ใ‚‹ใจใ€ใ“ใ“ใซ่กจ็คบใ•ใ‚Œใพใ™ใ€‚" msgid "Start a group chat" msgstr "ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใ‚’้–‹ๅง‹" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "ๆ–ฐใ—ใ„ใƒใƒฃใƒƒใƒˆใ‚’้–‹ๅง‹" @@ -11682,17 +11689,17 @@ msgstr "ใƒฆใƒผใ‚ถใƒผใ‚’่ฟฝๅŠ ใ™ใ‚‹" msgid "Start adding people!" msgstr "ใƒฆใƒผใ‚ถใƒผใ‚’่ฟฝๅŠ ใ—ใฆ๏ผ" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "ใƒใƒฃใƒƒใƒˆใ‚’้–‹ๅง‹" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "{displayName}ใจใฎใƒใƒฃใƒƒใƒˆใ‚’้–‹ๅง‹" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏ" @@ -11715,12 +11722,16 @@ msgstr "่‡ชๅˆ†ใฎใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏ" msgid "Starter pack is invalid" msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใŒ็„กๅŠนใงใ™" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏ" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ไฝฟใฃใฆใŠๆฐ—ใซๅ…ฅใ‚Šใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚„ใƒฆใƒผใ‚ถใƒผใ‚’ๅ‹ไบบใธ็ฐกๅ˜ใซๅ…ฑๆœ‰ใงใใพใ™ใ€‚" @@ -11728,7 +11739,7 @@ msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ไฝฟใฃใฆใŠๆฐ—ใซๅ…ฅใ‚Šใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚„ใƒฆ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ไฝฟใฃใฆใŠๆฐ—ใซๅ…ฅใ‚Šใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚„ใƒฆใƒผใ‚ถใƒผใ‚’ๅ‹ไบบใธ็ฐกๅ˜ใซๅ…ฑๆœ‰ใงใใพใ™ใ€‚" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ไฝฟใฃใฆใŠๆฐ—ใซๅ…ฅใ‚Šใฎใƒ•ใ‚ฃใƒผใƒ‰ใ‚„ใƒฆใƒผใ‚ถใƒผใ‚’ๅ‹ไบบใธๅ…ฑๆœ‰ใงใใพใ™ใ€‚" @@ -11742,7 +11753,7 @@ msgstr "ใ‚นใƒ†ใƒผใ‚ฟใ‚นใƒšใƒผใ‚ธ" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "ใ‚นใƒ†ใƒƒใƒ— {0} / {1}" @@ -11754,7 +11765,7 @@ msgstr "ใ‚นใƒˆใƒฌใƒผใ‚ธใŒใ‚ฏใƒชใ‚ขใ•ใ‚ŒใŸใŸใ‚ใ€ไปŠใ™ใใ‚ขใƒ—ใƒชใ‚’ๅ†่ตท msgid "Stored as part of a secure code for matching with others" msgstr "ไป–ใฎใƒฆใƒผใ‚ถใƒผใจใฎใƒžใƒƒใƒใƒณใ‚ฐใฎใŸใ‚ใ€ใ‚ปใ‚ญใƒฅใ‚ขใชใ‚ณใƒผใƒ‰ใฎไธ€้ƒจใจใ—ใฆไฟๅญ˜ใ•ใ‚Œใพใ™" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "ใ‚นใƒˆใƒผใƒชใƒผใƒ–ใƒƒใ‚ฏ" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "{0}ใฎ{publicationTitle}ใ‚’่ณผ่ชญ" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "ใ“ใ‚Œใ‚‰ใฎใƒฉใƒ™ใƒซใ‚’ไฝฟ็”จใ™ใ‚‹ใซใฏ@{0}ใ‚’็™ป้Œฒใ—ใฆใใ ใ•ใ„๏ผš" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "ๆญฃๅธธใซ่ช่จผใ•ใ‚Œใพใ—ใŸ" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "ใŠใ™ใ™ใ‚" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "ใŠใ™ใ™ใ‚ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "ใ‚ใชใŸใธใฎใŠใ™ใ™ใ‚" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "ใ‚ตใƒณใ‚ปใƒƒใƒˆ" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "ใŠไฝใพใ„ใฎๅ›ฝใงใฏใ“ใฎๆฉŸ่ƒฝใŒใ‚ตใƒใƒผใƒˆใ•ใ‚Œใฆใ„ใพใ›ใ‚“๏ผๅพŒใงใ‚‚ใ†ไธ€ๅบฆ็ขบ่ชใ—ใฆใใ ใ•ใ„ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "ๅœๆญขไธญใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฏใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใซๅ‚ๅŠ ใงใใพใ›ใ‚“ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "ๅœๆญขไธญใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฏใƒใƒฃใƒƒใƒˆใซๅ‚ๅŠ ใงใใพใ›ใ‚“ใ€‚" @@ -11921,8 +11934,8 @@ msgstr "{0}ใธๅˆ‡ใ‚Šๆ›ฟใˆใ‚‹" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "ใ‚ทใ‚นใƒ†ใƒ " @@ -11945,7 +11958,7 @@ msgstr "ไผš่ฉฑใ‚’ใƒ—ใƒฉใ‚คใƒ™ใƒผใƒˆใซใ€‚" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "ไธ‹ใ‚’ใ‚ฟใƒƒใƒ—ใ™ใ‚‹ใจBlueskyใŒGPSใฎไฝ็ฝฎๆƒ…ๅ ฑใซใ‚ขใ‚ฏใ‚ปใ‚นใงใใ‚‹ใ‚ˆใ†ใซใชใ‚Šใพใ™ใ€‚ ใใฎๅพŒใ€ใใฎใƒ‡ใƒผใ‚ฟใ‚’ไฝฟ็”จใ—ใฆใ€ใŠไฝใพใ„ใฎๅœฐๅŸŸใงๅˆฉ็”จๅฏ่ƒฝใชใ‚ณใƒณใƒ†ใƒณใƒ„ใจๆฉŸ่ƒฝใ‚’ใ‚ˆใ‚Šๆญฃ็ขบใซๆฑบๅฎšใ—ใพใ™ใ€‚" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "ใ‚ฟใƒƒใƒ—ใ—ใฆ่ฉณ็ดฐใ‚’่กจ็คบ" @@ -11976,7 +11989,7 @@ msgstr "ใ‚ฟใƒƒใƒ—ใ—ใฆใ‚ณใƒณใƒ†ใ‚ญใ‚นใƒˆใƒกใƒ‹ใƒฅใƒผใ‚’้–‰ใ˜ใ‚‹" msgid "Tap to copy this invite link" msgstr "ใ‚ฟใƒƒใƒ—ใ—ใฆใ“ใฎๆ‹›ๅพ…ใƒชใƒณใ‚ฏใ‚’ใ‚ณใƒ”ใƒผ" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "ใ‚ฟใƒƒใƒ—ใ—ใฆๆถˆใ™" @@ -12003,7 +12016,7 @@ msgstr "ใ‚ฟใƒƒใƒ—ใ—ใฆใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณ{0}ใ‚’ๅ‰Š้™ค" msgid "Tap to request access to join this group chat" msgstr "ใ‚ฟใƒƒใƒ—ใ—ใฆใ“ใฎใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใธใฎๅ‚ๅŠ ใ‚’ใƒชใ‚ฏใ‚จใ‚นใƒˆใ—ใพใ™" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "ใ‚ฟใƒƒใƒ—ใ—ใฆๅ†่ฉฆ่กŒ" @@ -12016,7 +12029,7 @@ msgstr "ใ‚ฟใƒƒใƒ—ใ—ใฆ{0}ใฎใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณใ‚’่กจ็คบ" msgid "Tap to show all reactions" msgstr "ใ‚ฟใƒƒใƒ—ใ—ใฆใ™ในใฆใฎใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณใ‚’่กจ็คบ" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "ใ‚ฟใƒƒใƒ—ใ—ใฆใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณใ‚’่กจ็คบ" @@ -12032,7 +12045,7 @@ msgstr "ใ‚ฟใ‚นใ‚ฏๅฎŒไบ† - 10ใƒ•ใ‚ฉใƒญใƒผ๏ผ" msgid "Task complete - 10 likes!" msgstr "ใ‚ฟใ‚นใ‚ฏๅฎŒไบ† - 10ใ„ใ„ใญ๏ผ" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "ใ‚ขใƒซใ‚ดใƒชใ‚บใƒ ใ‚’้›ใˆใ‚‹" @@ -12060,7 +12073,7 @@ msgstr "่ฆ็ด„" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "ใใฎใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใŒ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใงใ—ใŸใ€‚" msgid "That username is already taken" msgstr "ใใฎใƒฆใƒผใ‚ถใƒผๅใฏๆ—ขใซไฝฟ็”จใ•ใ‚Œใฆใ„ใพใ™" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "ไปฅไธŠใงใ™ใ€็š†ใ•ใ‚“๏ผ" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "ใ“ใ‚Œใงๅ…จ้ƒจใงใ™๏ผ" @@ -12216,7 +12229,7 @@ msgstr "ใ‚ตใƒผใƒใƒผใงๅ•้กŒใŒ็™บ็”Ÿใ—ใฆใ„ใ‚‹ใ‚ˆใ†ใงใ™ใ€‚ๅฐ‘ใ—้–“ใ‚’ใŠ msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "่ฆ‹ใ‚ˆใ†ใจใ—ใŸใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใŒ็„กๅŠนใงใ™ใ€‚ไปฃใ‚ใ‚Šใซใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ๅ‰Š้™คใ—ใฆใใ ใ•ใ„ใ€‚" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "ใ‚ณใƒณใƒ†ใ‚ญใ‚นใƒˆใƒกใƒ‹ใƒฅใƒผใฎไปถๅ" @@ -12238,7 +12251,7 @@ msgstr "ๅ…ฅๅŠ›ใ•ใ‚ŒใŸ็ขบ่ชใ‚ณใƒผใƒ‰ใŒๆญฃใ—ใใ‚ใ‚Šใพใ›ใ‚“ใ€‚ๆญฃใ—ใ„ใƒช msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "่ช่จผใƒ—ใƒญใƒใ‚คใƒ€ใŒใ‚ใชใŸใฎ้›ป่ฉฑ็•ชๅทใซใ‚ณใƒผใƒ‰ใ‚’้€ไฟกใงใใพใ›ใ‚“ใงใ—ใŸใ€‚้›ป่ฉฑ็•ชๅทใ‚’็ขบ่ชใ—ใฆใ€ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "ใƒ†ใƒผใƒž" @@ -12266,7 +12279,7 @@ msgstr "GIF ใฎ่ชญใฟ่พผใฟไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ๆŽฅ็ถšใ‚’็ขบ่ช msgid "There was a problem with your internet connection, please try again" msgstr "ใ‚คใƒณใ‚ฟใƒผใƒใƒƒใƒˆๆŽฅ็ถšใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆใ‚„ใ‚Š็›ดใ—ใฆใใ ใ•ใ„" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "ใ‚คใƒณใ‚ฟใƒผใƒใƒƒใƒˆๆŽฅ็ถšใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆ msgid "There was an issue contacting the server" msgstr "ใ‚ตใƒผใƒใƒผใธใฎๅ•ใ„ๅˆใ‚ใ›ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "ใ‚ตใƒผใƒใƒผใธใฎๅ•ใ„ๅˆใ‚ใ›ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใŸใฎใงใ€ใ‚คใƒณใ‚ฟใƒผใƒใƒƒใƒˆใธใฎๆŽฅ็ถšใ‚’็ขบ่ชใฎไธŠใ€ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ—ใฆใใ ใ•ใ„ใ€‚" @@ -12283,8 +12296,8 @@ msgstr "ใ‚ตใƒผใƒใƒผใธใฎๅ•ใ„ๅˆใ‚ใ›ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใŸใฎใงใ€ใ‚ค msgid "There was an issue fetching notifications. Tap here to try again." msgstr "้€š็Ÿฅใฎๅ–ๅพ—ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ™ใซใฏใ“ใกใ‚‰ใ‚’ใ‚ฟใƒƒใƒ—ใ—ใฆใใ ใ•ใ„ใ€‚" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "ๆŠ•็จฟใฎๅ–ๅพ—ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ™ใซใฏใ“ใกใ‚‰ใ‚’ใ‚ฟใƒƒใƒ—ใ—ใฆใใ ใ•ใ„ใ€‚" @@ -12309,7 +12322,7 @@ msgstr "ใ‚ตใƒผใƒ“ใ‚นๆƒ…ๅ ฑใฎๅ–ๅพ—ไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸ" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎๅ‰Š้™คไธญใซๅ•้กŒใŒ็™บ็”Ÿใ—ใพใ—ใŸใ€‚ใ‚คใƒณใ‚ฟใƒผใƒใƒƒใƒˆใธใฎๆŽฅ็ถšใ‚’็ขบ่ชใฎไธŠใ€ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ—ใฆใใ ใ•ใ„ใ€‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "ใ“ใ‚Œใ‚‰ใฎ่จญๅฎšใฏFollowingใƒ•ใ‚ฃใƒผใƒ‰ใซใฎใฟ้ฉ็”จใ•ใ‚Œใพใ™ใ€‚ msgid "These URLs" msgstr "ใ“ใ‚Œใ‚‰ใฎURL" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "ๅฝผใ‚‰ใฏใ“ใฎใƒใƒฃใƒƒใƒˆใฎใ‚ชใƒผใƒŠใƒผใงใ™" @@ -12392,7 +12405,7 @@ msgstr "ๅฝผใ‚‰ใฏใ“ใฎใƒใƒฃใƒƒใƒˆใฎใ‚ชใƒผใƒŠใƒผใงใ™" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "ๅ†ๅบฆๆ‹›ๅพ…ใ—ใชใ„ใจๅ†ใณๅ‚ๅŠ ใ™ใ‚‹ใ“ใจใฏใงใใพใ›ใ‚“ใ€‚" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "ใ“ใฎ{screenDescription}ใซใฏใƒ•ใƒฉใ‚ฐใŒ่จญๅฎšใ•ใ‚Œใฆใ„ใพใ™๏ผš" @@ -12408,7 +12421,7 @@ msgstr "ใ“ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฏๆ‰€ๆœ‰่€…ใซใ‚ˆใ‚Š่‡ชๅ‹•ๅŒ–ๆธˆใฟใจใ—ใฆ่จญๅฎš msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "ใ“ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฏ่ช่จผใฏไฝ•ๅบฆใ‹่ช่จผใŒ่ฉฆใฟใ‚‰ใ‚Œใพใ—ใŸใŒใ€็พๅœจใฏ่ช่จผใ•ใ‚Œใฆใ„ใพใ›ใ‚“ใ€‚" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "ใ“ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’้–ฒ่ฆงใ™ใ‚‹ใŸใ‚ใซใฏใ‚ตใ‚คใƒณใ‚คใƒณใŒๅฟ…่ฆใงใ™ใ€‚" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใฏ็ฉบใงใ™๏ผใ‚‚ใฃใจๅคšใใฎใƒฆใƒผใ‚ถใƒผใ‚’ใƒ•ใ‚ฉใƒญใƒผใ™ใ‚‹ใ‹ใ€่จ€่ชžใฎ่จญๅฎšใ‚’่ชฟๆ•ดใ™ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚‹ใ‹ใ‚‚ใ—ใ‚Œใพใ›ใ‚“ใ€‚" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใฏ็ฉบใงใ™ใ€‚" @@ -12554,7 +12567,7 @@ msgstr "ใ“ใฎใ‚ฐใƒซใƒผใƒ—ใฏใ‚ชใƒผใƒŠใƒผใธใฎใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณๅ‡ฆ็ฝฎใซใ‚ˆ msgid "This handle is reserved. Please try a different one." msgstr "ใ“ใฎใƒใƒณใƒ‰ใƒซใฏไบˆ็ด„ใ•ใ‚Œใฆใ„ใพใ™ใ€‚ไป–ใฎใ‚‚ใฎใ‚’ใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "ใ“ใฎ็”ปๅƒใฏไฝฟ็”จใงใใพใ›ใ‚“ใงใ—ใŸใ€‚.jpgใพใŸใฏ.pngใฎใ‚ˆใ†ใชๅˆฅใฎๅฝขๅผใง่ฉฆใ—ใฆใใ ใ•ใ„ใ€‚" @@ -12596,7 +12609,7 @@ msgstr "ใ‚ใชใŸใซใ‚ˆใฃใฆ้ฉ็”จใ•ใ‚ŒใŸใƒฉใƒ™ใƒซใงใ™ใ€‚" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "ใ“ใฎใƒฉใƒ™ใƒซใฏใ‚ใชใŸใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆๅ…จไฝ“ใซ้ฉ็”จใ•ใ‚Œใ€ใ™ในใฆใฎๆŠ•็จฟใซ่กจ็คบใ•ใ‚Œใพใ™ใ€‚" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "ใ“ใฎใƒฉใƒ™ใƒฉใƒผใฏใฉใฎใ‚ˆใ†ใชใƒฉใƒ™ใƒซใ‚’็™บ่กŒใ—ใฆใ„ใ‚‹ใ‹ๅฎฃ่จ€ใ—ใฆใŠใ‚‰ใšใ€ๆดปๅ‹•ใ—ใฆใ„ใชใ„ๅฏ่ƒฝๆ€งใ‚‚ใ‚ใ‚Šใพใ™ใ€‚" @@ -12621,13 +12634,13 @@ msgstr "ใ“ใฎใƒชใ‚นใƒˆใฏ็ฉบใงใ™ใ€‚" msgid "This message is hidden" msgstr "ใ“ใฎใƒกใƒƒใ‚ปใƒผใ‚ธใฏ้ž่กจ็คบใงใ™" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใŒใ‚ใชใŸใ‚’ใƒ–ใƒญใƒƒใ‚ฏใ—ใฆใ„ใ‚‹ใŸใ‚ใ€ใ“ใฎใƒกใƒƒใ‚ปใƒผใ‚ธใฏ้ž่กจ็คบใงใ™ใ€‚" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใ‚’ใƒ–ใƒญใƒƒใ‚ฏใ—ใฆใ„ใ‚‹ใŸใ‚ใ€ใ“ใฎใƒกใƒƒใ‚ปใƒผใ‚ธใฏ้ž่กจ็คบใงใ™ใ€‚" @@ -12641,7 +12654,7 @@ msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใฏใ‚ใชใŸใ‚’ใƒ–ใƒญใƒƒใ‚ฏใ—ใฆใ„ใพใ™" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "<0>{0}ใซๆŠ•็จฟใ•ใ‚ŒใŸใจ่กจ็คบใ•ใ‚Œใฆใ„ใพใ™ใŒใ€Blueskyใซๅˆใ‚ใฆ็™ปๅ ดใ—ใŸใฎใฏ<1>{1}ใงใ™ใ€‚" @@ -12649,7 +12662,7 @@ msgstr "<0>{0}ใซๆŠ•็จฟใ•ใ‚ŒใŸใจ่กจ็คบใ•ใ‚Œใฆใ„ใพใ™ใŒใ€Blueskyใซ msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "ๆŠ•็จฟใซๅฏพใ™ใ‚‹่ฟ”ไฟกๅˆถ้™ใฎใ‚ฟใ‚คใƒ—ใŒไธๆ˜Žใงใ™ใ€‚ใ‚ขใƒ—ใƒชใŒๅคใ„ใ‹ใ‚‚ใ—ใ‚Œใพใ›ใ‚“ใ€‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "ใ“ใฎๆŠ•็จฟใฏใƒญใ‚ฐใ‚คใƒณไธญใฎใƒฆใƒผใ‚ถใƒผใซใฎใฟ่กจ็คบใ•ใ‚Œใพใ™ใ€‚" @@ -12661,7 +12674,7 @@ msgstr "ใ“ใฎๆŠ•็จฟใฏๆŠ•็จฟ่€…ใซใ‚ˆใฃใฆๅ‰Š้™คใ•ใ‚Œใพใ—ใŸ" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "ใ“ใฎๆŠ•็จฟใฏใƒ•ใ‚ฃใƒผใƒ‰ใจใ‚นใƒฌใƒƒใƒ‰ใ‹ใ‚‰้ž่กจ็คบใซใชใ‚Šใพใ™ใ€‚ๅ…ƒใซๆˆปใ™ใ“ใจใฏใงใใพใ›ใ‚“ใ€‚" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "ใ“ใฎๆŠ•็จฟใฎๆŠ•็จฟ่€…ใฏๅผ•็”จๆŠ•็จฟใ‚’็„กๅŠนใซใ—ใฆใ„ใพใ™ใ€‚" @@ -12698,11 +12711,12 @@ msgstr "ใ“ใ‚Œใซใฏๆ•ฐๅˆ†ใ‹ใ‹ใ‚‹ใฏใšใงใ™ใ€‚" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใซใฏ่กจ็คบๅใŒใชใ„ใŸใ‚่ช่จผใงใใพใ›ใ‚“ใ€‚" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใซใฏใƒ•ใ‚ฉใƒญใƒฏใƒผใŒใ„ใพใ›ใ‚“ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใฏใ‚ใชใŸใ‚’ใƒ–ใƒญใƒƒใ‚ฏใ—ใฆใ„ใ‚‹ใŸใ‚ใ€ใƒกใƒƒใ‚ปใƒผใ‚ธใ‚’้€ไฟกใงใใพใ›ใ‚“ใ€‚" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใฏใ‚ใชใŸใ‚’ใƒ–ใƒญใƒƒใ‚ฏใ—ใฆใ„ใ‚‹ใŸใ‚ใ€ใ‚ใชใŸใฏใ“ใฎใƒฆใƒผใ‚ถใƒผใฎใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚’้–ฒ่ฆงใงใใพใ›ใ‚“ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใฏใƒใƒฃใƒƒใƒˆใ‚’็„กๅŠนใซใ—ใฆใ„ใ‚‹ใŸใ‚ใ€ใƒกใƒƒใ‚ปใƒผใ‚ธใงใใพใ›ใ‚“ใ€‚" @@ -12733,11 +12748,11 @@ msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใฏใƒŸใƒฅใƒผใƒˆใ—ใŸ<0>{0}ใƒชใ‚นใƒˆใซๅซใพใ‚Œ msgid "This user is new here. Press for more info about when they joined." msgstr "ๆ–ฐใ—ใ„ใƒฆใƒผใ‚ถใƒผใงใ™ใ€‚ใ“ใ“ใ‚’ๆŠผใ™ใจใ„ใคๅ‚ๅŠ ใ—ใŸใ‹ใฎๆƒ…ๅ ฑใŒ่กจ็คบใ•ใ‚Œใพใ™ใ€‚" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใฏ่ชฐใ‚‚ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใพใ›ใ‚“ใ€‚" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "ใ“ใฎใƒ“ใƒ‡ใ‚ชใฏใ‚ใชใŸใฎใƒ‡ใƒใ‚คใ‚นใงใฏๅ†็”Ÿใงใใพใ›ใ‚“ใ€‚ใ‚ใŸใชใฎใƒ–ใƒฉใ‚ฆใ‚ถใซใฏๅ†็”Ÿใซๅฟ…่ฆใชใƒ“ใƒ‡ใ‚ชใ‚ณใƒผใƒ‡ใƒƒใ‚ฏ๏ผˆH.264/AAC๏ผ‰ใŒ็„กใ„ใ‚ˆใ†ใงใ™ใ€‚" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "ใ‚ใชใŸใฎBlueskyใ‚ขใ‚ซใ‚ฆใƒณใƒˆ <0>{currentHandle}ใจ้–ข้€ฃใ™ใ‚‹ใ™ในใฆใฎใƒ‡ใƒผใ‚ฟใฏๅ‰Š้™คใ•ใ‚Œใ€ๅ…ƒใซๆˆปใ›ใพใ›ใ‚“ใ€‚ ใ“ใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใงไฝฟ็”จใ™ใ‚‹ไป–ใฎ<1>ATใƒ—ใƒญใƒˆใ‚ณใƒซใ‚ตใƒผใƒ“ใ‚นใซๅฝฑ้Ÿฟใ‚’ไธŽใˆใ‚‹ใ“ใจใซๆณจๆ„ใ—ใฆใใ ใ•ใ„ใ€‚" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "ใ‚ฏใ‚คใƒƒใ‚ฏใ‚ขใ‚ฏใ‚ปใ‚นใฎใƒชใ‚นใƒˆใ‹ใ‚‰@{0}ใ‚’ๅ‰Š้™คใ—ใพใ™ใ€‚" @@ -12786,7 +12801,7 @@ msgstr "ใ‚นใƒฌใƒƒใƒ‰ใฎ่จญๅฎš" msgid "Threaded" msgstr "ใ‚นใƒฌใƒƒใƒ‰" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "ใ‚นใƒฌใƒƒใƒ‰ใฎ่จญๅฎš" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "้€ฃ็ตกๅ…ˆใŒๅคšใ™ใŽใพใ™ใ€‚ๅ‹้”ใ‚’่ฆ‹ใคใ‘ใ‚‹ใŸใ‚ใซใ‚คใƒณใƒใƒผใƒˆใงใใ‚‹้€ฃ็ตกๅ…ˆใฎๆ•ฐใ‚’่ถ…ใˆใฆใ„ใพใ™" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "ใƒˆใƒƒใƒ—" @@ -12858,7 +12873,7 @@ msgstr "ใƒˆใƒƒใƒ—" msgid "Top replies first" msgstr "ใƒˆใƒƒใƒ—ใฎ่ฟ”ไฟกใ‚’ๆœ€ๅˆใซ" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "ใƒˆใƒ”ใƒƒใ‚ฏ" @@ -12893,7 +12908,9 @@ msgstr "ใŠไฝฟใ„ใฎใƒ‡ใƒใ‚คใ‚นใงใฏๅŒใ˜่จ€่ชžใธใฎ็ฟป่จณใŒใงใใพใ›ใ‚“ msgid "Tree view" msgstr "ใƒ„ใƒชใƒผ่กจ็คบ" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "ใƒˆใƒฌใƒณใƒ‰" @@ -12902,13 +12919,15 @@ msgstr "ใƒˆใƒฌใƒณใƒ‰" msgid "Trending GIFs" msgstr "ไบบๆฐ—ใฎGIF" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "ใƒˆใƒฌใƒณใƒ‰ใฎใ‚ชใƒ—ใ‚ทใƒงใƒณ" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "่ฉฑ้กŒใฎใƒ“ใƒ‡ใ‚ช" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "ใƒˆใƒญใƒผใƒชใƒณใ‚ฐ๏ผˆ่’ใ‚‰ใ—๏ผ‰" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "ไฟก้ ผใฏไบบ้–“้–ขไฟ‚ใ€ใ‚ณใƒŸใƒฅใƒ‹ใƒ†ใ‚ฃใ€ๅ…ฑๆœ‰ใ•ใ‚Œใฆใ„ใ‚‹ๆ–‡่„ˆใ‹ใ‚‰ๅพ—ใ‚‰ใ‚Œใ‚‹ใŸใ‚ใ€<0>ไฟก้ ผใงใใ‚‹่ช่จผ่€…๏ผˆ่ช่จผใ‚’็›ดๆŽฅ็™บ่กŒใงใใ‚‹็ต„็น”๏ผ‰ใ‚’ๆœ‰ๅŠนใซใ—ใฆใ„ใพใ™ใ€‚" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "ไป–ใฎๆคœ็ดขใ‚ญใƒผใƒฏใƒผใƒ‰ใ‚’่ฉฆใ™ใ‹ใ€ใƒ•ใ‚ฃใƒซใ‚ฟใƒผใ‚’ๅ‰Š้™คใ—ใฆใใ ใ•ใ„ใ€‚" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "ไป–ใฎๆคœ็ดขใ‚ญใƒผใƒฏใƒผใƒ‰ใ‚’ใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "ๅ‚ๅŠ ใƒชใ‚ฏใ‚จใ‚นใƒˆใ‚’ๅ–ๅพ—ใงใใพใ›ใ‚“ใงใ—ใŸใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "้ธๆŠžใ—ใŸๅ—ไฟก่€…ใ‚’่ฆ‹ใคใ‘ใ‚‰ใ‚Œใพใ›ใ‚“ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "้ธๆŠžใ—ใŸๅ—ไฟก่€…ใŒ่ฆ‹ใคใ‘ใ‚‰ใ‚Œใพใ›ใ‚“ใ€‚" @@ -13024,12 +13045,12 @@ msgstr "ๅˆฉ็”จไธๅฏ" msgid "Unavailable feed information" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎๆƒ…ๅ ฑใŒๅˆฉ็”จใงใใพใ›ใ‚“" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎใƒ–ใƒญใƒƒใ‚ฏใ‚’่งฃ้™คใ—ใพใ™ใ‹๏ผŸ" msgid "Unblock list" msgstr "ใƒชใ‚นใƒˆใฎใƒ–ใƒญใƒƒใ‚ฏใ‚’่งฃ้™ค" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "{0}ใฎใƒ•ใ‚ฉใƒญใƒผใ‚’่งฃ้™ค" msgid "Unfollow account" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎใƒ•ใ‚ฉใƒญใƒผใ‚’่งฃ้™ค" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "ใƒฆใƒผใ‚ถใƒผใฎใƒ•ใ‚ฉใƒญใƒผใ‚’่งฃ้™ค" @@ -13132,7 +13153,7 @@ msgstr "ใƒฉใƒ™ใƒซใฎใชใ„ๆˆไบบๅ‘ใ‘ใ‚ณใƒณใƒ†ใƒณใƒ„" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "ใƒฉใƒ™ใƒซใชใ—ใ€่™ๅพ…็š„ใ€ใพใŸใฏๅˆๆ„ใฎใชใ„ๆˆไบบๅ‘ใ‘ใ‚ณใƒณใƒ†ใƒณใƒ„" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "ใ„ใ„ใญใ‚’ๅค–ใ™" @@ -13192,7 +13213,7 @@ msgstr "ใ“ใฎใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใฎใƒŸใƒฅใƒผใƒˆใ‚’่งฃ้™ค" msgid "Unmute thread" msgstr "ใ‚นใƒฌใƒƒใƒ‰ใฎใƒŸใƒฅใƒผใƒˆใ‚’่งฃ้™ค" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "ใƒ“ใƒ‡ใ‚ชใฎใƒŸใƒฅใƒผใƒˆใ‚’่งฃ้™ค" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "ใƒ”ใƒณ็•™ใ‚ใ‚’่งฃ้™ค" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฎใƒ”ใƒณ็•™ใ‚ใ‚’ๅค–ใ™" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "ใƒ›ใƒผใƒ ใ‹ใ‚‰ใƒ”ใƒณ็•™ใ‚ใ‚’่งฃ้™ค" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใƒชใ‚นใƒˆใฎใƒ”ใƒณ็•™ใ‚ใ‚’่งฃ้™ค" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0}ใฎใƒ”ใƒณ็•™ใ‚ใ‚’่งฃ้™คใ—ใพใ—ใŸ" @@ -13258,11 +13279,11 @@ msgstr "ใ“ใฎใƒฉใƒ™ใƒฉใƒผใฎ็™ป้Œฒใ‚’่งฃ้™ค" msgid "Unsubscribed from list" msgstr "ใƒชใ‚นใƒˆใฎ็™ป้Œฒใ‚’่งฃ้™คใ—ใพใ—ใŸ" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "ใ‚ตใƒใƒผใƒˆใ•ใ‚Œใฆใ„ใชใ‚ฏใƒชใƒƒใƒ—ใƒœใƒผใƒ‰ใฎใ‚ณใƒณใƒ†ใƒณใƒ„" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "ใ‚ตใƒใƒผใƒˆใ—ใฆใ„ใชใ„ใƒ“ใƒ‡ใ‚ชๅฝขๅผ๏ผš{mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "่ฟ”ไฟกใฎ่กจ็คบ่จญๅฎšใฎๆ›ดๆ–ฐใซๅคฑๆ•—ใ—ใพใ—ใŸ" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "ไปฃใ‚ใ‚Šใซๅ†™็œŸใ‚’ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰" @@ -13355,7 +13376,7 @@ msgstr "ใƒ•ใ‚กใ‚คใƒซใ‹ใ‚‰ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰" msgid "Upload from Library" msgstr "ใƒฉใ‚คใƒ–ใƒฉใƒชใƒผใ‹ใ‚‰ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "GIFใ‚’ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ไธญโ€ฆ" @@ -13369,7 +13390,7 @@ msgstr "็”ปๅƒใ‚’ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ไธญโ€ฆ" msgid "Uploading link thumbnail..." msgstr "ใƒชใƒณใ‚ฏใฎใ‚ตใƒ ใƒใ‚คใƒซใ‚’ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ไธญโ€ฆ" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "ใƒ“ใƒ‡ใ‚ชใ‚’ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ไธญโ€ฆ" @@ -13408,7 +13429,7 @@ msgstr "ใƒใƒณใƒ‰ใƒซใจไธ€็ท’ใซใ“ใฎใƒ‘ใ‚นใƒฏใƒผใƒ‰ใ‚’ไฝฟ็”จใ—ใฆใ€ไป–ใฎใ‚ข msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "KWSใพใŸใฏBlueskyใŒใ‚ใชใŸใซ้€ฃ็ตกใ™ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚‹ๅ ดๅˆใซๅ‚™ใˆใฆใ€ใ‚ใชใŸใŒๆŒใฃใฆใ„ใ‚‹ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎ้›ปๅญใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใพใŸใฏๅˆฅใฎๅฎŸ้š›ใฎ้›ปๅญใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใ‚’ไฝฟ็”จใ—ใฆใใ ใ•ใ„ใ€‚" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "ใƒฆใƒผใ‚ถใƒผ" @@ -13510,7 +13531,7 @@ msgstr "่ช่จผใซๅคฑๆ•—ใ—ใพใ—ใŸใ€‚ๅ†ๅบฆ่ฉฆใ—ใฆใใ ใ•ใ„ใ€‚" msgid "Verification settings" msgstr "่ช่จผ่จญๅฎš" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "่ช่จผ่จญๅฎš" @@ -13618,34 +13639,34 @@ msgstr "ใƒ“ใƒ‡ใ‚ช" msgid "Video failed to process" msgstr "ใƒ“ใƒ‡ใ‚ชใฎๅ‡ฆ็†ใซๅคฑๆ•—" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "ใƒ“ใƒ‡ใ‚ชใƒ•ใ‚ฃใƒผใƒ‰" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "{0}ใ‹ใ‚‰ใฎใƒ“ใƒ‡ใ‚ช๏ผš{text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "{0}ใฎใƒ“ใƒ‡ใ‚ชใ€‚ใ‚ฟใƒƒใƒ—ใ—ใฆๅ†็”ŸใพใŸใฏไธ€ๆ™‚ๅœๆญขใ—ใพใ™" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "ใƒ“ใƒ‡ใ‚ชใ‚ฒใƒผใƒ " -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "ใƒ“ใƒ‡ใ‚ชใฏไธ€ๆ™‚ๅœๆญขไธญใงใ™" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "ใƒ“ใƒ‡ใ‚ชใ‚’ๅ†็”Ÿไธญใงใ™" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "ใƒ“ใƒ‡ใ‚ชใŒ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใ€‚" @@ -13653,7 +13674,7 @@ msgstr "ใƒ“ใƒ‡ใ‚ชใŒ่ฆ‹ใคใ‹ใ‚Šใพใ›ใ‚“ใ€‚" msgid "Video settings" msgstr "ใƒ“ใƒ‡ใ‚ชใฎ่จญๅฎš" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "ใƒ“ใƒ‡ใ‚ชใ‚’ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ใ—ใพใ—ใŸ" @@ -13662,17 +13683,17 @@ msgstr "ใƒ“ใƒ‡ใ‚ชใ‚’ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ใ—ใพใ—ใŸ" msgid "Video: {0}" msgstr "ใƒ“ใƒ‡ใ‚ช๏ผš{0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "ใƒ“ใƒ‡ใ‚ช" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "ใƒ“ใƒ‡ใ‚ชใฏ3ๅˆ†ๆœชๆบ€ใงใชใ‘ใ‚Œใฐใชใ‚Šใพใ›ใ‚“ใ€‚" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "่กจ็คบ" @@ -13691,9 +13712,9 @@ msgstr "{0}ใฎใ‚ขใƒใ‚ฟใƒผใ‚’่กจ็คบ" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "{0}ใฎใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ‚’่กจ็คบ" @@ -13724,13 +13745,13 @@ msgstr "่ฉณ็ดฐใซใคใ„ใฆใฎใƒ–ใƒญใ‚ฐใฎ่จ˜ไบ‹ใ‚’่ฆ‹ใ‚‹" msgid "View debug entry" msgstr "ใƒ‡ใƒใƒƒใ‚ฐใ‚จใƒณใƒˆใƒชใƒผใ‚’่กจ็คบ" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "่ฉณ็ดฐใ‚’่กจ็คบ" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "ใ‚นใƒฌใƒƒใƒ‰ใ‚’ใ™ในใฆ่กจ็คบ" @@ -13750,18 +13771,18 @@ msgstr "ใ“ใฎใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใธใฎๅ‚ๅŠ ใƒชใ‚ฏใ‚จใ‚นใƒˆใ‚’่กจ็คบ" msgid "View information about these labels" msgstr "ใ“ใ‚Œใ‚‰ใฎใƒฉใƒ™ใƒซใซ้–ขใ™ใ‚‹ๆƒ…ๅ ฑใ‚’่ฆ‹ใ‚‹" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "ใ‚‚ใฃใจ่กจ็คบ" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "่ฉฑ้กŒใฎใƒ“ใƒ‡ใ‚ชใ‚’ใ‚‚ใฃใจ่ฆ‹ใ‚‹" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "ๆŠ•็จฟใ‚’่กจ็คบ" @@ -13798,15 +13819,15 @@ msgstr "ใ“ใฎใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใฎๆ‹›ๅพ…ใƒชใƒณใ‚ฏใ‚’่กจ็คบ" msgid "View the labeling service provided by @{0}" msgstr "@{0}ใซใ‚ˆใฃใฆๆไพ›ใ•ใ‚Œใ‚‹ใƒฉใƒ™ใƒชใƒณใ‚ฐใ‚ตใƒผใƒ“ใ‚นใ‚’่ฆ‹ใ‚‹" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "ใ“ใฎใƒฆใƒผใ‚ถใƒผใฎ่ช่จผๆƒ…ๅ ฑใ‚’่กจ็คบ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "ใ“ใฎใƒ•ใ‚ฃใƒผใƒ‰ใซใ„ใ„ใญใ—ใŸใƒฆใƒผใ‚ถใƒผใ‚’่ฆ‹ใ‚‹" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "ใƒ“ใƒ‡ใ‚ชใ‚’่กจ็คบ" @@ -13831,7 +13852,7 @@ msgstr "ใƒขใƒ‡ใƒฌใƒผใ‚ทใƒงใƒณใƒชใ‚นใƒˆใ‚’่ฆ‹ใ‚‹" msgid "View your muted accounts" msgstr "ใƒŸใƒฅใƒผใƒˆใ—ใŸใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’่ฆ‹ใ‚‹" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "ใ‚ใชใŸใฎ่ช่จผๆƒ…ๅ ฑใ‚’่กจ็คบ" @@ -13840,7 +13861,7 @@ msgstr "ใ‚ใชใŸใฎ่ช่จผๆƒ…ๅ ฑใ‚’่กจ็คบ" msgid "Views full image" msgstr "็”ปๅƒๅ…จไฝ“ใ‚’่กจ็คบ" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "ใƒ“ใƒ‡ใ‚ชใ‚’ๆฒกๅ…ฅใƒขใƒผใƒ‰ใง่กจ็คบ" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "ใƒใƒƒใƒˆใƒฏใƒผใ‚ฏใงๅ•้กŒใŒ็™บ็”Ÿใ—ใฆใ„ใพใ™ใ€‚ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ—ใฆใใ ใ•ใ„" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "ใƒใƒƒใƒˆใƒฏใƒผใ‚ฏใงๅ•้กŒใŒ็™บ็”Ÿใ—ใฆใ„ใพใ™ใ€‚ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ—ใฆใใ ใ•ใ„" @@ -14043,7 +14064,7 @@ msgstr "ใƒใƒƒใƒˆใƒฏใƒผใ‚ฏใงๅ•้กŒใŒ็™บ็”Ÿใ—ใฆใ„ใพใ™ใ€‚ใ‚‚ใ†ไธ€ๅบฆ่ฉฆใ— msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Blueskyใซๆ–ฐใ—ใ„่ช่จผๆ–นๅผใ‚’ๅฐŽๅ…ฅใ—ใพใ—ใŸใ€‚่ฆ‹ใ‚„ใ™ใ„ใƒใ‚งใƒƒใ‚ฏใƒžใƒผใ‚ฏใงใ™ใ€‚" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "ๅ‚ๅŠ ใ—ใฆใใ ใ•ใ‚‹ใ“ใจใ‚’ๅคงๅค‰ๅฌ‰ใ—ใๆ€ใ„ใพใ™๏ผ" @@ -14064,13 +14085,15 @@ msgstr "ๅคงๅค‰็”ณใ—่จณใ‚ใ‚Šใพใ›ใ‚“ใŒใ€ใ“ใฎใƒชใ‚นใƒˆใ‚’่งฃๆฑบใงใใพใ› msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "ๅคงๅค‰็”ณใ—่จณใ‚ใ‚Šใพใ›ใ‚“ใŒใ€็พๅœจใƒŸใƒฅใƒผใƒˆใ•ใ‚ŒใŸใƒฏใƒผใƒ‰ใ‚’่ชญใฟ่พผใ‚€ใ“ใจใŒใงใใพใ›ใ‚“ใงใ—ใŸใ€‚ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "็”ณใ—่จณใ”ใ–ใ„ใพใ›ใ‚“ใŒใ€ๆคœ็ดขใ‚’ๅฎŒไบ†ใงใใพใ›ใ‚“ใงใ—ใŸใ€‚" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "ๅคงๅค‰็”ณใ—่จณใ‚ใ‚Šใพใ›ใ‚“ใŒใ€ๆคœ็ดขใ‚’ๅฎŒไบ†ใงใใพใ›ใ‚“ใงใ—ใŸใ€‚ๆ•ฐๅˆ†ๅพŒใซใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" @@ -14078,7 +14101,7 @@ msgstr "ๅคงๅค‰็”ณใ—่จณใ‚ใ‚Šใพใ›ใ‚“ใŒใ€ๆคœ็ดขใ‚’ๅฎŒไบ†ใงใใพใ›ใ‚“ใงใ— msgid "We're sorry, you cannot access this screen at this time." msgstr "็”ณใ—่จณใ‚ใ‚Šใพใ›ใ‚“ใŒใ€็พๆ™‚็‚นใงใฏใ“ใฎ็”ป้ขใซใ‚ขใ‚ฏใ‚ปใ‚นใงใใพใ›ใ‚“ใ€‚" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "ๅคงๅค‰็”ณใ—่จณใ‚ใ‚Šใพใ›ใ‚“๏ผ่ฟ”ไฟกใ—ใ‚ˆใ†ใจใ—ใฆใ„ใ‚‹ๆŠ•็จฟใฏๅ‰Š้™คใ•ใ‚Œใพใ—ใŸใ€‚" @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "what's up" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "ๆœ€่ฟ‘ใฉใ†๏ผŸ" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "่ชฐใŒ่ช่จผใงใใพใ™ใ‹๏ผŸ" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "ใŠใฃใจ๏ผ" @@ -14220,21 +14243,21 @@ msgstr "ใƒฆใƒผใ‚ถใƒผใ‚’ใƒ–ใƒญใƒƒใ‚ฏใ™ใ‚‹ใ‹ใ“ใฎไผš่ฉฑใ‚’ๅ‰Š้™คใ—ใพใ™ใ‹๏ผˆ msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "ไฟๅญ˜ใ•ใ‚Œใฆใ„ใ‚‹ไธ‹ๆ›ธใใ‚’่กจ็คบใ™ใ‚‹ๅ‰ใซใ“ใ‚Œใ‚’ไธ‹ๆ›ธใใจใ—ใฆไฟๅญ˜ใ—ใพใ™ใ‹๏ผŸ" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "ๅพŒใง็ทจ้›†ใ™ใ‚‹ใŸใ‚ใซใ“ใ‚Œใ‚’ไธ‹ๆ›ธใใจใ—ใฆไฟๅญ˜ใ—ใพใ™ใ‹๏ผŸ" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "ๆŠ•็จฟใ‚’ๆ›ธใ" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "ๆŠ•็จฟใ‚’ๆ›ธใ" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "่ฟ”ไฟกใ‚’ๆ›ธใ" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "ใŠๅฎขๆง˜ใฏใ€ใ‚ขใƒ—ใƒชใซใ‚ขใ‚ฏใ‚ปใ‚นใ™ใ‚‹ๅ‰ใซๅนด้ฝขใ‚’็ขบ่ชใ™ใ‚‹ใ“ใจใ‚’ๆณ•็š„ใซ่ฆๆฑ‚ใ™ใ‚‹ๅœฐๅŸŸใ‹ใ‚‰Blueskyใซใ‚ขใ‚ฏใ‚ปใ‚นใ—ใฆใ„ใพใ™ใ€‚" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "{0}ใ‚’ใƒ–ใƒญใƒƒใ‚ฏใ—ใฆใ„ใพใ™" @@ -14342,7 +14365,7 @@ msgstr "ใ‚‚ใ†ใƒฉใ‚คใƒ–ไธญใงใฏใ‚ใ‚Šใพใ›ใ‚“" msgid "You are not allowed to upload videos." msgstr "ใ‚ใชใŸใฏใƒ“ใƒ‡ใ‚ชใฎใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ใ‚’่จฑๅฏใ•ใ‚Œใฆใ„ใพใ›ใ‚“ใ€‚" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "ใพใ ่ชฐใ‚‚ใƒ•ใ‚ฉใƒญใƒผใ—ใฆใ„ใพใ›ใ‚“" @@ -14362,7 +14385,7 @@ msgstr "ใ‚ใชใŸใฏ่ช่จผใ•ใ‚Œใฆใ„ใพใ™ใ€‚่กจ็คบๅใ‚’ๅค‰ๆ›ดใ™ใ‚‹ใจใ€่ช msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "ใ‚ใชใŸใฏ่ช่จผใ•ใ‚Œใฆใ„ใพใ™ใ€‚ใƒใƒณใƒ‰ใƒซใ‚’ๅค‰ๆ›ดใ™ใ‚‹ใจใ€่ช่จผใ‚นใƒ†ใƒผใ‚ฟใ‚นใŒๅคฑใ‚ใ‚Œใพใ™ใ€‚<0>่ฉณ็ดฐใฏใ“ใกใ‚‰ใ€‚" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "ใ€Œๆฐ—ใซใชใ‚‹ใ“ใจใ€ใฏใ€Œใ‚ณใƒณใƒ†ใƒณใƒ„ใจใƒกใƒ‡ใ‚ฃใ‚ขใฎ่จญๅฎšใ€ใงใ„ใคใงใ‚‚ๅค‰ๆ›ดใงใใพใ™ใ€‚" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "ๆ–ฐใ—ใ„ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใงใ‚ตใ‚คใƒณใ‚คใƒณใงใใ‚‹ใ‚ˆใ†ใซใชใ‚Šใพใ—ใŸใ€‚" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "ๆŠ•็จฟใฒใจใคใ‚ใŸใ‚Š{MAX_GALLERY_IMAGES, plural, other {็”ปๅƒ#ๆžš}}ใพใงใ—ใ‹ๆทปไป˜ใงใใพใ›ใ‚“" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "ไธ‹ๆ›ธใใฏๆœ€ๅคงใง1000ๆ–‡ๅญ—ใงใ™ใ€‚" @@ -14439,9 +14462,11 @@ msgstr "ใƒใƒฃใƒƒใƒˆใฎๅฑฅๆญดใฏ่ชญใ‚ใพใ™ใŒใ€ๆ–ฐใ—ใ„ใƒกใƒƒใ‚ปใƒผใ‚ธใฏ้€ msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "ๅˆ่จˆใง{MAX_GALLERY_IMAGES, plural, other {#ๆžšใฎ็”ปๅƒ}}ใพใง้ธๆŠžใงใใพใ™ใ€‚" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "ใ“ใ‚Œใฏ่จญๅฎš็”ป้ขใ‹ใ‚‰ๅพŒใงๅค‰ๆ›ดใงใใพใ™ใ€‚" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "ๆœ€ๅคงใง{EMOJI_REACTION_LIMIT, plural, other {#ๆ–‡ๅญ—ใฎ็ตตๆ–‡ๅญ—ใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณ}}ใพใงใ—ใ‹่ฟฝๅŠ ใงใใพใ›ใ‚“" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "ใ‚ใชใŸใฏใพใ ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใ‚’ไฝœๆˆใงใใพใ›ใ‚“ใ€‚" @@ -14555,7 +14581,7 @@ msgstr "ใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใฎ็ขบ่ชใซๆˆๅŠŸใ—ใพใ—ใŸใ€‚ใ“ใฎใƒ€ใ‚คใ‚ขใƒญ msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "ใƒ“ใƒ‡ใ‚ชใฎใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ใฎๅˆถ้™ใซไธ€ๆ™‚็š„ใซๅˆฐ้”ใ—ใพใ—ใŸใ€‚ๆ™‚้–“ใ‚’ใŠใ„ใฆใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "ใ“ใฎไธ‹ๆ›ธใใซๆœชไฟๅญ˜ใฎๅค‰ๆ›ดใŒใ‚ใ‚Šใพใ™ใ€‚ไฟๅญ˜ใ—ใพใ™ใ‹๏ผŸ" @@ -14563,7 +14589,7 @@ msgstr "ใ“ใฎไธ‹ๆ›ธใใซๆœชไฟๅญ˜ใฎๅค‰ๆ›ดใŒใ‚ใ‚Šใพใ™ใ€‚ไฟๅญ˜ใ—ใพใ™ใ‹ msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "ๆœชไฟๅญ˜ใฎๅค‰ๆ›ดใŒใ‚ใ‚Šใพใ™ใ€‚ๆ—ขๅญ˜ใฎไธ‹ๆ›ธใใ‚’่กจ็คบใ™ใ‚‹ๅ‰ใซไฟๅญ˜ใ—ใพใ™ใ‹๏ผŸ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ใพใ ไฝœๆˆใ—ใฆใ„ใพใ›ใ‚“๏ผ" @@ -14614,7 +14640,7 @@ msgstr "่ฟฝๅŠ ใงใใ‚‹ใฎใฏ{STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PAC msgid "You may only add up to 3 feeds" msgstr "3ใคใพใงใƒ•ใ‚ฃใƒผใƒ‰ใ‚’่ฟฝๅŠ ใงใใพใ™" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "ใƒกใƒณใƒใƒผใ‚’ๅค–ใ™ใซใฏใ€ใƒใƒฃใƒƒใƒˆใฎใ‚ชใƒผใƒŠใƒผใงใชใ‘ใ‚Œใฐใชใ‚Šใพใ›ใ‚“ใ€‚" @@ -14622,7 +14648,7 @@ msgstr "ใƒกใƒณใƒใƒผใ‚’ๅค–ใ™ใซใฏใ€ใƒใƒฃใƒƒใƒˆใฎใ‚ชใƒผใƒŠใƒผใงใชใ‘ใ‚Œใฐ msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Blueskyใ‚’ไฝฟ็”จใ™ใ‚‹ใซใฏใ€13ๆญณไปฅไธŠใงใ‚ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚Šใพใ™ใ€‚่ฉณ็ดฐใซใคใ„ใฆใฏใ€<0>ๅˆฉ็”จ่ฆ็ด„ใ‚’ใ”่ฆงใใ ใ•ใ„ใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "ใ‚นใ‚ฟใƒผใ‚ฟใƒผใƒ‘ใƒƒใ‚ฏใ‚’ไฝœๆˆใ™ใ‚‹ใซใฏใ€ๅฐ‘ใชใใจใ‚‚7ไบบใ‚’ใƒ•ใ‚ฉใƒญใƒผใ—ใชใ‘ใ‚Œใฐใชใ‚Šใพใ›ใ‚“ใ€‚" @@ -14639,7 +14665,7 @@ msgstr "ใƒกใƒ‡ใ‚ฃใ‚ขใƒฉใ‚คใƒ–ใƒฉใƒชใธใฎใ‚ขใ‚ฏใ‚ปใ‚นใ‚’่จฑๅฏใ™ใ‚‹ๅฟ…่ฆใŒใ‚ msgid "You need to verify your email address before you can enable email 2FA." msgstr "2่ฆ็ด ่ช่จผใƒกใƒผใƒซใ‚’ๆœ‰ๅŠนใซใ™ใ‚‹ๅ‰ใซใ€ใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใ‚’็ขบ่ชใ™ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚Šใพใ™ใ€‚" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "ใ‚ใชใŸใฏใ“ใฎใƒใƒฃใƒƒใƒˆใฎใ‚ชใƒผใƒŠใƒผใงใ™" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "ไปŠใ™ใใ‚ขใƒ—ใƒชใ‚’ๅ†่ตทๅ‹•ใ—ใŸใปใ†ใŒ่‰ฏใ„ใงใ—ใ‚‡ใ†ใ€‚" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "ใ‚ใชใŸใฏ{0}ใจใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณใ—ใพใ—ใŸ" @@ -14667,15 +14693,15 @@ msgstr "ใ‚ใชใŸใฏ{target}ใซ{0}ใจใƒชใ‚ขใ‚ฏใ‚ทใƒงใƒณใ—ใพใ—ใŸ" msgid "You recently changed your birthdate" msgstr "ๆœ€่ฟ‘ใ€็”Ÿๅนดๆœˆๆ—ฅใ‚’ๅค‰ๆ›ดใ—ใพใ—ใŸ" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "่ฟ”ไฟกใ—ใพใ—ใŸ" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "{originalName}ใ•ใ‚“ใซ่ฟ”ไฟกใ—ใพใ—ใŸ" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "่‡ชๅˆ†ใฎๆŠ•็จฟใซ่ฟ”ไฟกใ—ใพใ—ใŸ" @@ -14715,11 +14741,11 @@ msgstr "ๆ‹›ๅพ…ใ•ใ‚Œใชใ„้™ใ‚Šใ€ๅ†ใณๅ‚ๅŠ ใ™ใ‚‹ใ“ใจใฏใงใใพใ›ใ‚“ใ€‚ msgid "You: {message}" msgstr "ใ‚ใชใŸ: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎไฝœๆˆใ‚’ๅฎŒไบ†ใ™ใ‚‹ใจใŠใ™ใ™ใ‚ใฎใƒฆใƒผใ‚ถใƒผใ‚„ใƒ•ใ‚ฃใƒผใƒ‰ใ‚’ใƒ•ใ‚ฉใƒญใƒผใ—ใพใ™๏ผ" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฎไฝœๆˆใ‚’ๅฎŒไบ†ใ™ใ‚‹ใจใŠใ™ใ™ใ‚ใฎใƒฆใƒผใ‚ถใƒผใ‚’ใƒ•ใ‚ฉใƒญใƒผใ—ใพใ™๏ผ" @@ -14791,7 +14817,7 @@ msgstr "ใ‚ขใ‚ฏใƒ†ใ‚ฃใƒ–ใชใ‚ณใƒณใƒ†ใƒณใƒ„ใฎๆœ€ๅพŒใซๅˆฐ้”ใ—ใพใ—ใŸใ€‚" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ใƒ•ใ‚ฃใƒผใƒ‰ใฏใ“ใ“ใพใงใงใ™๏ผใ‚‚ใฃใจใƒ•ใ‚ฉใƒญใƒผใ™ใ‚‹ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’่ฆ‹ใคใ‘ใพใ—ใ‚‡ใ†ใ€‚" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "ไธ‹ๆ›ธใใฎๆ•ฐใฎไธŠ้™ใซ้”ใ—ใพใ—ใŸ" @@ -14799,7 +14825,7 @@ msgstr "ไธ‹ๆ›ธใใฎๆ•ฐใฎไธŠ้™ใซ้”ใ—ใพใ—ใŸ" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "ใƒชใ‚ฏใ‚จใ‚นใƒˆๆ•ฐใฎไธŠ้™ใซ้”ใ—ใพใ—ใŸใ€‚ๅพŒใงใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "ใƒ•ใ‚ฃใƒซใ‚ฟใƒผใฎไธŠ้™ใงใ‚ใ‚‹{MAX_FILTERS, plural, other {#ๅ€‹}}ใซ้”ใ—ใพใ—ใŸใ€‚ๆ–ฐใ—ใ„ใƒ•ใ‚ฃใƒซใ‚ฟใƒผใ‚’ไฝœๆˆใ™ใ‚‹ไปฃใ‚ใ‚Šใซใ€ๆ—ขๅญ˜ใฎใƒ•ใ‚ฃใƒซใ‚ฟใƒผใซๅ€คใ‚’่ฟฝๅŠ ใ—ใฆใใ ใ•ใ„ใ€‚" @@ -14815,11 +14841,11 @@ msgstr "ใƒ“ใƒ‡ใ‚ชใฎใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ใฎไธ€ๆ—ฅใฎไธŠ้™ใซๅˆฐ้”ใ—ใพใ—ใŸ๏ผˆ msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "ใƒ“ใƒ‡ใ‚ชใฎใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ใฎไธ€ๆ—ฅใฎไธŠ้™ใซๅˆฐ้”ใ—ใพใ—ใŸ๏ผˆใƒ“ใƒ‡ใ‚ชใฎๆ•ฐใŒๅคšใ™ใŽใพใ™๏ผ‰" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "่ฆ‹ใ‚‹ในใใƒ“ใƒ‡ใ‚ชใŒใชใใชใ‚Šใพใ—ใŸใ€‚ไผ‘ๆ†ฉใ‚’ๅ–ใฃใฆใ‚‚ใ„ใ„ๆ™‚้–“ใ‹ใ‚‚๏ผŸ" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "ใ‚ใชใŸใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆ" @@ -14835,11 +14861,11 @@ msgstr "ใ‚ใชใŸใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฏๅœๆญขใ•ใ‚Œใฆใ„ใพใ™" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "ใ‚ใชใŸใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฏไฝœๆˆใ—ใฆ้–“ใ‚‚ใชใ„ใŸใ‚ๅ‹•็”ปใ‚’ใ‚ขใƒƒใƒ—ใƒญใƒผใƒ‰ใงใใพใ›ใ‚“ใ€‚ใ‚‚ใ†ไธ€ๅบฆใŠ่ฉฆใ—ใใ ใ•ใ„ใ€‚" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "ใ‚ใชใŸใฎใ‚ขใ‚ซใ‚ฆใƒณใƒˆใฏๆ–ฐใ—ใ™ใŽใพใ™" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "ๆ–ฐใ—ใ„ใ‚ฐใƒซใƒผใƒ—ใƒใƒฃใƒƒใƒˆใ‚’ไฝœใ‚‹ใซใฏใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ไฝœใฃใฆๅฐ‘ใชใใจใ‚‚7ๆ—ฅ็ตŒใฃใฆใชใใฆใฏใชใ‚Šใพใ›ใ‚“ใ€‚" @@ -14896,7 +14922,7 @@ msgstr "ใ‚ใชใŸใฎใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚น" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "ใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใŒ็„กๅŠนใชใ‚ˆใ†ใงใ™ใ€‚" @@ -14930,8 +14956,8 @@ msgstr "ใƒกใƒผใƒซใ‚ขใƒ‰ใƒฌใ‚นใ‹ใ‚‰ใƒ›ใ‚นใƒ†ใ‚ฃใƒณใ‚ฐใƒ—ใƒญใƒใ‚คใƒ€ใƒผใ‚’ๆคœๅ‡บ msgid "Your hosting provider is detected automatically from the username you enter." msgstr "ๅ…ฅๅŠ›ใ—ใŸใƒฆใƒผใ‚ถใƒผๅใ‹ใ‚‰ใ€ใƒ›ใ‚นใƒ†ใ‚ฃใƒณใ‚ฐใƒ—ใƒญใƒใ‚คใƒ€ใƒผใŒ่‡ชๅ‹•็š„ใซๆคœๅ‡บใ•ใ‚Œใพใ—ใŸใ€‚" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "ใ€Œๆฐ—ใซใชใ‚‹ใ“ใจใ€ใ‚’ๆ›ดๆ–ฐใ—ใพใ—ใŸ๏ผ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "ใ€Œๆฐ—ใซใชใ‚‹ใ“ใจใ€ใ‚’่จญๅฎšใ™ใ‚‹ใจใ€ๅฅฝใใชใ‚‚ใฎใ‚’่ฆ‹ใคใ‘ใ‚„ใ™ใใชใ‚Šใพใ™๏ผ" @@ -14967,11 +14993,11 @@ msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใŒๆญฃๅธธใซๅค‰ๆ›ดใ•ใ‚Œใพใ—ใŸ๏ผใ“ใ‚Œใ‹ใ‚‰Bluesky msgid "Your password must be at least 8 characters long." msgstr "ใƒ‘ใ‚นใƒฏใƒผใƒ‰ใฏ 8 ๆ–‡ๅญ—ไปฅไธŠใงใ‚ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚Šใพใ™ใ€‚" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "ๆŠ•็จฟใŒ้€ไฟกใ•ใ‚Œใพใ—ใŸ" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "ๆŠ•็จฟใŒ้€ไฟกใ•ใ‚Œใพใ—ใŸ" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "ใ‚ใชใŸใฎไธป่ฆ่จ€่ชž" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "ใ‚ใชใŸใฎใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซ็”ปๅƒ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "ใ‚ใชใŸใฎใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซๅ†™็œŸใฎใพใ‚ใ‚Šใ‚’ใ€ไป–ใฎใƒฆใƒผใ‚ถใƒผใฎใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซๅ†™็œŸใŒๅŒๅฟƒๅ††็Šถใซๅ–ใ‚Šๅ›ฒใ‚“ใงใ„ใ‚‹" @@ -14992,7 +15018,7 @@ msgstr "ใ‚ใชใŸใฎใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซๅ†™็œŸใฎใพใ‚ใ‚Šใ‚’ใ€ไป–ใฎใƒฆใƒผใ‚ถใƒผ msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "ใ‚ใชใŸใฎใƒ—ใƒญใƒ•ใ‚ฃใƒผใƒซใ€ๆŠ•็จฟใ€ใƒ•ใ‚ฃใƒผใƒ‰ใ€ใใ—ใฆใƒชใ‚นใƒˆใฏไป–ใฎBlueskyใƒฆใƒผใ‚ถใƒผใซ่ฆ‹ใˆใชใใชใ‚Šใพใ™ใ€‚ใƒญใ‚ฐใ‚คใƒณใ™ใ‚‹ใ“ใจใงใ„ใคใงใ‚‚ใ‚ขใ‚ซใ‚ฆใƒณใƒˆใ‚’ๅ†ๆœ‰ๅŠนๅŒ–ใงใใพใ™ใ€‚" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "่ฟ”ไฟกใŒ้€ไฟกใ•ใ‚Œใพใ—ใŸ" @@ -15005,7 +15031,7 @@ msgstr "ๅ ฑๅ‘Šใฏ <0>{0}ใซ้€ไฟกใ•ใ‚Œใพใ™ใ€‚" msgid "Your selected interests help us serve you content you care about." msgstr "ใ€Œๆฐ—ใซใชใ‚‹ใ“ใจใ€ใฏ่ˆˆๅ‘ณใ‚’ๅผ•ใใ‚ณใƒณใƒ†ใƒณใƒ„ใ‚’ๆไพ›ใ™ใ‚‹ใŸใ‚ใซๅฝน็ซ‹ใฆใพใ™ใ€‚" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "ใ‚ใชใŸใฎใ‚นใƒฌใƒƒใƒ‰ใซใฏ็ฉบใฎๆŠ•็จฟใŒใ‚ใ‚Šใพใ™ใŒใ€ใใ‚Œใ‚‰ใฏใ‚นใ‚ญใƒƒใƒ—ใ•ใ‚Œใพใ™ใ€‚ไป–ใฎๆฎ‹ใ‚ŠใฎๆŠ•็จฟใฏใ‚นใƒฌใƒƒใƒ‰ใจใ—ใฆๅ…ฌ้–‹ใ•ใ‚Œใพใ™ใ€‚" diff --git a/src/locale/locales/kab/messages.po b/src/locale/locales/kab/messages.po index da997055fd..170ad3acc2 100644 --- a/src/locale/locales/kab/messages.po +++ b/src/locale/locales/kab/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: kab\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Kabyle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -1560,7 +1511,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1591,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1656,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1838,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1927,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2244,7 @@ msgstr "" msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2256,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2293,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -2425,28 +2388,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2468,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2819,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2844,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2968,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3106,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3218,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3230,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3263,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3585,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3618,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3627,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3659,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3855,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3949,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,28 +4064,28 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4368,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4467,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4476,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4500,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4576,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4618,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4652,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4723,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4854,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +4996,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5497,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "" @@ -6198,7 +6154,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "" msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" @@ -6776,12 +6726,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6766,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6802,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6814,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6824,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6867,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6943,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7007,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7026,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7035,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7043,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7061,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7112,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7260,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7608,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7617,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "" msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8198,11 +8190,7 @@ msgstr "" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8325,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8345,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8466,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8543,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8569,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8627,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8726,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8925,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9076,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "" @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "" @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "" @@ -9269,7 +9269,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9340,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,21 +10703,26 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13376,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13674,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13683,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13745,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13818,8 +13839,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14156,8 @@ msgstr "" msgid "whatโ€™s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "" @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/km/messages.po b/src/locale/locales/km/messages.po index 229662102d..4787925dcf 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Khmer\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} แž€แŸ†แž–แžปแž„แžแžถแž˜" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} แž˜แžทแž“แžขแžถแž…แž•แŸ’แž‰แžพแžŸแžถแžšแž”แžถแž“แž‘แŸ" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {แžขแŸ’แž“แž€แž€แŸ†แž–แžปแž„แžแžถแž˜} other #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "แŸฃแŸ  แžแŸ’แž„แŸƒ" msgid "7 days" msgstr "แŸง แžแŸ’แž„แŸƒ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "แž—แžถแž–แž„แžถแž™แžŸแŸ’แžšแžฝแž›" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แž˜แžถแž“แž—แžถแž–แž„แžถแž™แžŸแŸ’แžšแžฝแž›" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "แž‚แžŽแž“แžธแžแŸ’แžšแžผแžœแž”แžถแž“แž”แžทแž‘แžŸแŸ†แžกแŸแž„แžŠแŸ„แž™แž” msgid "Account options" msgstr "แž‡แž˜แŸ’แžšแžพแžŸแž‚แžŽแž“แžธ" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "แž‚แžŽแž“แžธแžแŸ’แžšแžผแžœแž”แžถแž“แžŠแž€แž…แŸแž‰แž–แžธแž€แžถแžšแž…แžผแž›แž”แŸ’แžšแžพแžšแž แŸแžŸ" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "แž”แž“แŸ’แžแŸ‚แž˜แžขแžแŸ’แžแž”แž‘แž‡แŸ†แž“แžฝแžŸ (แž‡แžถแž‡แž˜แŸ’แžš msgid "Add another account" msgstr "แž”แž“แŸ’แžแŸ‚แž˜แž‚แžŽแž“แžธแž•แŸ’แžŸแŸแž„แž‘แŸ€แž" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "แž”แž“แŸ’แžแŸ‚แž˜แž”แŸ’แžšแž€แžถแžŸแž˜แžฝแž™แž‘แŸ€แž" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "แž”แž‰แŸ’แž…แžผแž›แž–แŸแžแŸŒแž˜แžถแž“แž“แŸแŸ‡แž‘แŸ…แž€แŸ’แž“แžปแž„แž˜ msgid "Add to lists" msgstr "แž”แž“แŸ’แžแŸ‚แž˜แž‘แŸ…แž”แž‰แŸ’แž‡แžธ" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "แž˜แž“แžปแžŸแŸ’แžŸแž–แŸแž‰แžœแŸแž™" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "แž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แž‘แžถแŸ†แž„แžขแžŸแŸ‹แžŠแŸ‚แž›แžขแŸ’แž“แž€แž”แžถแž“แžšแž€แŸ’แžŸแžถแž‘แžปแž€ แž“แŸ…แž€แž“แŸ’แž›แŸ‚แž„แžแŸ‚แž˜แžฝแž™" @@ -1560,7 +1511,7 @@ msgstr "แžขแž“แžปแž‰แŸ’แž‰แžถแžแžฑแŸ’แž™แž…แžผแž›แž”แŸ’แžšแžพแžŸแžถแžšแž•แŸ’แž‘ msgid "Already have a code?" msgstr "แž˜แžถแž“แž›แŸแžแž€แžผแžŠแžšแžฝแž…แž แžพแž™?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "\"แžขแŸŠแžธแž˜แŸ‚แž›โ€‹แžแŸ’แžšแžผแžœโ€‹แž”แžถแž“โ€‹แž•แŸ’แž‰แžพโ€‹แž‘ msgid "An error has occurred" msgstr "แž€แŸ†แž แžปแžŸแž˜แžฝแž™แž”แžถแž“แž€แžพแžแžกแžพแž„" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "แž€แŸ†แž แžปแžŸแž˜แžฝแž™แž”แžถแž“แž€แžพแžแžกแžพแž„" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "แž€แŸ†แž แžปแžŸแž”แžถแž“แž€แžพแžแžกแžพแž„แžแžŽแŸˆแž–แŸแž›แž€แŸ†แž–แžปแž„แž”แž„แŸ’แž€แžพแžแž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แŸ” แž…แž„แŸ‹แžŸแžถแž€แž›แŸ’แž”แž„แž˜แŸ’แžแž„แž‘แŸ€แžแž‘แŸ?" @@ -1640,11 +1591,11 @@ msgstr "แž€แŸ†แž แžปแžŸแž”แžถแž“แž€แžพแžแžกแžพแž„แžแžŽแŸˆแž–แŸแž›แž€แŸ†แž–แžป msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "แž€แŸ†แž แžปแžŸแž”แžถแž“แž€แžพแžแžกแžพแž„แžแžŽแŸˆแž–แŸแž›แž€แŸ†แž–แžปแž„แž•แŸ’แž‘แžปแž€แžœแžธแžŠแŸแžขแžผแŸ” แžŸแžผแž˜แž–แŸ’แž™แžถแž™แžถแž˜แž˜แŸ’แžแž„แž‘แŸ€แžแž“แŸ…แž–แŸแž›แž€แŸ’แžšแŸ„แž™" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "แž€แŸ†แž แžปแžŸแž”แžถแž“แž€แžพแžแžกแžพแž„แžแžŽแŸˆแž–แŸแž›แž€แŸ†แž–แžปแž„แž•แŸ’แž‘แžปแž€แžœแžธแžŠแŸแžขแžผแŸ” แžŸแžผแž˜แž–แŸ’แž™แžถแž™แžถแž˜แž˜แŸ’แžแž„แž‘แŸ€แž" @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "แž”แž‰แŸ’แž แžถแžŠแŸ‚แž›แž˜แžทแž“แžแŸ’แžšแžผแžœแž”แžถแž“แžšแžฝแž˜แž”แž‰แŸ’แž…แžผแž›แž“แŸ…แž€แŸ’แž“แžปแž„แž‡แž˜แŸ’แžšแžพแžŸแž‘แžถแŸ†แž„แž“แŸแŸ‡" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "แž”แž‰แŸ’แž แžถแž˜แžฝแž™แž”แžถแž“แž€แžพแžแžกแžพแž„แžแžŽแŸˆแž–แŸแž›แž–แŸ’แž™แžถแž™แžถแž˜แž”แžพแž€แž€แžถแžšแž‡แž‡แŸ‚แž€" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "แžˆแŸ’แž˜แŸ„แŸ‡แž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แž€แž˜แŸ’แž˜แžœแžทแž’ msgid "App passwords" msgstr "แž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แž€แž˜แŸ’แž˜แžœแžทแž’แžธ" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "แž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แž€แž˜แŸ’แž˜แžœแžทแž’แžธ" @@ -1891,8 +1838,8 @@ msgstr "แž”แŸ’แžแžนแž„แžงแž‘แŸ’แž’แžšแžŽแŸแž›แžพแž€แžถแžšแžŸแž˜แŸ’แžšแŸแž…แž… msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "แž”แžถแž“แžšแž€แŸ’แžŸแžถแž‘แžปแž€แž–แžธ {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1927,7 @@ msgstr "แžแžพแžขแŸ’แž“แž€แž”แŸ’แžšแžถแž€แžŠแžแžถแž…แž„แŸ‹แž›แžปแž”แžœแžถแž…แŸ msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "แžแžพแžขแŸ’แž“แž€แž”แŸ’แžšแžถแž€แžŠแžแžถแž…แž„แŸ‹แž”แŸ„แŸ‡แž”แž„แŸ‹แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡แž“แŸแŸ‡แž‘แŸ?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "แž…แžถแž€แŸ‹แžœแžธแžŠแŸแžขแžผ แž“แžทแž„ GIFs แžŠแŸ„แž™แžŸแŸ’แžœแŸแž™ msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "แž˜แžปแž“แž“แžนแž„แž”แž„แŸ’แž€แžพแžแž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜ แžขแŸ’แž“แž€แžแŸ’แžšแžผแžœแžแŸ‚แž•แŸ’แž‘แŸ€แž„แž•แŸ’แž‘แžถแžแŸ‹แžขแŸŠแžธแž˜แŸ‚แž›แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แž‡แžถแž˜แžปแž“แžŸแžทแž“" @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "แžแŸ’แž„แŸƒแž€แŸ†แžŽแžพแž" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "แžšแžถแžšแžถแŸ†แž„" msgid "Blocked accounts" msgstr "แž‚แžŽแž“แžธโ€‹แžŠแŸ‚แž›โ€‹แž”แžถแž“โ€‹แž‘แž”แŸ‹แžŸแŸ’แž€แžถแžแŸ‹" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "แž‚แžŽแž“แžธโ€‹แžŠแŸ‚แž›โ€‹แž”แžถแž“โ€‹แž‘แž”แŸ‹แžŸแŸ’แž€แžถแžแŸ‹" @@ -2282,7 +2244,7 @@ msgstr "แž‚แžŽแž“แžธโ€‹แžŠแŸ‚แž›โ€‹แž”แžถแž“โ€‹แž‘แž”แŸ‹แžŸแŸ’แž€แžถแžแŸ‹โ€‹แž˜ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "แž‚แžŽแž“แžธโ€‹แžŠแŸ‚แž›โ€‹แž”แžถแž“โ€‹แž‘แž”แŸ‹แžŸแŸ’แž€แžถแžแŸ‹โ€‹แž˜แžทแž“โ€‹แžขแžถแž…โ€‹แž†แŸ’แž›แžพแž™โ€‹แžแž”โ€‹แž€แŸ’แž“แžปแž„โ€‹แžแŸ’แžŸแŸ‚โ€‹แžŸแŸ’แžšแžกแžถแž™โ€‹แžšแž”แžŸแŸ‹โ€‹แžขแŸ’แž“แž€ แž›แžพแž€โ€‹แžกแžพแž„โ€‹แž–แžธโ€‹แžขแŸ’แž“แž€ แžฌโ€‹แž’แŸ’แžœแžพโ€‹แžขแž“แŸ’แžแžšแž€แž˜แŸ’แž˜โ€‹แž‡แžถแž˜แžฝแž™โ€‹แžขแŸ’แž“แž€แŸ” แžขแŸ’แž“แž€แž“แžนแž„แž˜แžทแž“แžƒแžพแž‰แžแŸ’แž›แžนแž˜แžŸแžถแžšแžšแž”แžŸแŸ‹แž–แžฝแž€แž‚แŸแž‘แŸ แž แžพแž™แž–แžฝแž€แž‚แŸแž“แžนแž„แžแŸ’แžšแžผแžœแž”แžถแž“แžšแžถแžšแžถแŸ†แž„แž˜แžทแž“แžฑแŸ’แž™แžƒแžพแž‰แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "แž€แžถแžšแž‘แž”แŸ‹แžŸแŸ’แž€แžถแžแŸ‹แž˜แžทแž“แžšแžถแžšแžถแŸ†แž„แžขแŸ’แž“แž€แžŠแžถแž€แŸ‹แžŸแŸ’แž›แžถแž€แž“แŸแŸ‡แž–แžธแž€แžถแžšแžŠแžถแž€แŸ‹แžŸแŸ’แž›แžถแž€แž“แŸ…แž›แžพแž‚แžŽแž“แžธแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แž“แŸ„แŸ‡แž‘แŸ" @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky แž˜แžทแž“แžขแžถแž…แž”แž‰แŸ’แž‡แžถแž€แŸ‹แž–แžธแž—แžถแž–แžแŸ’แžšแžนแž˜แžแŸ’แžšแžผแžœแž“แŸƒแž€แžถแž›แž”แžšแžทแž…แŸ’แž†แŸแž‘แžŠแŸ‚แž›แž”แžถแž“แž‘แžถแž˜แž‘แžถแžšแž“แŸ„แŸ‡แž‘แŸ" @@ -2330,7 +2293,7 @@ msgstr "Bluesky แž‚แžบแž‡แžถแž”แžŽแŸ’แžแžถแž‰แž”แžพแž€แž…แŸ†แž แžŠแŸ‚แž›แžขแŸ’ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky แž‚แžบแž›แŸ’แžขแž‡แžถแž˜แžฝแž™แž˜แžทแžแŸ’แžแž—แž€แŸ’แžแžท!" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky แž“แžนแž„แž‡แŸ’แžšแžพแžŸแžšแžพแžŸแžŸแŸ†แžŽแžปแŸ†แž“แŸƒแž‚แžŽแž“แžธแžŠแŸ‚แž›แž”แžถแž“แžŽแŸ‚แž“แžถแŸ†แž–แžธแž˜แž“แžปแžŸแŸ’แžŸแž“แŸ…แž€แŸ’แž“แžปแž„แž”แžŽแŸ’แžแžถแž‰แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "แžšแž€แž˜แžพแž›แž–แŸแžแŸŒแž˜แžถแž“แž”แž“แŸ’แžแŸ‚แž˜แž“แŸ…แž›แžพแž‘แŸ†แž–แŸแžšแžšแžปแž€แžšแž€" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "แžšแž€แž˜แžพแž›แž€แžถแžšแžŽแŸ‚แž“แžถแŸ†แž”แž“แŸ’แžแŸ‚แž˜" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "แžšแž€แž˜แžพแž›แž€แžถแžšแžŽแŸ‚แž“แžถแŸ†แž”แž“แŸ’แžแŸ‚แž˜แž“แŸ…แž›แžพแž‘แŸ†แž–แŸแžšแžšแžปแž€แžšแž€" @@ -2425,24 +2388,25 @@ msgstr "แžšแž€แž˜แžพแž›แž€แžถแžšแžŽแŸ‚แž“แžถแŸ†แž”แž“แŸ’แžแŸ‚แž˜แž“แŸ…แž›แžพแž‘ msgid "Browse other feeds" msgstr "แžšแž€แž˜แžพแž›แž–แŸแžแŸŒแž˜แžถแž“แž•แŸ’แžŸแŸแž„แž‘แŸ€แž" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "แžŠแŸ„แž™ {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2468,11 @@ msgstr "แžแžถแž˜แžšแž™แŸˆแž€แžถแžšแž”แž„แŸ’แž€แžพแžแž‚แžŽแž“แžธแž˜แžฝแž™ แžข msgid "By creating an account you agree to the <0>Terms of Service." msgstr "แžแžถแž˜แžšแž™แŸˆแž€แžถแžšแž”แž„แŸ’แž€แžพแžแž‚แžŽแž“แžธแž˜แžฝแž™ แžขแŸ’แž“แž€แž™แž›แŸ‹แž–แŸ’แžšแž˜แž“แžนแž„ <0>แž›แž€แŸ’แžแžแžŽแŸ’แžŒแž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "แž€แžถแž˜แŸแžšแŸ‰แžถ" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "แž”แŸ„แŸ‡แž”แž„แŸ‹แž€แžถแžšแž”แžพแž€แžŠแŸ†แžŽแžพแžšแž€แžถแžšแžกแžพแž„แžœ msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "แž”แŸ„แŸ‡แž”แž„แŸ‹แž€แžถแžšแžŸแŸ’แžœแŸ‚แž„แžšแž€" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "แž”แžถแž“แž”แžทแž‘แž€แžถแžšแž‡แž‡แŸ‚แž€" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แž€แžถแžšแž‡แž‡แŸ‚แž€" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "แž”แžถแž“โ€‹แž”แžพแž€โ€‹แž€แžถแžšโ€‹แž‡แž‡แŸ‚แž€" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "แž‡แŸ’แžšแžพแžŸแžšแžพแžŸแžœแžทแž’แžธแžŸแžถแžŸแŸ’แžแŸ’แžšแž•แŸ’แž‘แŸ€แž„ msgid "Choose Feeds" msgstr "แž‡แŸ’แžšแžพแžŸแžšแžพแžŸแž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "แž‡แŸ’แžšแžพแžŸแžšแžพแžŸแžŸแž˜แŸ’แžšแžถแž”แŸ‹แžแŸ’แž‰แžปแŸ†" @@ -2854,7 +2819,7 @@ msgstr "แž‡แŸ’แžšแžพแžŸแžšแžพแžŸแž˜แž“แžปแžŸแŸ’แžŸ" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "แž‡แŸ’แžšแžพแžŸแžšแžพแžŸแž–แžŽแŸŒแž“แŸแŸ‡แž‡แžถแžšแžผแž”แžแŸ†แžŽแžถแž„แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" @@ -2879,7 +2844,7 @@ msgstr "" msgid "Choose your password" msgstr "แž‡แŸ’แžšแžพแžŸแžšแžพแžŸแž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "แž…แžปแž…แžŠแžพแž˜แŸ’แž”แžธแž–แŸ’แž™แžถแž™แžถแž˜แžŸแžถแžšแžŠแŸ‚แž›แž”แžšแžถแž‡แŸแž™แž˜แŸ’แžแž„แž‘แŸ€แž" @@ -3003,7 +2968,7 @@ msgstr "แž…แžปแž…แžŠแžพแž˜แŸ’แž”แžธแž–แŸ’แž™แžถแž™แžถแž˜แžŸแžถแžšแžŠแŸ‚แž›แž”แžš #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "แž…แžปแž…แžŠแžพแž˜แŸ’แž”แžธแž–แŸ’แž™แžถแž™แžถแž˜แžŸแžถแžšแžŠแŸ‚แž›แž”แžš msgid "Close" msgstr "แž”แžทแž‘" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "แž”แžทแž‘แž”แŸ’แžšแžขแž”แŸ‹แžŸแž€แž˜แŸ’แž˜" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "แž”แžทแž‘แž”แŸ’แžšแžขแž”แŸ‹แž“แŸแŸ‡แŸ”" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "แž”แžทแž‘แž€แžถแžšแž‡แžผแž“แžŠแŸ†แžŽแžนแž„แžขแŸ†แž–แžธแž€แžถแžšแžขแžถแž”แŸ‹แžŠแŸแžแž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "แžšแž”แŸ€แž”แž–แžŽแŸŒ" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "แžšแžฟแž„แž€แŸ†แž”แŸ’แž›แŸ‚แž„" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "แž‚แŸ„แž›แž€แžถแžšแžŽแŸแžŽแŸ‚แž“แžถแŸ†แžŸแž แž‚แž˜แž“แŸ" @@ -3141,7 +3106,7 @@ msgstr "แž‚แŸ„แž›แž€แžถแžšแžŽแŸแžŽแŸ‚แž“แžถแŸ†แžŸแž แž‚แž˜แž“แŸ" msgid "Complete onboarding and start using your account" msgstr "แž”แž‰แŸ’แž…แž”แŸ‹แž€แžถแžšแž”แžพแž€แžŠแŸ†แžŽแžพแžšแž€แžถแžš แž แžพแž™แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แž”แŸ’แžšแžพแž‚แžŽแž“แžธแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "แž”แž‰แŸ’แž…แž”แŸ‹แž€แžถแžšแž”แŸ’แžšแžˆแž˜" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "แžŸแžšแžŸแŸแžšแžขแžแŸ’แžแž”แž‘แžแŸ’แž˜แžธ" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "แžŸแžšแžŸแŸแžšแž€แžถแžšแž†แŸ’แž›แžพแž™แžแž”" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "แž€แŸ†แž–แžปแž„โ€‹แž”แž„แŸ’แž แžถแž”แŸ‹โ€‹แžœแžธแžŠแŸแžขแžผ..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "แž‘แžถแž€แŸ‹แž‘แž„แž•แŸ’แž“แŸ‚แž€แž‚แžถแŸ†แž‘แŸ’แžš" @@ -3253,7 +3218,7 @@ msgstr "แžแŸ’แž›แžนแž˜แžŸแžถแžš แž“แžทแž„แž”แŸ’แžšแž–แŸแž“แŸ’แž’แž•แŸ’แžŸแž– msgid "Content and media" msgstr "แžแŸ’แž›แžนแž˜แžŸแžถแžš แž“แžทแž„แž”แŸ’แžšแž–แŸแž“แŸ’แž’แž•แŸ’แžŸแž–แŸ’แžœแž•แŸ’แžŸแžถแž™" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "แžแŸ’แž›แžนแž˜แžŸแžถแžš แž“แžทแž„แž”แŸ’แžšแž–แŸแž“แŸ’แž’แž•แŸ’แžŸแž–แŸ’แžœแž•แŸ’แžŸแžถแž™" @@ -3265,10 +3230,6 @@ msgstr "แž˜แžถแžแžทแž€แžถแžแŸ’แžšแžผแžœแž”แžถแž“แžšแžถแžšแžถแŸ†แž„" msgid "Content filters" msgstr "แžแž˜แŸ’แžšแž„แž˜แžถแžแžทแž€แžถ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "แž€แžถแžšแž–แŸ’แžšแž˜แžถแž“แžขแŸ†แž–แžธแžแŸ’แž›แžนแž˜แžŸแžถแžš" msgid "Content warnings" msgstr "แž€แžถแžšแž–แŸ’แžšแž˜แžถแž“แžขแŸ†แž–แžธแžแŸ’แž›แžนแž˜แžŸแžถแžš" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "แž•แŸ’แž‘แžถแŸ†แž„แžแžถแž„แž€แŸ’แžšแŸ„แž™แž˜แŸ‰แžบแž“แžปแž™แž”แžšแžทแž”แž‘ แž…แžปแž…แžŠแžพแž˜แŸ’แž”แžธแž”แžทแž‘แž˜แŸ‰แžบแž“แžปแž™" @@ -3302,7 +3263,7 @@ msgstr "แž•แŸ’แž‘แžถแŸ†แž„แžแžถแž„แž€แŸ’แžšแŸ„แž™แž˜แŸ‰แžบแž“แžปแž™แž”แžšแžทแž” #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "แž”แž“แŸ’แžโ€‹แžแŸ’แžŸแŸ‚..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "แž”แžถแž“แž…แž˜แŸ’แž›แž„แž€แŸ†แžŽแŸ‚แžŸแŸ’แžแžถแž”แž“แžถแž‘แŸ… clipboard" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "แž…แž˜แŸ’แž›แž„แž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แž€แž˜แŸ’แž˜แžœแžทแž’ msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "แž…แž˜แŸ’แž›แž„แžแŸ†แžŽ" msgid "Copy link to list" msgstr "แž…แž˜แŸ’แž›แž„แžแŸ†แžŽแž‘แŸ…แž”แž‰แŸ’แž‡แžธ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "แž…แž˜แŸ’แž›แž„แžแŸ†แžŽแž‘แŸ…แž”แŸ’แžšแž€แžถแžŸ" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "แž…แž˜แŸ’แž›แž„แžขแžแŸ’แžแž”แž‘แžŸแžถแžš" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "แž…แž˜แŸ’แž›แž„แžแž˜แŸ’แž›แŸƒแž€แŸ†แžŽแžแŸ‹แžแŸ’แžšแžถ TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "แž‚แŸ„แž›แž€แžถแžšแžŽแŸแžšแž€แŸ’แžŸแžถแžŸแžทแž‘แŸ’แž’แžท" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "แž˜แžทแž“แžขแžถแž…แž…แžถแž€แž…แŸแž‰แž–แžธแž€แžถแžšแž‡แž‡แŸ‚แž€แž”แžถแž“แž‘แŸ" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "แž˜แžทแž“แžขแžถแž…แž•แŸ’แž‘แžปแž€แž–แŸแžแŸŒแž˜แžถแž“แž”แžถแž“แž‘แŸ" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "แž˜แžทแž“แžขแžถแž…แž”แžทแž‘แž€แžถแžšแž‡แž‡แŸ‚แž€แž”แžถแž“แž‘แŸ" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "แž”แž„แŸ’แž€แžพแž" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "แž”แž„แŸ’แž€แžพแžแž›แŸแžแž€แžผแžŠ QR แžŸแž˜แŸ’แžšแžถแž”แŸ‹แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "แž”แž„แŸ’แž€แžพแžแž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "แž”แž„แŸ’แž€แžพแžแž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แžŸแž˜แŸ’แžšแžถแž”แŸ‹แžแŸ’แž‰แžปแŸ†" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "แž…แžปแŸ‡แžˆแŸ’แž˜แŸ„แŸ‡" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "แž”แž„แŸ’แž€แžพแžแž‚แžŽแž“แžธ" @@ -3666,15 +3627,15 @@ msgstr "แž”แž„แŸ’แž€แžพแžแž‚แžŽแž“แžธ" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "แž”แž„แŸ’แž€แžพแžแžšแžผแž”แžแŸ†แžŽแžถแž„แž‡แŸ†แž“แžฝแžŸแžœแžทแž‰" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "แž”แž„แŸ’แž€แžพแžแž˜แžฝแž™แž•แŸ’แžŸแŸแž„แž‘แŸ€แž" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "แžœแž”แŸ’แž”แž’แž˜แŸŒ" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "แž„แž„แžนแž" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "แž„แž„แžนแž" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "แžŸแŸ’แž”แŸ‚แž€แžแŸ’แž˜แŸ…แž„แž„แžนแž" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "แž›แŸ†แž“แžถแŸ†แžŠแžพแž˜" @@ -3894,7 +3855,7 @@ msgstr "แž›แžปแž”แžŸแžถแžšแž–แžธแžแŸ’แž‰แžปแŸ†" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "แž›แžปแž” post" @@ -3988,7 +3949,7 @@ msgstr "แž”แŸ’แžšแžขแž”แŸ‹แŸ– แž€แŸ‚แžแž˜แŸ’แžšแžผแžœแžขแŸ’แž“แž€แžŠแŸ‚แž›แžข msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "แž”แžถแž“แž”แžทแž‘" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "แž”แŸ„แŸ‡แž”แž„แŸ‹" msgid "Discard changes?" msgstr "แž”แŸ„แŸ‡แž”แž„แŸ‹ " -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "แž”แŸ„แŸ‡แž”แž„แŸ‹แž€แžถแžšแž•แŸ’แž›แžถแžŸแŸ‹แž”แŸ’แžแžผแžš?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "แž”แŸ„แŸ‡แž”แž„แŸ‹แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "แžšแžถแžšแžถแŸ†แž„แž€แž˜แŸ’แž˜แžœแžทแž’แžธแž˜แžทแž“แžฑแŸ’แž™แž”แž„แŸ’แž แžถแž‰แž‚แžŽแž“แžธแžšแž”แžŸแŸ‹แžแŸ’แž‰แžปแŸ†แž‘แŸ…แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹แžŠแŸ‚แž›แž”แžถแž“แž…แŸแž‰แž–แžธแž‚แžŽแž“แžธ" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "แžšแžถแžšแžถแŸ†แž„แž€แž˜แŸ’แž˜แžœแžทแž’แžธแž˜แžทแž“แžฑแŸ’แž™แž”แž„แŸ’แž  msgid "Discover new custom feeds" msgstr "แžŸแŸ’แžœแŸ‚แž„แžšแž€แž–แŸแžแŸŒแž˜แžถแž“แž•แŸ’แž‘แžถแž›แŸ‹แžแŸ’แž›แžฝแž“แžแŸ’แž˜แžธ" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "แžŸแŸ’แžœแŸ‚แž„แžšแž€แž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แžแŸ’แž˜แžธ" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "แž…แŸ’แžšแžถแž“แž…แŸ„แž›" @@ -4103,28 +4064,28 @@ msgstr "แž…แŸ’แžšแžถแž“แž…แŸ„แž›" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "แž…แŸ’แžšแžถแž“แž…แŸ„แž›แž€แŸ†แž แžปแžŸ" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "แž”แŸ„แŸ‡แž”แž„แŸ‹แž€แžถแžšแžŽแŸ‚แž“แžถแŸ†แžขแŸ†แž–แžธแž€แžถแžšแž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "แž”แž„แŸ’แž แžถแž‰แž•แŸ’แž›แžถแž€แžŸแž‰แŸ’แž‰แžถแžขแž€แŸ’แžŸแžšแž‡แŸ†แž“ msgid "Display name" msgstr "แž”แž„แŸ’แž แžถแž‰แžˆแŸ’แž˜แŸ„แŸ‡" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "แžšแžฝแž…แžšแžถแž›แŸ‹" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "แž…แžปแž…แž–แžธแžšแžŠแž„แžŠแžพแž˜แŸ’แž”แžธแž”แžทแž‘แž”แŸ’แžšแžขแž”แŸ‹" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "แž€แŸ‚แžšแžผแž”แž—แžถแž–" msgid "Edit interaction settings" msgstr "แž€แŸ‚แžŸแž˜แŸ’แžšแžฝแž›แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แžขแž“แŸ’แžแžšแž€แž˜แŸ’แž˜" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "แž€แŸ‚แžŸแž˜แŸ’แžšแžฝแž›แž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แžšแž”แžŸแŸ‹แžแŸ’แž‰แžปแŸ†" @@ -4406,6 +4368,11 @@ msgstr "แž€แŸ‚แžŸแž˜แŸ’แžšแžฝแž›แž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แžšแž”แžŸแŸ‹แžแŸ’ msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "แž€แŸ‚แžŸแž˜แŸ’แžšแžฝแž›แž˜แž“แžปแžŸแŸ’แžŸ" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "แž€แŸ‚แžŸแž˜แŸ’แžšแžฝแž›แžขแŸ’แž“แž€แžŽแžถแžขแžถแž…แž†แŸ’แž›แžพแž™แžแž”แž”แžถแž“" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "แž€แŸ‚แžŸแž˜แŸ’แžšแžฝแž›แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" @@ -4500,8 +4467,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4476,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "แž”แž„แŸ’แž€แž”แŸ‹แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡แž“แŸแŸ‡แž“แŸ…แž€แŸ’แž“แžปแž„แž‚แŸแž แž‘แŸ†แž–แŸแžšแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แŸ” แž‚แŸ’แžšแžถแž“แŸ‹แžแŸ‚แž…แž˜แŸ’แž›แž„แž•แŸ’แž“แŸ‚แž€แžแžถแž„แž€แŸ’แžšแŸ„แž˜ แž แžพแž™แž”แžทแž‘แž—แŸ’แž‡แžถแž”แŸ‹แžœแžถแž‘แŸ…แž€แŸ’แž“แžปแž„แž€แžผแžŠ HTML แž“แŸƒแž‚แŸแž แž‘แŸ†แž–แŸแžšแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "แž€แž˜แŸ’แž˜แžœแžทแž’แžธแž…แžถแž€แŸ‹แžœแžธแžŠแŸแžขแžผแžŠแŸ‚แž›แž”แžถแž“แž”แž„แŸ’แž€แž”แŸ‹" @@ -4533,7 +4500,7 @@ msgstr "แž”แžพแž€แž˜แžถแžแžทแž€แžถแžŸแž˜แŸ’แžšแžถแž”แŸ‹แž˜แž“แžปแžŸแŸ’แžŸแž–แŸ msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "แž”แžพแž€แž”แŸ’แžšแž–แŸแž“แŸ’แž’แž•แŸ’แžŸแž–แŸ’แžœแž•แŸ’แžŸแžถแž™แžแžถ msgid "Enable media players for" msgstr "แž”แžพแž€แž€แž˜แŸ’แž˜แžœแžทแž’แžธแž…แžถแž€แŸ‹แž˜แŸแžŒแŸ€แžŸแž˜แŸ’แžšแžถแž”แŸ‹" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "แž”แžถแž“แž”แžพแž€" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "แž…แžปแž„แž”แž‰แŸ’แž…แž”แŸ‹แž“แŸƒแž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“" @@ -4608,7 +4576,7 @@ msgstr "แž”แž‰แŸ’แž…แžผแž›แž–แžถแž€แŸ’แž™ แžฌแžŸแŸ’แž›แžถแž€" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "แž”แž‰แŸ’แž…แžผแž›แžขแŸแž€แŸ’แžšแž„แŸ‹แž–แŸแž‰" @@ -4650,11 +4618,11 @@ msgstr "แž”แž‰แŸ’แž…แžผแž›แžˆแŸ’แž˜แŸ„แŸ‡แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸ msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "แž€แŸ†แž แžปแžŸ" @@ -4684,7 +4652,7 @@ msgstr "แž€แŸ†แž แžปแžŸแž”แžถแž“แž€แžพแžแžกแžพแž„แžแžŽแŸˆแž–แŸแž›แžšแž€แŸ’แžŸ msgid "Error receiving captcha response." msgstr "แž€แŸ†แž แžปแžŸแž€แŸ’แž“แžปแž„แž€แžถแžšแž‘แž‘แžฝแž›แž€แžถแžšแž†แŸ’แž›แžพแž™แžแž” captcha" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "แžขแŸ’แž“แž€โ€‹แžšแžถแž›แŸ‹โ€‹แž‚แŸ’แž“แžถโ€‹แžขแžถแž…โ€‹แž†แŸ’แž›แžพแž™ msgid "Everybody can reply to this post." msgstr "แžขแŸ’แž“แž€โ€‹แžšแžถแž›แŸ‹โ€‹แž‚แŸ’แž“แžถโ€‹แžขแžถแž…โ€‹แž†แŸ’แž›แžพแž™โ€‹แžแž”โ€‹แž“แžนแž„โ€‹แž€แžถแžšโ€‹แž”แŸ’แžšแž€แžถแžŸโ€‹แž“แŸแŸ‡" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "แž‘แžถแŸ†แž„แžขแžŸแŸ‹แž‚แŸ’แž“แžถ" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "แž‘แžถแŸ†แž„แžขแžŸแŸ‹แž‚แŸ’แž“แžถ" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "แž˜แžทแž“แžšแžถแž”แŸ‹แž”แž‰แŸ’แž…แžผแž›แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžš msgid "Excludes users you follow" msgstr "แž˜แžทแž“แžšแžถแž”แŸ‹แž”แž‰แŸ’แž…แžผแž›แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹แžŠแŸ‚แž›แžขแŸ’แž“แž€แžแžถแž˜แžŠแžถแž“" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "แž…แŸแž‰แž–แžธแžขแŸแž€แŸ’แžšแž„แŸ‹แž–แŸแž‰" @@ -4755,11 +4723,11 @@ msgstr "แž–แž„แŸ’แžšแžธแž€แž”แž‰แŸ’แž‡แžธแžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸ msgid "Expand or collapse the full post you are replying to" msgstr "แž–แž„แŸ’แžšแžธแž€ แžฌแž”แž„แŸ’แžšแžฝแž˜แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡แž–แŸแž‰แžŠแŸ‚แž›แžขแŸ’แž“แž€แž€แŸ†แž–แžปแž„แž†แŸ’แž›แžพแž™แžแž”" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "แž”แŸ’แžšแž–แŸแž“แŸ’แž’แž•แŸ’แžŸแž–แŸ’แžœแž•แŸ’แžŸแžถแž™แž…แŸ’แž”แžถแžŸ msgid "Explicit sexual images." msgstr "แžšแžผแž”แž—แžถแž–แž•แŸ’แž›แžผแžœแž—แŸแž‘แž…แŸ’แž”แžถแžŸแŸ‹แž›แžถแžŸแŸ‹" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "แž”แŸ’แžšแž–แŸแž“แŸ’แž’แž•แŸ’แžŸแž–แŸ’แžœแž•แŸ’แžŸแžถแž™แžแžถแž„แž€แŸ’ msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "แž”แŸ’แžšแž–แŸแž“แŸ’แž’แž•แŸ’แžŸแž–แŸ’แžœแž•แŸ’แžŸแžถแž™แžแžถแž„แž€แŸ’แžšแŸ…แžขแžถแž…แžขแž“แžปแž‰แŸ’แž‰แžถแžแžฑแŸ’แž™แž‚แŸแž แž‘แŸ†แž–แŸแžšแž”แŸ’แžšแž˜แžผแž›แž–แŸแžแŸŒแž˜แžถแž“แžขแŸ†แž–แžธแžขแŸ’แž“แž€ แž“แžทแž„แžงแž”แž€แžšแžŽแŸแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แŸ” แž‚แŸ’แž˜แžถแž“โ€‹แž–แŸแžแŸŒแž˜แžถแž“โ€‹แžแŸ’แžšแžผแžœโ€‹แž”แžถแž“โ€‹แž•แŸ’แž‰แžพ แžฌโ€‹แžŸแŸ’แž“แžพโ€‹แžšแž แžผแžโ€‹แžŠแž›แŸ‹โ€‹แžขแŸ’แž“แž€โ€‹แž…แžปแž…โ€‹แž”แŸŠแžผแžแžปแž„ \"play\"" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "แž…แŸ†แžŽแžผแž›แž…แžทแžแŸ’แžแž”แŸ’แžšแž–แŸแž“แŸ’แž’แž•แŸ’แžŸแž–แŸ’แžœแž•แŸ’แžŸแžถแž™แžแžถแž„แž€แŸ’แžšแŸ…" @@ -4886,7 +4854,7 @@ msgstr "แž”แžšแžถแž‡แŸแž™แž€แŸ’แž“แžปแž„แž€แžถแžšแž•แŸ’แž›แžถแžŸแŸ‹แž”แŸ’แžแžผ #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "แž”แžถแž“แž”แžšแžถแž‡แŸแž™แž€แŸ’แž“แžปแž„แž€แžถแžšแž•แŸ’แž‘แžปแž€แž…แŸ†แžŽแžผแž›แž…แžทแžแŸ’แžแž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "แž”แžถแž“แž”แžšแžถแž‡แŸแž™แž€แŸ’แž“แžปแž„แž€แžถแžšแž•แŸ’แž‘แžปแž€แž–แŸแžแŸŒแž˜แžถแž“แžŠแŸ‚แž›แž”แžถแž“แžŽแŸ‚แž“แžถแŸ†" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "แž”แžถแž“แž”แžšแžถแž‡แŸแž™แž€แŸ’แž“แžปแž„แž€แžถแžšแž•แŸ’แž‘แžปแž€แžŠแŸ‚แž›แž”แžถแž“แžŽแŸ‚แž“แžถแŸ†แžŠแžผแž…แžแžถแž„แž€แŸ’แžšแŸ„แž˜" @@ -5027,12 +4996,12 @@ msgstr "แž”แžถแž“แž”แžšแžถแž‡แŸแž™แž€แŸ’แž“แžปแž„แž€แžถแžšแž•แŸ’แž‘แžปแž€แžŠแŸ‚ msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "แž–แŸแžแŸŒแž˜แžถแž“" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "แž”แžถแž“แž’แŸ’แžœแžพแž”แž…แŸ’แž…แžปแž”แŸ’แž”แž“แŸ’แž“แž—แžถแž–แž–แŸแžแŸŒแž˜แžถแž“!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "แžฏแž€แžŸแžถแžšแžแŸ’แžšแžผแžœแž”แžถแž“แžšแž€แŸ’แžŸแžถแž‘แžปแž€แžŠแŸ„แž™แž‡แŸ„แž‚แž‡แŸแž™!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "แžแŸ’แžšแž„แž–แžธแž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "แžŸแŸ’แžœแŸ‚แž„แžšแž€แž‚แžŽแž“แžธแžŠแžพแž˜แŸ’แž”แžธแžแžถแž˜แžŠแžถแž“" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "แžแžถแž˜ {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "แžแžถแž˜แžŠแžถแž“ 7 แž‚แžŽแž“แžธ" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "แžขแŸ’แž“แž€แžแžถแž˜แžŠแžถแž“ @{0} แžŠแŸ‚แž›แžขแŸ’แž“แž€แžŸแŸ’แž‚แžถแž›แŸ‹" @@ -5544,7 +5497,7 @@ msgstr "แžขแŸ’แž“แž€แžแžถแž˜แžŠแŸ‚แž›แžขแŸ’แž“แž€แžŸแŸ’แž‚แžถแž›แŸ‹" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "แž€แŸ†แž–แžปแž„แžแžถแž˜ {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "แž’แŸ’แžœแžพแžแžถแž˜แž…แŸ†แžŽแžผแž›แž…แžทแžแŸ’แžแž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "แž’แŸ’แžœแžพแžแžถแž˜แž…แŸ†แžŽแžผแž›แž…แžทแžแŸ’แžแž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "แžแžถแž˜แžขแŸ’แž“แž€" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "แž–แžปแž˜แŸ’แž–แžขแž€แŸ’แžŸแžš" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "แž‘แŸ†แž แŸ†แž–แžปแž˜แŸ’แž–แžขแž€แŸ’แžŸแžš" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "แžŸแž˜แŸ’แžšแžถแž”แŸ‹แž แŸแžแžปแž•แž›แžŸแžปแžœแžแŸ’แžแžทแž—แžถแž– แžขแŸ’แž“แž€แž“แžนแž„แž˜แžทแž“แžขแžถแž…แž˜แžพแž›แžœแžถแž˜แŸ’แžแž„แž‘แŸ€แžแž”แžถแž“แž‘แŸแŸ” แž”แŸ’แžšแžŸแžทแž“แž”แžพแžขแŸ’แž“แž€แž”แžถแžแŸ‹แž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แž€แž˜แŸ’แž˜แžœแžทแž’แžธแž“แŸแŸ‡ แžขแŸ’แž“แž€แž“แžนแž„แžแŸ’แžšแžผแžœแž”แž„แŸ’แž€แžพแžแž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แžแŸ’แž˜แžธ" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "แžŸแž˜แŸ’แžšแžถแž”แŸ‹แž”แž‘แž–แžทแžŸแŸ„แž’แž“แŸแžŠแŸแž›แŸ’แžขแž”แŸ†แž•แžปแž แž™แžพแž„แžŸแžผแž˜แžŽแŸ‚แž“แžถแŸ†แžฑแŸ’แž™แž”แŸ’แžšแžพแž–แžปแž˜แŸ’แž–แžขแž€แŸ’แžŸแžšแžŸแŸ’แž”แŸ‚แž€" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "แž‡แžถแžšแŸ€แž„แžšแž แžผแž" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "แž—แŸ’แž›แŸแž…แž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถ?แžแŸ‹" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "แž–แžธ <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "แž”แž„แŸ’แž€แžพแžแž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "แžšแž€แž‡แŸ†แž“แžฝแž™" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "แž•แŸ’แžแž›แŸ‹แž‘แž˜แŸ’แžšแž„แŸ‹แž˜แžปแžแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "แž˜แžถแž“แž”แž‰แŸ’แž แžถ?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "แž‡แŸ†แž“แžฝแž™" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "แž‡แžฝแž™แž˜แž“แžปแžŸแŸ’แžŸแžฑแŸ’แž™แžŠแžนแž„แžแžถแžขแŸ’แž“แž€แž˜แžทแž“แž˜แŸ‚แž“แž‡แžถแžšแžผแž”แž™แž“แŸ’แžแžŠแŸ„แž™แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡แžšแžผแž”แž—แžถแž– แžฌแž”แž„แŸ’แž€แžพแžแžšแžผแž”แžแŸ†แžŽแžถแž„" @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "แž”แž‰แŸ’แž‡แžธแžŠแŸ‚แž›แž›แžถแž€แŸ‹" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "แž”แž‰แŸ’แž‡แžธแžŠแŸ‚แž›แž›แžถแž€แŸ‹" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "แž›แžถแž€แŸ‹" @@ -6198,7 +6154,7 @@ msgstr "แž›แžถแž€แŸ‹แž€แžถแžšแž†แŸ’แž›แžพแž™แžแž”แžŸแž˜แŸ’แžšแžถแž”แŸ‹แžขแŸ’แž“ msgid "Hide reply for me" msgstr "แž›แžถแž€แŸ‹แž€แžถแžšแž†แŸ’แž›แžพแž™แžแž”แžŸแž˜แŸ’แžšแžถแž”แŸ‹แžแŸ’แž‰แžปแŸ†" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "แž›แžถแž€แŸ‹แž€แžถแžšแž†แŸ’แž›แžพแž™แžแž”แž“แŸแŸ‡?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "แž›แžถแž€แŸ‹แž”แž‰แŸ’แž‡แžธแžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "แž แŸŠแžบ แž™แžพแž„แž˜แžทแž“แžขแžถแž…แž•แŸ’แž‘แžปแž€แžŸแŸแžœแžถแž€แž˜ msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "แž…แžถแŸ†! แž™แžพแž„แž€แŸ†แž–แžปแž„แž•แŸ’แžแž›แŸ‹แžŸแžทแž‘แŸ’แž’แžทแž…แžผแž›แž”แŸ’แžšแžพแžœแžธแžŠแŸแžขแžผแž”แž“แŸ’แžแžทแž…แž˜แŸ’แžแž„แŸ— แž แžพแž™แžขแŸ’แž“แž€แž“แŸ…แžแŸ‚แžšแž„แŸ‹แž…แžถแŸ†แž€แŸ’แž“แžปแž„แž‡แžฝแžšแŸ” แžŸแžผแž˜แž–แžทแž“แžทแžแŸ’แž™แž˜แžพแž›แžกแžพแž„แžœแžทแž‰แž†แžถแž”แŸ‹แŸ—แž“แŸแŸ‡" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "แž”แŸ’แžšแžŸแžทแž“แž”แžพแžขแŸ’แž“แž€แž…แž„แŸ‹แž•แŸ’แž›แžถแžŸแŸ‹แž”แŸ’แžแžผแžšแž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€ แž™แžพแž„แž“แžนแž„แž•แŸ’แž‰แžพแž›แŸแžแž€แžผแžŠแž‘แŸ…แžขแŸ’แž“แž€แžŠแžพแž˜แŸ’แž”แžธแž•แŸ’แž‘แŸ€แž„แž•แŸ’แž‘แžถแžแŸ‹แžแžถแž“แŸแŸ‡แž‚แžบแž‡แžถแž‚แžŽแž“แžธแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "แžˆแŸ’แž˜แŸ„แŸ‡แžขแŸ’แž“แž€แž”แŸ’แžšแžพ แžฌแž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แž˜แžทแž“แžแŸ’แžšแžนแž˜แžแŸ’แžšแžผแžœ" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "แž›แŸแžแž€แžผแžŠแžขแž‰แŸ’แž‡แžพแž‰" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "แž›แŸแžแž€แžผแžŠแžขแž‰แŸ’แž‡แžพแž‰แž˜แžทแž“แžแŸ’แžšแžผแžœแž”แžถแž“แž‘แž‘แžฝแž›แž™แž€แž‘แŸแŸ” แž–แžทแž“แžทแžแŸ’แž™แž˜แžพแž›แžแžถแžขแŸ’แž“แž€แž”แž‰แŸ’แž…แžผแž›แžœแžถแžแŸ’แžšแžนแž˜แžแŸ’แžšแžผแžœ แž แžพแž™แž–แŸ’แž™แžถแž™แžถแž˜แž˜แŸ’แžแž„แž‘แŸ€แž" @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "แž˜แžถแž“แžแŸ‚แžขแŸ’แž“แž€แž‘แŸแžฅแžกแžผแžœแž“แŸแŸ‡! แž”แž“แŸ’แžแŸ‚แž˜แž˜แž“แžปแžŸแŸ’แžŸแž”แž“แŸ’แžแŸ‚แž˜แž‘แŸ€แžแž‘แŸ…แž€แŸ’แž“แžปแž„แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แžŠแŸ„แž™แžŸแŸ’แžœแŸ‚แž„แžšแž€แžแžถแž„แž›แžพ" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" @@ -6816,8 +6766,8 @@ msgstr "แž…แžผแž›แžšแžฝแž˜แž€แžถแžšแžŸแž“แŸ’แž‘แž“แžถ" msgid "Journalism" msgstr "แžŸแžถแžšแž–แŸแžแŸŒแž˜แžถแž“" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "แžŠแžถแž€แŸ‹แžŸแŸ’แž›แžถแž€แžŠแŸ„แž™ {0}" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "แžŠแžถแž€แŸ‹แžŸแŸ’แž›แžถแž€แžŠแŸ„แž™แžขแŸ’แž“แž€แž“แžทแž–แž“แŸ’แž’" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "แžŸแŸ’แž›แžถแž€" @@ -6852,7 +6802,7 @@ msgstr "แžŸแŸ’แž›แžถแž€แžแŸ’แžšแžผแžœแž”แžถแž“แž”แž“แŸ’แžแŸ‚แž˜" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "แžŸแŸ’แž›แžถแž€แž‚แžบแž‡แžถแž…แŸ†แžŽแžถแžšแž–แž“แŸ’แž™แž›แŸ‹แžขแŸ†แž–แžธแžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹ แž“แžทแž„แžแŸ’แž›แžนแž˜แžŸแžถแžšแŸ” แž–แžฝแž€แžœแžถแžขแžถแž…แžแŸ’แžšแžผแžœแž”แžถแž“แž”แŸ’แžšแžพแžŠแžพแž˜แŸ’แž”แžธแž›แžถแž€แŸ‹ แž–แŸ’แžšแž˜แžถแž“ แž“แžทแž„แž…แžถแžแŸ‹แžแŸ’แž“แžถแž€แŸ‹แž”แžŽแŸ’แžแžถแž‰" @@ -6864,7 +6814,7 @@ msgstr "แžŸแŸ’แž›แžถแž€แž“แŸ…แž›แžพแž‚แžŽแž“แžธแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แž—แžถแžŸแžถ" @@ -6874,7 +6824,7 @@ msgstr "แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แž—แžถแžŸแžถ" msgid "Languages" msgstr "แž—แžถแžŸแžถ" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "แž’แŸ†แž‡แžถแž„" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "แž…แžปแž„แž€แŸ’แžšแŸ„แž™" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "แžŸแŸ’แžœแŸ‚แž„แž™แž›แŸ‹แž”แž“แŸ’แžแŸ‚แž˜" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "แžŸแŸ’แžœแŸ‚แž„แž™แž›แŸ‹แž”แž“แŸ’แžแŸ‚แž˜แžขแŸ†แž–แžธแž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡แžŠแŸ„แž™แžแŸ’แž›แžฝแž“แžฏแž„ PDS แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "แžŸแŸ’แžœแŸ‚แž„แž™แž›แŸ‹แž”แž“แŸ’แžแŸ‚แž˜แžขแŸ†แž–แžธแž€แžถแžšแž–แŸ’แžšแž˜แžถแž“แž“แŸแŸ‡" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "แžŸแŸ’แžœแŸ‚แž„แž™แž›แŸ‹แž”แž“แŸ’แžแŸ‚แž˜" @@ -6993,8 +6943,8 @@ msgstr "แž…แžถแž€แž…แŸแž‰" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "แž…แžถแž€แž…แŸแž‰แž–แžธ Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "แž…แžถแž€แž…แŸแž‰แž‘แŸ…" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "แžขแž“แžปแž‰แŸ’แž‰แžถแžแžฑแŸ’แž™แžแŸ’แž‰แžปแŸ†แž‡แŸ’แžšแžพแžŸแžšแžพแžŸ" @@ -7057,7 +7007,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "แž–แž“แŸ’แž›แžบ" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "แž–แž“แŸ’แž›แžบ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7026,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "แž…แžผแž›แž…แžทแžแŸ’แž 10 แž”แŸ’แžšแž€แžถแžŸ" @@ -7085,7 +7035,7 @@ msgstr "แž…แžผแž›แž…แžทแžแŸ’แž 10 แž”แŸ’แžšแž€แžถแžŸ" msgid "Like 10 posts to train the Discover feed" msgstr "แž…แžผแž›แž…แžทแžแŸ’แžแž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡แž…แŸ†แž“แžฝแž“ 10 แžŠแžพแž˜แŸ’แž”แžธแž”แžŽแŸ’แžแžปแŸ‡แž”แžŽแŸ’แžแžถแž› Discover feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "แž…แžผแž›แž…แžทแžแŸ’แžแž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แž“แŸแŸ‡" @@ -7093,8 +7043,8 @@ msgstr "แž…แžผแž›แž…แžทแžแŸ’แžแž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แž“แŸแŸ‡" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "แž…แžผแž›แž…แžทแžแŸ’แž" @@ -7111,27 +7061,45 @@ msgstr "แž…แžผแž›แž…แžทแžแŸ’แž" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "แž…แžผแž›แž…แžทแžแŸ’แž" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "แž…แžผแž›แž…แžทแžแŸ’แžแž“แŸ…แž›แžพแž”แŸ’แžšแž€แžถแžŸแž“แŸแŸ‡" @@ -7144,7 +7112,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "แž”แž‰แŸ’แž‡แžธ" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "แž”แžถแž“โ€‹แž”แžทแž‘โ€‹แž”แž‰แŸ’แž‡แžธ" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "แž•แŸ’แž‘แžปแž€แž…แŸ’แžšแžพแž“แž‘แŸ€แž" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "แž•แŸ’แž‘แžปแž€แž–แŸแžแŸŒแž˜แžถแž“แžŠแŸ‚แž›แž”แžถแž“แžŽแŸ‚แž“แžถแŸ†แž”แž“แŸ’แžแŸ‚แž˜แž‘แŸ€แž" @@ -7292,8 +7260,8 @@ msgstr "แž•แŸ’แž‘แžปแž€แž–แŸแžแŸŒแž˜แžถแž“แžŠแŸ‚แž›แž”แžถแž“แžŽแŸ‚แž“แžถแŸ†แž” msgid "Load new notifications" msgstr "แž•แŸ’แž‘แžปแž€แž€แžถแžšแž‡แžผแž“แžŠแŸ†แžŽแžนแž„แžแŸ’แž˜แžธแŸ—" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "แž€แŸ†แžŽแžแŸ‹แž แŸแžแžป" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "แž’แŸ’แžœแžพแž˜แžฝแž™แžŸแž˜แŸ’แžšแžถแž”แŸ‹แžแŸ’แž‰แžปแŸ†" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "แžŸแž˜แŸ’แž‚แžถแž›แŸ‹แžแžถแž”แžถแž“แžขแžถแž“แž แžพแž™" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "แž”แŸ’แžšแž–แŸแž“แŸ’แž’แž•แŸ’แžŸแž–แŸ’แžœแž•แŸ’แžŸแžถแž™" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "แž”แŸ’แžšแž–แŸแž“แŸ’แž’แž•แŸ’แžŸแž–แŸ’แžœแž•แŸ’แžŸแžถแž™แžŠแŸ‚แž›แžขแžถแž…แžšแŸ†แžแžถแž“ แžฌแž˜แžทแž“แžŸแž˜แžšแž˜แŸ’แž™แžŸแž˜แŸ’แžšแžถแž”แŸ‹แž‘แžŸแŸ’แžŸแž“แžทแž€แž‡แž“แž˜แžฝแž™แž…แŸ†แž“แžฝแž“" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹แžŠแŸ‚แž›แž”แžถแž“แž›แžพแž€แžกแžพแž„" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "แžŸแžถแžšแžแŸ’แžšแžผแžœแž”แžถแž“แž›แžปแž”" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "แžŸแžถแžš" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "แž€แžถแžšแžŸแž˜แŸ’แžšแž”แžŸแž˜แŸ’แžšแžฝแž›" @@ -7636,7 +7608,7 @@ msgstr "แž”แžถแž“แž’แŸ’แžœแžพแž”แž…แŸ’แž…แžปแž”แŸ’แž”แž“แŸ’แž“แž—แžถแž–แž”แž‰แŸ’ msgid "Moderation lists" msgstr "แž”แž‰แŸ’แž‡แžธแžŸแž˜แŸ’แžšแž”แžŸแž˜แŸ’แžšแžฝแž›" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "แž”แž‰แŸ’แž‡แžธแž€แžถแžšแžŸแž˜แŸ’แžšแž”แžŸแž˜แŸ’แžšแžฝแž›" @@ -7645,7 +7617,7 @@ msgstr "แž”แž‰แŸ’แž‡แžธแž€แžถแžšแžŸแž˜แŸ’แžšแž”แžŸแž˜แŸ’แžšแžฝแž›" msgid "moderation settings" msgstr "แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แž€แž˜แŸ’แžšแžทแžแž˜แž’แŸ’แž™แž˜" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "แž‚แžŽแž“แžธแž”แžทแž‘" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "แž‚แžŽแž“แžธแž”แžทแž‘" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "แž˜แžทแž“แžขแžธแž‘แŸ แž”แž„แŸ’แž€แžพแž handle แžŸแž˜แŸ’แžšแžถแž”แŸ‹แžแŸ’แž‰แžปแŸ†" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "แžแŸ’แž˜แžธ" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "แž€แžถแžšแž‡แž‡แŸ‚แž€แžแŸ’แž˜แžธ" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "แž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แžแŸ’แž˜แžธ" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "post แžแŸ’แž˜แžธ" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "แž€แžถแžšแž†แŸ’แž›แžพแž™แžแž”แžแŸ’แž˜แžธแž”แŸ†แž•แžปแžแž‡แžถแž˜แžปแž“แžŸแžทแž“" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "แž–แŸแžแŸŒแž˜แžถแž“" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "แžšแžผแž”แž—แžถแž–แž”แž“แŸ’แž‘แžถแž”แŸ‹" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "แž˜แžทแž“แž‘แžถแž“แŸ‹แž˜แžถแž“แž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แž€แž˜แŸ’แž˜แžœแžทแž’แžธแž“แŸ…แžกแžพแž™แž‘แŸ" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "แžšแž€แž˜แžทแž“แžƒแžพแž‰แž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แž‘แŸแŸ” แž–แŸ’แž™แžถแž™แžถแž˜แžŸแŸ’แžœแŸ‚แž„แžšแž€แžขแŸ’แžœแžธแž•แŸ’แžŸแŸแž„แž‘แŸ€แž" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "แž˜แžทแž“แž‘แžถแž“แŸ‹แž˜แžถแž“แžขแŸ’แž“แž€แž…แžผแž›แž…แžทแžแŸ’แžแž‘แŸ" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "แž›แŸ‚แž„โ€‹แžแžถแž˜ {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "แž˜แžทแž“แž˜แžถแž“แžŸแžถแžšแž“แŸ…แžกแžพแž™แž‘แŸ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "แž‚แŸ’แž˜แžถแž“แž“แžšแžŽแžถแž˜แŸ’แž“แžถแž€แŸ‹แž€แŸ’แžšแŸ…แž–แžธแžขแŸ’แž“ msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "แž˜แžทแž“แž‘แžถแž“แŸ‹แž˜แžถแž“แžŸแž˜แŸ’แžšแž„แŸ‹แž‘แŸ" @@ -8198,11 +8190,7 @@ msgstr "แž˜แžทแž“แž‘แžถแž“แŸ‹แž˜แžถแž“แžŸแž˜แŸ’แžšแž„แŸ‹แž‘แŸ" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "แž‚แŸ’แž˜แžถแž“แž›แž‘แŸ’แž’แž•แž›" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "แž‚แŸ’แž˜แžถแž“แž›แž‘แŸ’แž’แž•แž›" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "แžšแž€แž˜แžทแž“แžƒแžพแž‰แž›แž‘แŸ’แž’แž•แž›แž‘แŸ" msgid "No results found for \"{query}\"" msgstr "แžšแž€แž˜แžทแž“แžƒแžพแž‰แž›แž‘แŸ’แž’แž•แž›แžŸแž˜แŸ’แžšแžถแž”แŸ‹ \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "แž‘แŸ แžขแžšแž‚แžปแžŽ" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "แž‚แŸ’แž˜แžถแž“แž“แžšแžŽแžถแž˜แŸ’แž“แžถแž€แŸ‹" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "แž‚แŸ’แž˜แžถแž“แž“แžšแžŽแžถแž˜แŸ’แž“แžถแž€แŸ‹แž…แžผแž›แž…แžทแžแŸ’แžแžœแžถแž“แŸ…แžกแžพแž™แž‘แŸแŸ” แž”แŸ’แžšแž แŸ‚แž›แž‡แžถแžขแŸ’แž“แž€แž‚แžฝแžšแžแŸ‚แž‡แžถแžขแŸ’แž“แž€แžŠแŸ†แž”แžผแž„" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "แž˜แžทแž“แž‘แžถแž“แŸ‹แž˜แžถแž“แž“แžšแžŽแžถแž˜แŸ’แž“แžถแž€แŸ‹แžŠแž€แžŸแŸ’แžšแž„แŸ‹แžšแžฟแž„แž“แŸแŸ‡แž“แŸ…แžกแžพแž™แž‘แŸแŸ” แž”แŸ’แžšแž แŸ‚แž›แž‡แžถแžขแŸ’แž“แž€แž‚แžฝแžšแžแŸ‚แž‡แžถแžขแŸ’แž“แž€แžŠแŸ†แž”แžผแž„" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "แžšแž€แž˜แžทแž“แžƒแžพแž‰" @@ -8333,7 +8325,7 @@ msgstr "แž…แŸ†แžŽแžถแŸ†แžขแŸ†แž–แžธแž€แžถแžšแž…แŸ‚แž€แžšแŸ†แž›แŸ‚แž€" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "แž…แŸ†แžŽแžถแŸ†แŸ– Bluesky แž‚แžบแž‡แžถแž”แžŽแŸ’แžแžถแž‰แž”แžพแž€แž…แŸ†แž  แž“แžทแž„แžŸแžถแž’แžถแžšแžŽแŸˆแŸ” แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แž“แŸแŸ‡แž€แŸ†แžŽแžแŸ‹แžแŸ‚แž€แžถแžšแž˜แžพแž›แžƒแžพแž‰แžแŸ’แž›แžนแž˜แžŸแžถแžšแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แž“แŸ…แž›แžพแž€แž˜แŸ’แž˜แžœแžทแž’แžธ แž“แžทแž„แž‚แŸแž แž‘แŸ†แž–แŸแžš Bluesky แž แžพแž™แž€แž˜แŸ’แž˜แžœแžทแž’แžธแž•แŸ’แžŸแŸแž„แž‘แŸ€แžแž”แŸ’แžšแž แŸ‚แž›แž‡แžถแž˜แžทแž“แž‚แŸ„แžšแž–แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แž“แŸแŸ‡แž‘แŸแŸ” แžแŸ’แž›แžนแž˜แžŸแžถแžšแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แžขแžถแž…แž“แŸ…แžแŸ‚แžแŸ’แžšแžผแžœแž”แžถแž“แž”แž„แŸ’แž แžถแž‰แžŠแž›แŸ‹แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹แžŠแŸ‚แž›แž”แžถแž“แž…แŸแž‰แž–แžธแž‚แžŽแž“แžธแžŠแŸ„แž™แž€แž˜แŸ’แž˜แžœแžทแž’แžธ แž“แžทแž„แž‚แŸแž แž‘แŸ†แž–แŸแžšแž•แŸ’แžŸแŸแž„แž‘แŸ€แž" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แž€แžถแžšแž‡แžผแž“แžŠแŸ†แžŽแžนแž„" @@ -8353,11 +8345,12 @@ msgstr "แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แž€แžถแžšแž‡แžผแž“แžŠแŸ†แžŽแžนแž„" msgid "Notification sounds" msgstr "แžŸแŸ†แžกแŸแž„แž‡แžผแž“แžŠแŸ†แžŽแžนแž„" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "แž€แŸ†แžŽแžแŸ‹แž€แžถแžšแž…แžผแž›แžŠแŸ†แžŽแžพแžšแž€แžถแžšแžกแžพแž„แžœแžทแž‰" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "GIFs แž˜แžฝแž™ แžฌโ€‹แž…แŸ’แžšแžพแž“โ€‹แž”แžถแžแŸ‹โ€‹แžขแžแŸ’แžแž”แž‘โ€‹แž‡แŸ†แž“แžฝแžŸ" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "แžšแžผแž”แž—แžถแž–แž˜แžฝแž™ แžฌแž…แŸ’แžšแžพแž“แž”แžถแžแŸ‹แžขแžแŸ’แžแž”แž‘แž‡แŸ†แž“แžฝแžŸ" @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "แžœแžธแžŠแŸแžขแžผแž˜แžฝแž™ แžฌแž…แŸ’แžšแžพแž“แž”แžถแžแŸ‹แžขแžแŸ’แžแž”แž‘แž‡แŸ†แž“แžฝแžŸ" @@ -8471,7 +8466,7 @@ msgstr "แž˜แžถแž“แžแŸ‚ {0} แž”แŸ‰แžปแžŽแŸ’แžŽแŸ„แŸ‡แžŠแŸ‚แž›แžขแžถแž…แž†แŸ’แž› #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "แž˜แžถแž“แžแŸ‚แžฏแž€แžŸแžถแžš WebVTT (.vtt) แž”แŸ‰แžปแžŽแŸ’แžŽแŸ„แŸ‡แžŠแŸ‚แž›แžแŸ’แžšแžผแžœแž”แžถแž“แž‚แžถแŸ†แž‘แŸ’แžš" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8543,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "แž”แžพแž€แžขแŸ’แž“แž€แž”แž„แŸ’แž€แžพแžแžšแžผแž”แžแŸ†แžŽแžถแž„" @@ -8570,21 +8569,22 @@ msgstr "แž”แžพแž€แž‡แž˜แŸ’แžšแžพแžŸแž€แžถแžšแžŸแž“แŸ’แž‘แž“แžถ" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "แž”แžพแž€แž€แž˜แŸ’แž˜แžœแžทแž’แžธแž‡แŸ’แžšแžพแžŸแžšแžพแžŸแžšแžผแž”แžขแžถแžšแž˜แŸ’แž˜แžŽแŸ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "แž”แžพแž€แž˜แŸ‰แžบแž“แžปแž™แž‡แž˜แŸ’แžšแžพแžŸแž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“" @@ -8627,7 +8627,7 @@ msgstr "แž”แžพแž€แž‘แŸ†แž–แŸแžšแž”แŸ†แž”แžถแžแŸ‹แž€แŸ†แž แžปแžŸแž€แžถแžšแžŸแž˜ msgid "Open muted words and tags settings" msgstr "แž”แžพแž€แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แž–แžถแž€แŸ’แž™ แž“แžทแž„แžŸแŸ’แž›แžถแž€แžŠแŸ‚แž›แž”แžถแž“แž”แžทแž‘" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "แž”แžพแž€แž–แŸแžแŸŒแž˜แžถแž“แž›แž˜แŸ’แžขแžทแžแž”แž“แŸ’แžแŸ‚แž˜แžŸแž˜ msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "แž”แžพแž€แž€แžถแž˜แŸแžšแŸ‰แžถแž“แŸ…แž›แžพแžงแž”แž€แžšแžŽแŸ" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "แž”แžพแž€แž›แŸ†แž แžผแžšแžŠแžพแž˜แŸ’แž”แžธแž”แž„แŸ’แž€แžพแžแž‚แžŽแž“แžธ Bluesky แžแŸ’แž˜แžธ" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "แž”แžถแž“แž’แŸ’แžœแžพแž”แž…แŸ’แž…แžปแž”แŸ’แž”แž“แŸ’แž“แž—แžถแž–แž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "แž•แŸ’แžขแžถแž€" @@ -8925,12 +8925,12 @@ msgstr "แž•แŸ’แžขแžถแž€" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "แž•แŸ’แžขแžถแž€ video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "แž˜แž“แžปแžŸแŸ’แžŸ" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "แž˜แž“แžปแžŸแŸ’แžŸโ€‹แžแžถแž˜โ€‹แžŠแŸ„แž™ @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "แž˜แž“แžปแžŸแŸ’แžŸโ€‹แžแžถแž˜ @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "แžšแžผแž”แž—แžถแž–แž˜แžถแž“แž“แŸแž™แžŸแž˜แŸ’แžšแžถแž”แŸ‹แž˜แž“แžปแžŸแŸ’แžŸแž–แŸแž‰แžœแŸแž™" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "แž›แŸแž„" @@ -9076,8 +9076,8 @@ msgstr "แž›แŸแž„ {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "แž…แžถแž€แŸ‹แžœแžธแžŠแŸแžขแžผ" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "แžŸแžผแž˜แž‡แŸ’แžšแžพแžŸแžšแžพแžŸ handle แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "แžŸแžผแž˜แž‡แŸ’แžšแžพแžŸแžšแžพแžŸแž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "แžŸแžผแž˜แž”แŸ†แž–แŸแž‰แž€แžถแžšแž•แŸ’แž‘แŸ€แž„แž•แŸ’แž‘แžถแžแŸ‹ captcha" @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "แžŸแžผแž˜แž”แž‰แŸ’แž…แžผแž›แžขแŸŠแžธแž˜แŸ‚แž›แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "แž“แž™แŸ„แž”แžถแž™" @@ -9269,7 +9269,7 @@ msgstr "แž“แž™แŸ„แž”แžถแž™" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Post แž‘แžถแŸ†แž„แžขแžŸแŸ‹" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9340,7 @@ msgstr "" msgid "Post interaction settings" msgstr "แž€แžถแžšโ€‹แž€แŸ†แžŽแžแŸ‹โ€‹แžขแž“แŸ’แžแžšแž€แž˜แŸ’แž˜โ€‹ post" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡แžขแžถแž…แžแŸ’แžšแžผแžœแž”แžถแž“แž”แžทแž‘แžŠแŸ„แž™แž•แŸ’แžขแŸ‚แž€แž›แžพแžขแžแŸ’แžแž”แž‘ แžŸแŸ’แž›แžถแž€แžšแž”แžŸแŸ‹แž–แžฝแž€แž‚แŸ แžฌแž‘แžถแŸ†แž„แž–แžธแžšแŸ” แž™แžพแž„โ€‹แžŸแžผแž˜โ€‹แžŽแŸ‚แž“แžถแŸ†โ€‹แžฑแŸ’แž™โ€‹แž‡แŸ€แžŸแžœแžถแž„โ€‹แž–แžถแž€แŸ’แž™โ€‹แž’แž˜แŸ’แž˜แžแžถโ€‹แžŠแŸ‚แž›โ€‹แž”แž„แŸ’แž แžถแž‰โ€‹แž€แŸ’แž“แžปแž„โ€‹แž€แžถแžšโ€‹แž”แž„แŸ’แž แŸ„แŸ‡โ€‹แž‡แžถโ€‹แž…แŸ’แžšแžพแž“ แž–แŸ’แžšแŸ„แŸ‡โ€‹แžœแžถโ€‹แžขแžถแž…โ€‹แž“แžถแŸ†โ€‹แžฑแŸ’แž™โ€‹แž‚แŸ’แž˜แžถแž“โ€‹แž€แžถแžšโ€‹แž”แž„แŸ’แž แŸ„แŸ‡โ€‹แžแŸ’แžšแžผแžœโ€‹แž”แžถแž“โ€‹แž”แž„แŸ’แž แžถแž‰" @@ -9398,6 +9396,10 @@ msgstr "แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡แžขแžถแž…แžแŸ’แžšแžผแžœแž”แžถแž“แž”แžทแž‘แžŠ msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "แžฏแž€แž‡แž“แž—แžถแž–" msgid "Privacy and security" msgstr "แž—แžถแž–แžฏแž€แž‡แž“ แž“แžทแž„แžŸแžปแžœแžแŸ’แžแžทแž—แžถแž–" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "แž—แžถแž–แžฏแž€แž‡แž“ แž“แžทแž„แžŸแžปแžœแžแŸ’แžแžทแž—แžถแž–" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "แž‚แŸ„แž›แž€แžถแžšแžŽแŸแžฏแž€แž‡แž“แž—แžถแž–" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "แžŠแŸ†แžŽแžพแžšแž€แžถแžšแžœแžธแžŠแŸแžขแžผ..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Quote posts แžแŸ’แžšแžผแžœแž”แžถแž“แž”แžทแž‘" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "แž”แžพแž€แžŠแŸ†แžŽแžพแžšแž€แžถแžšแž‚แžŽแž“แžธแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แžก msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "แžขแžถแž“แž‚แŸ„แž›แž€แžถแžšแžŽแŸแžฏแž€แž‡แž“แž—แžถแž– Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "แžขแžถแž“แž›แž€แŸ’แžแžแžŽแŸ’แžŒแž“แŸƒแžŸแŸแžœแžถแž€แž˜แŸ’แž˜ Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "แž—แŸ’แž‡แžถแž”แŸ‹แžกแžพแž„แžœแžทแž‰" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "แž•แŸ’แž‘แžปแž€แž€แžถแžšแžŸแž“แŸ’แž‘แž“แžถแžกแžพแž„แžœแžทแž‰" @@ -9766,7 +9765,7 @@ msgstr "แž•แŸ’แž‘แžปแž€แž€แžถแžšแžŸแž“แŸ’แž‘แž“แžถแžกแžพแž„แžœแžทแž‰" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "แžŠแž€แž…แŸแž‰" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "แž›แžปแž”แž‚แžŽแž“แžธ" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "แž›แžปแž”แž…แŸแž‰แž–แžธแž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แžšแž”แžŸแŸ‹แžแŸ’แž‰แžปแŸ†" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "แžŠแž€แž…แŸแž‰แž–แžธแž€แžถแžšแž…แžผแž›แž”แŸ’แžšแžพแžšแž แŸแžŸ?" @@ -9862,7 +9861,7 @@ msgstr "แžŠแž€แž…แŸแž‰แž–แžธแž€แžถแžšแž…แžผแž›แž”แŸ’แžšแžพแžšแž แŸแžŸ?" msgid "Remove from saved feeds" msgstr "แž™แž€แž…แŸแž‰แž–แžธแž–แŸแžแŸŒแž˜แžถแž“แžŠแŸ‚แž›แž”แžถแž“แžšแž€แŸ’แžŸแžถแž‘แžปแž€" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "แž›แžปแž”แžšแžผแž”แž—แžถแž–" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "แž”แžถแž“แžŠแž€แž…แŸแž‰แž–แžธแž”แž‰แŸ’แž‡แžธ" msgid "Removed from saved feeds" msgstr "แž”แžถแž“แž›แžปแž”แž…แŸแž‰แž–แžธแž–แŸแžแŸŒแž˜แžถแž“แžŠแŸ‚แž›แž”แžถแž“แžšแž€แŸ’แžŸแžถแž‘แžปแž€" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "แž€แžถแžšแž†แŸ’แž›แžพแž™แžแž”" @@ -10037,7 +10037,7 @@ msgstr "แž€แžถแžšแž†แŸ’แž›แžพแž™แžแž”แž‘แŸ…แž“แžนแž„แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡ msgid "Reply" msgstr "แž†แŸ’แž›แžพแž™แžแž”" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "แž†แŸ’แž›แžพแž™แžแž”" @@ -10098,8 +10098,8 @@ msgstr "แžšแžถแž™แž€แžถแžšแžŽแŸแž€แžถแžšแžŸแž“แŸ’แž‘แž“แžถ" msgid "Report dialog" msgstr "แž”แŸ’แžšแžขแž”แŸ‹แžšแžถแž™แž€แžถแžšแžŽแŸ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "แžšแžถแž™แž€แžถแžšแžŽแŸแž–แŸแžแŸŒแž˜แžถแž“" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "แž•แŸ’แžŸแžถแž™แžกแžพแž„แžœแžทแž‰แžŠแŸ„แž™แžขแŸ’แž“แž€" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "แž€แžถแžšแž•แŸ’แžŸแžถแž™แžกแžพแž„แžœแžทแž‰แž“แŸƒแž”แŸ’แžšแž€แžถแžŸแž“แŸแŸ‡" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "แž–แŸ’แž™แžถแž™แžถแž˜แž˜แŸ’แžแž„แž‘แŸ€แžแž“แžผแžœแžŸแž€แž˜แŸ’แž˜แž—แžถ #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "แžแŸ’แžšแžกแž”แŸ‹แž‘แŸ…แž‘แŸ†แž–แŸแžšแžŠแžพแž˜แžœแžทแž‰" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "แžแŸ’แžšแžกแž”แŸ‹แž‘แŸ…แž‘แŸ†แž–แŸแžšแž˜แžปแž“แžœแžทแž‰" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "แžšแž€แŸ’แžŸแžถแž‘แžปแž€แž€แžถแžšแž•แŸ’แž›แžถแžŸแŸ‹แž”แŸ’แžแžผแžš" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "แžšแž€แŸ’แžŸแžถแž‘แžปแž€แž€แžผแžŠ QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "แžšแž€แŸ’แžŸแžถแž‘แžปแž€แž€แŸ’แž“แžปแž„แž–แŸแžแŸŒแž˜แžถแž“แžšแž”แžŸแŸ‹แžแŸ’แž‰แžปแŸ†" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "แž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แžŠแŸ‚แž›แž”แžถแž“แžšแž€แŸ’แžŸแžถแž‘แžปแž€" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "แž”แžถแž“แžšแž€แŸ’แžŸแžถแž‘แžปแž€แž‘แŸ…แž€แŸ’แž“แžปแž„แž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" @@ -10520,8 +10520,8 @@ msgstr "แž”แžถแž“แžšแž€แŸ’แžŸแžถแž‘แžปแž€แž‘แŸ…แž€แŸ’แž“แžปแž„แž˜แžแžทแž–แŸแž msgid "Say hello!" msgstr "แž“แžทแž™แžถแž™แžแžถแž‡แŸ†แžšแžถแž”แžŸแžฝแžš" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "แžœแžทแž‘แŸ’แž™แžถแžŸแžถแžŸแŸ’แžแŸ’แžš" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "แžšแŸ†แž€แžทแž›แž‘แŸ…แž€แŸ†แž–แžผแž›" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "แžŸแŸ’แžœแŸ‚แž„แžšแž€" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "แžŸแŸ’แžœแŸ‚แž„แžšแž€แž–แŸแžแŸŒแž˜แžถแž“แžŠแŸ‚แž›แžขแŸ’แž“แž€แž…แž„แŸ‹แžŽแŸ‚แž“แžถแŸ†แžŠแž›แŸ‹แžขแŸ’แž“แž€แžŠแž‘แŸƒ" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "แžŸแŸ’แžœแŸ‚แž„แžšแž€ GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "แž˜แžพแž›แž€แžถแžšแž„แžถแžšแž“แŸ… Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "แžŸแŸ’แžœแŸ‚แž„แžšแž€แž‚แŸ’แžšแžถแž”แŸ‹แžšแŸ†แž€แžทแž›แŸ” แž”แŸ’แžšแžพแž‚แŸ’แžšแžถแž”แŸ‹แž…แžปแž…แž–แŸ’แžšแžฝแž‰แžŠแžพแž˜แŸ’แž”แžธแžŸแŸ’แžœแŸ‚แž„แžšแž€แž‘แŸ…แž˜แžปแž แž“แžทแž„แžแž™แž€แŸ’แžšแŸ„แž™ แž“แžทแž„แž€แž“แŸ’แž›แŸ‚แž„แž‘แŸ†แž“แŸแžšแžŸแž˜แŸ’แžšแžถแž”แŸ‹ แž›แŸแž„/แž•แŸ’แžขแžถแž€" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "แž‡แŸ’แžšแžพแžŸแžšแžพแžŸแž–แžŽแŸŒแž˜แžฝแž™" @@ -10764,11 +10769,11 @@ msgstr "แž‡แŸ’แžšแžพแžŸแžšแžพแžŸแž‚แžŽแž“แžธ" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "แž‡แŸ’แžšแžพแžŸแžšแžพแžŸแžšแžผแž”แžแŸ†แžŽแžถแž„" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "แž‡แŸ’แžšแžพแžŸแžšแžพแžŸแžšแžผแž”แžขแžถแžšแž˜แŸ’แž˜แžŽแŸ" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "แž‡แŸ’แžšแžพแžŸแžšแžพแžŸ GIF" msgid "Select GIF \"{0}\"" msgstr "แž‡แŸ’แžšแžพแžŸแžšแžพแžŸ GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "แž‡แŸ’แžšแžพแžŸแžšแžพแžŸแžšแžผแž”แžขแžถแžšแž˜แŸ’แž˜แžŽแŸ {emojiName} แž‡แžถแžšแžผแž”แžแŸ†แžŽแžถแž„แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" @@ -10945,7 +10951,8 @@ msgstr "แž•แŸ’แž‰แžพแžŸแžถแžš" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "แž•แŸ’แž‰แžพแžšแžŸแžถแžšแž‘แŸ…..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "แž•แŸ’แž‰แžพแžขแŸŠแžธแž˜แŸ‚แž›แž•แŸ’แž‘แŸ€แž„แž•แŸ’แž‘แžถแžแŸ‹" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "แž•แŸ’แž‰แžพแžแžถแž˜แžŸแžถแžšแž•แŸ’แž‘แžถแž›แŸ‹" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "แž€แŸ†แžŽแžแŸ‹แžขแŸŠแžธแž˜แŸ‚แž›แžŸแž˜แŸ’แžšแžถแž”แŸ‹แž€แŸ†แžŽแžแŸ‹แž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แžกแžพแž„แžœแžทแž‰" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "แž€แžถแžšแž€แŸ†แžŽแžแŸ‹" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "แž…แŸ‚แž€แžšแŸ†แž›แŸ‚แž€" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "แž”แŸ’แžšแžขแž”แŸ‹แž…แŸ‚แž€แžšแŸ†แž›แŸ‚แž€แžแŸ†แžŽ" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "แž…แŸ‚แž€แžšแŸ†แž›แŸ‚แž€แž€แžผแžŠ QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "แž…แŸ‚แž€แžšแŸ†แž›แŸ‚แž€แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แž“ msgid "Share this starter pack and help people join your community on Bluesky." msgstr "แž…แŸ‚แž€แžšแŸ†แž›แŸ‚แž€แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แž“แŸแŸ‡ แž“แžทแž„แž‡แžฝแž™แž˜แž“แžปแžŸแŸ’แžŸแž…แžผแž›แžšแžฝแž˜แžŸแž แž‚แž˜แž“แŸแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แž“แŸ…แž›แžพ Bluesky" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "แž€แž˜แŸ’แž˜แžœแžทแž’แžธแžŸแžถแž€แž›แŸ’แž”แž„แž…แŸ†แžŽแžผแž›แž…แžทแžแŸ’แžแžŠแŸ‚แž›แž”แžถแž“แž…แŸ‚แž€แžšแŸ†แž›แŸ‚แž€" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "แž”แž„แŸ’แž แžถแž‰" msgid "Show alt text" msgstr "แž”แž„แŸ’แž แžถแž‰แžขแžแŸ’แžแž”แž‘แž‡แŸ†แž“แžฝแžŸ" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "แž”แž„แŸ’แž แžถแž‰" @@ -11274,9 +11281,9 @@ msgstr "แž‘แŸ„แŸ‡แž™แŸ‰แžถแž„แžŽแžถแž€แŸแžŠแŸ„แž™ แž”แž„แŸ’แž แžถแž‰แž”แž‰แŸ’ msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "แž”แž„แŸ’แž แžถแž‰แž…แŸ’แžšแžพแž“แž‘แŸ€แž" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "แž”แž„แŸ’แž แžถแž‰แž€แžถแžšแž–แŸ’แžšแž˜แžถแž“ แž“แžทแž„แžแŸ’แžšแž„แž– msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "แž…แŸแž‰?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "แžแž˜แŸ’แžšแžผแžœแžฑแŸ’แž™แž…แžผแž›" @@ -11469,7 +11476,7 @@ msgstr "แžšแŸ†แž›แž„" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "แžแžผแž…แž‡แžถแž„" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "แž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แž•แŸ’แžŸแŸแž„แž‘แŸ€แžแžŠแŸ‚แž›แžขแŸ’แž“แž€แž”แŸ’แžšแž แŸ‚แž›แž‡แžถแž…แžผแž›แž…แžทแžแŸ’แž" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "แž˜แžถแž“แžขแŸ’แžœแžธแž˜แžฝแž™แžแžปแžŸแž”แŸ’แžšแž€แŸ’แžšแžแžธ แžŸแžผแž˜แž–แŸ’แž™แžถแž™แžถแž˜แž˜แŸ’แžแž„แž‘แŸ€แž" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "แž€แžธแžกแžถ" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แž€แžถแžšแž‡แž‡แŸ‚แž€แžแŸ’แž˜แžธ" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แž‡แž‡แŸ‚แž€แž‡แžถแž˜แžฝแž™ {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜" @@ -11715,12 +11722,16 @@ msgstr "แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แžŠแŸ„แž™แžขแŸ’แž“แž€" msgid "Starter pack is invalid" msgstr "แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แž˜แžทแž“แžแŸ’แžšแžนแž˜แžแŸ’แžšแžผแžœแž‘แŸ" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แžขแž“แžปแž‰แŸ’แž‰แžถแžแžฑแŸ’แž™แžขแŸ’แž“แž€แž…แŸ‚แž€แžšแŸ†แž›แŸ‚แž€แž–แŸแžแŸŒแž˜แžถแž“แžŠแŸ‚แž›แžขแŸ’แž“แž€แž…แžผแž›แž…แžทแžแŸ’แž แž“แžทแž„แž˜แž“แžปแžŸแŸ’แžŸแž™แŸ‰แžถแž„แž„แžถแž™แžŸแŸ’แžšแžฝแž›แž‡แžถแž˜แžฝแž™แž˜แžทแžแŸ’แžแž—แž€แŸ’แžแžทแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" @@ -11728,7 +11739,7 @@ msgstr "แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แžขแž“แžปแž‰แŸ’แž‰แžถแžแžฑ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "แž‘แŸ†แž–แŸแžšแžŸแŸ’แžแžถแž“แž—แžถแž–" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "แž‡แŸ†แž แžถแž“แž‘แžธ {0} แž“แŸƒ {1}" @@ -11754,7 +11765,7 @@ msgstr "แž€แž“แŸ’แž›แŸ‚แž„แž•แŸ’แž‘แžปแž€แžแŸ’แžšแžผแžœแž”แžถแž“แžŸแž˜แŸ’แžขแžถ msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "แž‡แžถแžœ @{0} แžŠแžพแž˜แŸ’แž”แžธแž”แŸ’แžšแžพแžŸแŸ’แž›แžถแž€แž‘แžถแŸ†แž„แž“แŸแŸ‡แŸ–" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "แž”แžถแž“แžŽแŸ‚แž“แžถแŸ†แžŸแž˜แŸ’แžšแžถแž”แŸ‹แžขแŸ’แž“แž€" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "แž”แŸ’แžšแž–แŸแž“แŸ’แž’" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "แž”แŸ‰แŸ‡แžŠแžพแž˜แŸ’แž”แžธแž…แŸ’แžšแžถแž“แž…แŸ„แž›" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "แž€แžทแž…แŸ’แž…แž€แžถแžšแž”แžถแž“แž”แž‰แŸ’แž…แž”แŸ‹ - 10 แž…แžผแž›แž…แžทแžแŸ’แž" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "แž”แž„แŸ’แžšแŸ€แž“แž€แŸ’แž”แžฝแž“แžŠแŸ„แŸ‡แžŸแŸ’แžšแžถแž™แžšแž”แžŸแŸ‹แž™แžพแž„แž“แžผแžœแžขแŸ’แžœแžธแžŠแŸ‚แž›แžขแŸ’แž“แž€แž…แžผแž›แž…แžทแžแŸ’แž" @@ -12060,7 +12073,7 @@ msgstr "แž›แž€แŸ’แžแžแžŽแŸ’แžŒ" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แž“แŸ„แŸ‡แž˜แžทแž“แžแŸ’แžš msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "แž˜แŸ‰แžถแžŸแŸŠแžธแž“แž˜แŸแž แžถแž€แŸ‹แžŠแžผแž…แž‡แžถแž€แŸ†แž–แžปแž„แž‡ msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แžŠแŸ‚แž›แžขแŸ’แž“แž€แž€แŸ†แž–แžปแž„แž–แŸ’แž™แžถแž™แžถแž˜แž˜แžพแž›แž‚แžบแž˜แžทแž“แžแŸ’แžšแžนแž˜แžแŸ’แžšแžผแžœแž‘แŸแŸ” แžขแŸ’แž“แž€แžขแžถแž…แž›แžปแž”แž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แž“แŸแŸ‡แž‡แŸ†แž“แžฝแžŸแžœแžทแž‰" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "แž›แŸแžแž€แžผแžŠแž•แŸ’แž‘แŸ€แž„แž•แŸ’แž‘แžถแžแŸ‹แžŠแŸ‚แž›แžขแŸ’แž“แž€ msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "แž˜แžถแž“แž”แž‰แŸ’แž แžถแž€แŸ’แž“แžปแž„แž€แžถแžšแž‘แžถแž€แŸ‹แž‘แž„แž˜แŸ‰แžถแžŸแŸŠแžธแž“แž˜แŸ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "แž˜แžถแž“แž”แž‰แŸ’แž แžถแž€แŸ’แž“แžปแž„แž€แžถแžšแž‘แžถแž€แŸ‹แž‘แž„แž˜แŸ‰แžถแžŸแŸŠแžธแž“แž˜แŸ แžŸแžผแž˜แž–แžทแž“แžทแžแŸ’แž™แž˜แžพแž›แž€แžถแžšแžแž—แŸ’แž‡แžถแž”แŸ‹แžขแŸŠแžธแž“แž’แžบแžŽแžทแžแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€ แž แžพแž™แž–แŸ’แž™แžถแž™แžถแž˜แž˜แŸ’แžแž„แž‘แŸ€แž" @@ -12283,8 +12296,8 @@ msgstr "แž˜แžถแž“แž”แž‰แŸ’แž แžถแž€แŸ’แž“แžปแž„แž€แžถแžšแž‘แžถแž€แŸ‹แž‘แž„แž˜แŸ‰ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "แž˜แžถแž“แž”แž‰แŸ’แž แžถแž€แŸ’แž“แžปแž„แž€แžถแžšแž‘แžถแž‰แž™แž€แž€แžถแžšแž‡แžผแž“แžŠแŸ†แžŽแžนแž„แŸ” แž…แžปแž…แž‘แžธแž“แŸแŸ‡แžŠแžพแž˜แŸ’แž”แžธแž–แŸ’แž™แžถแž™แžถแž˜แž˜แŸ’แžแž„แž‘แŸ€แž" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "แž˜แžถแž“แž”แž‰แŸ’แž แžถแž€แŸ’แž“แžปแž„แž€แžถแžšแž‘แžถแž‰แž™แž€แžŸแžถแžšแž”แž„แŸ’แž แŸ„แŸ‡แŸ” แž…แžปแž…แž‘แžธแž“แŸแŸ‡แžŠแžพแž˜แŸ’แž”แžธแž–แŸ’แž™แžถแž™แžถแž˜แž˜แŸ’แžแž„แž‘แŸ€แž" @@ -12309,7 +12322,7 @@ msgstr "แž˜แžถแž“แž”แž‰แŸ’แž แžถแž€แŸ’แž“แžปแž„แž€แžถแžšแž‘แžถแž‰แž™แž€แž–แŸแž msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "แž˜แžถแž“โ€‹แž”แž‰แŸ’แž แžถโ€‹แž€แŸ’แž“แžปแž„โ€‹แž€แžถแžšโ€‹แžŠแž€โ€‹แž˜แžแžทโ€‹แž–แŸแžแŸŒแž˜แžถแž“โ€‹แž“แŸแŸ‡โ€‹แž…แŸแž‰แŸ” แžŸแžผแž˜แž–แžทแž“แžทแžแŸ’แž™แž˜แžพแž›แž€แžถแžšแžแž—แŸ’แž‡แžถแž”แŸ‹แžขแŸŠแžธแž“แž’แžบแžŽแžทแžแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€ แž แžพแž™แž–แŸ’แž™แžถแž™แžถแž˜แž˜แŸ’แžแž„แž‘แŸ€แž" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แž‘แžถแŸ†แž„แž“แŸแŸ‡แžขแž“แžปแžœแžแŸ’แžแž…แŸ† msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} แž“แŸแŸ‡แžแŸ’แžšแžผแžœแž”แžถแž“แžŸแž˜แŸ’แž‚แžถแž›แŸ‹แŸ–" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "แž‚แžŽแž“แžธแž“แŸแŸ‡แž”แžถแž“แžŸแŸ’แž“แžพแžŸแžปแŸ†แžฑแŸ’แž™แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹แž…แžผแž›แžŠแžพแž˜แŸ’แž”แžธแž˜แžพแž›แž€แž˜แŸ’แžšแž„แž–แŸแžแŸŒแž˜แžถแž“แžšแž”แžŸแŸ‹แž–แžฝแž€แž‚แŸ" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "แž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แž“แŸแŸ‡แž‘แž‘แŸ! แžขแŸ’แž“แž€แž”แŸ’แžšแž แŸ‚แž›แž‡แžถแžแŸ’แžšแžผแžœแžแžถแž˜แžŠแžถแž“แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹แž”แž“แŸ’แžแŸ‚แž˜แž‘แŸ€แž แžฌแž€แŸ‚แžŸแž˜แŸ’แžšแžฝแž›แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แž—แžถแžŸแžถแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "แž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แž“แŸแŸ‡แž‚แžบแž‘แž‘แŸ" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "แž…แŸ†แžŽแžปแž…แž‘แžถแž‰แž“แŸแŸ‡แžแŸ’แžšแžผแžœแž”แžถแž“แž”แž˜แŸ’แžšแžปแž„แž‘แžปแž€แŸ” แžŸแžผแž˜แžŸแžถแž€แž›แŸ’แž”แž„แž˜แžฝแž™แž•แŸ’แžŸแŸแž„แž‘แŸ€แž" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "แžŸแŸ’แž›แžถแž€แž“แŸแŸ‡แžแŸ’แžšแžผแžœแž”แžถแž“แžขแž“แžปแžœแžแŸ’แžแžŠ msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "แžขแŸ’แž“แž€แžŠแžถแž€แŸ‹แžŸแŸ’แž›แžถแž€แž“แŸแŸ‡แž˜แžทแž“แž‘แžถแž“แŸ‹แž”แžถแž“แž”แŸ’แžšแž€แžถแžŸแžแžถแžŸแŸ’แž›แžถแž€แžŽแžถแžŠแŸ‚แž›แžœแžถแž”แŸ„แŸ‡แž–แžปแž˜แŸ’แž–แž‘แŸ แž แžพแž™แž”แŸ’แžšแž แŸ‚แž›แž‡แžถแž˜แžทแž“แžŸแž€แž˜แŸ’แž˜แž‘แŸ" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "แž”แŸ’แžšแž€แžถแžŸแž“แŸแŸ‡แžขแŸ‡แžขแžถแž„แžแžถแžแŸ’แžšแžผแžœแž”แžถแž“แž”แž„แŸ’แž€แžพแžแžกแžพแž„แž“แŸ…แž›แžพ <0>{0} แž”แŸ‰แžปแž“แŸ’แžแŸ‚แžแŸ’แžšแžผแžœแž”แžถแž“แž˜แžพแž›แžƒแžพแž‰แž‡แžถแž›แžพแž€แžŠแŸ†แž”แžผแž„แžŠแŸ„แž™ Bluesky แž“แŸ…แž›แžพ <1>{1}" @@ -12649,7 +12662,7 @@ msgstr "แž”แŸ’แžšแž€แžถแžŸแž“แŸแŸ‡แžขแŸ‡แžขแžถแž„แžแžถแžแŸ’แžšแžผแžœแž”แžถแž“ msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "แž”แŸ’แžšแž€แžถแžŸแž“แŸแŸ‡แž“แžนแž„แžแŸ’แžšแžผแžœแž”แžถแž“แž›แžถแž€แŸ‹แž–แžธแž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“ แž“แžทแž„แžแŸ’แžŸแŸ‚แžŸแŸ’แžšแž›แžถแž™แŸ” แž“แŸแŸ‡แž˜แžทแž“แžขแžถแž…แžแŸ’แžšแžกแž”แŸ‹แžœแžทแž‰แž”แžถแž“แž‘แŸ" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "แžขแŸ’แž“แž€แž“แžทแž–แž“แŸ’แž’แž“แŸƒแž”แŸ’แžšแž€แžถแžŸแž“แŸแŸ‡แž”แžถแž“แž”แžทแž‘แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡แžŸแž˜แŸ’แžšแž„แŸ‹" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹แž“แŸแŸ‡แž˜แžทแž“แž˜แžถแž“แžขแŸ’แž“แž€แžแžถแž˜แž‘แŸ" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹แž“แŸแŸ‡แž”แžถแž“แžšแžถแžšแžถแŸ†แž„แžขแŸ’แž“แž€แŸ” แžขแŸ’แž“แž€แž˜แžทแž“แžขแžถแž…แž˜แžพแž›แž˜แžถแžแžทแž€แžถแžšแž”แžŸแŸ‹แž–แžฝแž€แž‚แŸแž”แžถแž“แž‘แŸ" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹แž“แŸแŸ‡แžแŸ’แžšแžผแžœแž”แžถ msgid "This user is new here. Press for more info about when they joined." msgstr "แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹แž“แŸแŸ‡แžแŸ’แž˜แžธแž“แŸ…แž‘แžธแž“แŸแŸ‡แŸ” แž…แžปแž…แžŸแž˜แŸ’แžšแžถแž”แŸ‹แž–แŸแžแŸŒแž˜แžถแž“แž”แž“แŸ’แžแŸ‚แž˜แžขแŸ†แž–แžธแž–แŸแž›แžŠแŸ‚แž›แž–แžฝแž€แž‚แŸแž”แžถแž“แž…แžผแž›แžšแžฝแž˜" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹แž“แŸแŸ‡แž˜แžทแž“แžแžถแž˜แžŠแžถแž“แž“แžšแžŽแžถแž˜แŸ’แž“แžถแž€แŸ‹แž‘แŸ" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "แžœแžถแž“แžนแž„แžŠแž€ @{0} แž…แŸแž‰แž–แžธแž”แž‰แŸ’แž‡แžธแž…แžผแž›แž”แŸ’แžšแžพแžšแž แŸแžŸ" @@ -12786,7 +12801,7 @@ msgstr "แž…แŸ†แžŽแžผแž›แž…แžทแžแŸ’แžแžแŸ’แžŸแŸ‚แžŸแŸ’แžšแžกแžถแž™" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "แž€แŸ†แž–แžผแž›" @@ -12858,7 +12873,7 @@ msgstr "แž€แŸ†แž–แžผแž›" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "แž”แžทแž‘แž‚แžŽแž“แžธ?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "แžˆแž”แŸ‹แžแžถแž˜ {0}" msgid "Unfollow account" msgstr "แžˆแž”แŸ‹แžแžถแž˜แžŠแžถแž“แž‚แžŽแž“แžธ" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "แžˆแž”แŸ‹แž‡แžถแžœแž–แžธแžขแŸ’แž“แž€แžŠแžถแž€แŸ‹แžŸแŸ’แž›แžถแž€แž“แŸแŸ‡ msgid "Unsubscribed from list" msgstr "แžˆแž”แŸ‹แž‡แžถแžœแž–แžธแž”แž‰แŸ’แž‡แžธ" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "แž€แžถแžšแž’แŸ’แžœแžพแž”แž…แŸ’แž…แžปแž”แŸ’แž”แž“แŸ’แž“แž—แžถแž–แž›แž‘แŸ’แž’แž—แžถแž–แž˜แžพแž›แžƒแžพแž‰แž€แžถแžšแž†แŸ’แž›แžพแž™แžแž”แž”แžถแž“แž”แžšแžถแž‡แŸแž™" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "แž”แž„แŸ’แž แŸ„แŸ‡แžšแžผแž”แžแžแž‡แŸ†แž“แžฝแžŸแžœแžทแž‰" @@ -13355,7 +13376,7 @@ msgstr "แž”แž„แŸ’แž แŸ„แŸ‡แž–แžธแžฏแž€แžŸแžถแžš" msgid "Upload from Library" msgstr "แž”แž„แŸ’แž แŸ„แŸ‡แž–แžธแž”แžŽแŸ’แžŽแžถแž›แŸแž™" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "แž€แŸ†แž–แžปแž„แž”แž„แŸ’แž แŸ„แŸ‡แžšแžผแž”แž—แžถแž–..." msgid "Uploading link thumbnail..." msgstr "แž€แŸ†แž–แžปแž„แž”แž„แŸ’แž แŸ„แŸ‡แžšแžผแž”แž—แžถแž–แžแžผแž…แž“แŸƒแžแŸ†แžŽ..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "แž€แŸ†แž–แžปแž„แž”แž„แŸ’แž แŸ„แŸ‡แžœแžธแžŠแŸแžขแžผ..." @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "แžœแžธแžŠแŸแžขแžผ" msgid "Video failed to process" msgstr "แžœแžธแžŠแŸแžขแžผแž”แžถแž“แž”แžšแžถแž‡แŸแž™แž€แŸ’แž“แžปแž„แžŠแŸ†แžŽแžพแžšแž€แžถแžš" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "แžœแžธแžŠแŸแžขแžผแž แŸ’แž‚แŸแž˜" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "แžšแž€แž˜แžทแž“แžƒแžพแž‰แžœแžธแžŠแŸแžขแžผ" @@ -13653,7 +13674,7 @@ msgstr "แžšแž€แž˜แžทแž“แžƒแžพแž‰แžœแžธแžŠแŸแžขแžผ" msgid "Video settings" msgstr "แž€แžถแžšแž€แŸ†แžŽแžแŸ‹แžœแžธแžŠแŸแžขแžผ" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "แž”แž„แŸ’แž แŸ„แŸ‡แžœแžธแžŠแŸแžขแžผ" @@ -13662,17 +13683,17 @@ msgstr "แž”แž„แŸ’แž แŸ„แŸ‡แžœแžธแžŠแŸแžขแžผ" msgid "Video: {0}" msgstr "แžœแžธแžŠแŸแžขแžผแŸ– {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "แž˜แžพแž›แžšแžผแž”แžแŸ†แžŽแžถแž„แžšแž”แžŸแŸ‹ {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "แž˜แžพแž›แž”แŸ’แžšแžœแžแŸ’แžแžทแžšแžผแž”แžšแž”แžŸแŸ‹ {0}" @@ -13724,13 +13745,13 @@ msgstr "แž˜แžพแž›แž”แŸ’แž›แžปแž€แžŸแž˜แŸ’แžšแžถแž”แŸ‹แž–แŸแžแŸŒแž˜แžถแž“แž›แž˜ msgid "View debug entry" msgstr "แž˜แžพแž›แž’แžถแžแžปแž”แŸ†แž”แžถแžแŸ‹แž€แŸ†แž แžปแžŸ" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "แž˜แžพแž›แž–แŸแžแŸŒแž˜แžถแž“แž›แž˜แŸ’แžขแžทแž" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "แž˜แžพแž› thread แž–แŸแž‰" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "แž˜แžพแž›แž–แŸแžแŸŒแž˜แžถแž“แžขแŸ†แž–แžธแžŸแŸ’แž›แžถแž€แž‘แžถแŸ†แž„แž“แŸแŸ‡" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "แž˜แžพแž›แžŸแŸแžœแžถแž€แž˜แŸ’แž˜แžŠแžถแž€แŸ‹แžŸแŸ’แž›แžถแž€แžŠแŸ‚แž›แž•แŸ’แžแž›แŸ‹แžŠแŸ„แž™ @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "แž˜แžพแž›แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹แžŠแŸ‚แž›แž…แžผแž›แž…แžทแžแŸ’แžแž–แŸแžแŸŒแž˜แžถแž“แž“แŸแŸ‡" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "แž˜แžพแž›แž”แž‰แŸ’แž‡แžธแžŸแž˜แŸ’แžšแž”แžŸแž˜แŸ’แžšแžฝแž›แžšแž”แžŸแŸ‹แžข msgid "View your muted accounts" msgstr "แž˜แžพแž›แž‚แžŽแž“แžธแžŠแŸ‚แž›แž”แžถแž“แž”แžทแž‘แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "แž™แžพแž„แž€แŸ†แž–แžปแž„แž˜แžถแž“แž”แž‰แŸ’แž แžถแž”แžŽแŸ’แžแžถแž‰ แžŸแžผแž˜แž–แŸ’แž™แžถแž™แžถแž˜แž˜แŸ’แžแž„แž‘แŸ€แž" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "แž™แžพแž„แžŸแžปแŸ†แž‘แŸ„แžŸ แž”แŸ‰แžปแž“แŸ’แžแŸ‚แž™แžพแž„แž˜แžทแž“แžข msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "แž™แžพแž„แžŸแžปแŸ†แž‘แŸ„แžŸ แž”แŸ‰แžปแž“แŸ’แžแŸ‚แž™แžพแž„แž˜แžทแž“แžขแžถแž…แž•แŸ’แž‘แžปแž€แž–แžถแž€แŸ’แž™แžŠแŸ‚แž›แžขแŸ’แž“แž€แž”แžถแž“แž”แžทแž‘แžŸแŸ†แžกแŸแž„แž“แŸ…แž–แŸแž›แž“แŸแŸ‡แž”แžถแž“แž‘แŸแŸ” แžŸแžผแž˜แž–แŸ’แž™แžถแž™แžถแž˜แž˜แŸ’แžแž„แž‘แŸ€แž" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "แž™แžพแž„แžŸแžปแŸ†แž‘แŸ„แžŸ! แž”แŸ’แžšแž€แžถแžŸแžŠแŸ‚แž›แžขแŸ’แž“แž€แž€แŸ†แž–แžปแž„แž†แŸ’แž›แžพแž™แžแž”แžแŸ’แžšแžผแžœแž”แžถแž“แž›แžปแž”" @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "แž˜แžถแž“แžšแžฟแž„แžขแžธ?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "แžŸแžšแžŸแŸแžšแžŸแžถแžšแž”แž„แŸ’แž แŸ„แŸ‡" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "แžŸแžšแžŸแŸแžšแž€แžถแžšแž†แŸ’แž›แžพแž™แžแž”แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "แžขแŸ’แž“แž€แž˜แžทแž“แžแŸ’แžšแžผแžœแž”แžถแž“แžขแž“แžปแž‰แŸ’แž‰แžถแžแžฑแŸ’แž™แž”แž„แŸ’แž แŸ„แŸ‡แžœแžธแžŠแŸแžขแžผแž‘แŸ" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "แžฅแžกแžผแžœแž“แŸแŸ‡ แžขแŸ’แž“แž€แžขแžถแž…แž…แžผแž›แžŠแŸ„แž™แž”แŸ’แžšแžพแž–แžถแž€แŸ’แž™แžŸแž˜แŸ’แž„แžถแžแŸ‹แžแŸ’แž˜แžธแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "แžขแŸ’แž“แž€แž”แžถแž“แžˆแžถแž“แžŠแž›แŸ‹แžŠแŸ‚แž“แž€แŸ†แžŽแžแŸ‹แž”แžŽแŸ’แžแŸ„แŸ‡แžขแžถแžŸแž“แŸ’แž“แžŸแž˜แŸ’แžšแžถแž”แŸ‹แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡แžœแžธแžŠแŸแžขแžผแŸ” แžŸแžผแž˜แž–แŸ’แž™แžถแž™แžถแž˜แž˜แŸ’แžแž„แž‘แŸ€แžแž“แŸ…แž–แŸแž›แž€แŸ’แžšแŸ„แž™" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "แžขแŸ’แž“แž€แž˜แžทแž“แž‘แžถแž“แŸ‹แž”แžถแž“แž”แž„แŸ’แž€แžพแžแž€แž‰แŸ’แž…แž”แŸ‹แž…แžถแž”แŸ‹แž•แŸ’แžแžพแž˜แž“แŸ…แžกแžพแž™แž‘แŸ" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "แžขแŸ’แž“แž€แžขแžถแž…แž”แž“แŸ’แžแŸ‚แž˜แž”แžถแž“แžแŸ’แžšแžนแž˜แžแŸ‚ 3 แž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“แž”แŸ‰แžปแžŽแŸ’แžŽแŸ„แŸ‡" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "แžขแŸ’แž“แž€โ€‹แžแŸ’แžšแžผแžœโ€‹แžแŸ‚โ€‹แžแžถแž˜โ€‹แž™แŸ‰แžถแž„โ€‹แž แŸ„แž…โ€‹แžŽแžถแžŸแŸ‹โ€‹แž”แŸ’แžšแžถแŸ†แž–แžธแžšโ€‹แž“แžถแž€แŸ‹โ€‹แž•แŸ’แžŸแŸแž„โ€‹แž‘แŸ€แžโ€‹แžŠแžพแž˜แŸ’แž”แžธโ€‹แž”แž„แŸ’แž€แžพแžโ€‹แž€แž‰แŸ’แž…แž”แŸ‹โ€‹แž…แžถแž”แŸ‹แž•แŸ’แžŠแžพแž˜" @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "แžขแŸ’แž“แž€โ€‹แž“แžนแž„โ€‹แž’แŸ’แžœแžพโ€‹แžแžถแž˜โ€‹แžขแŸ’แž“แž€โ€‹แž”แŸ’แžšแžพโ€‹แžŠแŸ‚แž›โ€‹แž”แžถแž“โ€‹แžŽแŸ‚แž“แžถแŸ† แž“แžทแž„โ€‹แž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“โ€‹แž“แŸ…โ€‹แž–แŸแž›โ€‹แžขแŸ’แž“แž€โ€‹แž”แž‰แŸ’แž…แž”แŸ‹โ€‹แž€แžถแžšโ€‹แž”แž„แŸ’แž€แžพแžโ€‹แž‚แžŽแž“แžธโ€‹แžšแž”แžŸแŸ‹โ€‹แžขแŸ’แž“แž€" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "แžขแŸ’แž“แž€แž“แžนแž„แž’แŸ’แžœแžพแžแžถแž˜แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹แžŠแŸ‚แž›แž”แžถแž“แžŽแŸ‚แž“แžถแŸ† แž“แŸ…แž–แŸแž›แžขแŸ’แž“แž€แž”แž‰แŸ’แž…แž”แŸ‹แž€แžถแžšแž”แž„แŸ’แž€แžพแžแž‚แžŽแž“แžธแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "แžขแŸ’แž“แž€โ€‹แž”แžถแž“โ€‹แžŠแž›แŸ‹โ€‹แž…แžปแž„โ€‹แž”แž‰แŸ’แž…แž”แŸ‹โ€‹แž“แŸƒโ€‹แž–แŸแžแŸŒแž˜แžถแž“โ€‹แžšแž”แžŸแŸ‹โ€‹แžขแŸ’แž“แž€โ€‹แž แžพแž™! แžŸแŸ’แžœแŸ‚แž„แžšแž€แž‚แžŽแž“แžธแž˜แžฝแž™แž…แŸ†แž“แžฝแž“แž‘แŸ€แžแžŠแžพแž˜แŸ’แž”แžธแžแžถแž˜แžŠแžถแž“" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "แžขแŸ’แž“แž€แž”แžถแž“แžˆแžถแž“แžŠแž›แŸ‹แžŠแŸ‚แž“แž€แŸ†แžŽแžแŸ‹แž”แŸ’แžš msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "แžขแŸ’แž“แž€แž”แžถแž“แžˆแžถแž“แžŠแž›แŸ‹แžŠแŸ‚แž“แž€แŸ†แžŽแžแŸ‹แž”แŸ’แžšแž…แžถแŸ†แžแŸ’แž„แŸƒแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แžŸแž˜แŸ’แžšแžถแž”แŸ‹แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡แžœแžธแžŠแŸแžขแžผ (แžœแžธแžŠแŸแžขแžผแž…แŸ’แžšแžพแž“แž–แŸแž€)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "แž‚แžŽแž“แžธแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แŸ”" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "แž‚แžŽแž“แžธแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แž˜แžทแž“แž‘แžถแž“แŸ‹แž…แžถแžŸแŸ‹แž‚แŸ’แžšแž”แŸ‹แž‚แŸ’แžšแžถแž“แŸ‹แž€แŸ’แž“แžปแž„แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡แžœแžธแžŠแŸแžขแžผแŸ” แžŸแžผแž˜แž–แŸ’แž™แžถแž™แžถแž˜แž˜แŸ’แžแž„แž‘แŸ€แžแž“แŸ…แž–แŸแž›แž€แŸ’แžšแŸ„แž™" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "แžขแŸŠแžธแž˜แŸ‚แž›แžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แž แžถแž€แŸ‹แžŠแžผแž…แž‡แžถแž˜แžทแž“แžแŸ’แžšแžนแž˜แžแŸ’แžšแžผแžœ" @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "แž”แŸ’แžšแžœแžแŸ’แžแžทแžšแžผแž” แž€แžถแžšแž”แž„แŸ’แž แŸ„แŸ‡ แž˜แžแžทแž–แŸแžแŸŒแž˜แžถแž“ แž“แžทแž„แž”แž‰แŸ’แž‡แžธแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แž“แžนแž„แž›แŸ‚แž„แžขแžถแž…แž˜แžพแž›แžƒแžพแž‰แžŠแŸ„แž™แžขแŸ’แž“แž€แž”แŸ’แžšแžพแž”แŸ’แžšแžถแžŸแŸ‹ Bluesky แž•แŸ’แžŸแŸแž„แž‘แŸ€แžแŸ” แžขแŸ’แž“แž€แžขแžถแž…แžŠแŸ†แžŽแžพแžšแž€แžถแžšแž‚แžŽแž“แžธแžšแž”แžŸแŸ‹แžขแŸ’แž“แž€แžกแžพแž„แžœแžทแž‰แž”แžถแž“แž‚แŸ’แžšแž”แŸ‹แž–แŸแž›แžŠแŸ„แž™แž€แžถแžšแž…แžผแž›" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index 176a8e956b..5fd4bef584 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Korean\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "โ€˜{interestsDisplayName}โ€™ ์นดํ…Œ๊ณ ๋ฆฌ (ํ™œ์„ฑ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(์ฐจ๋‹จํ•œ ๋ฉ”์‹œ์ง€ ์ˆจ๊ฒจ์ง)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(์ž„๋ฒ ๋“œ ์ฝ˜ํ…์ธ  ํฌํ•จ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(์‚ญ์ œ๋œ ๋ฉ”์‹œ์ง€)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(์ž˜๋ชป๋œ ๋Œ€ํ™” ์ดˆ๋Œ€ ๋งํฌ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(๋‚ด๊ฐ€ ์ฐธ์—ฌํ•˜๊ธฐ ์ „์— ๋ณด๋‚ด์ง„ ๋ฉ”์‹œ์ง€)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, other {#์‹œ๊ฐ„}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, other {๋‚ด ๊ฒŒ์‹œ๋ฌผ์— #๊ฐœ์˜ ๋ผ๋ฒจ์ด ์ ์šฉ๋˜์—ˆ์Šต๋‹ˆ๋‹ค}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, other {#๊ฐœ ๋ผ๋ฒจ ์ ์šฉ๋จ}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, other {# ์ข‹์•„์š”}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "๋ฉค๋ฒ„ {0, plural, other {#๋ช…}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, other {์ƒˆ ์ฐธ์—ฌ ์š”์ฒญ #๊ฐœ}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, other {#๋ช…}} ๋ฐ˜์‘ํ•จ โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{1} ยท {0}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (๊ณ„์ •)" @@ -251,36 +252,13 @@ msgstr "{0} ๋‹˜์ด ๋Œ€ํ™”์— ์ถ”๊ฐ€๋˜์—ˆ์Šต๋‹ˆ๋‹ค" msgid "{0} and {1} added to chat" msgstr "{0} ๋‹˜๊ณผ {1} ๋‹˜์ด ๋Œ€ํ™”์— ์ถ”๊ฐ€๋˜์—ˆ์Šต๋‹ˆ๋‹ค" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} ๋‹˜๊ณผ {1} ๋‹˜์ด ์ข‹์•„ํ•ฉ๋‹ˆ๋‹ค" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} ๋‹˜ {others, plural, other {์™ธ {2}๋ช…}}์ด ์ข‹์•„ํ•ฉ๋‹ˆ๋‹ค" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} ๋‹˜ {othersLabel}์ด ์ข‹์•„ํ•ฉ๋‹ˆ๋‹ค" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} ํŒ”๋กœ์šฐ ์ค‘" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} ๋‹˜์ด ๋‚˜๋ฅผ ์ฐจ๋‹จํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -324,14 +302,6 @@ msgstr "{0} ๋‹˜์ด ๋‚˜๊ฐ”์Šต๋‹ˆ๋‹ค" msgid "{0} left the group" msgstr "{0} ๋‹˜์ด ๊ทธ๋ฃน์—์„œ ๋‚˜๊ฐ”์Šต๋‹ˆ๋‹ค" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} ๋‹˜์ด ์ข‹์•„ํ•ฉ๋‹ˆ๋‹ค" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0}/50์ž" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ๋‹˜์ด {1}(์œผ)๋กœ ๋ฐ˜์‘ํ•จ" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0} ๋‹˜, {1} ๋‹˜ {memberCount, plural, other {์™ธ #๋ช…}}์ด ๋Œ€ํ™”์— ์ถ”๊ฐ€๋˜์—ˆ์Šต๋‹ˆ๋‹ค" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0} ๋‹˜, {1} ๋‹˜ {others, plural, other {์™ธ {3}๋ช…}}์ด ์ข‹์•„ํ•ฉ๋‹ˆ๋‹ค" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0} ๋‹˜, {1} ๋‹˜ {othersLabel}์ด ์ข‹์•„ํ•ฉ๋‹ˆ๋‹ค" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} ๋‹˜์ด ๋‚˜๋ฅผ ์ธ์ฆํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "{following} following" msgstr "{following} ํŒ”๋กœ์šฐ ์ค‘" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount}๊ฐœ {postCount, plural, other {๊ฒŒ์‹œ๋ฌผ}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} ๋‹˜์€ ์ถ”๊ฐ€ํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" @@ -698,7 +660,7 @@ msgstr "{handle} ๋‹˜์€ ์ถ”๊ฐ€ํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" msgid "{handle} can't be messaged" msgstr "{handle} ๋‹˜์—๊ฒŒ ๋ฉ”์‹œ์ง€๋ฅผ ๋ณด๋‚ผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "{handle} ๋‹˜์—๊ฒŒ ๋ฉ”์‹œ์ง€๋ฅผ ๋ณด๋‚ผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" @@ -776,12 +738,6 @@ msgstr "์ฝ์ง€ ์•Š์€ ํ•ญ๋ชฉ {notificationCount, plural, other {#๊ฐœ}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {์—ฐ๋ฝ์ฒ˜ #๊ฐœ๋ฅผ}} ์ฐพ์•˜์Šต๋‹ˆ๋‹ค" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, other {์™ธ {1}๋ช…}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} ๋‹˜์€ {timeAgoString} ์ „์— Bluesky์— ๊ฐ€์ž…ํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} ๋‹˜์€ {timeAgoString} ์ „์— ์Šคํƒ€ํ„ฐ ํŒฉ์„ ์‚ฌ์šฉํ•˜์—ฌ Bluesky์— ๊ฐ€์ž…ํ–ˆ์Šต๋‹ˆ๋‹ค" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, other {#์ž}} ๋‚จ์Œ" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} ๋‹˜์ด ๋ณด๋‚ด๋Š” ๋‹ต์žฅ" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} ๋‹˜์ด {originalName} ๋‹˜์—๊ฒŒ ๋ณด๋‚ด๋Š” ๋‹ต์žฅ" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} ๋‹˜์ด ๋‚˜์—๊ฒŒ ๋ณด๋‚ด๋Š” ๋‹ต์žฅ" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, other {#๊ฐœ ์š”์ฒญ}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+๊ฐœ ์š”์ฒญ" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}์‹œ๊ฐ„ ์ „" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} ๋‹˜์€ ์‹ ๋ขฐํ•  ์ˆ˜ ์žˆ๋Š” ์ธ์ฆ์ž์ž…๋‹ˆ๋‹ค" @@ -842,13 +795,13 @@ msgstr "{userName} ๋‹˜์˜ ์ธ์ฆ" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, other {ํŒ”๋กœ์šฐ ์ค‘}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {์ธ์šฉ}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {์žฌ๊ฒŒ์‹œ}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, other {์ €์žฅ}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, other {์ข‹์•„์š”}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> ๋‹˜์ด ๋‚˜๋ฅผ ์ถ”๊ฐ€ํ•จ" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>๋กœ๊ทธ์ธ<1>ํ•˜๊ฑฐ๋‚˜ <2>๊ณ„์ •์„ ๋งŒ๋“ค๊ณ <3> <4>๋‰ด์Šค, ์Šคํฌ์ธ , ์ •์น˜ ๋“ฑ Bluesky์˜ ๋‹ค์–‘ํ•œ ์†Œ์‹์„ ๊ฒ€์ƒ‰ํ•˜์„ธ์š”." @@ -971,7 +924,7 @@ msgstr "30์ผ" msgid "7 days" msgstr "7์ผ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "News, Booksky, Game Dev, Blacksky, Fountain Pens ๋“ฑ Bluesky์—์„œ ์ฐพ์„ ์ˆ˜ ์žˆ๋Š” ์ธ๊ธฐ ํ”ผ๋“œ ๋ชจ์Œ" @@ -988,9 +941,11 @@ msgstr "๋„คํŠธ์›Œํฌ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท ์—ฐ๊ฒฐ ์ƒํƒœ๋ฅผ #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "์ƒˆ ์ฝ”๋“œ๋ฅผ ๋ณด๋ƒˆ์Šต๋‹ˆ๋‹ค" msgid "A new form of verification" msgstr "์ƒˆ๋กœ์šด ๋ฐฉ์‹์˜ ์ธ์ฆ" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "๋‚ด๊ฐ€ ์ฐธ์—ฌํ•˜๊ธฐ ์ „์— ๋ณด๋‚ด์ง„ ๋ฉ”์‹œ์ง€์— ๋ณด๋‚ด๋Š” ๋‹ต์žฅ" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "โ€˜์ž„์‹œ ์ €์žฅโ€™์ด๋ผ๋Š” ์ƒˆ๋กœ์šด ๋ฒ„ํŠผ์ด ์ถ”๊ฐ€๋œ ๊ฒŒ์‹œ๋ฌผ ์ž‘์„ฑ๊ธฐ ์Šคํฌ๋ฆฐ์ƒท. ๋ฒ„ํŠผ์—๋Š” ๋ฌด์ง€๊ฐœ์ƒ‰ ํญ์ฃฝ ํšจ๊ณผ๊ฐ€ ์ ์šฉ๋˜์–ด ์žˆ์Šต๋‹ˆ๋‹ค. ๋ฒ„ํŠผ ์•„๋ž˜์—๋Š” โ€œ์ด๋ด, ์†Œ์‹ ๋“ค์—ˆ์–ด? ์ด์ œ Bluesky์— ์ž„์‹œ ์ €์žฅ ๊ธฐ๋Šฅ์ด ์ƒ๊ฒผ๋Œ€!!!โ€๋ผ๋Š” ๋ฌธ๊ตฌ๊ฐ€ ์ ํ˜€ ์žˆ์Šต๋‹ˆ๋‹ค." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "์„ ํƒํ•œ ์ˆ˜์‹ ์ž๋ฅผ ๋ฐœ์‹ ์ž๊ฐ€ ํŒ”๋กœ์šฐํ•˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "์ฐธ์—ฌ ์š”์ฒญ ์™„๋ฃŒ! ๊ทธ๋ฃน ์†Œ์œ ์ž๊ฐ€ ์š”์ฒญ์„ ๊ฒ€ํ† ํ•  ์˜ˆ์ •์ž… msgid "Accessibility" msgstr "์ ‘๊ทผ์„ฑ" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "์ ‘๊ทผ์„ฑ ์„ค์ •" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "๋ฆฌ์ŠคํŠธ๋กœ ๊ณ„์ • ๋ฎคํŠธ๋จ" msgid "Account options" msgstr "๊ณ„์ • ์˜ต์…˜" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "๋น ๋ฅธ ์•ก์„ธ์Šค์—์„œ ๊ณ„์ • ์ œ๊ฑฐ" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "๋ฌผ๊ฒฐ ๋ชจ์–‘์˜ ํŒŒ๋ž€์ƒ‰ ์ฒดํฌ ํ‘œ์‹œ <0><1/> ๊ฐ€ ์žˆ๋Š” ๊ณ„์ •์€ ๋‹ค๋ฅธ ๊ณ„์ •์„ ์ธ์ฆํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. ์ด๋Ÿฌํ•œ ์‹ ๋ขฐํ•  ์ˆ˜ ์žˆ๋Š” ์ธ์ฆ์ž๋Š” Bluesky์—์„œ ์„ ์ •ํ•ฉ๋‹ˆ๋‹ค." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "๋‹ค๋ฅธ ์‚ฌ์šฉ์ž์˜ ํ™œ๋™" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "ํ™œ๋™ ์•Œ๋ฆผ" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "๋Œ€์ฒด ํ…์ŠคํŠธ ์ถ”๊ฐ€ (์„ ํƒ ์‚ฌํ•ญ)" msgid "Add another account" msgstr "๋‹ค๋ฅธ ๊ณ„์ • ์ถ”๊ฐ€" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "๋‹ค๋ฅธ ๊ฒŒ์‹œ๋ฌผ ์ถ”๊ฐ€ํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "์Šค๋ ˆ๋“œ์— ๋‹ค๋ฅธ ๊ฒŒ์‹œ๋ฌผ ์ถ”๊ฐ€" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "๋‹ค๋ฅธ ๊ฒ€์ƒ‰ ํ•„ํ„ฐ ์ถ”๊ฐ€ํ•˜๊ธฐ" @@ -1253,7 +1213,7 @@ msgstr "๊ณ„์ •์— ์ž๋™ํ™” ๋ผ๋ฒจ ์ถ”๊ฐ€" msgid "Add emoji reaction" msgstr "์ด๋ชจํ‹ฐ์ฝ˜ ๋ฐ˜์‘ ์ถ”๊ฐ€" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "ํ•„ํ„ฐ ์ถ”๊ฐ€" @@ -1338,7 +1298,7 @@ msgstr "์ด ํ”ผ๋“œ๋ฅผ ๋‚ด ํ”ผ๋“œ์— ์ถ”๊ฐ€ํ•˜๊ธฐ" msgid "Add to lists" msgstr "๋ฆฌ์ŠคํŠธ์— ์ถ”๊ฐ€" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "์ €์žฅ๋œ ๊ฒŒ์‹œ๋ฌผ์— ์ถ”๊ฐ€" @@ -1400,7 +1360,7 @@ msgstr "์„ฑ์ธ๋ฌผ" msgid "Adult content" msgstr "์„ฑ์ธ ์ฝ˜ํ…์ธ " -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "๋ชจ๋‘" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "๋ชจ๋“  ์นœ๊ตฌ๋“ค์„ ํŒ”๋กœ์šฐํ–ˆ์Šต๋‹ˆ๋‹ค!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "๋ชจ๋“  ์–ธ์–ด" @@ -1491,11 +1447,6 @@ msgstr "ํ”ผ๋“œ์— ๋ชจ๋“  ์–ธ์–ด๊ฐ€ ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค." msgid "All of these words" msgstr "๋‹ค์Œ ๋‹จ์–ด ๋ชจ๋‘ ํฌํ•จ" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "๋ชจ๋“  ๊ฒŒ์‹œ๋ฌผ" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "์ €์žฅํ•œ ๋ชจ๋“  ํ”ผ๋“œ๋ฅผ ํ•œ ๊ณณ์—์„œ ํ™•์ธํ•˜์„ธ์š”." @@ -1560,7 +1511,7 @@ msgstr "๋‹ค์ด๋ ‰ํŠธ ๋ฉ”์‹œ์ง€ ์ ‘๊ทผ ํ—ˆ์šฉ" msgid "Already have a code?" msgstr "์ด๋ฏธ ์ฝ”๋“œ๊ฐ€ ์žˆ๋‚˜์š”?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "์ด๋ฏธ ๊ณ„์ •์ด ์žˆ๋‚˜์š”?" @@ -1614,7 +1565,7 @@ msgstr "{0}(์œผ)๋กœ ์ด๋ฉ”์ผ์„ ๋ณด๋ƒˆ์Šต๋‹ˆ๋‹ค. ์ด ์ด๋ฉ”์ผ์—๋Š” ์•„๋ž˜์— msgid "An error has occurred" msgstr "์˜ค๋ฅ˜ ๋ฐœ์ƒ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "์˜ค๋ฅ˜ ๋ฐœ์ƒ" @@ -1631,7 +1582,7 @@ msgstr "์ถ”์ฒœ ๊ณ„์ •์„ ๊ฐ€์ ธ์˜ค๋Š” ๋™์•ˆ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค." msgid "An error occurred while fetching the feed." msgstr "ํ”ผ๋“œ๋ฅผ ๊ฐ€์ ธ์˜ค๋Š” ๋™์•ˆ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "์Šคํƒ€ํ„ฐ ํŒฉ์„ ๋งŒ๋“œ๋Š” ๋™์•ˆ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -1640,11 +1591,11 @@ msgstr "์Šคํƒ€ํ„ฐ ํŒฉ์„ ๋งŒ๋“œ๋Š” ๋™์•ˆ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ msgid "An error occurred while hiding suggestion. {0}" msgstr "์ถ”์ฒœ์„ ์ˆจ๊ธฐ๋Š” ๋™์•ˆ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "๋™์˜์ƒ์„ ๋ถˆ๋Ÿฌ์˜ค๋Š” ๋™์•ˆ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‚˜์ค‘์— ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "๋™์˜์ƒ์„ ๋ถˆ๋Ÿฌ์˜ค๋Š” ๋™์•ˆ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." @@ -1684,7 +1635,7 @@ msgstr "์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "์—ฐ๋ฝ์ฒ˜์—์„œ Bluesky ์•ฑ์œผ๋กœ ์‚ฌ์šฉ์ž ํ”„๋กœํ•„ ์‚ฌ์ง„์ด ํ˜๋Ÿฌ๋“ค์–ด ๊ฐ€๋Š” ๋ชจ์Šต์„ ๋ฌ˜์‚ฌํ•œ ์‚ฝํ™”" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "์žฌ๊ฒŒ์‹œ, ์ข‹์•„์š”, ๋Œ“๊ธ€ ์•„์ด์ฝ˜๊ณผ ํ•จ๊ป˜ ์—ฌ๋Ÿฌ Bluesky ๊ฒŒ์‹œ๋ฌผ์ด ๋‚˜์—ด๋œ ์‚ฝํ™”" @@ -1705,17 +1656,15 @@ msgstr "์ดˆ๋Œ€ ๋งํฌ๋ฅผ ์‚ฌ์šฉํ•˜๋ฉด ์‚ฌ๋žŒ๋“ค์„ ์ง์ ‘ ์ถ”๊ฐ€ํ•˜์ง€ ์•Š๊ณ ๋„ msgid "An issue not included in these options" msgstr "์–ด๋–ค ์˜ต์…˜์—๋„ ํฌํ•จ๋˜์ง€ ์•Š๋Š” ๋ฌธ์ œ" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "๊ทธ๋ฃน ๋Œ€ํ™” ๋งŒ๋“œ๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "๋Œ€ํ™”๋ฅผ ์‹œ์ž‘ํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "๋Œ€ํ™”๋ฅผ ์—ฌ๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "๊ทธ๋ฃน ๋Œ€ํ™”๋ฅผ ์‹œ์ž‘ํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "๋ชจ๋“  ๋‚ ์งœ" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "๋ˆ„๊ตฌ๋‚˜" @@ -1802,7 +1749,7 @@ msgstr "๋‚˜๋ฅผ ํŒ”๋กœ์šฐํ•˜๋Š” ๋ชจ๋“  ์‚ฌ์šฉ์ž" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "์ด ๋งํฌ๋ฅผ ๊ฐ€์ง„ ์‚ฌ๋žŒ์€ ๋” ์ด์ƒ ์ฐธ์—ฌํ•˜๊ฑฐ๋‚˜ ์ฐธ์—ฌ ์š”์ฒญ์„ ํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ƒˆ ๋งํฌ๋Š” ์–ธ์ œ๋“ ์ง€ ๋‹ค์‹œ ๋งŒ๋“ค ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ ์ด๋ฆ„์€ 4์ž ์ด์ƒ์ด์–ด์•ผ ํ•ฉ๋‹ˆ๋‹ค" msgid "App passwords" msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ" @@ -1891,8 +1838,8 @@ msgstr "์ด ๊ฒฐ์ •์— ์ด์˜์‹ ์ฒญ" msgid "Appeal this label" msgstr "์ด ๋ผ๋ฒจ ์ด์˜์‹ ์ฒญ" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "ํ’€ ๋ฆฌํ€˜์ŠคํŠธ ์ ์šฉ" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "{0}์— ๋ณด๊ด€๋จ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "๋ณด๊ด€๋œ ๊ฒŒ์‹œ๋ฌผ" @@ -1980,7 +1927,7 @@ msgstr "๋‚ด ํ”ผ๋“œ์—์„œ ์ด ํ”ผ๋“œ๋ฅผ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "{0}์— ๋Œ€ํ•œ ์ฐธ์—ฌ ์š”์ฒญ์„ ์ทจ์†Œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "์˜ค๋กœ๋ผ" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "์ž‘์„ฑ์ž" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "์ž๋™ํ™”๋œ ๊ณ„์ •" @@ -2033,7 +1985,7 @@ msgstr "์ž๋™" msgid "Automation label" msgstr "์ž๋™ํ™” ๋ผ๋ฒจ" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "์ž๋™ํ™” ๋ผ๋ฒจ" @@ -2050,12 +2002,16 @@ msgstr "๋™์˜์ƒ ๋ฐ GIF ์ž๋™ ์žฌ์ƒ" msgid "Available" msgstr "์‚ฌ์šฉ ๊ฐ€๋Šฅ" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "์•„๋ฐ”ํƒ€ ์ƒ์„ฑ๊ธฐ" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "๊ฒŒ์‹œ๋ฌผ์„ ์ž‘์„ฑํ•˜๊ฑฐ๋‚˜ ๋‹ต๊ธ€์„ ๋‹ฌ๊ธฐ ์ „์— ๋จผ์ € ์ด๋ฉ”์ผ์„ ์ธ์ฆํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "์Šคํƒ€ํ„ฐ ํŒฉ์„ ๋งŒ๋“ค๊ธฐ ์ „์— ๋จผ์ € ์ด๋ฉ”์ผ์„ ์ธ์ฆํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." @@ -2135,10 +2091,10 @@ msgstr "{name} ๋‹˜์˜ ๊ฒŒ์‹œ๋ฌผ์— ๋Œ€ํ•œ ์•Œ๋ฆผ์„ ๋ฐ›์œผ๋ ค๋ฉด ๋จผ์ € ์ด๋ฉ” #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "์•„๋ž˜ ํ•ญ๋ชฉ์„ ์ž‘์„ฑํ•˜์—ฌ ์—ฐ๋ น ํ™•์ธ ์ ˆ์ฐจ๋ฅผ ์‹œ์ž‘ํ•˜์„ธ์š”." msgid "Beta Feature" msgstr "๋ฒ ํƒ€ ๊ธฐ๋Šฅ" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "๋ฒ ํƒ€ ๊ธฐ๋Šฅ" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "๋ฒ ํƒ€ ๊ธฐ๋Šฅ์ด ํ™œ์„ฑํ™”๋จ" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "์ƒ๋…„์›”์ผ" msgid "Birthday" msgstr "์ƒ๋…„์›”์ผ" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "์ฐจ๋‹จ๋จ" msgid "Blocked accounts" msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •" @@ -2282,7 +2244,7 @@ msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •์€ ๋‚ด ์Šค๋ ˆ๋“œ์— ๋‹ต๊ธ€์„ ๋‹ฌ๊ฑฐ๋‚˜ ๋‚˜๋ฅผ ๋ฉ˜์…˜ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "์ฐจ๋‹จํ•œ ๊ณ„์ •์€ ๋‚ด ์Šค๋ ˆ๋“œ์— ๋‹ต๊ธ€์„ ๋‹ฌ๊ฑฐ๋‚˜ ๋‚˜๋ฅผ ๋ฉ˜์…˜ํ•˜๊ฑฐ๋‚˜ ๊ธฐํƒ€ ๋‹ค๋ฅธ ๋ฐฉ์‹์œผ๋กœ ๋‚˜์™€ ์ƒํ˜ธ์ž‘์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ฐจ๋‹จํ•œ ๊ณ„์ •์˜ ์ฝ˜ํ…์ธ ๋ฅผ ๋ณผ ์ˆ˜ ์—†์œผ๋ฉฐ ํ•ด๋‹น ๊ณ„์ •๋„ ๋‚ด ์ฝ˜ํ…์ธ ๋ฅผ ๋ณผ ์ˆ˜ ์—†๊ฒŒ ๋ฉ๋‹ˆ๋‹ค." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "์ฐจ๋‹จํ•˜๋”๋ผ๋„ ์ด ๋ผ๋ฒจ๋Ÿฌ๊ฐ€ ๋‚ด ๊ณ„์ •์— ๋ผ๋ฒจ์„ ๋ถ™์ด๋Š” ๊ฒƒ์„ ๋ง‰์ง€๋Š” ๋ชปํ•ฉ๋‹ˆ๋‹ค." @@ -2305,10 +2267,11 @@ msgstr "๋ธ”๋ฃธ์Šคํฌ๋กค๋ง ๋ถ์Šค์นด์ด" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky๋Š” ํ•ด๋‹น ๋‚ ์งœ์˜ ์ง„์œ„๋ฅผ ํ™•์ธํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." @@ -2330,7 +2293,7 @@ msgstr "Bluesky๋Š” ํ˜ธ์ŠคํŒ… ์ œ๊ณต์ž๋ฅผ ์„ ํƒํ•  ์ˆ˜ ์žˆ๋Š” ๊ฐœ๋ฐฉํ˜• ๋„คํŠธ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky๋Š” ์ง์ ‘ ์ œ๊ณต์ž๋ฅผ ์„ ํƒํ•  ์ˆ˜ ์žˆ๋Š” ๊ฐœ๋ฐฉํ˜• ๋„คํŠธ์›Œํฌ์ž…๋‹ˆ๋‹ค. ์ฒ˜์Œ ์‚ฌ์šฉํ•˜๋Š” ๊ฒฝ์šฐ ๊ธฐ๋ณธ์œผ๋กœ Bluesky Social์„ ์„ ํƒํ•˜๋Š” ๊ฒƒ์ด ์ข‹์Šต๋‹ˆ๋‹ค." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky๋Š” ์นœ๊ตฌ์™€ ํ•จ๊ป˜ํ•˜๋ฉด ๋” ์ข‹๋‹ต๋‹ˆ๋‹ค!" @@ -2358,7 +2321,7 @@ msgstr "Bluesky Social ์„œ๋น„์Šค ์ด์šฉ์•ฝ๊ด€" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky๋Š” ์—ฐ๋ฝ์ฒ˜๋ฅผ ์ธ์ฝ”๋”ฉ๋œ ๋ฐ์ดํ„ฐ๋กœ ์ €์žฅํ•ฉ๋‹ˆ๋‹ค. ์—ฐ๋ฝ์ฒ˜๋ฅผ ์ œ๊ฑฐํ•˜๋ฉด ์ด ๋ฐ์ดํ„ฐ๋Š” ์ฆ‰์‹œ ์‚ญ์ œ๋ฉ๋‹ˆ๋‹ค." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky๊ฐ€ ๋„คํŠธ์›Œํฌ์— ์žˆ๋Š” ์‚ฌ์šฉ์ž ์ค‘์—์„œ ์ž„์˜๋กœ ์ถ”์ฒœ ๊ณ„์ • ์„ธํŠธ๋ฅผ ์„ ํƒํ•ฉ๋‹ˆ๋‹ค." @@ -2403,20 +2366,20 @@ msgstr "์ตœ๋Œ€ 50๋ช…์˜ ์นœ๊ตฌ๋ฅผ ํ•˜๋‚˜์˜ ๋Œ€ํ™”๋ฐฉ์— ์ดˆ๋Œ€ํ•˜์„ธ์š”." msgid "Browse custom feeds" msgstr "๋งž์ถค ํ”ผ๋“œ ์ฐพ์•„๋ณด๊ธฐ" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "๋” ๋งŽ์€ ๊ณ„์ • ์ฐพ์•„๋ณด๊ธฐ" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "ํƒ์ƒ‰ ํŽ˜์ด์ง€์—์„œ ๋” ๋งŽ์€ ํ”ผ๋“œ ์ฐพ์•„๋ณด๊ธฐ" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "๋” ๋งŽ์€ ์ถ”์ฒœ ์ฐพ์•„๋ณด๊ธฐ" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "ํƒ์ƒ‰ ํŽ˜์ด์ง€์—์„œ ๋” ๋งŽ์€ ์ถ”์ฒœ ์ฐพ์•„๋ณด๊ธฐ" @@ -2425,24 +2388,25 @@ msgstr "ํƒ์ƒ‰ ํŽ˜์ด์ง€์—์„œ ๋” ๋งŽ์€ ์ถ”์ฒœ ์ฐพ์•„๋ณด๊ธฐ" msgid "Browse other feeds" msgstr "๋‹ค๋ฅธ ํ”ผ๋“œ ํƒ์ƒ‰ํ•˜๊ธฐ" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "{displayName}์— ๊ด€ํ•œ ๊ฒŒ์‹œ๋ฌผ ํƒ์ƒ‰ํ•˜๊ธฐ" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "{displayName} ํƒœ๊ทธ๋œ ๊ฒŒ์‹œ๋ฌผ ํƒ์ƒ‰ํ•˜๊ธฐ" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "์Šคํƒ€ํ„ฐ ํŒฉ {displayName} ํƒ์ƒ‰ํ•˜๊ธฐ" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "์ฃผ์ œ {0} ํƒ์ƒ‰ํ•˜๊ธฐ" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "์ฃผ์ œ {displayName} ํƒ์ƒ‰ํ•˜๊ธฐ" @@ -2461,8 +2425,8 @@ msgstr "ํ™ˆ ํƒ€์ž„๋ผ์ธ์œผ๋กœ ๋Œ์•„๊ฐ€๋ ค๋ฉด ๋ฒ„ํŠผ์„ ๋ˆ„๋ฅด์„ธ์š”" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "{0}" @@ -2473,9 +2437,9 @@ msgstr "@{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "<0>{0}" @@ -2504,11 +2468,11 @@ msgstr "๊ณ„์ •์„ ๋งŒ๋“ค๋ฉด <0>์„œ๋น„์Šค ์ด์šฉ์•ฝ๊ด€ ๋ฐ <1>๊ฐœ์ธ์ •๋ณด msgid "By creating an account you agree to the <0>Terms of Service." msgstr "๊ณ„์ •์„ ๋งŒ๋“ค๋ฉด <0>์„œ๋น„์Šค ์ด์šฉ์•ฝ๊ด€์— ๋™์˜ํ•˜๋Š” ๊ฒƒ์ž…๋‹ˆ๋‹ค." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "๋‚ด๊ฐ€ ๋งŒ๋“ฆ" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "์นด๋ฉ”๋ผ" @@ -2534,7 +2498,7 @@ msgstr "์นด๋ฉ”๋ผ ์ ‘๊ทผ ๊ถŒํ•œ์ด ํ•„์š”ํ•ฉ๋‹ˆ๋‹ค" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "์นด๋ฉ”๋ผ ์ ‘๊ทผ ๊ถŒํ•œ์ด ํ•„์š”ํ•ฉ๋‹ˆ๋‹ค" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "์žฌํ™œ์„ฑํ™” ์ทจ์†Œ ๋ฐ ๋กœ๊ทธ์•„์›ƒ" msgid "Cancel reply" msgstr "๋‹ต์žฅ ์ทจ์†Œํ•˜๊ธฐ" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "๊ฒ€์ƒ‰ ์ทจ์†Œ" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "๋ฆฌ์ŠคํŠธ๋ฅผ ๋งŒ๋“  ํ›„์—๋Š” ์Šคํƒ€ํ„ฐ ํŒฉ์˜ ๋ณ€๊ฒฝ ์‚ฌํ•ญ์ด ๋ฆฌ์ŠคํŠธ์— ๋ฐ˜์˜๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ๋ฆฌ์ŠคํŠธ๋Š” ๋ณ„๋„์˜ ์‚ฌ๋ณธ์œผ๋กœ ์ €์žฅ๋ฉ๋‹ˆ๋‹ค." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "๋Œ€ํ™”๋ฅผ ๋ฎคํŠธํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "๋Œ€ํ™”๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "๋Œ€ํ™” ์˜ต์…˜" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "๋Œ€ํ™” ์†Œ์œ ์ž๋Š” ๊ทธ๋ฃน ๋Œ€ํ™”์—์„œ ๋‚˜๊ฐˆ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "๋Œ€ํ™” ์ˆ˜์‹ ์ž๊ฐ€ ๋ฐœ์‹ ์ž๋ฅผ ํŒ”๋กœ์šฐํ•˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "๋Œ€ํ™” ์š”์ฒญ ์ˆ˜์‹ ํ•จ" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "๋Œ€ํ™” ์š”์ฒญ" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "๋Œ€ํ™” ์„ค์ •" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "๋Œ€ํ™”๋ฅผ ์–ธ๋ฎคํŠธํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "๋Œ€ํ™”" @@ -2837,7 +2802,7 @@ msgstr "๋„๋ฉ”์ธ ์ธ์ฆ ๋ฐฉ๋ฒ• ์„ ํƒ" msgid "Choose Feeds" msgstr "ํ”ผ๋“œ ์„ ํƒ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "์ž„์˜๋กœ ์„ ํƒํ•˜๊ธฐ" @@ -2854,7 +2819,7 @@ msgstr "์‚ฌ์šฉ์ž ์„ ํƒ" msgid "Choose post languages" msgstr "๊ฒŒ์‹œ๋ฌผ ์–ธ์–ด ์„ ํƒ" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "์ด ์ƒ‰์ƒ์„ ์•„๋ฐ”ํƒ€๋กœ ์„ ํƒ" @@ -2879,7 +2844,7 @@ msgstr "๋‚˜๋งŒ์˜ ํƒ€์ž„๋ผ์ธ์„ ์„ ํƒํ•˜์„ธ์š”! ์ปค๋ฎค๋‹ˆํ‹ฐ์—์„œ ๋งŒ๋“  ํ”ผ msgid "Choose your password" msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ ์ž…๋ ฅ" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "์‚ฌ์šฉ์ž ์ด๋ฆ„ ์„ ํƒ" @@ -2966,7 +2931,7 @@ msgstr "์ด๊ณณ์„ ํด๋ฆญํ•˜์—ฌ ์ด ๊ทธ๋ฃน ๋Œ€ํ™”์˜ ์ดˆ๋Œ€ ๋งํฌ ๋ณด๊ธฐ" msgid "Click to open tag menu for {0}" msgstr "ํด๋ฆญํ•˜์—ฌ {0}์— ๋Œ€ํ•œ ํƒœ๊ทธ ๋ฉ”๋‰ด๋ฅผ ์—ฝ๋‹ˆ๋‹ค" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "ํด๋ฆญํ•˜์—ฌ ๋ฉ”์‹œ์ง€ ๋‹ค์‹œ ๋ณด๋‚ด๊ธฐ" @@ -3003,7 +2968,7 @@ msgstr "ํด๋ฆญํ•˜์—ฌ ๋ฉ”์‹œ์ง€ ๋‹ค์‹œ ๋ณด๋‚ด๊ธฐ" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "ํด๋ฆญํ•˜์—ฌ ๋ฉ”์‹œ์ง€ ๋‹ค์‹œ ๋ณด๋‚ด๊ธฐ" msgid "Close" msgstr "๋‹ซ๊ธฐ" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "์—ด๋ ค ์žˆ๋Š” ๋Œ€ํ™” ์ƒ์ž ๋‹ซ๊ธฐ" @@ -3047,7 +3012,7 @@ msgstr "๋ฐฐ๋„ˆ ๋‹ซ๊ธฐ" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "์ด๋ฏธ์ง€ ๋ทฐ์–ด ๋‹ซ๊ธฐ" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "๋งค๋‰ด ๋‹ซ๊ธฐ" @@ -3090,7 +3055,7 @@ msgstr "์ฐธ์—ฌ ์š”์ฒญ ๋ฐฐ๋„ˆ๋ฅผ ๋‹ซ์Šต๋‹ˆ๋‹ค" msgid "Close this dialog" msgstr "์ด ๋Œ€ํ™” ์ƒ์ž ๋‹ซ๊ธฐ" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "ํ™˜์˜ ๋Œ€ํ™” ์ƒ์ž ๋‹ซ๊ธฐ" @@ -3098,7 +3063,7 @@ msgstr "ํ™˜์˜ ๋Œ€ํ™” ์ƒ์ž ๋‹ซ๊ธฐ" msgid "Closes password update alert" msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณ€๊ฒฝ ์•Œ๋ฆผ์„ ๋‹ซ์Šต๋‹ˆ๋‹ค" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "๊ฒŒ์‹œ๋ฌผ ์ž‘์„ฑ๊ธฐ๋ฅผ ๋‹ซ๊ณ  ๊ฒŒ์‹œ๋ฌผ ์ดˆ์•ˆ์„ ์‚ญ์ œํ•ฉ๋‹ˆ๋‹ค" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "์ƒ‰์ƒ" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "์ƒ‰์ƒ ๋ชจ๋“œ" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "๋งŒํ™”" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "์ปค๋ฎค๋‹ˆํ‹ฐ ๊ฐ€์ด๋“œ๋ผ์ธ" @@ -3141,7 +3106,7 @@ msgstr "์ปค๋ฎค๋‹ˆํ‹ฐ ๊ฐ€์ด๋“œ๋ผ์ธ" msgid "Complete onboarding and start using your account" msgstr "์˜จ๋ณด๋”ฉ ์™„๋ฃŒ ํ›„ ๊ณ„์ • ์‚ฌ์šฉ ์‹œ์ž‘" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "์ฑŒ๋ฆฐ์ง€ ์™„๋ฃŒํ•˜๊ธฐ" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "์ƒˆ ๊ฒŒ์‹œ๋ฌผ ์ž‘์„ฑํ•˜๊ธฐ" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "๊ฒŒ์‹œ๋ฌผ์„ ์ตœ๋Œ€ {0, plural, other {#์ž}}๊นŒ์ง€ ์ž‘์„ฑํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค" @@ -3160,11 +3125,11 @@ msgstr "๊ฒŒ์‹œ๋ฌผ์„ ์ตœ๋Œ€ {0, plural, other {#์ž}}๊นŒ์ง€ ์ž‘์„ฑํ•  ์ˆ˜ ์žˆ์Šต msgid "Compose reply" msgstr "๋‹ต๊ธ€ ์ž‘์„ฑํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIF ์••์ถ• ์ค‘โ€ฆ" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "๋™์˜์ƒ ์••์ถ• ์ค‘โ€ฆ" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "๊ณ ๊ฐ ์ง€์›ํŒ€์— ๋ฌธ์˜ํ•˜๊ธฐ" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "์ง€์›ํŒ€์— ์—ฐ๋ฝํ•˜๊ธฐ" @@ -3253,7 +3218,7 @@ msgstr "์ฝ˜ํ…์ธ  ๋ฐ ๋ฏธ๋””์–ด" msgid "Content and media" msgstr "์ฝ˜ํ…์ธ  ๋ฐ ๋ฏธ๋””์–ด" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "์ฝ˜ํ…์ธ  ๋ฐ ๋ฏธ๋””์–ด" @@ -3265,10 +3230,6 @@ msgstr "์ฝ˜ํ…์ธ  ์ฐจ๋‹จ๋จ" msgid "Content filters" msgstr "์ฝ˜ํ…์ธ  ํ•„ํ„ฐ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "์ข‹์•„ํ•  ๋งŒํ•œ ๋„คํŠธ์›Œํฌ ์ „๋ฐ˜์˜ ์ฝ˜ํ…์ธ ๋ฅผ ๋ชจ์•˜์Šต๋‹ˆ๋‹ค." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "์ฝ˜ํ…์ธ  ์–ธ์–ด" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "์žํ•ด๋ฅผ ์กฐ์žฅํ•˜๊ฑฐ๋‚˜ ๋ฌ˜์‚ฌํ•˜๋Š” ์ฝ˜ํ…์ธ " #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "์ฝ˜ํ…์ธ  ๊ฒฝ๊ณ " msgid "Content warnings" msgstr "์ฝ˜ํ…์ธ  ๊ฒฝ๊ณ " -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "์ปจํ…์ŠคํŠธ ๋ฉ”๋‰ด ๋ฐฐ๊ฒฝ์„ ํด๋ฆญํ•˜์—ฌ ๋ฉ”๋‰ด๋ฅผ ๋‹ซ์Šต๋‹ˆ๋‹ค." @@ -3302,7 +3263,7 @@ msgstr "์ปจํ…์ŠคํŠธ ๋ฉ”๋‰ด ๋ฐฐ๊ฒฝ์„ ํด๋ฆญํ•˜์—ฌ ๋ฉ”๋‰ด๋ฅผ ๋‹ซ์Šต๋‹ˆ๋‹ค." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "์Šค๋ ˆ๋“œ ๋” ๋ณด๊ธฐโ€ฆ" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "๊ทธ๋ฃน ์ด๋ฆ„์œผ๋กœ ๊ณ„์†" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "๋Œ€ํ™”๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." msgid "Copied build version to clipboard" msgstr "๋นŒ๋“œ ๋ฒ„์ „์„ ํด๋ฆฝ๋ณด๋“œ์— ๋ณต์‚ฌํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "๋งํฌ๋ฅผ ํด๋ฆฝ๋ณด๋“œ์— ๋ณต์‚ฌํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -3376,7 +3337,7 @@ msgstr "๋งํฌ๋ฅผ ํด๋ฆฝ๋ณด๋“œ์— ๋ณต์‚ฌํ–ˆ์Šต๋‹ˆ๋‹ค" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณต์‚ฌ" msgid "Copy at:// URI" msgstr "at:// URI ๋ณต์‚ฌ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "์ž‘์„ฑ์ž DID ๋ณต์‚ฌ" @@ -3449,10 +3410,10 @@ msgstr "๋งํฌ ๋ณต์‚ฌ" msgid "Copy link to list" msgstr "๋ฆฌ์ŠคํŠธ ๋งํฌ ๋ณต์‚ฌ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "๊ฒŒ์‹œ๋ฌผ ๋งํฌ ๋ณต์‚ฌ" @@ -3470,8 +3431,8 @@ msgstr "์Šคํƒ€ํ„ฐ ํŒฉ ๋งํฌ ๋ณต์‚ฌ" msgid "Copy message text" msgstr "๋ฉ”์‹œ์ง€ ํ…์ŠคํŠธ ๋ณต์‚ฌ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "๊ฒŒ์‹œ๋ฌผ at:// URI ๋ณต์‚ฌ" @@ -3490,7 +3451,7 @@ msgstr "TXT ๋ ˆ์ฝ”๋“œ ๊ฐ’ ๋ณต์‚ฌ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "์ €์ž‘๊ถŒ ์ •์ฑ…" @@ -3540,11 +3501,11 @@ msgstr "๋ชจ๋“  ์‚ฌ์šฉ์ž๋ฅผ ํŒ”๋กœ์šฐํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. {0}" msgid "Could not leave chat" msgstr "๋Œ€ํ™”์—์„œ ๋‚˜๊ฐˆ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "๋Œ€ํ™”์—์„œ ๋‚˜๊ฐˆ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "ํ”ผ๋“œ๋ฅผ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" @@ -3562,7 +3523,7 @@ msgstr "ํ”„๋กœํ•„์„ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" msgid "Could not mute chat" msgstr "๋Œ€ํ™”๋ฅผ ๋ฎคํŠธํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "๋ฉค๋ฒ„๋ฅผ ๋‚ด๋ณด๋‚ผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." @@ -3606,8 +3567,8 @@ msgstr "์†Œ ๋ผ์ง€" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "๋งŒ๋“ค๊ธฐ" @@ -3624,26 +3585,26 @@ msgstr "์Šคํƒ€ํ„ฐ ํŒฉ์—์„œ ๋ฆฌ์ŠคํŠธ ๋งŒ๋“ค๊ธฐ" msgid "Create a QR code for a starter pack" msgstr "์Šคํƒ€ํ„ฐ ํŒฉ QR ์ฝ”๋“œ ๋งŒ๋“ค๊ธฐ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "์Šคํƒ€ํ„ฐ ํŒฉ ๋งŒ๋“ค๊ธฐ" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "์Šคํƒ€ํ„ฐ ํŒฉ ๋งŒ๋“ค๊ธฐ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "๋‚˜๋ฅผ ์œ„ํ•œ ์Šคํƒ€ํ„ฐ ํŒฉ ๋งŒ๋“ค๊ธฐ" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "๊ฐ€์ž…ํ•˜๊ธฐ" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "๊ณ„์ • ๋งŒ๋“ค๊ธฐ" @@ -3666,15 +3627,15 @@ msgstr "๊ณ„์ • ๋งŒ๋“ค๊ธฐ" msgid "Create an account without using this starter pack" msgstr "์ด ์Šคํƒ€ํ„ฐ ํŒฉ์„ ์‚ฌ์šฉํ•˜์ง€ ์•Š๊ณ  ๊ณ„์ • ๋งŒ๋“ค๊ธฐ" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "๋Œ€์‹  ์•„๋ฐ”ํƒ€ ๋งŒ๋“ค๊ธฐ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "๋‹ค๋ฅธ ์Šคํƒ€ํ„ฐ ํŒฉ ๋งŒ๋“ค๊ธฐ" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "๊ทธ๋ฃน ๋Œ€ํ™” ๋งŒ๋“ค๊ธฐ" @@ -3743,7 +3704,7 @@ msgstr "๋ฌธํ™”" msgid "Current beta features" msgstr "ํ˜„์žฌ ๋ฒ ํƒ€ ๊ธฐ๋Šฅ" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "ํ˜„์žฌ ๋Œ€ํ™”" @@ -3770,8 +3731,8 @@ msgstr "์œ„ํ—˜ ๋ฌผ์งˆ ๋˜๋Š” ์•ฝ๋ฌผ ๋‚จ์šฉ" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "์–ด๋‘์›€" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "์–ด๋‘์›€" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "์–ด๋‘์šด ํ…Œ๋งˆ" @@ -3814,7 +3775,7 @@ msgstr "์ด ์–ธ์–ด ์ œ์•ˆ ๊ฑฐ์ ˆํ•˜๊ธฐ" msgid "Deepfake adult content" msgstr "๋”ฅํŽ˜์ดํฌ ์„ฑ์ธ ์ฝ˜ํ…์ธ " -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "๊ธฐ๋ณธ" @@ -3894,7 +3855,7 @@ msgstr "๋‚ด ๊ณ„์ • ์‚ญ์ œ" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "๊ฒŒ์‹œ๋ฌผ ์‚ญ์ œ" @@ -3988,7 +3949,7 @@ msgstr "๋Œ€ํ™” ์ƒ์ž: ์ด ๊ฒŒ์‹œ๋ฌผ๊ณผ ์ƒํ˜ธ์ž‘์šฉํ•  ์ˆ˜ ์žˆ๋Š” ์‚ฌ์šฉ์ž ์กฐ msgid "Dialog: Set search filters" msgstr "๋Œ€ํ™” ์ƒ์ž: ๊ฒ€์ƒ‰ ํ•„ํ„ฐ ์„ค์ •" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "์–ด๋‘‘ํ•จ" @@ -4002,7 +3963,7 @@ msgstr "๋น„ํ™œ์„ฑํ™”" msgid "Disable 2FA" msgstr "2๋‹จ๊ณ„ ์ธ์ฆ ๋น„ํ™œ์„ฑํ™”" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "์บก์…˜ ๋น„ํ™œ์„ฑํ™”" @@ -4045,9 +4006,9 @@ msgstr "์‚ฌ์šฉ ์•ˆ ํ•จ" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "์‚ญ์ œ" msgid "Discard changes?" msgstr "๋ณ€๊ฒฝ ์‚ฌํ•ญ ์‚ญ์ œ" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "์ž„์‹œ ์ €์žฅ์„ ์‚ญ์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "๊ฒŒ์‹œ๋ฌผ ์‚ญ์ œ" @@ -4079,22 +4040,22 @@ msgstr "Germ DM ์—ฐ๊ฒฐ ํ•ด์ œ" msgid "Discourage apps from showing my account to logged-out users" msgstr "์•ฑ์ด ๋กœ๊ทธ์•„์›ƒํ•œ ์‚ฌ์šฉ์ž์—๊ฒŒ ๋‚ด ๊ณ„์ •์„ ํ‘œ์‹œํ•˜์ง€ ์•Š๋„๋ก ์„ค์ •ํ•˜๊ธฐ" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "ํ”ผ๋“œ ๋‘˜๋Ÿฌ๋ณด๊ธฐ" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 #: src/view/com/posts/FollowingEndOfFeed.tsx:70 msgid "Discover new custom feeds" -msgstr "์ƒˆ๋กœ์šด ๋งž์ถค ํ”ผ๋“œ ์ฐพ์•„๋ณด๊ธฐ" - -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "์ƒˆ ํ”ผ๋“œ ๋ฐœ๊ฒฌํ•˜๊ธฐ" +msgstr "์ƒˆ๋กœ์šด ๋งž์ถค ํ”ผ๋“œ ๋‘˜๋Ÿฌ๋ณด๊ธฐ" #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" -msgstr "์ƒˆ ํ”ผ๋“œ ๋ฐœ๊ฒฌํ•˜๊ธฐ" +msgstr "์ƒˆ ํ”ผ๋“œ ๋‘˜๋Ÿฌ๋ณด๊ธฐ" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "๋‹ซ๊ธฐ" @@ -4103,28 +4064,28 @@ msgstr "๋‹ซ๊ธฐ" msgid "Dismiss banner" msgstr "๋ฐฐ๋„ˆ ๋‹ซ๊ธฐ" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "์˜ค๋ฅ˜ ๋ฌด์‹œ" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "์‹œ์ž‘ํ•˜๊ธฐ ๊ฐ€์ด๋“œ ๋‹ซ๊ธฐ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "๊ด€์‹ฌ ์ฃผ์ œ ๋‹ซ๊ธฐ" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "๋ผ์ด๋ธŒ ์ด๋ฒคํŠธ ๋ฐฐ๋„ˆ ๋‹ซ๊ธฐ" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "์ด ๋ถ€๋ถ„ ๋‹ซ๊ธฐ" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "์ด ์ถ”์ฒœ ๋‹ซ๊ธฐ" @@ -4142,7 +4103,7 @@ msgstr "๋” ํฐ ๋Œ€์ฒด ํ…์ŠคํŠธ ๋ฐฐ์ง€ ํ‘œ์‹œ" msgid "Display name" msgstr "ํ‘œ์‹œ ์ด๋ฆ„" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "์–ด๊ทธ๋กœ์™€ ์„ฌ๋„ค์ผ ๋‚š์‹œ๋Š” ์ด์ œ ๊ทธ๋งŒ. ๋‹น์‹ ์—๊ฒŒ ์˜๋ฏธ ์žˆ๋Š” ์ง„์งœ ์‚ฌ๋žŒ๋“ค๊ณผ ๋Œ€ํ™”๋ฅผ ์ฐพ์œผ์„ธ์š”." @@ -4205,8 +4166,8 @@ msgstr "๊ฑฑ์ • ๋งˆ์„ธ์š”! ๋ชจ๋“  ๊ธฐ์กด ๋ฉ”์‹œ์ง€์™€ ์„ค์ •์€ ์ €์žฅ๋˜๋ฉฐ ์„ฑ #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "๊ฑฑ์ • ๋งˆ์„ธ์š”! ๋ชจ๋“  ๊ธฐ์กด ๋ฉ”์‹œ์ง€์™€ ์„ค์ •์€ ์ €์žฅ๋˜๋ฉฐ ์„ฑ msgid "Done" msgstr "์™„๋ฃŒ" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "๋ฉ”์‹œ์ง€๋ฅผ ๋‘ ๋ฒˆ ํƒญํ•˜๊ฑฐ๋‚˜ ๊ธธ๊ฒŒ ๋ˆŒ๋Ÿฌ์„œ ๋ฐ˜์‘์„ ์ถ”๊ฐ€ํ•ฉ๋‹ˆ๋‹ค" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "๋‘ ๋ฒˆ ํƒญํ•˜์—ฌ ๋Œ€ํ™” ์ƒ์ž๋ฅผ ๋‹ซ์Šต๋‹ˆ๋‹ค" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "๋‘ ๋ฒˆ ํƒญํ•˜์—ฌ ์ข‹์•„์š” ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค" @@ -4328,6 +4289,7 @@ msgstr "์„ญ์‹ ์žฅ์• " #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "์ด๋ฏธ์ง€ ํŽธ์ง‘ํ•˜๊ธฐ" msgid "Edit interaction settings" msgstr "์ƒํ˜ธ์ž‘์šฉ ์„ค์ • ํŽธ์ง‘" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "๊ด€์‹ฌ ์ฃผ์ œ ํŽธ์ง‘" @@ -4397,7 +4359,7 @@ msgstr "๋ผ์ด๋ธŒ ์ƒํƒœ ํŽธ์ง‘" msgid "Edit moderation list" msgstr "๊ฒ€ํ†  ๋ฆฌ์ŠคํŠธ ํŽธ์ง‘" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "๋‚ด ํ”ผ๋“œ ํŽธ์ง‘" @@ -4406,6 +4368,11 @@ msgstr "๋‚ด ํ”ผ๋“œ ํŽธ์ง‘" msgid "Edit name" msgstr "์ด๋ฆ„ ํŽธ์ง‘" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "{0} ๋‹˜์˜ ์•Œ๋ฆผ ํŽธ์ง‘" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "์‚ฌ์šฉ์ž ํŽธ์ง‘ํ•˜๊ธฐ" @@ -4444,7 +4411,7 @@ msgstr "์‚ฌ์šฉ์ž ๋ฆฌ์ŠคํŠธ ํŽธ์ง‘" msgid "Edit who can reply" msgstr "๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ๋Š” ์‚ฌ์šฉ์ž ํŽธ์ง‘" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "์Šคํƒ€ํ„ฐ ํŒฉ ํŽธ์ง‘" @@ -4500,8 +4467,8 @@ msgstr "์ž„๋ฒ ๋“œ HTML ์ฝ”๋“œ" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "๊ฒŒ์‹œ๋ฌผ ์ž„๋ฒ ๋“œ" @@ -4509,7 +4476,7 @@ msgstr "๊ฒŒ์‹œ๋ฌผ ์ž„๋ฒ ๋“œ" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "์›น์‚ฌ์ดํŠธ์— ์ด ๊ฒŒ์‹œ๋ฌผ์„ ์ž„๋ฒ ๋“œํ•˜์„ธ์š”. ๋‹ค์Œ ์ฝ”๋“œ๋ฅผ ๋ณต์‚ฌํ•˜์—ฌ ์›น์‚ฌ์ดํŠธ์— HTML ์ฝ”๋“œ๋กœ ๋ถ™์—ฌ๋„ฃ๊ธฐ๋งŒ ํ•˜๋ฉด ๋ฉ๋‹ˆ๋‹ค." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "์ž„๋ฒ ๋“œ ๋™์˜์ƒ ํ”Œ๋ ˆ์ด์–ด" @@ -4533,7 +4500,7 @@ msgstr "์„ฑ์ธ ์ฝ˜ํ…์ธ  ํ™œ์„ฑํ™”" msgid "Enable beta features" msgstr "๋ฒ ํƒ€ ๊ธฐ๋Šฅ ํ™œ์„ฑํ™”" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "์บก์…˜ ํ™œ์„ฑํ™”" @@ -4550,12 +4517,13 @@ msgstr "์™ธ๋ถ€ ๋ฏธ๋””์–ด ์‚ฌ์šฉ" msgid "Enable media players for" msgstr "๋ฏธ๋””์–ด ํ”Œ๋ ˆ์ด์–ด๋ฅผ ์‚ฌ์šฉํ•  ์™ธ๋ถ€ ์‚ฌ์ดํŠธ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "๊ณ„์ •์˜ ํ”„๋กœํ•„์„ ๋ฐฉ๋ฌธํ•˜์—ฌ <0>์ข… ๋ชจ์–‘ ์•„์ด์ฝ˜ <1/> ์„ ๋ˆŒ๋Ÿฌ ๊ณ„์ •์— ๋Œ€ํ•œ ์•Œ๋ฆผ์„ ์‚ฌ์šฉ ์„ค์ •ํ•˜์„ธ์š”." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "ํ‘ธ์‹œ ์•Œ๋ฆผ ์‚ฌ์šฉ" @@ -4581,7 +4549,7 @@ msgstr "Discover ํ”ผ๋“œ์—์„œ ์ธ๊ธฐ ๋™์˜์ƒ ์‚ฌ์šฉ" msgid "Enabled" msgstr "์‚ฌ์šฉ" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "ํ”ผ๋“œ ๋" @@ -4608,7 +4576,7 @@ msgstr "๋‹จ์–ด ๋˜๋Š” ํƒœ๊ทธ ์ž…๋ ฅ" msgid "Enter code" msgstr "์ฝ”๋“œ ์ž…๋ ฅ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "์ „์ฒดํ™”๋ฉด์œผ๋กœ ๋ณด๊ธฐ" @@ -4650,11 +4618,11 @@ msgstr "์‚ฌ์šฉ์ž ์ด๋ฆ„ ๋ฐ ๋น„๋ฐ€๋ฒˆํ˜ธ ์ž…๋ ฅ" msgid "Enters full screen" msgstr "์ „์ฒดํ™”๋ฉด์œผ๋กœ ๋ด…๋‹ˆ๋‹ค" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "์—”ํ„ฐํ…Œ์ธ๋จผํŠธ" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "์˜ค๋ฅ˜" @@ -4684,7 +4652,7 @@ msgstr "ํŒŒ์ผ์„ ์ €์žฅํ•˜๋Š” ๋™์•ˆ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Error receiving captcha response." msgstr "์บก์ฐจ ์‘๋‹ต์„ ์ˆ˜์‹ ํ•˜๋Š” ๋™์•ˆ ์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "์˜ค๋ฅ˜: {error}" @@ -4696,8 +4664,8 @@ msgstr "๋ˆ„๊ตฌ๋‚˜ ๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ์Œ" msgid "Everybody can reply to this post." msgstr "๋ˆ„๊ตฌ๋‚˜ ์ด ๊ฒŒ์‹œ๋ฌผ์— ๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "๋ชจ๋‘" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "๋ชจ๋‘" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "๊ธฐํƒ€" @@ -4738,7 +4706,7 @@ msgstr "๋‚ด๊ฐ€ ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ์šฉ์ž ์ œ์™ธํ•˜๊ธฐ" msgid "Excludes users you follow" msgstr "๋‚ด๊ฐ€ ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ์šฉ์ž ์ œ์™ธ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "์ „์ฒดํ™”๋ฉด ๋‚˜๊ฐ€๊ธฐ" @@ -4755,11 +4723,11 @@ msgstr "์‚ฌ์šฉ์ž ๋ชฉ๋ก ํŽผ์น˜๊ธฐ" msgid "Expand or collapse the full post you are replying to" msgstr "๋‹ต๊ธ€์„ ๋‹ฌ๊ณ  ์žˆ๋Š” ์ „์ฒด ๊ฒŒ์‹œ๋ฌผ์„ ํŽผ์น˜๊ฑฐ๋‚˜ ์ ‘์Šต๋‹ˆ๋‹ค" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "๊ฒŒ์‹œ๋ฌผ ํ…์ŠคํŠธ ํ™•์žฅ" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "๊ฒŒ์‹œ๋ฌผ ํ…์ŠคํŠธ๋ฅผ ํŽผ์น˜๊ฑฐ๋‚˜ ์ ‘์Šต๋‹ˆ๋‹ค" @@ -4802,15 +4770,15 @@ msgstr "๋…ธ๊ณจ์ ์ด๊ฑฐ๋‚˜ ๋ถˆ์พŒ๊ฐ์„ ์ค„ ์ˆ˜ ์žˆ๋Š” ๋ฏธ๋””์–ด." msgid "Explicit sexual images." msgstr "๋…ธ๊ณจ์ ์ธ ์„ฑ์  ์ด๋ฏธ์ง€." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "ํƒ์ƒ‰" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "์•ฑ ๋‘˜๋Ÿฌ๋ณด๊ธฐ" @@ -4844,7 +4812,7 @@ msgstr "์™ธ๋ถ€ ๋ฏธ๋””์–ด" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "์™ธ๋ถ€ ๋ฏธ๋””์–ด๋Š” ์›น์‚ฌ์ดํŠธ๊ฐ€ ๋‚˜์™€ ๋‚ด ๊ธฐ๊ธฐ์— ๋Œ€ํ•œ ์ •๋ณด๋ฅผ ์ˆ˜์ง‘ํ•˜๋„๋ก ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. โ€˜์žฌ์ƒโ€™ ๋ฒ„ํŠผ์„ ๋ˆ„๋ฅด๊ธฐ ์ „๊นŒ์ง€๋Š” ์–ด๋– ํ•œ ์ •๋ณด๋„ ์ „์†ก๋˜๊ฑฐ๋‚˜ ์š”์ฒญ๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "์™ธ๋ถ€ ๋ฏธ๋””์–ด ์„ค์ •" @@ -4886,7 +4854,7 @@ msgstr "ํ•ธ๋“ค์„ ๋ณ€๊ฒฝํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "๋งํฌ๋ฅผ ๋ณต์‚ฌํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "๊ทธ๋ฃน ๋Œ€ํ™”์—์„œ ๋‚˜๊ฐ€์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "๋Œ€ํ™”๋ฅผ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "ํ”ผ๋“œ๋ฅผ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "ํ”ผ๋“œ ํ™˜๊ฒฝ์„ค์ •์„ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "์•Œ๋ฆผ ์„ค์ •์„ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค." @@ -5012,14 +4981,14 @@ msgstr "ํ™˜๊ฒฝ์„ค์ •์„ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค." msgid "Failed to load profiles" msgstr "ํ”„๋กœํ•„์„ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "์ถ”์ฒœ ํ”ผ๋“œ๋ฅผ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "์ถ”์ฒœ ํŒ”๋กœ์šฐ๋ฅผ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -5027,12 +4996,12 @@ msgstr "์ถ”์ฒœ ํŒ”๋กœ์šฐ๋ฅผ ๋ถˆ๋Ÿฌ์˜ค์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Failed to lock group chat" msgstr "๊ทธ๋ฃน ๋Œ€ํ™”๋ฅผ ์ž ๊ทธ์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "๋ชจ๋“  ๋Œ€ํ™”๋ฅผ ์ฝ์Œ์œผ๋กœ ํ‘œ์‹œํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "์š”์ฒญ์„ ์ทจ์†Œํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." msgid "Failed to resolve location. Please try again." msgstr "์œ„์น˜๋ฅผ ํ™•์ธํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "์ž„์‹œ ์ €์žฅํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -5191,7 +5160,7 @@ msgstr "๊ฐ€์งœ ๊ณ„์ • ๋˜๋Š” ๋ด‡" msgid "False information about elections" msgstr "์„ ๊ฑฐ์— ๋Œ€ํ•œ ํ—ˆ์œ„ ์ •๋ณด" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "ํ”ผ๋“œ" @@ -5212,7 +5181,7 @@ msgstr "ํ”ผ๋“œ ์ž‘์„ฑ์ž" msgid "Feed identifier" msgstr "ํ”ผ๋“œ ID" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "ํ”ผ๋“œ ๋ฉ”๋‰ด" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "ํ”ผ๋“œ ์šด์˜์ž์—๊ฒŒ ํ”ผ๋“œ๋ฐฑ์„ ์ „์†กํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "ํ”ผ๋“œ๋ฅผ ์—…๋ฐ์ดํŠธํ–ˆ์Šต๋‹ˆ๋‹ค!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "์ข‹์•„ํ•  ๋งŒํ•œ ํ”ผ๋“œ๋ฅผ ๋ชจ์•˜์Šต๋‹ˆ๋‹ค." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "์—…๋ฐ์ดํŠธ ํ™•์ธ" @@ -5273,34 +5238,22 @@ msgstr "์—…๋ฐ์ดํŠธ ํ™•์ธ" msgid "File saved successfully!" msgstr "ํŒŒ์ผ์„ ์„ฑ๊ณต์ ์œผ๋กœ ์ €์žฅํ–ˆ์Šต๋‹ˆ๋‹ค!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "์ž‘์„ฑ์ž ํ•„ํ„ฐ" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "์ž‘์„ฑ์ž ํ•„ํ„ฐ (ํ˜„์žฌ: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "๋ฏธ๋””์–ด ํ•„ํ„ฐ" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "๋ฏธ๋””์–ด ํ•„ํ„ฐ (ํ˜„์žฌ: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "ํ”ผ๋“œ์—์„œ ํ•„ํ„ฐ๋ง" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "์–ธ์–ด๋ณ„ ๊ฒ€์ƒ‰ ํ•„ํ„ฐ๋ง" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "์–ธ์–ด๋ณ„ ๊ฒ€์ƒ‰ ํ•„ํ„ฐ๋ง (ํ˜„์žฌ: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "๋ฏธ๋””์–ด๋กœ ๊ฒ€์ƒ‰ ํ•„ํ„ฐ๋ง (ํ˜„์žฌ: {currentLabel})" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "{0}๋กœ ์ด ๊ฒ€์ƒ‰ ํ•„ํ„ฐ๋งํ•˜๊ธฐ" msgid "Filter who can opt to receive notifications for your activity" msgstr "๋‚ด ํ™œ๋™ ์•Œ๋ฆผ์„ ๋ฐ›์„ ์ˆ˜ ์žˆ๋Š” ์‚ฌ์šฉ์ž ํ•„ํ„ฐ๋ง" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "์•Œ๋ฆผ์„ ๋ฐ›์„ ๋Œ€์ƒ ํ•„ํ„ฐ๋ง" @@ -5352,8 +5305,8 @@ msgstr "ํŒ”๋กœ์šฐํ•  ๊ณ„์ • ์ฐพ์•„๋ณด๊ธฐ" msgid "Find and invite friends" msgstr "์นœ๊ตฌ๋ฅผ ์ฐพ๊ณ  ์ดˆ๋Œ€ํ•˜๊ธฐ" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "์—ฐ๋ฝ์ฒ˜ ์ฐพ๊ธฐ" @@ -5387,7 +5340,7 @@ msgstr "์นœ๊ตฌ๋“ค์„ ์ฐพ์•„๋ณด์„ธ์š”" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Bluesky์—์„œ ์ „ํ™”๋ฒˆํ˜ธ๋ฅผ ์ธ์ฆํ•˜๊ณ  ์—ฐ๋ฝ์ฒ˜๋ฅผ ๋งค์นญํ•˜์—ฌ ์นœ๊ตฌ๋“ค์„ ์ฐพ์•„๋ณด์„ธ์š”. Bluesky๋Š” ์‚ฌ์šฉ์ž์˜ ์ •๋ณด๋ฅผ ์•ˆ์ „ํ•˜๊ฒŒ ๋ณดํ˜ธํ•˜๋ฉฐ, ์ดํ›„ ๊ณผ์ •์€ ์‚ฌ์šฉ์ž๊ฐ€ ์ง์ ‘ ์ œ์–ดํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. <0>์ž์„ธํžˆ ์•Œ์•„๋ณด๊ธฐ (์˜์–ด)" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "๋งˆ์Œ ๋งž๋Š” ์‚ฌ๋žŒ ์ฐพ๊ธฐ" @@ -5429,7 +5382,7 @@ msgstr "๊ฒ€์ƒ‰ ํ•„๋“œ์— ํฌ์ปค์Šค" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "{0} ๋‹˜์„ ํŒ”๋กœ์šฐ" msgid "Follow {displayName}" msgstr "{displayName} ๋‹˜์„ ํŒ”๋กœ์šฐ" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle} ๋‹˜์„ ํŒ”๋กœ์šฐ" @@ -5453,11 +5406,11 @@ msgstr "{handle} ๋‹˜์„ ํŒ”๋กœ์šฐ" msgid "Follow 10 accounts" msgstr "10๊ฐœ ๊ณ„์ • ํŒ”๋กœ์šฐํ•˜๊ธฐ" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "์‹œ์ž‘ํ•˜๋ ค๋ฉด 10๋ช…์„ ํŒ”๋กœ์šฐํ•˜์„ธ์š”" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "7๊ฐœ ๊ณ„์ • ํŒ”๋กœ์šฐํ•˜๊ธฐ" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "ํŒ”๋กœ์›Œ๋งŒ ์ฐธ์—ฌํ•  ์ˆ˜ ์žˆ์Œ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "๋‚ด๊ฐ€ ์•„๋Š” @{0} ๋‹˜์˜ ํŒ”๋กœ์›Œ" @@ -5544,7 +5497,7 @@ msgstr "๋‚ด๊ฐ€ ์•„๋Š” ํŒ”๋กœ์›Œ" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "{0} ๋‹˜์„ ํŒ”๋กœ์šฐํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Following {displayName}" msgstr "{displayName} ๋‹˜์„ ํŒ”๋กœ์šฐํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "{handle} ๋‹˜์„ ํŒ”๋กœ์šฐ ์ค‘" @@ -5578,21 +5531,21 @@ msgstr "{handle} ๋‹˜์„ ํŒ”๋กœ์šฐ ์ค‘" msgid "Following feed preferences" msgstr "ํŒ”๋กœ์šฐ ์ค‘ ํ”ผ๋“œ ์„ค์ •" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "ํŒ”๋กœ์šฐ ์ค‘ ํ”ผ๋“œ ์„ค์ •" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "๋‚˜๋ฅผ ํŒ”๋กœ์šฐํ•จ" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "๊ธ€๊ผด" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "๊ธ€๊ผด ํฌ๊ธฐ" @@ -5612,13 +5565,13 @@ msgstr "๋ณด์•ˆ์ƒ์˜ ์ด์œ ๋กœ ๋‚ด ์ด๋ฉ”์ผ ์ฃผ์†Œ <0>{currentEmail}(์œผ) msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "๋ณด์•ˆ์ƒ์˜ ์ด์œ ๋กœ ์ด ๋น„๋ฐ€๋ฒˆํ˜ธ๋Š” ๋‹ค์‹œ ๋ณผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ด ์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ๋ถ„์‹คํ•œ ๊ฒฝ์šฐ ์ƒˆ๋กœ ์ƒ์„ฑํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "์ตœ์ƒ์˜ ๊ฒฝํ—˜์„ ์œ„ํ•ด ํ…Œ๋งˆ ๊ธ€๊ผด์„ ์‚ฌ์šฉํ•˜๋Š” ๊ฒƒ์„ ์ถ”์ฒœํ•ฉ๋‹ˆ๋‹ค." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "์ถ”์ฒœ" @@ -5628,7 +5581,7 @@ msgstr "์ถ”์ฒœ" msgid "Forever" msgstr "๋ฌด๊ธฐํ•œ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "์žก์Œ์€ ์žŠ์–ด๋ผ" @@ -5647,11 +5600,11 @@ msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ์žŠ์—ˆ๋‚˜์š”?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "๊ทธ๋ฃน ๋Œ€ํ™”๋ฅผ ๋‚˜ํƒ€๋‚ด๋Š” 4๊ฐœ์˜ ๋ฉ”์‹œ์ง€ ๋งํ’์„ . ์ฒซ ๋ฒˆ์งธ ๋ฉ”์‹œ์ง€: \"์†Œ์‹ ๋“ค์—ˆ์–ด? Bluesky์— ์ด์ œ ๊ทธ๋ฃน ๋Œ€ํ™” ๊ธฐ๋Šฅ์ด ์ƒ๊ฒผ๋Œ€!\" ๋‘ ๋ฒˆ์งธ ๋ฉ”์‹œ์ง€: \"์„ธ์ƒ์—, ์ง„์งœ?\" ์„ธ ๋ฒˆ์งธ ๋ฉ”์‹œ์ง€: \"์™€, ๋Œ€ํ™”๋ฐฉ ํ•˜๋‚˜์— 50๋ช…๊นŒ์ง€ ๋“ค์–ด๊ฐˆ ์ˆ˜ ์žˆ์–ด!\" ๋„ค ๋ฒˆ์งธ ๋ฉ”์‹œ์ง€: \"์ดˆ๋Œ€ ๋งํฌ๋„ ๋ณด๋‚ผ ์ˆ˜ ์žˆ๋Œ€!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "ํ”ผ๋“œ๋ฅผ ์ž์œ ๋กญ๊ฒŒ" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "์•Œ๋ฆผ ๋Œ€์ƒ" @@ -5674,7 +5627,7 @@ msgstr "<0/>์—์„œ" msgid "From these people" msgstr "๋‹ค์Œ ์‚ฌ์šฉ์ž๊ฐ€ ์ž‘์„ฑ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "์Šคํƒ€ํ„ฐ ํŒฉ ๋งŒ๋“ค๊ธฐ" @@ -5718,39 +5671,39 @@ msgstr "ํ…Œ์ŠคํŠธ ์ค‘์ธ ์‹คํ—˜์  ๊ธฐ๋Šฅ์„ ๋จผ์ € ์‚ฌ์šฉํ•ด ๋ณด์„ธ์š”." msgid "Get help" msgstr "๋„์›€๋ง" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "์Šคํƒ€ํ„ฐ ํŒฉ ๊ฐ€์ž…, ์ธ์ฆ ๋ฐ ๊ธฐํƒ€ ํ™œ๋™์— ๋Œ€ํ•œ ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "์‚ฌ๋žŒ๋“ค์ด ๋‚˜๋ฅผ ํŒ”๋กœ์šฐํ•˜๋ฉด ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "์‚ฌ๋žŒ๋“ค์ด ๋‚ด ๊ฒŒ์‹œ๋ฌผ์— ์ข‹์•„์š”๋ฅผ ๋ˆ„๋ฅด๋ฉด ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "๋‹ค๋ฅธ ์‚ฌ์šฉ์ž๊ฐ€ ๋‚ด ์žฌ๊ฒŒ์‹œ๋ฌผ์— ์ข‹์•„์š”๋ฅผ ๋ˆ„๋ฅผ ๋•Œ ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "์‚ฌ๋žŒ๋“ค์ด ๋‚˜๋ฅผ ๋ฉ˜์…˜ํ•˜๋ฉด ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "์‚ฌ๋žŒ๋“ค์ด ๋‚ด ๊ฒŒ์‹œ๋ฌผ์„ ์ธ์šฉํ•˜๋ฉด ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "์‚ฌ๋žŒ๋“ค์ด ๋‚ด ๊ฒŒ์‹œ๋ฌผ์— ๋‹ต๊ธ€์„ ๋‹ฌ๋ฉด ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "์‚ฌ๋žŒ๋“ค์ด ๋‚ด ๊ฒŒ์‹œ๋ฌผ์„ ์žฌ๊ฒŒ์‹œํ•˜๋ฉด ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "๋‹ค๋ฅธ ์‚ฌ์šฉ์ž๊ฐ€ ๋‚ด ๊ฒŒ์‹œ๋ฌผ์„ ์žฌ๊ฒŒ์‹œํ•  ๋•Œ ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค." @@ -5762,15 +5715,15 @@ msgstr "๋‹ค๋ฅธ ์‚ฌ์šฉ์ž๊ฐ€ ๋ฉ”์‹œ์ง€ ์š”์ฒญ์„ ๋ณด๋‚ผ ๋•Œ ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ msgid "Get notifications when people send you messages." msgstr "๋‹ค๋ฅธ ์‚ฌ์šฉ์ž๊ฐ€ ๋ฉ”์‹œ์ง€๋ฅผ ๋ณด๋‚ผ ๋•Œ ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "๊ตฌ๋… ์ค‘์ธ ๊ฒŒ์‹œ๋ฌผ์— ํ™œ๋™์ด ์žˆ์„ ๋•Œ ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "์ƒˆ ๊ฒŒ์‹œ๋ฌผ ์•Œ๋ฆผ ๋ฐ›๊ธฐ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "๋‚ด๊ฐ€ ์„ ํƒํ•œ ๊ณ„์ •์˜ ์ƒˆ ๊ฒŒ์‹œ๋ฌผ๊ณผ ๋‹ต๊ธ€์— ๋Œ€ํ•œ ์•Œ๋ฆผ์„ ๋ฐ›์Šต๋‹ˆ๋‹ค." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "{name} ๋‹˜์˜ ์ƒˆ ๊ฒŒ์‹œ๋ฌผ ์•Œ๋ฆผ ๋ฐ›๊ธฐ" @@ -5799,11 +5752,11 @@ msgstr "์‹œ์ž‘ํ•˜๊ธฐ" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF๋ฅผ ์—…๋กœ๋“œํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "ํ”„๋กœํ•„์— ์–ผ๊ตด ๋‹ฌ๊ธฐ" @@ -5813,20 +5766,20 @@ msgstr "ํญ๋ ฅ ๋ฏธํ™”" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "๋ผ์ด๋ธŒ ์˜ˆ์ • ์‹œ๊ฐ„" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "{0} ๋‹˜์˜ ํ”„๋กœํ•„๋กœ ์ด๋™" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "๊ทธ๋ฃน ๋Œ€ํ™” ์ด๋ฆ„์ด ๋ณ€๊ฒฝ๋˜์—ˆ์Šต๋‹ˆ๋‹ค" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "๊ทธ๋ฃน ๋Œ€ํ™” ์„ค์ •" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "๊ทธ๋ฃน ๋Œ€ํ™”๋Š” ์ตœ๋Œ€ {0, plural, other {#๋ช…}}๊นŒ์ง€ ์ฐธ์—ฌํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "๊ทธ๋ฃน ์ž ๊น€" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "๊ทธ๋ฃน ์ด๋ฆ„" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "๊ทธ๋ฃน ์ด๋ฆ„์ด ๋„ˆ๋ฌด ๊น๋‹ˆ๋‹ค. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {์ตœ๋Œ€ ๊ธ€์ž ์ˆ˜๋Š” #์ž์ž…๋‹ˆ๋‹ค.}}" @@ -6077,7 +6031,7 @@ msgstr "์œ ํ•ดํ•˜๊ฑฐ๋‚˜ ์œ„ํ—˜์„ฑ์ด ํฐ ํ™œ๋™" msgid "Harming or endangering minors" msgstr "๋ฏธ์„ฑ๋…„์ž์—๊ฒŒ ์œ ํ•ด ๋˜๋Š” ์œ„ํ—˜์— ๋น ๋œจ๋ฆฌ๋Š” ํ–‰์œ„" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "ํ•ด์‹œํƒœ๊ทธ" @@ -6098,7 +6052,7 @@ msgstr "์ฝ”๋“œ๊ฐ€ ์žˆ๋‚˜์š”? <0>์ด๊ณณ์„ ํด๋ฆญํ•˜์„ธ์š”." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "์œ„์น˜ ์ •๋ณด๊ฐ€ ์˜ฌ๋ฐ”๋ฅด์ง€ ์•Š๋‚˜์š”? <0>์ด๊ณณ์„ ํƒญํ•˜์—ฌ GPS๋กœ ์œ„์น˜๋ฅผ ์—…๋ฐ์ดํŠธํ•˜์„ธ์š”." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "๋ฌธ์ œ๊ฐ€ ์žˆ๋‚˜์š”?" @@ -6114,7 +6068,7 @@ msgstr "Bluesky์—์„œ๋Š” ์•…์šฉ ๋ฐฉ์ง€๋ฅผ ์œ„ํ•ด 7์ผ๊ฐ„ ๋ณด๊ด€ ํ›„ ์‚ญ์ œ๋ฉ๋‹ˆ msgid "Help" msgstr "๋„์›€๋ง" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "์‚ฌ์ง„์„ ์—…๋กœ๋“œํ•˜๊ฑฐ๋‚˜ ์•„๋ฐ”ํƒ€๋ฅผ ๋งŒ๋“ค์–ด ์‚ฌ๋žŒ๋“ค์ด ๋‚ด๊ฐ€ ๋ด‡์ด ์•„๋‹ˆ๋ผ๋Š” ์‚ฌ์‹ค์„ ์•Œ ์ˆ˜ ์žˆ๋„๋ก ํ•˜์„ธ์š”." @@ -6135,12 +6089,12 @@ msgstr "์•ˆ๋…•ํ•˜์„ธ์š”!" msgid "Hi there!" msgstr "์•ˆ๋…•ํ•˜์„ธ์š”!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "์ˆจ๊ฒจ์ง" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "๊ฒ€ํ†  ์„ค์ •์— ์˜ํ•ด ์ˆจ๊ฒจ์กŒ์Šต๋‹ˆ๋‹ค." @@ -6148,9 +6102,10 @@ msgstr "๊ฒ€ํ†  ์„ค์ •์— ์˜ํ•ด ์ˆจ๊ฒจ์กŒ์Šต๋‹ˆ๋‹ค." msgid "Hidden list" msgstr "์ˆจ๊ฒจ์ง„ ๋ฆฌ์ŠคํŠธ" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "์ˆจ๊ฒจ์ง„ ๋ฆฌ์ŠคํŠธ" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "์ˆจ๊ธฐ๊ธฐ" @@ -6198,7 +6154,7 @@ msgstr "๋ชจ๋‘์—๊ฒŒ์„œ ๋‹ต๊ธ€ ์ˆจ๊ธฐ๊ธฐ" msgid "Hide reply for me" msgstr "๋‚˜์—๊ฒŒ์„œ ๋‹ต๊ธ€ ์ˆจ๊ธฐ๊ธฐ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "์ด ์นด๋“œ ์ˆจ๊ธฐ๊ธฐ" @@ -6218,16 +6174,18 @@ msgstr "์ด ๋‹ต๊ธ€์„ ์ˆจ๊ธฐ์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Hide translation" msgstr "๋ฒˆ์—ญ ์ˆจ๊ธฐ๊ธฐ" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "์ธ๊ธฐ ์ฃผ์ œ ์ˆจ๊ธฐ๊ธฐ" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "์ธ๊ธฐ ์ฃผ์ œ๋ฅผ ์ˆจ๊ธฐ์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "์ธ๊ธฐ ๋™์˜์ƒ์„ ์ˆจ๊ธฐ์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -6240,7 +6198,7 @@ msgstr "์‚ฌ์šฉ์ž ๋ฆฌ์ŠคํŠธ ์ˆจ๊ธฐ๊ธฐ" msgid "Hide verification badges" msgstr "์ธ์ฆ ๋ฐฐ์ง€ ์ˆจ๊ธฐ๊ธฐ" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "์ฝ˜ํ…์ธ ๋ฅผ ์ˆจ๊น๋‹ˆ๋‹ค" @@ -6293,8 +6251,8 @@ msgstr "๊ฒ€ํ†  ์„œ๋น„์Šค๋ฅผ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "์ž ๊น! ๋™์˜์ƒ์— ๋Œ€ํ•œ ์ ‘๊ทผ ๊ถŒํ•œ์ด ์ ์ฐจ์ ์œผ๋กœ ์ œ๊ณต๋˜๊ณ  ์žˆ์ง€๋งŒ ์•„์ง์€ ๊ธฐ๋‹ค๋ ค์•ผ ํ•ฉ๋‹ˆ๋‹ค. ๋‚˜์ค‘์— ๋‹ค์‹œ ํ™•์ธํ•ด ์ฃผ์„ธ์š”!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "ํ˜ธ์ŠคํŒ… ์ œ๊ณต์ž: {0}" msgid "Hosting provider: Bluesky" msgstr "ํ˜ธ์ŠคํŒ… ์ œ๊ณต์ž: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "์ธ๊ธฐ" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "ํ•˜๋Š” ๋ฐฉ๋ฒ•:" @@ -6409,6 +6363,7 @@ msgstr "์ด๋ฉ”์ผ ์ฃผ์†Œ๋ฅผ ๋ณ€๊ฒฝํ•˜๋ฉด ์ด๋ฉ”์ผ 2๋‹จ๊ณ„ ์ธ์ฆ์ด ๋น„ํ™œ์„ฑ msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ๋ณ€๊ฒฝํ•˜๋ ค๋ฉด ๋ณธ์ธ ๊ณ„์ • ํ™•์ธ์„ ์œ„ํ•ด ์ธ์ฆ ์ฝ”๋“œ๋ฅผ ์ „์†กํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "๋‚ด ๊ณ„์ •์˜ ํ™œ๋™์— ๋Œ€ํ•œ ์•Œ๋ฆผ์„ ๋ฐ›์„ ์ˆ˜ ์žˆ๋Š” ์‚ฌ์šฉ์ž๋ฅผ ์ œํ•œํ•˜๋ ค๋ฉด <0>์„ค์ • โ†’ ๊ฐœ์ธ์ •๋ณด ๋ฐ ๋ณด์•ˆ์—์„œ ๋ณ€๊ฒฝํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -6548,7 +6503,7 @@ msgstr "์ธ์•ฑ, ํ‘ธ์‹œ, ๋ชจ๋‘" msgid "In-app, push, people you follow" msgstr "์ธ์•ฑ, ํ‘ธ์‹œ, ๋‚ด๊ฐ€ ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ์šฉ์ž" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "์ˆ˜์‹ ํ•จ์ด ๋น„์–ด ์žˆ์Šต๋‹ˆ๋‹ค" @@ -6564,7 +6519,6 @@ msgstr "์ˆ˜์‹ ํ•จ ์ œ๋กœ!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "ํฌํ•จ" @@ -6573,7 +6527,7 @@ msgstr "ํฌํ•จ" msgid "Include or exclude matching posts (currently: {0})" msgstr "์ผ์น˜ํ•˜๋Š” ๊ฒŒ์‹œ๋ฌผ ํฌํ•จ ๋˜๋Š” ์ œ์™ธํ•˜๊ธฐ (ํ˜„์žฌ: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "๊ฒŒ์‹œ๋ฌผ ๋ฐ ๋‹ต๊ธ€ ํฌํ•จํ•˜๊ธฐ (ํ˜„์žฌ: {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "์ด ๋‚ ์งœ๋ถ€ํ„ฐ ์ž‘์„ฑ๋œ ๊ฒŒ์‹œ๋ฌผ์„ ํฌํ•จ์‹œํ‚ต๋‹ˆ๋‹ค" msgid "Include posts made until this date" msgstr "์ด ๋‚ ์งœ๊นŒ์ง€ ์ž‘์„ฑ๋œ ๊ฒŒ์‹œ๋ฌผ์„ ํฌํ•จ์‹œํ‚ต๋‹ˆ๋‹ค" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "๋‹ค์Œ ๊ฒฐ๊ณผ ํฌํ•จ" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "์‚ฌ์šฉ์ž ์ด๋ฆ„ ๋˜๋Š” ๋น„๋ฐ€๋ฒˆํ˜ธ๊ฐ€ ์˜ฌ๋ฐ”๋ฅด์ง€ ์•Š์Šต๋‹ˆ๋‹ค" @@ -6683,7 +6633,7 @@ msgstr "{name} ๋‹˜์„ Bluesky๋กœ ์ดˆ๋Œ€ํ•˜๊ธฐ" msgid "Invite code" msgstr "์ดˆ๋Œ€ ์ฝ”๋“œ" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "์ดˆ๋Œ€ ์ฝ”๋“œ๊ฐ€ ์˜ฌ๋ฐ”๋ฅด์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ์ฝ”๋“œ๋ฅผ ์˜ฌ๋ฐ”๋ฅด๊ฒŒ ์ž…๋ ฅํ–ˆ๋Š”์ง€ ํ™•์ธํ•œ ํ›„ ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "์•„์ง์€ ๋‚˜๋ฐ–์— ์—†์Šต๋‹ˆ๋‹ค! ์œ„์—์„œ ๊ฒ€์ƒ‰ํ•˜์—ฌ ์Šคํƒ€ํ„ฐ ํŒฉ์— ๋” ๋งŽ์€ ์‚ฌ์šฉ์ž๋ฅผ ์ถ”๊ฐ€ํ•ด ๋ณด์„ธ์š”." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "์ž‘์—… ID: {0}" @@ -6816,8 +6766,8 @@ msgstr "๋Œ€ํ™”์— ์ฐธ์—ฌํ•˜๊ธฐ" msgid "Journalism" msgstr "์ €๋„๋ฆฌ์ฆ˜" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "๊ณ„์† ์ž‘์„ฑํ•˜๊ธฐ" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "KWS ์›น์‚ฌ์ดํŠธ" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0}(์ด)๊ฐ€ ๋ผ๋ฒจ ์ง€์ •ํ•จ." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "์ž‘์„ฑ์ž๊ฐ€ ๋ผ๋ฒจ ์ง€์ •ํ•จ." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "๋ผ๋ฒจ" @@ -6852,7 +6802,7 @@ msgstr "๋ผ๋ฒจ ์ถ”๊ฐ€๋จ" msgid "Labels applied to this post" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์— ์ ์šฉ๋œ ๋ผ๋ฒจ" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "๋ผ๋ฒจ์€ ์‚ฌ์šฉ์ž ๋ฐ ์ฝ˜ํ…์ธ ์— ๋Œ€ํ•œ ์ฃผ์„์ž…๋‹ˆ๋‹ค. ๋„คํŠธ์›Œํฌ๋ฅผ ์ˆจ๊ธฐ๊ณ , ๊ฒฝ๊ณ ํ•˜๊ณ , ๋ถ„๋ฅ˜ํ•˜๋Š” ๋ฐ ์‚ฌ์šฉํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -6864,7 +6814,7 @@ msgstr "๋‚ด ๊ณ„์ •์˜ ๋ผ๋ฒจ" msgid "Language" msgstr "์–ธ์–ด" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "์–ธ์–ด ์„ค์ •" @@ -6874,7 +6824,7 @@ msgstr "์–ธ์–ด ์„ค์ •" msgid "Languages" msgstr "์–ธ์–ด" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "ํผ" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "๋ฐฉ๊ธˆ ์‹œ์ž‘ํ•จ" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "์ตœ์‹ " @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "์ž์„ธํžˆ ์•Œ์•„๋ณด๊ธฐ (์˜์–ด)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "์ž์„ธํžˆ ์•Œ์•„๋ณด๊ธฐ" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "<0>๊ณ ๊ธ‰ ๊ฒ€์ƒ‰ ์‚ฌ์šฉ ๋ฐฉ๋ฒ• (์˜์–ด)์— ๋Œ€ํ•ด ์ž์„ธํžˆ ์•Œ์•„๋ณด์„ธ์š”." @@ -6937,8 +6887,8 @@ msgstr "์—ฐ๋ฝ์ฒ˜ ๊ฐ€์ ธ์˜ค๊ธฐ์— ๋Œ€ํ•ด ์ž์„ธํžˆ ์•Œ์•„๋ณด๊ธฐ (์˜์–ด)" msgid "Learn more about self hosting your PDS." msgstr "PDS ์…€ํ”„ ํ˜ธ์ŠคํŒ…์— ๋Œ€ํ•ด ์ž์„ธํžˆ ์•Œ์•„๋ณด์„ธ์š”." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "์ด ์ฝ˜ํ…์ธ ์— ์ ์šฉ๋œ ๊ฒ€ํ†  ์„ค์ •์— ๋Œ€ํ•ด ์ž์„ธํžˆ ์•Œ์•„๋ณด์„ธ์š”" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "์ด ๋ณ€๊ฒฝ ์‚ฌํ•ญ์— ๋Œ€ํ•œ ์ž์„ธํ•œ ๋‚ด์šฉ๊ณผ ์˜๊ฒฌ ์ œ์ถœ ๋ฐฉ๋ฒ•์€ ์ด ๋ธ”๋กœ๊ทธ ๊ฒŒ์‹œ๋ฌผ์—์„œ ํ™•์ธํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "์ด ๊ฒฝ๊ณ ์— ๋Œ€ํ•ด ์ž์„ธํžˆ ์•Œ์•„๋ณด๊ธฐ" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "<0>๊ณ„์ • ์„ค์ •์—์„œ ์ž์„ธํžˆ ์•Œ์•„๋ณด์„ธ์š”." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "์ž์„ธํžˆ ์•Œ์•„๋ณด๊ธฐ" @@ -6993,8 +6943,8 @@ msgstr "๋‚˜๊ฐ€๊ธฐ" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Bluesky ๋– ๋‚˜๊ธฐ" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "์ด ๋Œ€ํ™”์—์„œ ๋‚˜๊ฐ€๋ฉด ์˜๊ตฌ์ ์œผ๋กœ ์ž ๊ธฐ๋ฉฐ ๋‹ค์‹œ ์ฐธ์—ฌํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "๊ทธ๋ฃน ๋Œ€ํ™”์—์„œ ๋‚˜๊ฐ”์Šต๋‹ˆ๋‹ค" @@ -7042,7 +6992,7 @@ msgstr "๊ทธ๋ฃน ๋Œ€ํ™”์—์„œ ๋‚˜๊ฐ”์Šต๋‹ˆ๋‹ค" msgid "left to go." msgstr "๋ช… ๋‚จ์•˜์Šต๋‹ˆ๋‹ค." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "์ง์ ‘ ์„ ํƒํ•˜๊ธฐ" @@ -7057,7 +7007,7 @@ msgstr "์ถœ๋ฐœ!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "๋ฐ์Œ" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "๋ฐ์Œ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "์ข‹์•„์š”" @@ -7076,7 +7026,7 @@ msgstr "์ข‹์•„์š”" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "์ข‹์•„์š” ({0, plural, other {#๊ฐœ}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10๊ฐœ ๊ฒŒ์‹œ๋ฌผ์— ์ข‹์•„์š” ๋ˆ„๋ฅด๊ธฐ" @@ -7085,7 +7035,7 @@ msgstr "10๊ฐœ ๊ฒŒ์‹œ๋ฌผ์— ์ข‹์•„์š” ๋ˆ„๋ฅด๊ธฐ" msgid "Like 10 posts to train the Discover feed" msgstr "10๊ฐœ ๊ฒŒ์‹œ๋ฌผ์— ์ข‹์•„์š”๋ฅผ ๋ˆŒ๋Ÿฌ Discover ํ”ผ๋“œ๋ฅผ ํ›ˆ๋ จ์‹œํ‚ค์„ธ์š”" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "์ด ํ”ผ๋“œ์— ์ข‹์•„์š” ํ‘œ์‹œ" @@ -7093,8 +7043,8 @@ msgstr "์ด ํ”ผ๋“œ์— ์ข‹์•„์š” ํ‘œ์‹œ" msgid "Like this labeler" msgstr "์ด ๋ผ๋ฒจ๋Ÿฌ์— ์ข‹์•„์š” ํ‘œ์‹œ" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "์ข‹์•„์š” ํ‘œ์‹œํ•œ ์‚ฌ์šฉ์ž" @@ -7111,27 +7061,45 @@ msgstr "์ข‹์•„์š” ํ‘œ์‹œํ•œ ์‚ฌ์šฉ์ž" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, other {#๋ช…}}์˜ ์‚ฌ์šฉ์ž๊ฐ€ ์ข‹์•„์š” ํ‘œ์‹œํ•จ" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "{0} ๋‹˜์ด ์ข‹์•„์š” ํ‘œ์‹œํ•จ" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "{0} ๋‹˜๊ณผ {1} ๋‹˜์ด ์ข‹์•„์š” ํ‘œ์‹œํ•จ" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, other {#๋ช…}}์˜ ์‚ฌ์šฉ์ž๊ฐ€ ์ข‹์•„์š” ํ‘œ์‹œํ•จ" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "์ข‹์•„์š”" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "๋‚ด ์žฌ๊ฒŒ์‹œ๋ฌผ์˜ ์ข‹์•„์š”" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ์ข‹์•„์š” ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค" @@ -7144,7 +7112,7 @@ msgstr "์ผ๋ฐ˜" msgid "Link copied to clipboard" msgstr "๋งํฌ๋ฅผ ํด๋ฆฝ๋ณด๋“œ์— ๋ณต์‚ฌํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "๋ฆฌ์ŠคํŠธ" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "๋ฆฌ์ŠคํŠธ๋ฅผ ์–ธ๋ฎคํŠธํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "๋ผ์ด๋ธŒ" msgid "Live event happening now: {0}" msgstr "๋ผ์ด๋ธŒ ์ด๋ฒคํŠธ ์ง„ํ–‰ ์ค‘: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "๋ผ์ด๋ธŒ ์ด๋ฒคํŠธ๋ฅผ ์ˆจ๊ฒผ์Šต๋‹ˆ๋‹ค" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "๋ผ์ด๋ธŒ ์ด๋ฒคํŠธ๋ฅผ ์ˆจ๊น€ ํ•ด์ œํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -7279,12 +7247,12 @@ msgstr "๋ผ์ด๋ธŒ ๊ธฐ๋Šฅ์€ ๋ฒ ํƒ€ ํ…Œ์ŠคํŠธ ์ค‘์ž…๋‹ˆ๋‹ค" msgid "Live link" msgstr "๋ผ์ด๋ธŒ ๋งํฌ" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "๋” ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "์ถ”์ฒœ ํ”ผ๋“œ ๋” ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" @@ -7292,8 +7260,8 @@ msgstr "์ถ”์ฒœ ํ”ผ๋“œ ๋” ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" msgid "Load new notifications" msgstr "์ƒˆ ์•Œ๋ฆผ ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "์ด ๊ทธ๋ฃน ๋Œ€ํ™” ์ž ๊ทธ๊ธฐ" msgid "Locked" msgstr "์ž ๊น€" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "๋กœ๊ทธ" @@ -7387,7 +7355,7 @@ msgstr "์‚ฌ๋ž‘ GIF" msgid "Make adjustments to email settings for your account" msgstr "๊ณ„์ •์˜ ์ด๋ฉ”์ผ ์„ค์ • ์กฐ์ •ํ•˜๊ธฐ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "๋‚˜๋ฅผ ์œ„ํ•ด ๋งŒ๋“ค๊ธฐ" @@ -7418,15 +7386,15 @@ msgstr "์ˆ˜๋™" msgid "Mark all as read" msgstr "๋ชจ๋‘ ์ฝ์Œ์œผ๋กœ ํ‘œ์‹œ" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "๋ชจ๋“  ๋Œ€ํ™”๋ฅผ ์ฝ์Œ์œผ๋กœ ํ‘œ์‹œ" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "์ฝ์Œ์œผ๋กœ ํ‘œ์‹œ" msgid "Marked all as read" msgstr "๋ชจ๋‘ ์ฝ์Œ์œผ๋กœ ํ‘œ์‹œํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "๋ชจ๋“  ๋Œ€ํ™”๋ฅผ ์ฝ์Œ์œผ๋กœ ํ‘œ์‹œํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "๋ชจ๋“  ์š”์ฒญ์„ ์ฝ์Œ์œผ๋กœ ํ‘œ์‹œํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -7456,8 +7424,12 @@ msgstr "๋ชจ๋“  ์š”์ฒญ์„ ์ฝ์Œ์œผ๋กœ ํ‘œ์‹œํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Maybe later" msgstr "๋‚˜์ค‘์— ํ•˜๊ธฐ" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "๋‚˜" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "๋ฏธ๋””์–ด" @@ -7475,7 +7447,7 @@ msgstr "๋‹ค๋ฅธ ๊ธฐ๊ธฐ์— ์ €์žฅ๋œ ๋ฏธ๋””์–ด" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "์ผ๋ถ€ ์‚ฌ์šฉ์ž์—๊ฒŒ ๋ถˆ์พŒ๊ฐ์„ ์ฃผ๊ฑฐ๋‚˜ ๋ถ€์ ์ ˆํ•  ์ˆ˜ ์žˆ๋Š” ๋ฏธ๋””์–ด." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "๋ฉค๋ฒ„๋ฅผ ๊ทธ๋ฃน ์ฑ„ํŒ…์—์„œ ๋‚ด๋ณด๋ƒˆ์Šต๋‹ˆ๋‹ค" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "๋ฉ˜์…˜ํ•œ ์‚ฌ์šฉ์ž" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "๋ฉ˜์…˜" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "๋ฉ”์‹œ์ง€๋ฅผ ์‚ญ์ œํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "๋ฉ”์‹œ์ง€๋ฅผ ๋ณด๋‚ด์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค." @@ -7563,15 +7535,15 @@ msgstr "๋ฉ”์‹œ์ง€๊ฐ€ ๋„ˆ๋ฌด ๊น๋‹ˆ๋‹ค ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH}) msgid "Message options" msgstr "๋ฉ”์‹œ์ง€ ์˜ต์…˜" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "๋ฉ”์‹œ์ง€" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "๋‚˜๋ฅผ ์ฐจ๋‹จํ•œ ์‚ฌ๋žŒ์ด ๋ณด๋‚ธ ๋ฉ”์‹œ์ง€๋Š” ์ˆจ๊ฒจ์ง‘๋‹ˆ๋‹ค." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "์ฐจ๋‹จํ•œ ์‚ฌ๋žŒ์ด ๋ณด๋‚ธ ๋ฉ”์‹œ์ง€๋Š” ์ˆจ๊ฒจ์ง‘๋‹ˆ๋‹ค." @@ -7592,7 +7564,7 @@ msgstr "์˜คํ•ด ์†Œ์ง€" msgid "Missing media" msgstr "๋ฏธ๋””์–ด ์ฐพ์„ ์ˆ˜ ์—†์Œ" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "๊ฒ€ํ† " @@ -7636,7 +7608,7 @@ msgstr "๊ฒ€ํ†  ๋ฆฌ์ŠคํŠธ๋ฅผ ์—…๋ฐ์ดํŠธํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Moderation lists" msgstr "๊ฒ€ํ†  ๋ฆฌ์ŠคํŠธ" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "๊ฒ€ํ†  ๋ฆฌ์ŠคํŠธ" @@ -7645,7 +7617,7 @@ msgstr "๊ฒ€ํ†  ๋ฆฌ์ŠคํŠธ" msgid "moderation settings" msgstr "๊ฒ€ํ†  ์„ค์ •" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "๊ฒ€ํ†  ์ƒํƒœ" @@ -7786,7 +7758,7 @@ msgstr "๋ฎคํŠธ๋จ" msgid "Muted accounts" msgstr "๋ฎคํŠธํ•œ ๊ณ„์ •" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "๋ฎคํŠธํ•œ ๊ณ„์ •" @@ -7867,7 +7839,6 @@ msgstr "์ €์ž‘๊ถŒ ์œ„๋ฐ˜, ๋ฒ•์  ์š”์ฒญ ๋˜๋Š” ๊ทœ์ œ ์ค€์ˆ˜ ๋ฌธ์ œ๋ฅผ ์‹ ๊ณ ํ•ด msgid "Nevermind, create a handle for me" msgstr "์ทจ์†Œํ•˜๊ณ  ๋‚ด ํ•ธ๋“ค ๋งŒ๋“ค๊ธฐ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "์‹ ๊ทœ" @@ -7893,11 +7864,11 @@ msgstr "{firstAuthorName} ๋‹˜์˜ ์ƒˆ {postsCount, plural, other {๊ฒŒ์‹œ๋ฌผ}}" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "์ƒˆ ๋Œ€ํ™”" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "์ƒˆ๋กœ์šด ๊ธฐ๋Šฅ" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "์ƒˆ ํŒ”๋กœ์›Œ" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "์ƒˆ ๊ทธ๋ฃน ๋Œ€ํ™”" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "์ƒˆ ๊ทธ๋ฃน ๋Œ€ํ™”" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "์ƒˆ ๊ทธ๋ฃน ๋Œ€ํ™” ๋ฉค๋ฒ„:" @@ -7966,13 +7937,13 @@ msgstr "์ƒˆ ๋ฆฌ์ŠคํŠธ" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "์ƒˆ ๋ฉ”์‹œ์ง€ ์š”์ฒญ" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "์ƒˆ ๋ฉ”์‹œ์ง€" @@ -7982,12 +7953,12 @@ msgstr "์ƒˆ ๋ฉ”์‹œ์ง€" msgid "New password" msgstr "์ƒˆ ๋น„๋ฐ€๋ฒˆํ˜ธ" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "์ƒˆ ๊ฒŒ์‹œ๋ฌผ" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "์ƒˆ๋กœ์šด ์ˆœ" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "๋‰ด์Šค" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "๋‹ค์Œ ์ด๋ฏธ์ง€" msgid "Night" msgstr "๋ฐค" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "๊ด‘๊ณ , ์‚ฌ์ƒํ™œ ์นจํ•ด ํŠธ๋ž˜ํ‚น, ์ฐธ์—ฌ ์œ ๋„ ํ•จ์ •์ด ์—†์Šต๋‹ˆ๋‹ค. Bluesky๋Š” ๋‚ด ์‹œ๊ฐ„๊ณผ ๊ด€์‹ฌ์„ ์†Œ์ค‘ํžˆ ์ƒ๊ฐํ•ฉ๋‹ˆ๋‹ค." @@ -8065,6 +8036,11 @@ msgstr "๊ด‘๊ณ , ์‚ฌ์ƒํ™œ ์นจํ•ด ํŠธ๋ž˜ํ‚น, ์ฐธ์—ฌ ์œ ๋„ ํ•จ์ •์ด ์—†์Šต๋‹ˆ๋‹ค msgid "No app passwords yet" msgstr "์•ฑ ๋น„๋ฐ€๋ฒˆํ˜ธ ์—†์Œ" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "์ž‘์„ฑ์ž ํ•„ํ„ฐ ์—†์Œ" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "ํ˜„์žฌ ๋ฒ ํƒ€ ๊ธฐ๋Šฅ์ด ์—†์Šต๋‹ˆ๋‹ค." @@ -8098,7 +8074,7 @@ msgstr "์ข…๋ฃŒ ์‹œ๊ฐ„ ๋ฏธ์ •" msgid "No feeds found. Try searching for something else." msgstr "ํ”ผ๋“œ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ๋‹ค๋ฅธ ํ”ผ๋“œ๋ฅผ ๊ฒ€์ƒ‰ํ•ด ๋ณด์„ธ์š”." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "์•„์ง ํŒ”๋กœ์›Œ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค" @@ -8116,9 +8092,15 @@ msgstr "ํ˜„์žฌ ํ‘œ์‹œํ•  GIF๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค. ์ž ์‹œ ํ›„ ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ msgid "No image" msgstr "์ด๋ฏธ์ง€ ์—†์Œ" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "์–ธ์–ด ํ•„ํ„ฐ ์—†์Œ" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "์•„์ง ์ข‹์•„์š” ์—†์Œ" @@ -8135,7 +8117,12 @@ msgstr "๋ฆฌ์ŠคํŠธ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค" msgid "No longer following {0}" msgstr "{0} ๋‹˜์„ ์–ธํŒ”๋กœ์šฐํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "๋ฏธ๋””์–ด ํ•„ํ„ฐ ์—†์Œ" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "์•„์ง ๋ฏธ๋””์–ด๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค" @@ -8143,7 +8130,7 @@ msgstr "์•„์ง ๋ฏธ๋””์–ด๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค" msgid "No messages yet" msgstr "์•„์ง ๋ฉ”์‹œ์ง€๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "๋” ์ด์ƒ ์“ฐ๋ ˆ๊ธฐ ๊ฐ™์€ ์ •๋ณด๋งŒ ๋ณด์—ฌ์ฃผ๋Š” ์•Œ๊ณ ๋ฆฌ์ฆ˜์— ๋Œ๋ ค๋‹ค๋‹ˆ์ง€ ๋งˆ์„ธ์š”. ๋‚˜๋ฅผ ๋ฐฉํ•ดํ•˜๋Š” ํ”ผ๋“œ๊ฐ€ ์•„๋‹Œ ๋‚˜๋ฅผ ์œ„ํ•œ ํ”ผ๋“œ๋ฅผ ์ฐพ์•„๋ณด์„ธ์š”." @@ -8180,16 +8167,21 @@ msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์€ ์ž‘์„ฑ์ž ์™ธ์—๋Š” ๋ˆ„๊ตฌ๋„ ์ธ์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ msgid "No one can send messages" msgstr "์•„๋ฌด๋„ ๋ฉ”์‹œ์ง€๋ฅผ ๋ณด๋‚ผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "๊ฒŒ์‹œ๋ฌผ ํ•„ํ„ฐ ์—†์Œ" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "๊ฒŒ์‹œ๋ฌผ์ด ์—†์Šต๋‹ˆ๋‹ค" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "์•„์ง ๊ฒŒ์‹œ๋ฌผ์ด ์—†์Šต๋‹ˆ๋‹ค" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "์•„์ง ์ธ์šฉ ์—†์Œ" @@ -8198,11 +8190,7 @@ msgstr "์•„์ง ์ธ์šฉ ์—†์Œ" msgid "No recent GIFs yet. Pick one to see it here." msgstr "์ตœ๊ทผ์— ์‚ฌ์šฉํ•œ GIF๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค. GIF๋ฅผ ์„ ํƒํ•˜๋ฉด ์—ฌ๊ธฐ์— ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "๋‹ต๊ธ€ ์ œ์™ธ" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "์•„์ง ๋‹ต๊ธ€์ด ์—†์Šต๋‹ˆ๋‹ค" @@ -8217,13 +8205,13 @@ msgstr "๊ฒฐ๊ณผ ์—†์Œ" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "๊ฒฐ๊ณผ ์—†์Œ" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "โ€˜{0}โ€™์— ๋Œ€ํ•œ ๊ฒฐ๊ณผ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค." @@ -8236,23 +8224,23 @@ msgstr "๊ฒฐ๊ณผ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" msgid "No results found for \"{query}\"" msgstr "โ€˜{query}โ€™์— ๋Œ€ํ•œ ๊ฒฐ๊ณผ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "๊ณ ๊ธ‰ ๊ฒ€์ƒ‰ ํ•„ํ„ฐ๊ฐ€ ์ ์šฉ๋œ ์ƒํƒœ์—์„œ โ€˜<0>{query}โ€™์— ๋Œ€ํ•œ ๊ฒ€์ƒ‰ ๊ฒฐ๊ณผ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "โ€˜<0>{query}โ€™์— ๋Œ€ํ•œ ๊ฒฐ๊ณผ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "๊ณ ๊ธ‰ ๊ฒ€์ƒ‰ ํ•„ํ„ฐ๊ฐ€ ์ ์šฉ๋œ ๊ฒ€์ƒ‰์–ด์— ๋Œ€ํ•œ ๊ฒฐ๊ณผ๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "๊ฒฐ๊ณผ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "์•„์ง ์Šคํƒ€ํ„ฐ ํŒฉ์ด ์—†์Šต๋‹ˆ๋‹ค" @@ -8265,7 +8253,7 @@ msgstr "์‚ฌ์šฉํ•˜์ง€ ์•Š์Œ" msgid "No translation received from your device." msgstr "๊ธฐ๊ธฐ์—์„œ ๋ฒˆ์—ญ๋œ ๋‚ด์šฉ์ด ์—†์Šต๋‹ˆ๋‹ค." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "์•„์ง ๋™์˜์ƒ ๊ฒŒ์‹œ๋ฌผ์ด ์—†์Šต๋‹ˆ๋‹ค" @@ -8278,7 +8266,7 @@ msgstr "์—†์Œ" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "์•„์ง ์•„๋ฌด๋„ ์ข‹์•„์š”๋ฅผ ๋ˆ„๋ฅด์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค. ์ฒซ ๋ฒˆ์งธ๊ฐ€ ๋˜์–ด ๋ณด์„ธ์š”!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "์•„์ง ์•„๋ฌด๋„ ์ธ์šฉํ•˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค. ์ฒซ ๋ฒˆ์งธ๊ฐ€ ๋˜์–ด ๋ณด์„ธ์š”!" @@ -8298,6 +8286,10 @@ msgstr "๋™์˜๋ฐ›์ง€ ์•Š์€ ์‚ฌ์ ์ธ ์„ฑ์  ์ด๋ฏธ์ง€" msgid "Non-sexual Nudity" msgstr "์„ ์ •์ ์ด์ง€ ์•Š์€ ๋‚˜์ฒด" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "์—†์Œ" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "์ด ํ”Œ๋žซํผ์—์„œ๋Š” ์‚ฌ์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" msgid "Not followed by anyone youโ€™re following" msgstr "๋‚ด๊ฐ€ ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ์šฉ์ž๊ฐ€ ํŒ”๋กœ์šฐํ•˜์ง€ ์•Š์Œ" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "์ฐพ์„ ์ˆ˜ ์—†์Œ" @@ -8333,7 +8325,7 @@ msgstr "๊ณต์œ  ๊ด€๋ จ ์ฐธ๊ณ  ์‚ฌํ•ญ" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "์ฐธ๊ณ : Bluesky๋Š” ๊ฐœ๋ฐฉํ˜• ๊ณต๊ฐœ ๋„คํŠธ์›Œํฌ์ž…๋‹ˆ๋‹ค. ์ด ์„ค์ •์€ Bluesky ์•ฑ๊ณผ ์›น์‚ฌ์ดํŠธ์—์„œ๋งŒ ๋‚ด ์ฝ˜ํ…์ธ ๊ฐ€ ํ‘œ์‹œ๋˜๋Š” ๊ฒƒ์„ ์ œํ•œํ•˜๋ฉฐ, ๋‹ค๋ฅธ ์•ฑ์—์„œ๋Š” ์ด ์„ค์ •์„ ์ค€์ˆ˜ํ•˜์ง€ ์•Š์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. ๋‹ค๋ฅธ ์•ฑ๊ณผ ์›น์‚ฌ์ดํŠธ์—์„œ๋Š” ๋กœ๊ทธ์•„์›ƒํ•œ ์‚ฌ์šฉ์ž์—๊ฒŒ ๋‚ด ์ฝ˜ํ…์ธ ๊ฐ€ ๊ณ„์† ํ‘œ์‹œ๋  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "์ฐธ๊ณ : ์ด ๊ฒŒ์‹œ๋ฌผ์€ ๋กœ๊ทธ์ธํ•œ ์‚ฌ์šฉ์ž๋งŒ ๋ณผ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "์•„์ง ์ €์žฅ๋œ ๊ฒŒ์‹œ๋ฌผ์ด ์—†์Šต๋‹ˆ๋‹ค" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "์•Œ๋ฆผ ์„ค์ •" @@ -8353,11 +8345,12 @@ msgstr "์•Œ๋ฆผ ์„ค์ •" msgid "Notification sounds" msgstr "์•Œ๋ฆผ์Œ" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "์ด๋Ÿฐ!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "ํ™•์ธ" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "ํ™•์ธ" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "์˜จ๋ณด๋”ฉ ์žฌ์„ค์ •" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "์„ ํƒํ•œ ์ˆ˜์‹ ์ž ์ค‘ ํ•œ ๋ช…์ด ๊ทธ๋ฃน ๋Œ€ํ™”๋ฅผ ํ—ˆ์šฉํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "์„ ํƒํ•œ ์ˆ˜์‹ ์ž ์ค‘ ํ•œ ๋ช…์ด ๋‹น์‹ ์„ ์ฐจ๋‹จํ–ˆ์œผ๋ฏ€๋กœ ๋ฉ”์‹œ์ง€๋ฅผ ๋ณด๋‚ผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "ํ•˜๋‚˜ ์ด์ƒ์˜ GIF์— ๋Œ€์ฒด ํ…์ŠคํŠธ๊ฐ€ ๋ˆ„๋ฝ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "ํ•˜๋‚˜ ์ด์ƒ์˜ ์ด๋ฏธ์ง€์— ๋Œ€์ฒด ํ…์ŠคํŠธ๊ฐ€ ๋ˆ„๋ฝ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." @@ -8454,11 +8449,11 @@ msgstr "์„ ํƒํ•œ ํŒŒ์ผ ์ค‘ ์ง€์›๋˜์ง€ ์•Š๋Š” ํŒŒ์ผ์ด ์žˆ์Šต๋‹ˆ๋‹ค." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "์„ ํƒํ•œ ํŒŒ์ผ ์ค‘ ํฌ๊ธฐ๊ฐ€ ๋„ˆ๋ฌด ํฐ ํŒŒ์ผ์ด ์žˆ์Šต๋‹ˆ๋‹ค. ์ตœ๋Œ€ ํฌ๊ธฐ๋Š” {VIDEO_MAX_SIZE_MB}ย MB์ž…๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "ํ•˜๋‚˜ ์ด์ƒ์˜ ๊ฒŒ์‹œ๋ฌผ์ด ๋„ˆ๋ฌด ๊ธธ์–ด์„œ ์ž„์‹œ ์ €์žฅํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ตœ๋Œ€ ๊ธ€์ž ์ˆ˜๋Š” {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {#์ž}}์ž…๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "ํ•˜๋‚˜ ์ด์ƒ์˜ ๋™์˜์ƒ์— ๋Œ€์ฒด ํ…์ŠคํŠธ๊ฐ€ ๋ˆ„๋ฝ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." @@ -8471,7 +8466,7 @@ msgstr "{0}๋งŒ ๋‹ต๊ธ€์„ ๋‹ฌ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "์„ ํƒํ•œ {1}{2, plural, other {๊ฐœ}}์˜ ์ด๋ฏธ์ง€ ์ค‘ {0}๊ฐœ๋งŒ ์ถ”๊ฐ€๋˜์—ˆ์Šต๋‹ˆ๋‹ค (์ตœ๋Œ€ {MAX_GALLERY_IMAGES}๊ฐœ)" @@ -8507,6 +8502,10 @@ msgstr "{0} ๋‹˜์ด ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ๋žŒ๋งŒ ์ฐธ์—ฌํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." msgid "Only people the chat owner follows can join" msgstr "๋Œ€ํ™” ์†Œ์œ ์ž๊ฐ€ ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ๋žŒ๋งŒ ์ฐธ์—ฌํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "๊ฒŒ์‹œ๋ฌผ๋งŒ" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "๋ฏธ๋””์–ด๊ฐ€ ํฌํ•จ๋œ ๊ฒŒ์‹œ๋ฌผ๋งŒ" @@ -8519,7 +8518,7 @@ msgstr "๋™์˜์ƒ์ด ํฌํ•จ๋œ ๊ฒŒ์‹œ๋ฌผ๋งŒ" msgid "Only replies" msgstr "๋‹ต๊ธ€๋งŒ" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT(.vtt) ํŒŒ์ผ๋งŒ ์ง€์›๋ฉ๋‹ˆ๋‹ค" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "์ด๋Ÿฐ, ์ด ํ”„๋กœํ•„์€ ์กด์žฌํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ๋‹ค๋ฅธ ํ”„๋กœํ•„์„ ์Šค์บ”ํ•ด ๋ณด์„ธ์š”." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "์ด๋Ÿฐ!" @@ -8544,7 +8543,7 @@ msgstr "์ด๋Ÿฐ!" msgid "Open advanced search options" msgstr "๊ณ ๊ธ‰ ๊ฒ€์ƒ‰ ์˜ต์…˜ ์—ด๊ธฐ" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "์•„๋ฐ”ํƒ€ ์ƒ์„ฑ๊ธฐ ์—ด๊ธฐ" @@ -8570,21 +8569,22 @@ msgstr "๋Œ€ํ™” ์˜ต์…˜ ์—ด๊ธฐ" msgid "Open draft" msgstr "์ž„์‹œ ์ €์žฅ ์—ด๊ธฐ" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "์„œ๋ž ๋ฉ”๋‰ด ์—ด๊ธฐ" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "์ด๋ชจํ‹ฐ์ฝ˜ ์„ ํƒ๊ธฐ ์—ด๊ธฐ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "ํ”ผ๋“œ ์ •๋ณด ํ™”๋ฉด ์—ด๊ธฐ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "ํ”ผ๋“œ ์˜ต์…˜ ๋ฉ”๋‰ด ์—ด๊ธฐ" @@ -8627,7 +8627,7 @@ msgstr "๊ฒ€ํ†  ๋””๋ฒ„๊ทธ ํŽ˜์ด์ง€ ์—ด๊ธฐ" msgid "Open muted words and tags settings" msgstr "๋ฎคํŠธํ•œ ๋‹จ์–ด ๋ฐ ํƒœ๊ทธ ์„ค์ • ์—ด๊ธฐ" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "ํŒฉ ์—ด๊ธฐ" @@ -8699,7 +8699,7 @@ msgstr "๋””๋ฒ„๊ทธ ํ•ญ๋ชฉ์— ๋Œ€ํ•œ ์ถ”๊ฐ€ ์„ธ๋ถ€ ์ •๋ณด๋ฅผ ์—ฝ๋‹ˆ๋‹ค" msgid "Opens alt text dialog" msgstr "๋Œ€์ฒด ํ…์ŠคํŠธ ๋Œ€ํ™” ์ƒ์ž๋ฅผ ์—ฝ๋‹ˆ๋‹ค" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "๊ธฐ๊ธฐ์—์„œ ์นด๋ฉ”๋ผ๋ฅผ ์—ฝ๋‹ˆ๋‹ค" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "์ƒˆ Bluesky ๊ณ„์ •์„ ๋งŒ๋“œ๋Š” ํ™”๋ฉด์„ ์—ฝ๋‹ˆ๋‹ค" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "์กด์žฌํ•˜๋Š” Bluesky ๊ณ„์ •์— ๋กœ๊ทธ์ธํ•˜๋Š” ํ™”๋ฉด์„ ์—ฝ๋‹ˆ๋‹ค" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ๋ณ€๊ฒฝํ–ˆ์Šต๋‹ˆ๋‹ค!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "์ผ์‹œ ์ •์ง€" @@ -8925,12 +8925,12 @@ msgstr "์ผ์‹œ ์ •์ง€" msgid "Pause GIF" msgstr "GIF ์ผ์‹œ ์ •์ง€" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "๋™์˜์ƒ ์ผ์‹œ ์ •์ง€" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "์‚ฌ์šฉ์ž" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "{ownerName} ๋‹˜์ด ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ๋žŒ์€ ์ฐธ์—ฌ ์š”์ฒญํ•  ์ˆ˜ ์žˆ์Œ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0} ๋‹˜์ด ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ์šฉ์ž" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "@{0} ๋‹˜์„ ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ์šฉ์ž" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "๋‚ด๊ฐ€ ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ์šฉ์ž" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "๋‚ด๊ฐ€ ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ๋žŒ์€ ์ฐธ์—ฌ ์š”์ฒญํ•  ์ˆ˜ ์žˆ์Œ" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "๋‚ด๊ฐ€ ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ์šฉ์ž" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "์„ฑ์ธ์šฉ ์‚ฌ์ง„." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "ํ”ผ๋“œ ๊ณ ์ •" @@ -9034,7 +9034,7 @@ msgstr "ํ”ผ๋“œ ๊ณ ์ •" msgid "Pin to home" msgstr "ํ™ˆ์— ๊ณ ์ •" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "ํ™ˆ์— ๊ณ ์ •" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "๊ณ ์ •๋จ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0}(์„)๋ฅผ ํ™ˆ์— ๊ณ ์ •ํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "๋‚ด ํ”ผ๋“œ์— ๊ณ ์ •ํ–ˆ์Šต๋‹ˆ๋‹ค" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "์žฌ์ƒ" @@ -9076,8 +9076,8 @@ msgstr "{0} ์žฌ์ƒ" msgid "Play GIF" msgstr "GIF ์žฌ์ƒ" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "๋™์˜์ƒ ์žฌ์ƒ" @@ -9109,11 +9109,11 @@ msgstr "๊ฒŒ์‹œํ•˜๋Š” ๋ฏธ๋””์–ด์— ํ•ด๋‹นํ•˜๋Š” ์ฝ˜ํ…์ธ  ๊ฒฝ๊ณ  ๋ผ๋ฒจ์„ ์ถ”๊ฐ€ 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "ํ•ธ๋“ค์„ ์ž…๋ ฅํ•ด ์ฃผ์„ธ์š”." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ์ž…๋ ฅํ•ด ์ฃผ์„ธ์š”." @@ -9122,7 +9122,7 @@ 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 "๋ฐฉ๊ธˆ ๋ณด๋‚ธ ์ด๋ฉ”์ผ์— ์žˆ๋Š” ๋งํฌ๋ฅผ ํด๋ฆญํ•˜์—ฌ ์ƒˆ ์ด๋ฉ”์ผ ์ฃผ์†Œ๋ฅผ ์ธ์ฆํ•˜์„ธ์š”. ์ด๋Š” Bluesky์˜ ๋ชจ๋“  ๊ธฐ๋Šฅ์„ ๊ณ„์†ํ•ด์„œ ์ฆ๊ธธ ์ˆ˜ ์žˆ๋„๋ก ํ•˜๊ธฐ ์œ„ํ•œ ์ค‘์š”ํ•œ ๋‹จ๊ณ„์ž…๋‹ˆ๋‹ค." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "์ธ์ฆ ์บก์ฐจ๋ฅผ ์™„๋ฃŒํ•ด ์ฃผ์„ธ์š”." @@ -9179,7 +9179,7 @@ msgstr "๋ฐ›์€ ์ธ์ฆ ์ฝ”๋“œ์™€ ์‚ฌ์šฉํ•  ์ƒˆ ๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ์ž…๋ ฅํ•ด ์ฃผ์„ธ msgid "Please enter the security code we sent to your previous email address." msgstr "๊ธฐ์กด ์ด๋ฉ”์ผ ์ฃผ์†Œ๋กœ ์ „์†ก๋œ ๋ณด์•ˆ ์ฝ”๋“œ๋ฅผ ์ž…๋ ฅํ•ด ์ฃผ์„ธ์š”." -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "์ด๋ฉ”์ผ์„ ์ž…๋ ฅํ•ด ์ฃผ์„ธ์š”." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "์•„๋ž˜์— ๋ฉ”์‹œ์ง€๋ฅผ ์ž‘์„ฑํ•˜์„ธ์š”:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "์ •์น˜" @@ -9269,7 +9269,7 @@ msgstr "์ •์น˜" msgid "Porn" msgstr "์Œ๋ž€๋ฌผ" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "๊ฒŒ์‹œํ•˜๊ธฐ" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "๊ฒŒ์‹œ๋ฌผ" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "์‚ฌ์ง„ ๊ฒŒ์‹œํ•˜๊ธฐ" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "๋™์˜์ƒ ๊ฒŒ์‹œํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "๋ชจ๋‘ ๊ฒŒ์‹œํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "๋ฌด์‹œํ•˜๊ณ  ๊ฒŒ์‹œ" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "๊ฒŒ์‹œ๋ฌผ ์ฐจ๋‹จ๋จ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} ๋‹˜์˜ ๊ฒŒ์‹œ๋ฌผ" @@ -9340,7 +9340,7 @@ msgstr "๋‚ด๊ฐ€ ์ˆจ๊ธด ๊ฒŒ์‹œ๋ฌผ" msgid "Post interaction settings" msgstr "๊ฒŒ์‹œ๋ฌผ ์ƒํ˜ธ์ž‘์šฉ ์„ค์ •" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "๊ฒŒ์‹œ๋ฌผ ์ƒํ˜ธ์ž‘์šฉ ์„ค์ •" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "๊ฒŒ์‹œ๋ฌผ์„ ๊ณ ์ •ํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "๊ฒŒ์‹œ๋ฌผ์„ ์ €์žฅํ–ˆ์Šต๋‹ˆ๋‹ค" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "๊ฒŒ์‹œ๋ฌผ ์œ ํ˜•" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "๊ฒŒ์‹œ๋ฌผ์„ ๊ณ ์ • ํ•ด์ œํ–ˆ์Šต๋‹ˆ๋‹ค" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "๊ฒŒ์‹œ๋ฌผ" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "๊ฒŒ์‹œ๋ฌผ ๋ฐ ๋‹ต๊ธ€" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "๊ฒŒ์‹œ๋ฌผ์„ ํ…์ŠคํŠธ, ํƒœ๊ทธ ๋˜๋Š” ๋‘˜ ๋‹ค์— ๋”ฐ๋ผ ๋ฎคํŠธํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. ๋งŽ์€ ๊ฒŒ์‹œ๋ฌผ์— ์ž์ฃผ ๋“ฑ์žฅํ•˜๋Š” ๋‹จ์–ด๋Š” ๊ฒŒ์‹œ๋ฌผ์ด ํ‘œ์‹œ๋˜์ง€ ์•Š์„ ์ˆ˜ ์žˆ์œผ๋ฏ€๋กœ ํ”ผํ•˜๋Š” ๊ฒƒ์ด ์ข‹์Šต๋‹ˆ๋‹ค." @@ -9398,6 +9396,10 @@ msgstr "๊ฒŒ์‹œ๋ฌผ์„ ํ…์ŠคํŠธ, ํƒœ๊ทธ ๋˜๋Š” ๋‘˜ ๋‹ค์— ๋”ฐ๋ผ ๋ฎคํŠธํ•  ์ˆ˜ msgid "Posts hidden" msgstr "๊ฒŒ์‹œ๋ฌผ ์ˆจ๊ฒจ์ง" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "๊ฒŒ์‹œ๋ฌผ, ๋‹ต๊ธ€" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "์˜คํ•ด์˜ ์†Œ์ง€๊ฐ€ ์žˆ๋Š” ๋งํฌ" @@ -9449,20 +9451,21 @@ msgstr "๊ฐœ์ธ์ •๋ณด" msgid "Privacy and security" msgstr "๊ฐœ์ธ์ •๋ณด ๋ฐ ๋ณด์•ˆ" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "๊ฐœ์ธ์ •๋ณด ๋ฐ ๋ณด์•ˆ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "๊ฐœ์ธ์ •๋ณด ๋ฐ ๋ณด์•ˆ ์„ค์ •" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "๊ฐœ์ธ์ •๋ณด ์ฒ˜๋ฆฌ๋ฐฉ์นจ" msgid "Privacy violation of a minor" msgstr "๋ฏธ์„ฑ๋…„์ž ์‚ฌ์ƒํ™œ ์นจํ•ด" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "GIF ์ฒ˜๋ฆฌ ์ค‘โ€ฆ" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "๋™์˜์ƒ ์ฒ˜๋ฆฌ ์ค‘โ€ฆ" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "์ผ๊ด„ ๋ฎคํŠธํ•˜๊ฑฐ๋‚˜ ์ฐจ๋‹จํ•  ์ˆ˜ ์žˆ๋Š” ๊ณต๊ฐœ์ ์ด๊ณ  ๊ณต์œ  ๊ฐ€๋Šฅํ•œ ์‚ฌ์šฉ์ž ๋ชฉ๋ก์ž…๋‹ˆ๋‹ค." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "๊ฒŒ์‹œ๋ฌผ ๋“ฑ๋กํ•˜๊ธฐ" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "๊ฒŒ์‹œ๋ฌผ ๋“ฑ๋กํ•˜๊ธฐ" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "๋‹ต๊ธ€ ๋“ฑ๋กํ•˜๊ธฐ" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "๋‹ต๊ธ€ ๋“ฑ๋กํ•˜๊ธฐ" @@ -9599,12 +9602,12 @@ msgstr "๊ฒŒ์‹œ๋ฌผ ์ธ์šฉ ๋น„ํ™œ์„ฑํ™”๋จ" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "์ธ์šฉ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์˜ ์ธ์šฉ" @@ -9647,7 +9650,7 @@ msgstr "๊ณ„์ • ์žฌํ™œ์„ฑํ™”" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "{0, plural, other {๋‹ต๊ธ€ #๊ฐœ}} ๋” ๋ณด๊ธฐ" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "๊ณ ๊ธ‰ ๊ฒ€์ƒ‰ ํ•„ํ„ฐ ์‚ฌ์šฉ ๋ฐฉ๋ฒ•์— ๋Œ€ํ•ด ์ฝ์–ด๋ณด๊ธฐ (์˜์–ด)" @@ -9657,11 +9660,11 @@ msgstr "๊ณ ๊ธ‰ ๊ฒ€์ƒ‰ ํ•„ํ„ฐ ์‚ฌ์šฉ ๋ฐฉ๋ฒ•์— ๋Œ€ํ•ด ์ฝ์–ด๋ณด๊ธฐ (์˜์–ด)" msgid "Read blog post" msgstr "๋ธ”๋กœ๊ทธ ๊ฒŒ์‹œ๋ฌผ ์ฝ๊ธฐ" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "์ ‘๊ธฐ" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "ํŽผ์น˜๊ธฐ" @@ -9687,11 +9690,11 @@ msgstr "Bluesky ๊ฐœ์ธ์ •๋ณด ์ฒ˜๋ฆฌ๋ฐฉ์นจ ์ฝ๊ธฐ" msgid "Read the Bluesky Terms of Service" msgstr "Bluesky ์„œ๋น„์Šค ์ด์šฉ์•ฝ๊ด€ ์ฝ๊ธฐ" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "์ง„์†”ํ•œ ๋Œ€ํ™”." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "์ง„์งœ ์‚ฌ๋žŒ๋“ค." @@ -9721,10 +9724,6 @@ msgstr "์ตœ๊ทผ ๊ฒ€์ƒ‰" msgid "Recently used" msgstr "์ตœ๊ทผ ์‚ฌ์šฉ๋จ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "์ถ”์ฒœ" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "๋‹ค์‹œ ์—ฐ๊ฒฐ" @@ -9748,7 +9747,7 @@ msgstr "๋Œ€ํ™” ์š”์ฒญ ๊ฑฐ์ ˆํ•˜๊ธฐ" msgid "Reject join request" msgstr "์ฐธ์—ฌ ์š”์ฒญ ๊ฑฐ์ ˆํ•˜๊ธฐ" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "๋Œ€ํ™” ๋‹ค์‹œ ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" @@ -9766,7 +9765,7 @@ msgstr "๋Œ€ํ™” ๋‹ค์‹œ ๋ถˆ๋Ÿฌ์˜ค๊ธฐ" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "์ œ๊ฑฐ" @@ -9792,8 +9791,8 @@ msgstr "{displayName} ๋‹˜์„ ๋‚ด๋ณด๋‚ด์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Remove {q}" msgstr "{q} ์ œ๊ฑฐํ•˜๊ธฐ" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "๊ณ„์ • ์ œ๊ฑฐ" @@ -9845,15 +9844,15 @@ msgstr "ํ•„ํ„ฐ ์ œ๊ฑฐํ•˜๊ธฐ" msgid "Remove from chat" msgstr "๋Œ€ํ™”์—์„œ ๋‚ด๋ณด๋‚ด๊ธฐ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "๋‚ด ํ”ผ๋“œ์—์„œ ์ œ๊ฑฐ" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "๋น ๋ฅธ ์•ก์„ธ์Šค์—์„œ ์ œ๊ฑฐํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -9862,7 +9861,7 @@ msgstr "๋น ๋ฅธ ์•ก์„ธ์Šค์—์„œ ์ œ๊ฑฐํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Remove from saved feeds" msgstr "์ €์žฅ๋œ ํ”ผ๋“œ์—์„œ ์ œ๊ฑฐ" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "์ €์žฅ๋œ ๊ฒŒ์‹œ๋ฌผ์—์„œ ์ œ๊ฑฐ" @@ -9880,8 +9879,8 @@ msgstr "์ด๋ฏธ์ง€ ์ œ๊ฑฐ" msgid "Remove live status" msgstr "๋ผ์ด๋ธŒ ์ƒํƒœ ์ œ๊ฑฐ" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "๋ฉค๋ฒ„ ์ œ๊ฑฐ" @@ -9943,7 +9942,7 @@ msgstr "๋ฆฌ์ŠคํŠธ์—์„œ ์ œ๊ฑฐํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Removed from saved feeds" msgstr "์ €์žฅ๋œ ํ”ผ๋“œ์—์„œ ์ œ๊ฑฐํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "์ €์žฅ๋œ ๊ฒŒ์‹œ๋ฌผ์—์„œ ์ œ๊ฑฐํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -9952,7 +9951,7 @@ msgstr "์ €์žฅ๋œ ๊ฒŒ์‹œ๋ฌผ์—์„œ ์ œ๊ฑฐํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Removed from starter pack" msgstr "์Šคํƒ€ํ„ฐ ํŒฉ์—์„œ ์ œ๊ฑฐํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "๋‚˜์—๊ฒŒ ๋ณด๋‚ด๋Š” ๋‹ต๊ธ€" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "๋‹ต์žฅํ•œ {senderName} ๋‹˜์˜ ๋ฉ”์‹œ์ง€, ํƒญํ•˜์—ฌ ์Šคํฌ๋กคํ•˜๊ธฐ" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "๋‚ด๊ฐ€ ์ฐธ์—ฌํ•˜๊ธฐ ์ „์— ๋ณด๋‚ด์ง„ ๋‹ต์žฅํ•œ ๋ฉ”์‹œ์ง€" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "๋‹ต์žฅํ•œ ๋ฉ”์‹œ์ง€, ํƒญํ•˜์—ฌ ์Šคํฌ๋กคํ•˜๊ธฐ" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "๋‹ต๊ธ€" @@ -10037,7 +10037,7 @@ msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์— ๋Œ€ํ•œ ๋‹ต๊ธ€์€ ๋น„ํ™œ์„ฑํ™”๋˜์–ด ์žˆ์Šต๋‹ˆ๋‹ค." msgid "Reply" msgstr "๋‹ต๊ธ€ ๋ณด๋‚ด๊ธฐ" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "๋‹ต๊ธ€ ๋ณด๋‚ด๊ธฐ" @@ -10098,8 +10098,8 @@ msgstr "๋Œ€ํ™” ์‹ ๊ณ " msgid "Report dialog" msgstr "์‹ ๊ณ  ๋Œ€ํ™” ์ƒ์ž" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "ํ”ผ๋“œ ์‹ ๊ณ " @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "๋‚ด๊ฐ€ ์žฌ๊ฒŒ์‹œํ•จ" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "์žฌ๊ฒŒ์‹œ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์˜ ์žฌ๊ฒŒ์‹œ๋ฌผ" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "๋‚ด ์žฌ๊ฒŒ์‹œ๋ฌผ์˜ ์žฌ๊ฒŒ์‹œ" @@ -10253,7 +10253,7 @@ msgstr "์š”์ฒญํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Requests" msgstr "์š”์ฒญ" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "์˜ค๋ฅ˜๊ฐ€ ๋ฐœ์ƒํ•œ ๋งˆ์ง€๋ง‰ ์ž‘์—…์„ ๋‹ค์‹œ ์‹œ๋„ํ•ฉ๋‹ˆ๋‹ค" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "ํ™ˆ ํŽ˜์ด์ง€๋กœ ๋Œ์•„๊ฐ‘๋‹ˆ๋‹ค" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "์ด์ „ ํŽ˜์ด์ง€๋กœ ๋Œ์•„๊ฐ‘๋‹ˆ๋‹ค" @@ -10446,27 +10446,27 @@ msgstr "์ƒ๋…„์›”์ผ ์ €์žฅ" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "๋ณ€๊ฒฝ ์‚ฌํ•ญ ์ €์žฅ" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "๋ณ€๊ฒฝ ์‚ฌํ•ญ์„ ์ €์žฅํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "์ž„์‹œ ์ €์žฅ" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "์ž„์‹œ ์ €์žฅํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR ์ฝ”๋“œ ์ €์žฅ" msgid "Save these options for next time" msgstr "๋‹ค์Œ์—๋„ ์ด ์˜ต์…˜ ์ €์žฅํ•˜๊ธฐ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "๋‚ด ํ”ผ๋“œ์— ์ €์žฅ" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "์ €์žฅ๋œ ํ”ผ๋“œ" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "์ €์žฅ๋œ ๊ฒŒ์‹œ๋ฌผ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "๋‚ด ํ”ผ๋“œ์— ์ €์žฅํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -10520,8 +10520,8 @@ msgstr "๋‚ด ํ”ผ๋“œ์— ์ €์žฅํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Say hello!" msgstr "์ธ์‚ฌํ•ด ๋ณด์„ธ์š”!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "๋จผ์ € ์ธ์‚ฌ๋ฅผ ๊ฑด๋„ค๋ณด์„ธ์š”" @@ -10535,7 +10535,7 @@ msgstr "์Šค์บ”" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "QR ์ฝ”๋“œ ์Šค์บ”" @@ -10543,15 +10543,15 @@ msgstr "QR ์ฝ”๋“œ ์Šค์บ”" msgid "Science" msgstr "๊ณผํ•™" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "์™ผ์ชฝ์œผ๋กœ ์Šคํฌ๋กค" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "์˜ค๋ฅธ์ชฝ์œผ๋กœ ์Šคํฌ๋กค" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "๋‹ต์žฅํ•œ ๋ฉ”์‹œ์ง€๋กœ ์Šคํฌ๋กคํ•˜๊ธฐ" @@ -10564,8 +10564,8 @@ msgstr "๋งจ ์œ„๋กœ ์Šคํฌ๋กค" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "๊ฒ€์ƒ‰" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "@{0} ๋‹˜์˜ ๊ฒŒ์‹œ๋ฌผ ๊ฒ€์ƒ‰" @@ -10612,11 +10612,11 @@ msgstr "{q}์— ๋Œ€ํ•œ ๊ฒ€์ƒ‰ ๊ฒฐ๊ณผ" msgid "Search for feeds that you want to suggest to others." msgstr "๋‹ค๋ฅธ ์‚ฌ๋žŒ์—๊ฒŒ ์ถ”์ฒœํ•  ํ”ผ๋“œ๋ฅผ ๊ฒ€์ƒ‰ํ•˜์„ธ์š”." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "๋” ๋งŽ์€ ๊ณ„์ • ๊ฒ€์ƒ‰ํ•˜๊ธฐ" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "๋” ๋งŽ์€ ํ”ผ๋“œ ๊ฒ€์ƒ‰ํ•˜๊ธฐ" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIF ๊ฒ€์ƒ‰ํ•˜๊ธฐ" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "ํ˜„์žฌ ๋กœ๊ทธ์•„์›ƒ ์ƒํƒœ์—์„œ๋Š” ๊ฒ€์ƒ‰ ๊ธฐ๋Šฅ์„ ์‚ฌ์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค" @@ -10707,17 +10707,22 @@ msgstr "์‚ฌ์šฉ์ž์˜ #{tag} ๊ฒŒ์‹œ๋ฌผ ๋ณด๊ธฐ" msgid "See jobs at Bluesky" msgstr "Bluesky์— ์ง€์›ํ•˜๊ธฐ" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "๋” ๋ณด๊ธฐ" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "๋” ๋งŽ์€ ์ถ”์ฒœ ํ”„๋กœํ•„ ๋ณด๊ธฐ" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "์ธ๊ธฐ ์ฃผ์ œ ๋” ๋ณด๊ธฐ" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "์ถ”์ฒœ ๊ณ„์ • ๋ณด๊ธฐ" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "ํƒ์ƒ‰ ์Šฌ๋ผ์ด๋”. ํ™”์‚ดํ‘œ ํ‚ค๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ์•ž๋’ค๋กœ ํƒ์ƒ‰ํ•˜๊ณ  ์ŠคํŽ˜์ด์Šค ํ‚ค๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ์žฌ์ƒ ๋˜๋Š” ์ผ์‹œ ์ •์ง€ํ•ฉ๋‹ˆ๋‹ค" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "โ€˜{interestsDisplayName}โ€™ ์นดํ…Œ๊ณ ๋ฆฌ ์„ ํƒ" @@ -10748,7 +10753,7 @@ msgstr "{0} ์„ ํƒ" msgid "Select {langName}" msgstr "{langName} ์„ ํƒ" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "์ƒ‰์ƒ ์„ ํƒ" @@ -10764,11 +10769,11 @@ msgstr "๊ณ„์ • ์„ ํƒ" msgid "Select an app language" msgstr "์•ฑ ์–ธ์–ด๋ฅผ ์„ ํƒํ•˜์„ธ์š”" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "์•„๋ฐ”ํƒ€ ์„ ํƒ" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "์ด๋ชจํ‹ฐ์ฝ˜ ์„ ํƒ" @@ -10780,12 +10785,13 @@ msgstr "์˜ต์…˜ ์„ ํƒ" msgid "Select app language" msgstr "์•ฑ ์–ธ์–ด ์„ ํƒ" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "์บก์…˜ ํŒŒ์ผ(.vtt) ์„ ํƒ" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "๋Œ€ํ™” โ€˜{name}โ€™ ์„ ํƒํ•˜๊ธฐ" @@ -10826,7 +10832,7 @@ msgstr "GIF ์„ ํƒ" msgid "Select GIF \"{0}\"" msgstr "GIF โ€˜{0}โ€™ ์„ ํƒ" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "๊ทธ๋ฃน ๋Œ€ํ™” ๋ฉค๋ฒ„ ์„ ํƒ" @@ -10864,7 +10870,7 @@ msgstr "์ฃผ ์–ธ์–ด ์„ ํƒ" msgid "Select telephone code" msgstr "๊ตญ๊ฐ€ ์ฝ”๋“œ ์„ ํƒ" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "{emojiName} ์ด๋ชจํ‹ฐ์ฝ˜์„ ์•„๋ฐ”ํƒ€๋กœ ์„ ํƒํ•˜๊ธฐ" @@ -10945,7 +10951,8 @@ msgstr "๋ฉ”์‹œ์ง€ ๋ณด๋‚ด๊ธฐ" msgid "Send post to {name}" msgstr "{name} ๋‹˜์—๊ฒŒ ๊ฒŒ์‹œ๋ฌผ ๋ณด๋‚ด๊ธฐ" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "๊ฒŒ์‹œ๋ฌผ์„ ๋‹ค์Œ์œผ๋กœ ๋ณด๋‚ด๊ธฐ" @@ -10963,12 +10970,12 @@ msgstr "ํœด๋Œ€ํฐ์—์„œ ๋ฉ”์‹œ์ง€ ์ „์†กํ•˜๊ธฐ" msgid "Send verification email" msgstr "์ธ์ฆ ์ด๋ฉ”์ผ ์ „์†ก" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "๋‹ค์ด๋ ‰ํŠธ ๋ฉ”์‹œ์ง€๋กœ ๋ณด๋‚ด๊ธฐ" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "๋Œ€ํ™”๋กœ ๋ณด๋‚ด๊ธฐ" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "ํ˜ธ์ŠคํŒ… ์ œ๊ณต์ž๋ฅผ ์ˆ˜๋™์œผ๋กœ ์„ค์ •" msgid "Sets email for password reset" msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ ์žฌ์„ค์ •์„ ์œ„ํ•œ ์ด๋ฉ”์ผ์„ ์„ค์ •ํ•ฉ๋‹ˆ๋‹ค" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "์„ค์ •" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "๋‹ค๋ฅธ ์‚ฌ์šฉ์ž์˜ ํ™œ๋™ ์•Œ๋ฆผ ์„ค์ •" @@ -11036,49 +11043,49 @@ msgstr "๋‹ค๋ฅธ ์‚ฌ์šฉ์ž์˜ ํ™œ๋™ ์•Œ๋ฆผ ์„ค์ •" msgid "Settings for allowing others to be notified of your posts" msgstr "๋‹ค๋ฅธ ์‚ฌ์šฉ์ž์—๊ฒŒ ๋‚ด ๊ฒŒ์‹œ๋ฌผ ์•Œ๋ฆผ์„ ํ—ˆ์šฉํ• ์ง€์— ๋Œ€ํ•œ ์„ค์ •" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "์ข‹์•„์š” ์•Œ๋ฆผ ์„ค์ •" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "๋ฉ˜์…˜ ์•Œ๋ฆผ ์„ค์ •" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "์ƒˆ ํŒ”๋กœ์›Œ ์•Œ๋ฆผ ์„ค์ •" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "๊ธฐํƒ€ ๋ชจ๋“  ์•Œ๋ฆผ ์„ค์ •" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "๋‚ด ์žฌ๊ฒŒ์‹œ๋ฌผ์˜ ์ข‹์•„์š” ์•Œ๋ฆผ ์„ค์ •" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "์ƒˆ ๋ฉ”์‹œ์ง€ ์š”์ฒญ ์•Œ๋ฆผ ์„ค์ •" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "์ƒˆ ๋ฉ”์‹œ์ง€ ์•Œ๋ฆผ ์„ค์ •" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "๋‚ด ์žฌ๊ฒŒ์‹œ๋ฌผ์˜ ์žฌ๊ฒŒ์‹œ ์•Œ๋ฆผ ์„ค์ •" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "์ธ์šฉ ์•Œ๋ฆผ ์„ค์ •" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "๋‹ต๊ธ€ ์•Œ๋ฆผ ์„ค์ •" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "์žฌ๊ฒŒ์‹œ ์•Œ๋ฆผ ์„ค์ •" @@ -11115,8 +11122,8 @@ msgstr "์—ฐ๋ น๋Œ€ ๊ณต์œ " msgid "Share anyway" msgstr "๋ฌด์‹œํ•˜๊ณ  ๊ณต์œ " -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "์ž‘์„ฑ์ž DID ๊ณต์œ " @@ -11127,7 +11134,7 @@ msgstr "์ž‘์„ฑ์ž DID ๊ณต์œ " msgid "Share feedback" msgstr "ํ”ผ๋“œ๋ฐฑ ๊ณต์œ " -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "๋งํฌ ๊ณต์œ  ๋Œ€ํ™” ์ƒ์ž" msgid "Share my profile" msgstr "๋‚ด ํ”„๋กœํ•„ ๊ณต์œ ํ•˜๊ธฐ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "๊ฒŒ์‹œ๋ฌผ at:// URI ๊ณต์œ " @@ -11169,12 +11176,12 @@ msgstr "ํ”„๋กœํ•„ ๊ณต์œ " msgid "Share QR code" msgstr "QR ์ฝ”๋“œ ๊ณต์œ " -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "์ด ํ”ผ๋“œ ๊ณต์œ ํ•˜๊ธฐ" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "์ด ๊ฒ€์ƒ‰ ๊ณต์œ ํ•˜๊ธฐ" @@ -11186,8 +11193,8 @@ msgstr "์ด ์Šคํƒ€ํ„ฐ ํŒฉ ๊ณต์œ ํ•˜๊ธฐ" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "์ด ์Šคํƒ€ํ„ฐ ํŒฉ์„ ๊ณต์œ ํ•˜์—ฌ ์‚ฌ๋žŒ๋“ค์ด Bluesky์—์„œ ์ปค๋ฎค๋‹ˆํ‹ฐ์— ์ฐธ์—ฌํ•  ์ˆ˜ ์žˆ๋„๋ก ๋„์™€์ฃผ์„ธ์š”." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "์—ฐ๋ฝ์ฒ˜๋ฅผ ๊ณต์œ ํ•˜๊ณ  ์นœ๊ตฌ๋“ค์„ ์ฐพ์•„๋ณด์„ธ์š”" msgid "Share your thoughtsโ€ฆ" msgstr "์˜๊ฒฌ์„ ๊ณต์œ ํ•ด ์ฃผ์„ธ์š”โ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "๊ณต์œ  ์„ค์ • ํ…Œ์Šคํ„ฐ" @@ -11219,7 +11226,7 @@ msgstr "์—ฐ๋ น๋Œ€๋ฅผ ๊ณต์œ ํ•˜๋ฉด Apple ๊ณ„์ •๊ณผ ๊ด€๋ จ๋œ ๋ฒ”์œ„(์˜ˆ: ๋งŒ 18 msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "์—ฐ๋ น๋Œ€๋ฅผ ๊ณต์œ ํ•˜๋ฉด Google ๊ณ„์ •๊ณผ ๊ด€๋ จ๋œ ๋ฒ”์œ„(์˜ˆ: ๋งŒ 18์„ธ ์ด์ƒ)๋งŒ ๊ณต๊ฐœํ•ฉ๋‹ˆ๋‹ค. <0>์ •ํ™•ํ•œ ๋‚˜์ด์™€ ์ƒ๋…„์›”์ผ์€ ์ ˆ๋Œ€ ๊ณต์œ ๋˜์ง€ ์•Š์œผ๋ฉฐ, ์ด ๋ฐ์ดํ„ฐ๋Š” ์ด ๊ธฐ๊ธฐ๋ฅผ ๋ฒ—์–ด๋‚˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ๋”ฐ๋ผ์„œ ์ด ๊ธฐ๊ธฐ์—์„œ๋งŒ ์ ‘๊ทผํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. ๋˜๋Š” <1>์‹ ๋ขฐํ•  ์ˆ˜ ์žˆ๋Š” ํŒŒํŠธ๋„ˆ์ธ KWS๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ ์ธ์ฆ์„ ์™„๋ฃŒํ•˜๊ณ  ๋ชจ๋“  ํ”Œ๋žซํผ์—์„œ ์ ‘๊ทผ์„ ํ™œ์„ฑํ™”ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "ํ‘œ์‹œ" msgid "Show alt text" msgstr "๋Œ€์ฒด ํ…์ŠคํŠธ ํ‘œ์‹œ" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "๋ฌด์‹œํ•˜๊ณ  ํ‘œ์‹œ" @@ -11274,8 +11281,8 @@ msgstr "๋ฌด์‹œํ•˜๊ณ  ๋ฆฌ์ŠคํŠธ ํ‘œ์‹œํ•˜๊ธฐ" msgid "Show lists of users to select from" msgstr "์„ ํƒํ•  ์ˆ˜ ์žˆ๋Š” ์‚ฌ์šฉ์ž ๋ฆฌ์ŠคํŠธ ํ‘œ์‹œ" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "๋” ๋ณด๊ธฐ" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "๊ฒฝ๊ณ  ํ‘œ์‹œ ๋ฐ ํ”ผ๋“œ์—์„œ ํ•„ํ„ฐ๋ง" msgid "Show when youโ€™re live" msgstr "๋‚ด๊ฐ€ ๋ผ์ด๋ธŒ ์ค‘์ผ ๋•Œ ํ‘œ์‹œํ•˜๊ธฐ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์ด ์–ธ์ œ ์ž‘์„ฑ๋˜์—ˆ๋Š”์ง€์— ๋Œ€ํ•œ ์ •๋ณด๋ฅผ ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค" @@ -11341,15 +11348,15 @@ msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์ด ์–ธ์ œ ์ž‘์„ฑ๋˜์—ˆ๋Š”์ง€์— ๋Œ€ํ•œ ์ •๋ณด๋ฅผ ํ‘œ์‹œํ•ฉ msgid "Shows other accounts you can switch to" msgstr "์ „ํ™˜ํ•  ์ˆ˜ ์žˆ๋Š” ๋‹ค๋ฅธ ๊ณ„์ •์„ ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "์ฝ˜ํ…์ธ ๋ฅผ ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "์ฝ˜ํ…์ธ ๋ฅผ ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "๋กœ๊ทธ์•„์›ƒํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Sign up" msgstr "๊ฐ€์ž…ํ•˜๊ธฐ" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "๋กœ๊ทธ์ธ ํ•„์š”" @@ -11469,7 +11476,7 @@ msgstr "๊ฑด๋„ˆ๋›ฐ๊ธฐ" msgid "Skip contact sharing and continue to the app" msgstr "์—ฐ๋ฝ์ฒ˜ ๊ณต์œ ๋ฅผ ๊ฑด๋„ˆ๋›ฐ๊ณ  ์•ฑ์œผ๋กœ ๋ฐ”๋กœ ์ด๋™ํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "๋นˆ ๊ฒŒ์‹œ๋ฌผ์„ ์ œ์™ธํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -11487,7 +11494,7 @@ msgstr "๋‹ค์Œ ๋‹จ๊ณ„๋กœ ๊ฑด๋„ˆ๋›ฐ๊ธฐ" msgid "slide" msgstr "์Šฌ๋ผ์ด๋“œ" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "์ž‘์Œ" @@ -11499,7 +11506,7 @@ msgstr "์•Œ๋ฆผ์„ ๋•๋‹ˆ๋‹ค" msgid "So many thoughts, you should post one" msgstr "์ƒ๊ฐ์ด ๋„ˆ๋ฌด ๋งŽ๋‹ค๋ฉด ์ผ๋‹จ ํ•˜๋‚˜๋งŒ ๊ฒŒ์‹œํ•ด ๋ณด์„ธ์š”" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "๋‚ด๊ฐ€ ์ œ์–ดํ•˜๋Š” ์†Œ์…œ ๋ฏธ๋””์–ด." @@ -11520,7 +11527,7 @@ msgstr "๋ฆฌ์ŠคํŠธ์— ์žˆ๋Š” ์ผ๋ถ€ ๊ฒ€ํ†  ์„œ๋น„์Šค๋ฅผ ๋” ์ด์ƒ ์‚ฌ์šฉํ•  ์ˆ˜ msgid "Some of your verifications are invalid." msgstr "์ผ๋ถ€ ์ธ์ฆ์ด ์œ ํšจํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "์ข‹์•„ํ•  ๋งŒํ•œ ๋‹ค๋ฅธ ํ”ผ๋“œ" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "๋ˆ„๊ตฐ๊ฐ€๊ฐ€ ๊ทธ๋ฃน์—์„œ ๋‚˜๊ฐ”์Šต๋‹ˆ๋‹ค" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "๋ˆ„๊ตฐ๊ฐ€๊ฐ€ {0}(์œผ)๋กœ ๋ฐ˜์‘ํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -11554,7 +11561,7 @@ msgstr "๋ˆ„๊ตฐ๊ฐ€๊ฐ€ {0}(์œผ)๋กœ ๋ฐ˜์‘ํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Someone reacted {0} to {target}" msgstr "๋ˆ„๊ตฐ๊ฐ€๊ฐ€ {target}์— {0}(์œผ)๋กœ ๋ฐ˜์‘ํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "๋ˆ„๊ตฐ๊ฐ€๊ฐ€ ๋ณด๋‚ด๋Š” ๋‹ต์žฅ" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ž ์‹œ ํ›„ ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." msgid "Something went wrong. Please try again." msgstr "๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ๋‚˜์š”? ์ €ํฌ์—๊ฒŒ ์•Œ๋ ค์ฃผ์„ธ์š”." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "์ŠคํŒธ ๋˜๋Š” ๊ธฐํƒ€ ๊ธฐ๋งŒ, ์‚ฌ๊ธฐ ํ–‰์œ„" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "์Šคํฌ์ธ " @@ -11668,7 +11675,7 @@ msgstr "๋Œ€ํ™”๋ฅผ ์‹œ์ž‘ํ•˜๋ฉด ์—ฌ๊ธฐ์— ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค." msgid "Start a group chat" msgstr "๊ทธ๋ฃน ๋Œ€ํ™” ์‹œ์ž‘ํ•˜๊ธฐ" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "์ƒˆ ๋Œ€ํ™” ์‹œ์ž‘ํ•˜๊ธฐ" @@ -11682,17 +11689,17 @@ msgstr "์‚ฌ์šฉ์ž ์ถ”๊ฐ€ํ•˜๊ธฐ" msgid "Start adding people!" msgstr "์‚ฌ์šฉ์ž๋ฅผ ์ถ”๊ฐ€ํ•ด ๋ณด์„ธ์š”!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "๋Œ€ํ™” ์‹œ์ž‘" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "{displayName} ๋‹˜๊ณผ ๋Œ€ํ™” ์‹œ์ž‘ํ•˜๊ธฐ" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "์Šคํƒ€ํ„ฐ ํŒฉ" @@ -11715,12 +11722,16 @@ msgstr "๋‚ด ์Šคํƒ€ํ„ฐ ํŒฉ" msgid "Starter pack is invalid" msgstr "์Šคํƒ€ํ„ฐ ํŒฉ์ด ์œ ํšจํ•˜์ง€ ์•Š์Œ" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "์Šคํƒ€ํ„ฐ ํŒฉ" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "์Šคํƒ€ํ„ฐ ํŒฉ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "์Šคํƒ€ํ„ฐ ํŒฉ์„ ์‚ฌ์šฉํ•˜๋ฉด ์ข‹์•„ํ•˜๋Š” ํ”ผ๋“œ์™€ ์‚ฌ์šฉ์ž๋ฅผ ์นœ๊ตฌ๋“ค๊ณผ ์‰ฝ๊ฒŒ ๊ณต์œ ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -11728,7 +11739,7 @@ msgstr "์Šคํƒ€ํ„ฐ ํŒฉ์„ ์‚ฌ์šฉํ•˜๋ฉด ์ข‹์•„ํ•˜๋Š” ํ”ผ๋“œ์™€ ์‚ฌ์šฉ์ž๋ฅผ ์นœ๊ตฌ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "์Šคํƒ€ํ„ฐ ํŒฉ์„ ์‚ฌ์šฉํ•˜๋ฉด ์ข‹์•„ํ•˜๋Š” ํ”ผ๋“œ์™€ ์‚ฌ์šฉ์ž๋ฅผ ์นœ๊ตฌ๋“ค๊ณผ ๊ณต์œ ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "์Šคํƒ€ํ„ฐ ํŒฉ์„ ์‚ฌ์šฉํ•˜๋ฉด ์ข‹์•„ํ•˜๋Š” ํ”ผ๋“œ์™€ ์‚ฌ์šฉ์ž๋ฅผ ์นœ๊ตฌ๋“ค๊ณผ ๊ณต์œ ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -11742,7 +11753,7 @@ msgstr "์ƒํƒœ ํŽ˜์ด์ง€" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "{1}๋‹จ๊ณ„ ์ค‘ {0}๋‹จ๊ณ„" @@ -11754,7 +11765,7 @@ msgstr "์Šคํ† ๋ฆฌ์ง€๊ฐ€ ์ง€์›Œ์กŒ์œผ๋ฉฐ ์ง€๊ธˆ ์•ฑ์„ ๋‹ค์‹œ ์‹œ์ž‘ํ•ด์•ผ ํ•ฉ๋‹ˆ msgid "Stored as part of a secure code for matching with others" msgstr "๋‹ค๋ฅธ ์‚ฌ์šฉ์ž์™€ ๋ฒˆํ˜ธ๋ฅผ ๋Œ€์กฐํ•˜๋Š” ๋ณด์•ˆ ์ฝ”๋“œ์˜ ์ผ๋ถ€๋กœ ์ €์žฅ๋ฉ๋‹ˆ๋‹ค" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "์Šคํ† ๋ฆฌ๋ถ" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "{0}์—์„œ {publicationTitle} ๊ตฌ๋…ํ•˜๊ธฐ" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "์ด ๋ผ๋ฒจ์„ ์‚ฌ์šฉํ•˜๋ ค๋ฉด @{0}(์„)๋ฅผ ๊ตฌ๋…ํ•˜์„ธ์š”." @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "์„ฑ๊ณต์ ์œผ๋กœ ์ธ์ฆํ–ˆ์Šต๋‹ˆ๋‹ค" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "์ถ”์ฒœ" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "์ถ”์ฒœ ๊ณ„์ •" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "๋‚˜๋ฅผ ์œ„ํ•œ ์ถ”์ฒœ" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "์ผ๋ชฐ" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "ํšŒ์›๋‹˜์˜ ๊ตญ๊ฐ€์—์„œ๋Š” ์•„์ง ์ด ๊ธฐ๋Šฅ์ด ์ง€์›๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค! ๋‚˜์ค‘์— ๋‹ค์‹œ ํ™•์ธํ•ด ์ฃผ์„ธ์š”." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "๊ณ„์ •์ด ์ •์ง€๋œ ๊ฒฝ์šฐ ๊ทธ๋ฃน ๋Œ€ํ™”์— ์ฐธ์—ฌํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "์ •์ง€๋œ ๊ณ„์ •์€ ๋Œ€ํ™”์— ์ฐธ์—ฌํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." @@ -11921,8 +11934,8 @@ msgstr "{0}(์œผ)๋กœ ์ „ํ™˜" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "์‹œ์Šคํ…œ" @@ -11945,7 +11958,7 @@ msgstr "๋น„๊ณต๊ฐœ๋กœ ๋Œ€ํ™”ํ•˜์„ธ์š”." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "๋‚ด ์ง€์—ญ์—์„œ ์ด์šฉ ๊ฐ€๋Šฅํ•œ ์ฝ˜ํ…์ธ ์™€ ๊ธฐ๋Šฅ์„ ๋” ์ •ํ™•ํ•˜๊ฒŒ ๊ฒฐ์ •ํ•  ์ˆ˜ ์žˆ๋„๋ก ์•„๋ž˜๋ฅผ ํƒญํ•˜์—ฌ Bluesky์˜ GPS ์œ„์น˜ ์ ‘๊ทผ์„ ํ—ˆ์šฉํ•ด ์ฃผ์„ธ์š”." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "ํƒญํ•˜์—ฌ ์ž์„ธํžˆ ์•Œ์•„๋ณด๊ธฐ" @@ -11976,7 +11989,7 @@ msgstr "์ปจํ…์ŠคํŠธ ๋ฉ”๋‰ด๋ฅผ ๋‹ซ์Šต๋‹ˆ๋‹ค" msgid "Tap to copy this invite link" msgstr "ํƒญํ•˜์—ฌ ์ด ์ดˆ๋Œ€ ๋งํฌ๋ฅผ ๋ณต์‚ฌํ•ฉ๋‹ˆ๋‹ค" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "ํƒญํ•˜์—ฌ ๋‹ซ๊ธฐ" @@ -12003,7 +12016,7 @@ msgstr "ํƒญํ•˜์—ฌ ๋‚ด {0} ๋ฐ˜์‘์„ ์ œ๊ฑฐํ•ฉ๋‹ˆ๋‹ค" msgid "Tap to request access to join this group chat" msgstr "ํƒญํ•˜์—ฌ ์ด ๊ทธ๋ฃน ๋Œ€ํ™”์˜ ์ฐธ์—ฌ ๊ถŒํ•œ์„ ์š”์ฒญํ•ฉ๋‹ˆ๋‹ค" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "ํƒญํ•˜์—ฌ ๋‹ค์‹œ ์‹œ๋„" @@ -12016,7 +12029,7 @@ msgstr "ํƒญํ•˜์—ฌ {0} ๋ฐ˜์‘์„ ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค" msgid "Tap to show all reactions" msgstr "ํƒญํ•˜์—ฌ ๋ชจ๋“  ๋ฐ˜์‘์„ ํ‘œ์‹œํ•ฉ๋‹ˆ๋‹ค" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "ํƒญํ•˜์—ฌ ๋ฐ˜์‘์„ ๋ด…๋‹ˆ๋‹ค" @@ -12032,7 +12045,7 @@ msgstr "์ž‘์—… ์™„๋ฃŒ - ํŒ”๋กœ์šฐ 10๋ฒˆ!" msgid "Task complete - 10 likes!" msgstr "์ž‘์—… ์™„๋ฃŒ - ์ข‹์•„์š” 10๋ฒˆ!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "๋ฌด์—‡์„ ์ข‹์•„ํ•˜๋Š”์ง€ ์•Œ๊ณ ๋ฆฌ์ฆ˜์—๊ฒŒ ์•Œ๋ ค์ฃผ์„ธ์š”" @@ -12060,7 +12073,7 @@ msgstr "์ด์šฉ์•ฝ๊ด€" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "์Šคํƒ€ํ„ฐ ํŒฉ์„ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." msgid "That username is already taken" msgstr "์ด ์‚ฌ์šฉ์ž ์ด๋ฆ„์€ ์ด๋ฏธ ์‚ฌ์šฉ ์ค‘์ž…๋‹ˆ๋‹ค" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "์ด์ƒ์ž…๋‹ˆ๋‹ค, ์—ฌ๋Ÿฌ๋ถ„!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "๊ทธ๊ฒŒ ๋‹ค์˜ˆ์š”!" @@ -12216,7 +12229,7 @@ msgstr "์„œ๋ฒ„์— ๋ฌธ์ œ๊ฐ€ ์žˆ๋Š” ๊ฒƒ ๊ฐ™์Šต๋‹ˆ๋‹ค. ์ž ์‹œ ํ›„ ๋‹ค์‹œ ์‹œ๋„ํ•ด msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "์ด ์Šคํƒ€ํ„ฐ ํŒฉ์€ ์œ ํšจํ•˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ๋Œ€์‹  ์ด ์Šคํƒ€ํ„ฐ ํŒฉ์„ ์‚ญ์ œํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "์ปจํ…์ŠคํŠธ ๋ฉ”๋‰ด ์ œ๋ชฉ" @@ -12238,7 +12251,7 @@ msgstr "์ž…๋ ฅํ•œ ์ธ์ฆ ์ฝ”๋“œ๊ฐ€ ์˜ฌ๋ฐ”๋ฅด์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ์˜ฌ๋ฐ”๋ฅธ ์ธ์ฆ msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "์ธ์ฆ ์„œ๋น„์Šค ์ œ๊ณต์—…์ฒด์—์„œ ํšŒ์›๋‹˜์˜ ์ „ํ™”๋ฒˆํ˜ธ๋กœ ์ธ์ฆ ์ฝ”๋“œ๋ฅผ ๋ณด๋‚ผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ „ํ™”๋ฒˆํ˜ธ๋ฅผ ํ™•์ธํ•œ ํ›„ ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "ํ…Œ๋งˆ" @@ -12266,7 +12279,7 @@ msgstr "GIF๋ฅผ ๋ถˆ๋Ÿฌ์˜ค๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท ์—ฐ msgid "There was a problem with your internet connection, please try again" msgstr "์ธํ„ฐ๋„ท ์—ฐ๊ฒฐ์— ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "์ธํ„ฐ๋„ท ์—ฐ๊ฒฐ์— ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ msgid "There was an issue contacting the server" msgstr "์„œ๋ฒ„์— ์—ฐ๊ฒฐํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "์„œ๋ฒ„์— ์—ฐ๊ฒฐํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท ์—ฐ๊ฒฐ ์ƒํƒœ๋ฅผ ํ™•์ธํ•˜๊ณ  ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." @@ -12283,8 +12296,8 @@ msgstr "์„œ๋ฒ„์— ์—ฐ๊ฒฐํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท msgid "There was an issue fetching notifications. Tap here to try again." msgstr "์•Œ๋ฆผ์„ ๊ฐ€์ ธ์˜ค๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•˜๋ ค๋ฉด ์ด๊ณณ์„ ํƒญํ•˜์„ธ์š”." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "๊ฒŒ์‹œ๋ฌผ์„ ๊ฐ€์ ธ์˜ค๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•˜๋ ค๋ฉด ์ด๊ณณ์„ ํƒญํ•˜์„ธ์š”." @@ -12309,7 +12322,7 @@ msgstr "๋‚ด ์„œ๋น„์Šค ์ •๋ณด๋ฅผ ๊ฐ€์ ธ์˜ค๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "์ด ํ”ผ๋“œ๋ฅผ ์‚ญ์ œํ•˜๋Š” ๋™์•ˆ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ์ธํ„ฐ๋„ท ์—ฐ๊ฒฐ ์ƒํƒœ๋ฅผ ํ™•์ธํ•˜๊ณ  ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "์ด ์„ค์ •์€ ํŒ”๋กœ์šฐ ์ค‘ ํ”ผ๋“œ์—๋งŒ ์ ์šฉ๋ฉ๋‹ˆ๋‹ค." msgid "These URLs" msgstr "๋‹ค์Œ URL" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "๋‚ด ์†Œ์œ ๊ฐ€ ์•„๋‹Œ ๋Œ€ํ™”" @@ -12392,7 +12405,7 @@ msgstr "๋‚ด ์†Œ์œ ๊ฐ€ ์•„๋‹Œ ๋Œ€ํ™”" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "๋‹ค์‹œ ์ดˆ๋Œ€ํ•˜๊ธฐ ์ „๊นŒ์ง€ ์ด ๋Œ€ํ™”์— ๋‹ค์‹œ ์ฐธ์—ฌํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "์ด {screenDescription}์— ๋‹ค์Œ ํ”Œ๋ž˜๊ทธ๊ฐ€ ์ง€์ •๋˜์—ˆ์Šต๋‹ˆ๋‹ค:" @@ -12408,7 +12421,7 @@ msgstr "์ด ๊ณ„์ •์€ ์†Œ์œ ์ž์— ์˜ํ•ด ์ž๋™ํ™”๋œ ๊ณ„์ •์œผ๋กœ ํ‘œ์‹œ๋˜์—ˆ msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "์ด ๊ณ„์ •์€ ํ•œ ๋ฒˆ ์ด์ƒ ์ธ์ฆ์„ ์‹œ๋„ํ–ˆ์ง€๋งŒ ํ˜„์žฌ๋Š” ์ธ์ฆ๋˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "์ด ๊ณ„์ •์˜ ํ”„๋กœํ•„์„ ๋ณด๋ ค๋ฉด ๋กœ๊ทธ์ธํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "์ด ํ”ผ๋“œ๋Š” ๋น„์–ด ์žˆ์Šต๋‹ˆ๋‹ค. ๋” ๋งŽ์€ ์‚ฌ์šฉ์ž๋ฅผ ํŒ”๋กœ์šฐํ•˜๊ฑฐ๋‚˜ ์–ธ์–ด ์„ค์ •์„ ์กฐ์ •ํ•ด ๋ณด์„ธ์š”." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "์ด ํ”ผ๋“œ๋Š” ๋น„์–ด ์žˆ์Šต๋‹ˆ๋‹ค." @@ -12554,7 +12567,7 @@ msgstr "์ด ๊ทธ๋ฃน์€ ์†Œ์œ ์ž์— ๋Œ€ํ•œ ๊ฒ€ํ†  ์กฐ์น˜๋กœ ์ธํ•ด ์ž ๊ฒจ ์žˆ์Šต msgid "This handle is reserved. Please try a different one." msgstr "์ด ํ•ธ๋“ค์€ ์˜ˆ์•ฝ๋˜์—ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค๋ฅธ ํ•ธ๋“ค์„ ์‚ฌ์šฉํ•˜์„ธ์š”." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "์ด ์ด๋ฏธ์ง€๋Š” ์‚ฌ์šฉํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. .jpg ๋˜๋Š” .png์™€ ๊ฐ™์€ ๋‹ค๋ฅธ ํ˜•์‹์„ ์‚ฌ์šฉํ•ด ๋ณด์„ธ์š”." @@ -12596,7 +12609,7 @@ msgstr "์ด ๋ผ๋ฒจ์€ ๋‚ด๊ฐ€ ์ ์šฉํ–ˆ์Šต๋‹ˆ๋‹ค." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "์ด ๋ผ๋ฒจ์€ ์‚ฌ์šฉ์ž ๊ณ„์ • ์ „์ฒด์— ์ ์šฉ๋˜์—ˆ์œผ๋ฉฐ ๋ชจ๋“  ๊ฒŒ์‹œ๋ฌผ์— ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "์ด ๋ผ๋ฒจ๋Ÿฌ๋Š” ๋ผ๋ฒจ์„ ๋“ฑ๋กํ•˜์ง€ ์•Š์•˜์œผ๋ฉฐ ํ™œ์„ฑํ™”๋˜์–ด ์žˆ์ง€ ์•Š์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -12621,13 +12634,13 @@ msgstr "์ด ๋ฆฌ์ŠคํŠธ๋Š” ๋น„์–ด ์žˆ์Šต๋‹ˆ๋‹ค." msgid "This message is hidden" msgstr "์ด ๋ฉ”์‹œ์ง€๋Š” ์ˆจ๊ฒจ์ ธ ์žˆ์Šต๋‹ˆ๋‹ค" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "์ด ์‚ฌ์šฉ์ž๊ฐ€ ๋‚˜๋ฅผ ์ฐจ๋‹จํ–ˆ๊ธฐ ๋•Œ๋ฌธ์— ์ด ๋ฉ”์‹œ์ง€๋Š” ์ˆจ๊ฒจ์กŒ์Šต๋‹ˆ๋‹ค." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "์ด ์‚ฌ์šฉ์ž๋ฅผ ์ฐจ๋‹จํ–ˆ๊ธฐ ๋•Œ๋ฌธ์— ์ด ๋ฉ”์‹œ์ง€๋Š” ์ˆจ๊ฒจ์กŒ์Šต๋‹ˆ๋‹ค." @@ -12641,7 +12654,7 @@ msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ๋‚˜๋ฅผ ์ฐจ๋‹จํ–ˆ์Šต๋‹ˆ๋‹ค" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์€ <0>{0}์— ์ž‘์„ฑ๋˜์—ˆ๋‹ค๊ณ  ์ฃผ์žฅํ•˜์ง€๋งŒ Bluesky์—์„œ๋Š” <1>{1}์— ์ฒ˜์Œ ํ™•์ธ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." @@ -12649,7 +12662,7 @@ msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์€ <0>{0}์— ์ž‘์„ฑ๋˜์—ˆ๋‹ค๊ณ  ์ฃผ์žฅํ•˜์ง€๋งŒ Bluesk msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์— ์•Œ ์ˆ˜ ์—†๋Š” ์œ ํ˜•์˜ ์Šค๋ ˆ๋“œ๊ฒŒ์ดํŠธ๊ฐ€ ์žˆ์Šต๋‹ˆ๋‹ค. ์•ฑ์ด ์˜ค๋ž˜๋˜์—ˆ์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์€ ๋กœ๊ทธ์ธํ•œ ์‚ฌ์šฉ์ž๋งŒ ๋ณผ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -12661,7 +12674,7 @@ msgstr "์ž‘์„ฑ์ž๊ฐ€ ์‚ญ์ œํ•œ ๊ฒŒ์‹œ๋ฌผ์ž…๋‹ˆ๋‹ค" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์„ ํ”ผ๋“œ์™€ ์Šค๋ ˆ๋“œ์—์„œ ์ˆจ๊น๋‹ˆ๋‹ค. ์ด ์ž‘์—…์€ ๋˜๋Œ๋ฆด ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "์ด ๊ฒŒ์‹œ๋ฌผ์˜ ์ž‘์„ฑ์ž๊ฐ€ ์ธ์šฉ ๊ฒŒ์‹œ๋ฌผ์„ ๋น„ํ™œ์„ฑํ™”ํ–ˆ์Šต๋‹ˆ๋‹ค." @@ -12698,11 +12711,12 @@ msgstr "์ด ์ ˆ์ฐจ๋Š” ๋ช‡ ๋ถ„ ์ •๋„ ์†Œ์š”๋ฉ๋‹ˆ๋‹ค." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ํ‘œ์‹œ ์ด๋ฆ„์ด ์—†์œผ๋ฏ€๋กœ ์ธ์ฆํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ํŒ”๋กœ์›Œ๊ฐ€ ์—†์Šต๋‹ˆ๋‹ค." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ๋‚˜๋ฅผ ์ฐจ๋‹จํ–ˆ์œผ๋ฏ€๋กœ ๋ฉ”์‹œ์ง€๋ฅผ ๋ณด๋‚ผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ๋‚˜๋ฅผ ์ฐจ๋‹จํ–ˆ์Šต๋‹ˆ๋‹ค. ์ด ์‚ฌ์šฉ์ž์˜ ์ฝ˜ํ…์ธ ๋ฅผ ๋ณผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ๋Œ€ํ™”๋ฅผ ๋น„ํ™œ์„ฑํ™”ํ–ˆ์œผ๋ฏ€๋กœ ๋ฉ”์‹œ์ง€๋ฅผ ๋ณด๋‚ผ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." @@ -12733,11 +12748,11 @@ msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ๋‚ด๊ฐ€ ๋ฎคํŠธํ•œ <0>{0} ๋ฆฌ์ŠคํŠธ์— ํฌํ•จ๋˜์–ด msgid "This user is new here. Press for more info about when they joined." msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ์ƒˆ๋กœ ๊ฐ€์ž…ํ–ˆ์Šต๋‹ˆ๋‹ค. ์–ธ์ œ ๊ฐ€์ž…ํ–ˆ๋Š”์ง€ ์ž์„ธํ•œ ์ •๋ณด๋ฅผ ๋ณด๋ ค๋ฉด ๋ˆ„๋ฅด์„ธ์š”." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "์ด ์‚ฌ์šฉ์ž๋Š” ์•„๋ฌด๋„ ํŒ”๋กœ์šฐํ•˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "์ด ๋™์˜์ƒ์€ ํ˜„์žฌ ๊ธฐ๊ธฐ์—์„œ ์žฌ์ƒํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ๋ธŒ๋ผ์šฐ์ € ๋˜๋Š” ์‹œ์Šคํ…œ์— ํ•„์š”ํ•œ ๋น„๋””์˜ค ์ฝ”๋ฑ(H.264/AAC)์ด ์„ค์น˜๋˜์–ด ์žˆ์ง€ ์•Š์„ ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "์ด ์ž‘์—…์€ Bluesky ๊ณ„์ • <0>{currentHandle} ๋ฐ ๊ด€๋ จ๋œ ๋ชจ๋“  ๋ฐ์ดํ„ฐ๋ฅผ ์˜๊ตฌ์ ์œผ๋กœ ์‚ญ์ œํ•ฉ๋‹ˆ๋‹ค. ์ด ๊ณ„์ •์œผ๋กœ ์‚ฌ์šฉํ•˜๋Š” ๋‹ค๋ฅธ <1>AT ํ”„๋กœํ† ์ฝœ ์„œ๋น„์Šค์—๋„ ์˜ํ–ฅ์„ ๋ฏธ์น  ์ˆ˜ ์žˆ๋‹ค๋Š” ์ ์— ์œ ์˜ํ•ด ์ฃผ์„ธ์š”." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "๋น ๋ฅธ ์•ก์„ธ์Šค ๋ชฉ๋ก์—์„œ @{0}(์„)๋ฅผ ์ œ๊ฑฐํ•ฉ๋‹ˆ๋‹ค." @@ -12786,7 +12801,7 @@ msgstr "์Šค๋ ˆ๋“œ ์„ค์ •" msgid "Threaded" msgstr "์Šค๋ ˆ๋“œ" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "์Šค๋ ˆ๋“œ ์„ค์ •" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "์—ฐ๋ฝ์ฒ˜๊ฐ€ ๋„ˆ๋ฌด ๋งŽ์Šต๋‹ˆ๋‹ค. ์นœ๊ตฌ ์ฐพ๊ธฐ๋ฅผ ์œ„ํ•ด ๊ฐ€์ ธ์˜ฌ ์ˆ˜ ์žˆ๋Š” ์—ฐ๋ฝ์ฒ˜ ์ˆ˜๋ฅผ ์ดˆ๊ณผํ–ˆ์Šต๋‹ˆ๋‹ค" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "์ธ๊ธฐ" @@ -12858,7 +12873,7 @@ msgstr "์ธ๊ธฐ" msgid "Top replies first" msgstr "์ธ๊ธฐ์ˆœ" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "์ฃผ์ œ" @@ -12893,7 +12908,9 @@ msgstr "ํ˜„์žฌ ์‚ฌ์šฉํ•˜๋Š” ๊ธฐ๊ธฐ์—์„œ๋Š” ๊ฐ™์€ ์–ธ์–ด๋กœ ๋ฒˆ์—ญํ•  ์ˆ˜ ์—† msgid "Tree view" msgstr "ํŠธ๋ฆฌ ๋ทฐ" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "์ธ๊ธฐ" @@ -12902,13 +12919,15 @@ msgstr "์ธ๊ธฐ" msgid "Trending GIFs" msgstr "์ธ๊ธฐ GIF" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "์ธ๊ธฐ ์˜ต์…˜" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "์ธ๊ธฐ ๋™์˜์ƒ" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "๋ถ„์Ÿ ์œ ๋ฐœ" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "์‹ ๋ขฐ๋Š” ๊ด€๊ณ„, ์ปค๋ฎค๋‹ˆํ‹ฐ, ๊ณต์œ ๋œ ๋งฅ๋ฝ์—์„œ ๋น„๋กฏ๋˜๋ฏ€๋กœ ์ง์ ‘ ์ธ์ฆ์„ ๋ฐœํ–‰ํ•  ์ˆ˜ ์žˆ๋Š” ์กฐ์ง์ธ <0>์‹ ๋ขฐํ•  ์ˆ˜ ์žˆ๋Š” ์ธ์ฆ์ž ๋˜ํ•œ ์ง€์›ํ•ฉ๋‹ˆ๋‹ค." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "๋‹ค๋ฅธ ๊ฒ€์ƒ‰์–ด๋ฅผ ์‚ฌ์šฉํ•˜๊ฑฐ๋‚˜ ์ผ๋ถ€ ํ•„ํ„ฐ๋ฅผ ์ œ๊ฑฐํ•ด ๋ณด์„ธ์š”." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "๋‹ค๋ฅธ ๊ฒ€์ƒ‰์–ด๋ฅผ ์‚ฌ์šฉํ•ด ๋ณด์„ธ์š”." @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "์ฐธ์—ฌ ์š”์ฒญ์„ ๊ฐ€์ ธ์˜ฌ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "์„ ํƒํ•œ ์ˆ˜์‹ ์ž๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "์„ ํƒํ•œ ์ˆ˜์‹ ์ž๋ฅผ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." @@ -13024,12 +13045,12 @@ msgstr "์‚ฌ์šฉํ•  ์ˆ˜ ์—†์Œ" msgid "Unavailable feed information" msgstr "์‚ฌ์šฉํ•  ์ˆ˜ ์—†๋Š” ํ”ผ๋“œ ์ •๋ณด" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "๊ณ„์ •์„ ์ฐจ๋‹จ ํ•ด์ œํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Unblock list" msgstr "๋ฆฌ์ŠคํŠธ ์ฐจ๋‹จ ํ•ด์ œ" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "{0} ๋‹˜์„ ์–ธํŒ”๋กœ์šฐ" msgid "Unfollow account" msgstr "๊ณ„์ • ์–ธํŒ”๋กœ์šฐ" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "์‚ฌ์šฉ์ž๋ฅผ ์–ธํŒ”๋กœ์šฐํ•ฉ๋‹ˆ๋‹ค" @@ -13132,7 +13153,7 @@ msgstr "๋ผ๋ฒจ์ด ์—†๋Š” ์„ฑ์ธ ์ฝ˜ํ…์ธ " msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "๋ผ๋ฒจ์ด ์—†๊ฑฐ๋‚˜, ํ•™๋Œ€์ ์ด๊ฑฐ๋‚˜ ๋™์˜๋ฐ›์ง€ ์•Š์€ ์„ฑ์ธ ์ฝ˜ํ…์ธ " -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "์ข‹์•„์š” ์ทจ์†Œ" @@ -13192,7 +13213,7 @@ msgstr "์ด ๊ทธ๋ฃน ๋Œ€ํ™” ์–ธ๋ฎคํŠธํ•˜๊ธฐ" msgid "Unmute thread" msgstr "์Šค๋ ˆ๋“œ ์–ธ๋ฎคํŠธ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "๋™์˜์ƒ ์Œ์†Œ๊ฑฐ ํ•ด์ œ" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "๊ณ ์ • ํ•ด์ œ" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "ํ”ผ๋“œ ๊ณ ์ • ํ•ด์ œ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "ํ™ˆ์—์„œ ๊ณ ์ • ํ•ด์ œ" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "๊ฒ€ํ†  ๋ฆฌ์ŠคํŠธ ๊ณ ์ • ํ•ด์ œ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0}(์„)๋ฅผ ํ™ˆ์—์„œ ๊ณ ์ • ํ•ด์ œํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -13258,11 +13279,11 @@ msgstr "์ด ๋ผ๋ฒจ๋Ÿฌ ๊ตฌ๋… ์ทจ์†Œํ•˜๊ธฐ" msgid "Unsubscribed from list" msgstr "๋ฆฌ์ŠคํŠธ๋ฅผ ๊ตฌ๋… ์ทจ์†Œํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "์ง€์›๋˜์ง€ ์•Š๋Š” ํด๋ฆฝ๋ณด๋“œ ์ฝ˜ํ…์ธ " -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "์ง€์›๋˜์ง€ ์•Š๋Š” ๋™์˜์ƒ ์œ ํ˜•: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "๋‹ต๊ธ€ ํ‘œ์‹œ ์—ฌ๋ถ€๋ฅผ ์—…๋ฐ์ดํŠธํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "๋Œ€์‹  ์‚ฌ์ง„ ์—…๋กœ๋“œํ•˜๊ธฐ" @@ -13355,7 +13376,7 @@ msgstr "ํŒŒ์ผ์—์„œ ์—…๋กœ๋“œ" msgid "Upload from Library" msgstr "๋ณด๊ด€ํ•จ์—์„œ ์—…๋กœ๋“œ" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "GIF ์—…๋กœ๋“œ ์ค‘โ€ฆ" @@ -13369,7 +13390,7 @@ msgstr "์ด๋ฏธ์ง€ ์—…๋กœ๋“œ ์ค‘โ€ฆ" msgid "Uploading link thumbnail..." msgstr "๋งํฌ ๋ฏธ๋ฆฌ๋ณด๊ธฐ ์—…๋กœ๋“œ ์ค‘โ€ฆ" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "๋™์˜์ƒ ์—…๋กœ๋“œ ์ค‘โ€ฆ" @@ -13408,7 +13429,7 @@ msgstr "์ด ๋น„๋ฐ€๋ฒˆํ˜ธ์™€ ํ•ธ๋“ค์„ ์‚ฌ์šฉํ•˜์—ฌ ๋‹ค๋ฅธ ์•ฑ์— ๋กœ๊ทธ์ธํ•˜์„ธ msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "KWS๋‚˜ Bluesky์—์„œ ์—ฐ๋ฝํ•ด์•ผ ํ•  ๊ฒฝ์šฐ๋ฅผ ๋Œ€๋น„ํ•˜์—ฌ, ๊ณ„์ • ์ด๋ฉ”์ผ ์ฃผ์†Œ ๋˜๋Š” ์ง์ ‘ ๊ด€๋ฆฌํ•˜๋Š” ๋‹ค๋ฅธ ์‹ค์ œ ์ด๋ฉ”์ผ ์ฃผ์†Œ๋ฅผ ์‚ฌ์šฉํ•˜์„ธ์š”." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "์‚ฌ์šฉ์ž" @@ -13510,7 +13531,7 @@ msgstr "์ธ์ฆํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." msgid "Verification settings" msgstr "์ธ์ฆ ์„ค์ •" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "์ธ์ฆ ์„ค์ •" @@ -13618,34 +13639,34 @@ msgstr "๋™์˜์ƒ" msgid "Video failed to process" msgstr "๋™์˜์ƒ์„ ์ฒ˜๋ฆฌํ•˜์ง€ ๋ชปํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "๋™์˜์ƒ ํ”ผ๋“œ" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "{0} ๋‹˜์˜ ๋™์˜์ƒ: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "{0} ๋‹˜์˜ ๋™์˜์ƒ. ํƒญํ•˜์—ฌ ์žฌ์ƒ ๋˜๋Š” ์ผ์‹œ์ •์ง€ํ•ฉ๋‹ˆ๋‹ค" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "๋น„๋””์˜ค ๊ฒŒ์ž„" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "๋™์˜์ƒ ์ผ์‹œ ์ •์ง€๋จ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "๋™์˜์ƒ ์žฌ์ƒ ์ค‘" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "๋™์˜์ƒ์„ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." @@ -13653,7 +13674,7 @@ msgstr "๋™์˜์ƒ์„ ์ฐพ์„ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." msgid "Video settings" msgstr "๋™์˜์ƒ ์„ค์ •" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "๋™์˜์ƒ์„ ์—…๋กœ๋“œํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -13662,17 +13683,17 @@ msgstr "๋™์˜์ƒ์„ ์—…๋กœ๋“œํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "Video: {0}" msgstr "๋™์˜์ƒ: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "๋™์˜์ƒ" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "๋™์˜์ƒ ๊ธธ์ด๋Š” 3๋ถ„ ๋ฏธ๋งŒ์ด์–ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "๋ณด๊ธฐ" @@ -13691,9 +13712,9 @@ msgstr "{0} ๋‹˜์˜ ํ”„๋กœํ•„ ์‚ฌ์ง„ ๋ณด๊ธฐ" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "{0} ๋‹˜์˜ ํ”„๋กœํ•„ ๋ณด๊ธฐ" @@ -13724,13 +13745,13 @@ msgstr "์ž์„ธํ•œ ์ •๋ณด๋ฅผ ์œ„ํ•ด ๋ธ”๋กœ๊ทธ ๊ธ€ ๋ณด๊ธฐ" msgid "View debug entry" msgstr "๋””๋ฒ„๊ทธ ํ•ญ๋ชฉ ๋ณด๊ธฐ" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "์„ธ๋ถ€ ์ •๋ณด ๋ณด๊ธฐ" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "์ „์ฒด ์Šค๋ ˆ๋“œ ๋ณด๊ธฐ" @@ -13750,18 +13771,18 @@ msgstr "์ด ๊ทธ๋ฃน ๋Œ€ํ™”์˜ ์ฐธ์—ฌ ์š”์ฒญ์„ ํ™•์ธํ•ฉ๋‹ˆ๋‹ค" msgid "View information about these labels" msgstr "์ด ๋ผ๋ฒจ์— ๋Œ€ํ•œ ์ •๋ณด ๋ณด๊ธฐ" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "๋” ๋ณด๊ธฐ" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "์ธ๊ธฐ ๋™์˜์ƒ ๋” ๋ณด๊ธฐ" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "๊ฒŒ์‹œ๋ฌผ ๋ณด๊ธฐ" @@ -13798,15 +13819,15 @@ msgstr "์ด ๊ทธ๋ฃน ๋Œ€ํ™”์˜ ์ดˆ๋Œ€ ๋งํฌ ๋ณด๊ธฐ" msgid "View the labeling service provided by @{0}" msgstr "{0} ๋‹˜์ด ์ œ๊ณตํ•˜๋Š” ๋ผ๋ฒจ๋ง ์„œ๋น„์Šค ๋ณด๊ธฐ" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "์ด ์‚ฌ์šฉ์ž์˜ ์ธ์ฆ ๋ณด๊ธฐ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "์ด ํ”ผ๋“œ๋ฅผ ์ข‹์•„ํ•˜๋Š” ์‚ฌ์šฉ์ž ๋ณด๊ธฐ" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "๋™์˜์ƒ ๋ณด๊ธฐ" @@ -13831,7 +13852,7 @@ msgstr "๋‚ด ๊ฒ€ํ†  ๋ฆฌ์ŠคํŠธ ๋ณด๊ธฐ" msgid "View your muted accounts" msgstr "๋‚ด๊ฐ€ ๋ฎคํŠธํ•œ ๊ณ„์ • ๋ณด๊ธฐ" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "๋‚ด ์ธ์ฆ ๋ณด๊ธฐ" @@ -13840,7 +13861,7 @@ msgstr "๋‚ด ์ธ์ฆ ๋ณด๊ธฐ" msgid "Views full image" msgstr "์ „์ฒด ์ด๋ฏธ์ง€๋ฅผ ๋ด…๋‹ˆ๋‹ค" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "๋ชฐ์ž…ํ˜• ๋ชจ๋“œ๋กœ ๋™์˜์ƒ์„ ๋ด…๋‹ˆ๋‹ค" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "๋„คํŠธ์›Œํฌ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "๋„คํŠธ์›Œํฌ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”" @@ -14043,7 +14064,7 @@ msgstr "๋„คํŠธ์›Œํฌ ๋ฌธ์ œ๊ฐ€ ๋ฐœ์ƒํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Bluesky์— ์ธ์ฆ์„ ์‰ฝ๊ฒŒ ํ™•์ธํ•  ์ˆ˜ ์žˆ๋Š” ์ฒดํฌ ํ‘œ์‹œ๋ฅผ ๋„์ž…ํ•ฉ๋‹ˆ๋‹ค." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "ํ•จ๊ป˜ํ•˜๊ฒŒ ๋˜์–ด ์ •๋ง ๊ธฐ๋ป์š”!" @@ -14064,13 +14085,15 @@ msgstr "์ฃ„์†กํ•˜์ง€๋งŒ ์ด ๋ฆฌ์ŠคํŠธ๋ฅผ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ์ด ๋ฌธ์ œ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "์ฃ„์†กํ•˜์ง€๋งŒ ํ˜„์žฌ ๋ฎคํŠธํ•œ ๋‹จ์–ด๋ฅผ ๋ถˆ๋Ÿฌ์˜ฌ ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "์ฃ„์†กํ•ฉ๋‹ˆ๋‹ค. ๊ฒ€์ƒ‰์„ ์™„๋ฃŒํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "์ฃ„์†กํ•˜์ง€๋งŒ ๊ฒ€์ƒ‰์„ ์™„๋ฃŒํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ๋ช‡ ๋ถ„ ํ›„์— ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." @@ -14078,7 +14101,7 @@ msgstr "์ฃ„์†กํ•˜์ง€๋งŒ ๊ฒ€์ƒ‰์„ ์™„๋ฃŒํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ๋ช‡ ๋ถ„ ํ›„์— ๋‹ค msgid "We're sorry, you cannot access this screen at this time." msgstr "์ฃ„์†กํ•ฉ๋‹ˆ๋‹ค. ํ˜„์žฌ ์ด ํ™”๋ฉด์— ์ ‘๊ทผํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "์ฃ„์†กํ•˜์ง€๋งŒ ๋‹ต๊ธ€์„ ๋‹ฌ๋ ค๋Š” ๊ฒŒ์‹œ๋ฌผ์ด ์‚ญ์ œ๋˜์—ˆ์Šต๋‹ˆ๋‹ค." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "์š”์ฆ˜ ์–ด๋•Œ?" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "๋ฌด์Šจ ์ผ์ด ์ผ์–ด๋‚˜๊ณ  ์žˆ๋‚˜์š”?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "๋ˆ„๊ฐ€ ์ธ์ฆ์„ ๋ฐ›์„ ์ˆ˜ ์žˆ๋‚˜์š”?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "์ด๋Ÿฐ!" @@ -14220,21 +14243,21 @@ msgstr "์ด ์‚ฌ์šฉ์ž๋ฅผ ์ฐจ๋‹จํ•˜๊ฑฐ๋‚˜ ๋Œ€ํ™”๋ฅผ ์ข…๋ฃŒํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "์ž„์‹œ ์ €์žฅ ๋ชฉ๋ก์œผ๋กœ ์ด๋™ํ•˜๊ธฐ ์ „์— ์ž‘์„ฑ ์ค‘์ธ ๋‚ด์šฉ์„ ์ €์žฅํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "๋‚˜์ค‘์— ๋‹ค์‹œ ์ž‘์„ฑํ•  ์ˆ˜ ์žˆ๋„๋ก ์ž„์‹œ ์ €์žฅํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "๊ฒŒ์‹œ๋ฌผ ์ž‘์„ฑํ•˜๊ธฐ" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "๊ฒŒ์‹œ๋ฌผ ์ž‘์„ฑ" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "๋‹ต๊ธ€ ์ž‘์„ฑํ•˜๊ธฐ" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "ํšŒ์›๋‹˜์ด ์ ‘์†ํ•˜์‹  ์ง€์—ญ์€ ์•ฑ ์ ‘๊ทผ ์ „ ๋ฒ•์ ์œผ๋กœ ์—ฐ๋ น ํ™•์ธ์ด ํ•„์š”ํ•œ ๊ณณ์ž…๋‹ˆ๋‹ค." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "{0} ๋‹˜์„ ์ฐจ๋‹จํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -14342,7 +14365,7 @@ msgstr "๋” ์ด์ƒ ๋ผ์ด๋ธŒ ์ค‘์ด ์•„๋‹™๋‹ˆ๋‹ค" msgid "You are not allowed to upload videos." msgstr "๋™์˜์ƒ์„ ์—…๋กœ๋“œํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "์•„์ง ์•„๋ฌด๋„ ํŒ”๋กœ์šฐํ•˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค" @@ -14362,7 +14385,7 @@ msgstr "ํ˜„์žฌ ์ธ์ฆ๋œ ์ƒํƒœ์ž…๋‹ˆ๋‹ค. ํ‘œ์‹œ ์ด๋ฆ„์„ ๋ณ€๊ฒฝํ•˜๋ฉด ์ธ์ฆ msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "ํ˜„์žฌ ์ธ์ฆ๋œ ์ƒํƒœ์ž…๋‹ˆ๋‹ค. ํ•ธ๋“ค์„ ๋ณ€๊ฒฝํ•˜๋ฉด ์ธ์ฆ์ด ํ•ด์ œ๋  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค. <0>์ž์„ธํžˆ ์•Œ์•„๋ณด๊ธฐ (์˜์–ด)" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "โ€˜์ฝ˜ํ…์ธ  ๋ฐ ๋ฏธ๋””์–ดโ€™ ์„ค์ •์—์„œ ์–ธ์ œ๋“ ์ง€ ๊ด€์‹ฌ ์ฃผ์ œ๋ฅผ ์กฐ์ •ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "์ด์ œ ์ƒˆ ๋น„๋ฐ€๋ฒˆํ˜ธ๋กœ ๋กœ๊ทธ์ธํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "๊ฒŒ์‹œ๋ฌผ๋‹น ์ตœ๋Œ€ {MAX_GALLERY_IMAGES, plural, other {#๊ฐœ}}์˜ ์ด๋ฏธ์ง€๋งŒ ์ถ”๊ฐ€ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "์ตœ๋Œ€ 1000์ž๊นŒ์ง€๋งŒ ์ž„์‹œ ์ €์žฅํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -14439,9 +14462,11 @@ msgstr "๋Œ€ํ™” ๊ธฐ๋ก์€ ์ฝ์„ ์ˆ˜ ์žˆ์ง€๋งŒ ์ƒˆ ๋ฉ”์‹œ์ง€๋Š” ๋ณด๋‚ผ ์ˆ˜ ์—†์Šต msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "์ด {MAX_GALLERY_IMAGES, plural, other {#๊ฐœ}}๊นŒ์ง€ ์„ ํƒํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "๋‚˜์ค‘์— ์„ค์ •์—์„œ ๋ณ€๊ฒฝํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "์ด๋ชจํ‹ฐ์ฝ˜ ๋ฐ˜์‘์€ ์ตœ๋Œ€ {EMOJI_REACTION_LIMIT, plural, other {#๊ฐœ}}๊นŒ์ง€๋งŒ ์ถ”๊ฐ€ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "์•„์ง ๊ทธ๋ฃน ๋Œ€ํ™”๋ฅผ ๋งŒ๋“ค ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." @@ -14555,7 +14581,7 @@ msgstr "์ด๋ฉ”์ผ ์ฃผ์†Œ๋ฅผ ์„ฑ๊ณต์ ์œผ๋กœ ์ธ์ฆํ–ˆ์Šต๋‹ˆ๋‹ค. ์ด ๋Œ€ํ™” ์ƒ msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "์ผ์‹œ์ ์œผ๋กœ ๋™์˜์ƒ ์—…๋กœ๋“œ ํ•œ๋„์— ๋„๋‹ฌํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‚˜์ค‘์— ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "์ด ์ดˆ์•ˆ์— ์ €์žฅ๋˜์ง€ ์•Š์€ ๋ณ€๊ฒฝ ์‚ฌํ•ญ์ด ์žˆ์Šต๋‹ˆ๋‹ค. ์ €์žฅํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" @@ -14563,7 +14589,7 @@ msgstr "์ด ์ดˆ์•ˆ์— ์ €์žฅ๋˜์ง€ ์•Š์€ ๋ณ€๊ฒฝ ์‚ฌํ•ญ์ด ์žˆ์Šต๋‹ˆ๋‹ค. ์ €์žฅ msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "๋ณ€๊ฒฝ ์‚ฌํ•ญ์ด ์ €์žฅ๋˜์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค. ์ž„์‹œ ์ €์žฅ ๋ชฉ๋ก์œผ๋กœ ์ด๋™ํ•˜๊ธฐ ์ „์— ์ €์žฅํ•˜์‹œ๊ฒ ์Šต๋‹ˆ๊นŒ?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "์•„์ง ์Šคํƒ€ํ„ฐ ํŒฉ์„ ๋งŒ๋“ค์ง€ ์•Š์•˜์Šต๋‹ˆ๋‹ค." @@ -14614,7 +14640,7 @@ msgstr "ํ”„๋กœํ•„์€ ์ตœ๋Œ€ {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK msgid "You may only add up to 3 feeds" msgstr "ํ”ผ๋“œ๋Š” ์ตœ๋Œ€ 3๊ฐœ๊นŒ์ง€ ์ถ”๊ฐ€ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "๋ฉค๋ฒ„๋ฅผ ๋‚ด๋ณด๋‚ด๋ ค๋ฉด ๋Œ€ํ™” ์†Œ์œ ์ž์—ฌ์•ผ ํ•ฉ๋‹ˆ๋‹ค." @@ -14622,7 +14648,7 @@ msgstr "๋ฉค๋ฒ„๋ฅผ ๋‚ด๋ณด๋‚ด๋ ค๋ฉด ๋Œ€ํ™” ์†Œ์œ ์ž์—ฌ์•ผ ํ•ฉ๋‹ˆ๋‹ค." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Bluesky๋ฅผ ์ด์šฉํ•˜๋ ค๋ฉด ๋งŒ 13์„ธ ์ด์ƒ์ด์–ด์•ผ ํ•ฉ๋‹ˆ๋‹ค. ์ž์„ธํ•œ ๋‚ด์šฉ์€ <0>์„œ๋น„์Šค ์ด์šฉ์•ฝ๊ด€์„ ์ฐธ์กฐํ•˜์„ธ์š”." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "์Šคํƒ€ํ„ฐ ํŒฉ์„ ๋งŒ๋“ค๋ ค๋ฉด ๋‹ค๋ฅธ ์‚ฌ์šฉ์ž๋ฅผ ์ตœ์†Œ 7๋ช… ์ด์ƒ ํŒ”๋กœ์šฐํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." @@ -14639,7 +14665,7 @@ msgstr "๋ฏธ๋””์–ด ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ์— ๋Œ€ํ•œ ์ ‘๊ทผ ๊ถŒํ•œ์„ ํ—ˆ์šฉํ•ด์•ผ ํ•ฉ๋‹ˆ msgid "You need to verify your email address before you can enable email 2FA." msgstr "์ด๋ฉ”์ผ 2๋‹จ๊ณ„ ์ธ์ฆ์„ ์‚ฌ์šฉํ•˜๋ ค๋ฉด ์ด๋ฉ”์ผ ์ฃผ์†Œ๋ฅผ ์ธ์ฆํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "๋‚ด๊ฐ€ ์†Œ์œ ํ•œ ๋Œ€ํ™”" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "์•ฑ์„ ๋‹ค์‹œ ์‹œ์ž‘ํ•ด์•ผ ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "๋‚ด๊ฐ€ {0}(์œผ)๋กœ ๋ฐ˜์‘ํ•จ" @@ -14667,15 +14693,15 @@ msgstr "๋‚ด๊ฐ€ {target}์— {0}(์œผ)๋กœ ๋ฐ˜์‘ํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "You recently changed your birthdate" msgstr "์ตœ๊ทผ ์ƒ๋…„์›”์ผ์„ ๋ณ€๊ฒฝํ–ˆ์Šต๋‹ˆ๋‹ค" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "๋‚ด๊ฐ€ ๋ณด๋‚ด๋Š” ๋‹ต์žฅ" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "๋‚ด๊ฐ€ {originalName} ๋‹˜์—๊ฒŒ ๋ณด๋‚ด๋Š” ๋‹ต์žฅ" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "๋‚ด๊ฐ€ ๋‚˜์—๊ฒŒ ๋ณด๋‚ด๋Š” ๋‹ต์žฅ" @@ -14715,11 +14741,11 @@ msgstr "์ดˆ๋Œ€๋ฐ›์ง€ ์•Š์œผ๋ฉด ๋‹ค์‹œ ์ฐธ์—ฌํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค." msgid "You: {message}" msgstr "๋‚˜: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "๊ณ„์ • ์ƒ์„ฑ์„ ์™„๋ฃŒํ•˜๋ฉด ์ถ”์ฒœ ์‚ฌ์šฉ์ž ๋ฐ ํ”ผ๋“œ๋ฅผ ํŒ”๋กœ์šฐํ•˜๊ฒŒ ๋ฉ๋‹ˆ๋‹ค." -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "๊ณ„์ • ์ƒ์„ฑ์„ ์™„๋ฃŒํ•˜๋ฉด ์ถ”์ฒœ ์‚ฌ์šฉ์ž๋ฅผ ํŒ”๋กœ์šฐํ•˜๊ฒŒ ๋ฉ๋‹ˆ๋‹ค." @@ -14791,7 +14817,7 @@ msgstr "ํ™œ์„ฑ ์ฝ˜ํ…์ธ ์˜ ๋์— ๋„๋‹ฌํ–ˆ์Šต๋‹ˆ๋‹ค." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ํ”ผ๋“œ ๋์— ๋„๋‹ฌํ–ˆ์Šต๋‹ˆ๋‹ค! ํŒ”๋กœ์šฐํ•  ๊ณ„์ •์„ ๋” ์ฐพ์•„๋ณด์„ธ์š”." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "์ž„์‹œ ์ €์žฅ ์ˆ˜๊ฐ€ ์ตœ๋Œ€์น˜์— ๋„๋‹ฌํ–ˆ์Šต๋‹ˆ๋‹ค" @@ -14799,7 +14825,7 @@ msgstr "์ž„์‹œ ์ €์žฅ ์ˆ˜๊ฐ€ ์ตœ๋Œ€์น˜์— ๋„๋‹ฌํ–ˆ์Šต๋‹ˆ๋‹ค" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "ํ—ˆ์šฉ๋œ ์ตœ๋Œ€ ์š”์ฒญ ์ˆ˜์— ๋„๋‹ฌํ–ˆ์Šต๋‹ˆ๋‹ค. ๋‚˜์ค‘์— ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "ํ•„ํ„ฐ์˜ ์ตœ๋Œ€ ์ˆ˜์ธ {MAX_FILTERS, plural, other {#๊ฐœ}}์— ๋„๋‹ฌํ–ˆ์Šต๋‹ˆ๋‹ค. ์ƒˆ ํ•„ํ„ฐ๋ฅผ ๋งŒ๋“œ๋Š” ๋Œ€์‹  ๊ธฐ์กด ํ•„ํ„ฐ์— ๊ฐ’์„ ์ถ”๊ฐ€ํ•˜์„ธ์š”." @@ -14815,11 +14841,11 @@ msgstr "๋™์˜์ƒ ์—…๋กœ๋“œ ์ผ์ผ ํ•œ๋„์— ๋„๋‹ฌํ–ˆ์Šต๋‹ˆ๋‹ค (์šฉ๋Ÿ‰์ด ๋„ˆ msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "๋™์˜์ƒ ์—…๋กœ๋“œ ์ผ์ผ ํ•œ๋„์— ๋„๋‹ฌํ–ˆ์Šต๋‹ˆ๋‹ค (๋™์˜์ƒ ์ˆ˜๊ฐ€ ๋„ˆ๋ฌด ๋งŽ์Œ)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "์‹œ์ฒญํ•  ๋™์˜์ƒ์ด ๋ถ€์กฑํ•ฉ๋‹ˆ๋‹ค. ์ž ์‹œ ์‰ฌ๋Š” ๊ฑด ์–ด๋– ์‹ ๊ฐ€์š”?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "๋‚ด ๊ณ„์ •" @@ -14835,11 +14861,11 @@ msgstr "๊ณ„์ •์ด ์ผ์‹œ ์ •์ง€๋˜์—ˆ์Šต๋‹ˆ๋‹ค" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "๋‚ด ๊ณ„์ •์€ ์•„์ง ๋™์˜์ƒ์„ ์—…๋กœ๋“œํ•  ์ˆ˜ ์—†์Šต๋‹ˆ๋‹ค. ๋‚˜์ค‘์— ๋‹ค์‹œ ์‹œ๋„ํ•ด ์ฃผ์„ธ์š”." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "๊ณ„์ •์ด ๋„ˆ๋ฌด ์ƒˆ๋กญ์Šต๋‹ˆ๋‹ค" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "์ƒˆ ๊ทธ๋ฃน ๋Œ€ํ™”๋ฅผ ๋งŒ๋“ค๋ ค๋ฉด ๊ณ„์ • ์ƒ์„ฑ ํ›„ ์ตœ์†Œ 7์ผ์ด ์ง€๋‚˜์•ผ ํ•ฉ๋‹ˆ๋‹ค." @@ -14896,7 +14922,7 @@ msgstr "์ด๋ฉ”์ผ" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "์ด๋ฉ”์ผ์ด ์ž˜๋ชป๋œ ๊ฒƒ ๊ฐ™์Šต๋‹ˆ๋‹ค." @@ -14911,7 +14937,7 @@ msgstr "์ฒซ ์ข‹์•„์š”!" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:496 msgid "Your followers" -msgstr "๋‚ด ํŒ”๋กœ์›Œ" +msgstr "๋‚˜๋ฅผ ํŒ”๋กœ์šฐํ•˜๋Š” ์‚ฌ์šฉ์ž" #: src/view/com/posts/FollowingEmptyState.tsx:41 msgid "Your following feed is empty! Follow more users to see what's happening." @@ -14930,8 +14956,8 @@ msgstr "์ด๋ฉ”์ผ ์ฃผ์†Œ์—์„œ ํ˜ธ์ŠคํŒ… ์ œ๊ณต์ž๋ฅผ ๊ฐ์ง€ํ•  ์ˆ˜ ์—†์–ด ๊ธฐ msgid "Your hosting provider is detected automatically from the username you enter." msgstr "์ž…๋ ฅํ•œ ํ•ธ๋“ค์—์„œ ํ˜ธ์ŠคํŒ… ์ œ๊ณต์ž๊ฐ€ ์ž๋™์œผ๋กœ ๊ฐ์ง€๋ฉ๋‹ˆ๋‹ค." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "๊ด€์‹ฌ ์ฃผ์ œ๋ฅผ ์—…๋ฐ์ดํŠธํ–ˆ์Šต๋‹ˆ๋‹ค!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "๊ด€์‹ฌ ์ฃผ์ œ๋Š” ๋‚ด๊ฐ€ ์ข‹์•„ํ•˜๋Š” ๊ฒƒ์„ ์ฐพ๋„๋ก ๋„์™€์ค๋‹ˆ๋‹ค!" @@ -14967,11 +14993,11 @@ msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ์„ฑ๊ณต์ ์œผ๋กœ ๋ณ€๊ฒฝํ–ˆ์Šต๋‹ˆ๋‹ค! ์•ž์œผ๋กœ Bluesky์— msgid "Your password must be at least 8 characters long." msgstr "๋น„๋ฐ€๋ฒˆํ˜ธ๋Š” 8์ž ์ด์ƒ์ด์–ด์•ผ ํ•ฉ๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "๊ฒŒ์‹œ๋ฌผ์„ ๋ณด๋ƒˆ์Šต๋‹ˆ๋‹ค" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "๊ฒŒ์‹œ๋ฌผ์„ ๋ณด๋ƒˆ์Šต๋‹ˆ๋‹ค" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "์„ ํ˜ธํ•˜๋Š” ์–ธ์–ด" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "๋‚ด ํ”„๋กœํ•„ ์‚ฌ์ง„" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "์—ฌ๋Ÿฌ ์‚ฌ์šฉ์ž๋“ค์˜ ํ”„๋กœํ•„ ์‚ฌ์ง„์ด ๋™์‹ฌ์› ํ˜•ํƒœ๋กœ ๋‚ด ํ”„๋กœํ•„ ์‚ฌ์ง„์„ ๋‘˜๋Ÿฌ์‹ธ๊ณ  ์žˆ๋Š” ๋ชจ์Šต" @@ -14992,7 +15018,7 @@ msgstr "์—ฌ๋Ÿฌ ์‚ฌ์šฉ์ž๋“ค์˜ ํ”„๋กœํ•„ ์‚ฌ์ง„์ด ๋™์‹ฌ์› ํ˜•ํƒœ๋กœ ๋‚ด ํ”„ msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "๋‚ด ํ”„๋กœํ•„, ๊ฒŒ์‹œ๋ฌผ, ํ”ผ๋“œ, ๋ฆฌ์ŠคํŠธ๊ฐ€ ๋” ์ด์ƒ ๋‹ค๋ฅธ Bluesky ์‚ฌ์šฉ์ž์—๊ฒŒ ํ‘œ์‹œ๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ์–ธ์ œ๋“ ์ง€ ๋กœ๊ทธ์ธํ•˜์—ฌ ๊ณ„์ •์„ ์žฌํ™œ์„ฑํ™”ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "๋‹ต๊ธ€์„ ๋ณด๋ƒˆ์Šต๋‹ˆ๋‹ค" @@ -15005,7 +15031,7 @@ msgstr "์‹ ๊ณ ๋ฅผ <0>{0}์—๊ฒŒ ์ „์†กํ•ฉ๋‹ˆ๋‹ค." msgid "Your selected interests help us serve you content you care about." msgstr "์„ ํƒํ•œ ๊ด€์‹ฌ ์ฃผ์ œ๋Š” ์‚ฌ์šฉ์ž๊ฐ€ ๊ด€์‹ฌ ์žˆ๋Š” ์ฝ˜ํ…์ธ ๋ฅผ ์ œ๊ณตํ•˜๋Š” ๋ฐ ๋„์›€์„ ์ค๋‹ˆ๋‹ค." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "์Šค๋ ˆ๋“œ์— ๋‚ด์šฉ์ด ์—†๋Š” ๊ฒŒ์‹œ๋ฌผ์ด ํฌํ•จ๋˜์–ด ์žˆ์–ด ํ•ด๋‹น ๊ฒŒ์‹œ๋ฌผ์€ ์ œ์™ธ๋ฉ๋‹ˆ๋‹ค. ๋‚˜๋จธ์ง€ ๊ฒŒ์‹œ๋ฌผ์€ ์Šค๋ ˆ๋“œ ํ˜•์‹์œผ๋กœ ๊ฒŒ์‹œ๋ฉ๋‹ˆ๋‹ค." diff --git a/src/locale/locales/kw/messages.po b/src/locale/locales/kw/messages.po new file mode 100644 index 0000000000..03f7f38c1d --- /dev/null +++ b/src/locale/locales/kw/messages.po @@ -0,0 +1,15045 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2023-11-05 16:01-0800\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: kw\n" +"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2026-07-28 06:05\n" +"Last-Translator: \n" +"Language-Team: Cornish\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==2 ? 1 : 2);\n" +"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: kw\n" +"X-Crowdin-File: /main/src/locale/locales/en/messages.po\n" +"X-Crowdin-File-ID: 11\n" + +#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. +#: src/components/InterestTabs.tsx:333 +msgid "\"{interestsDisplayName}\" category (active)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:902 +msgid "(blocked message hidden)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/getMessageInfo.ts:123 +#: src/components/dms/replyPreview.ts:85 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:105 +msgid "(contains embedded content)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:916 +msgid "(deleted message)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:68 +msgid "(disabled chat invite link)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:77 +msgid "(invalid chat invite link)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/MessageItem.tsx:910 +msgid "(message sent before you joined)" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:74 +msgid "(no email)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:107 +msgid "(no text)" +msgstr "" + +#. A reply summary in chat +#: src/components/dms/replyPreview.ts:99 +msgid "(quoted post)" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/LabelsOnMe.tsx:57 +msgid "{0, plural, one {# account label} other {# account labels}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:169 +msgid "{0, plural, one {# day} other {# days}}" +msgstr "" + +#. placeholder {0}: profile.followersCount ?? 0 +#: src/screens/Profile/ProfileFollowers.tsx:33 +msgid "{0, plural, one {# follower} other {# followers}}" +msgstr "" + +#. placeholder {0}: profile.followsCount ?? 0 +#: src/screens/Profile/ProfileFollows.tsx:33 +msgid "{0, plural, one {# following} other {# following}}" +msgstr "" + +#. placeholder {0}: item.count +#: src/components/contacts/screens/ViewMatches.tsx:268 +msgid "{0, plural, one {# friend found!} other {# friends found!}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:159 +msgid "{0, plural, one {# hour} other {# hours}}" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/PostAlerts.tsx:157 +msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/PostAlerts.tsx:164 +msgid "{0, plural, one {# label applied} other {# labels applied}}" +msgstr "" + +#. placeholder {0}: likeCount ?? 0 +#: src/screens/Post/PostLikedBy.tsx:34 +msgid "{0, plural, one {# like} other {# likes}}" +msgstr "" + +#. placeholder {0}: convo.details.memberCount +#: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 +msgid "{0, plural, one {# member} other {# members}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:149 +msgid "{0, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:180 +msgid "{0, plural, one {# month} other {# months}}" +msgstr "" + +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:224 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "" + +#. placeholder {0}: reactions.length +#. placeholder {1}: groupedReactions.map(g => g.value).join(' ') +#: src/components/dms/MessageItem.tsx:371 +msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" +msgstr "" + +#. placeholder {0}: quoteCount ?? 0 +#: src/screens/Post/PostQuotes.tsx:34 +msgid "{0, plural, one {# quote} other {# quotes}}" +msgstr "" + +#. placeholder {0}: quoteCount ?? 0 +#: src/screens/Post/PostRepostedBy.tsx:34 +msgid "{0, plural, one {# repost} other {# reposts}}" +msgstr "" + +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:139 +msgid "{0, plural, one {# second} other {# seconds}}" +msgstr "" + +#. placeholder {0}: numUnreadMessages.numUnread ?? 0 +#. placeholder {0}: numUnreadNotifications ?? 0 +#: src/view/shell/bottom-bar/BottomBar.tsx:251 +#: src/view/shell/bottom-bar/BottomBar.tsx:283 +#: src/view/shell/Drawer.tsx:557 +msgid "{0, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes. +#. placeholder {0}: view.readingTime +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:251 +msgid "{0, plural, one {#m} other {#m}}" +msgstr "" + +#. How many months have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:182 +msgid "{0, plural, one {#mo} other {#mo}}" +msgstr "" + +#. placeholder {0}: draft.meta.replyCount +#: src/view/com/composer/drafts/DraftItem.tsx:143 +msgid "{0, plural, one {1 more post} other {# more posts}}" +msgstr "" + +#. placeholder {0}: profile.followersCount || 0 +#: src/components/ProfileHoverCard/index.web.tsx:444 +#: src/screens/Profile/Header/Metrics.tsx:22 +msgid "{0, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: profile.followsCount || 0 +#: src/components/ProfileHoverCard/index.web.tsx:448 +#: src/screens/Profile/Header/Metrics.tsx:26 +msgid "{0, plural, one {following} other {following}}" +msgstr "" + +#. placeholder {0}: profile.postsCount || 0 +#: src/screens/Profile/Header/Metrics.tsx:58 +msgid "{0, plural, one {post} other {posts}}" +msgstr "" + +#. Number of users (always at least 25) who have joined Bluesky using a specific starter pack +#. placeholder {0}: starterPack.joinedAllTimeCount || 0 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +msgid "{0, plural, other {# people have}} joined Bluesky via this starter pack!" +msgstr "" + +#. placeholder {0}: starterPack.list.listItemCount - 4 +#: src/components/dialogs/StarterPackDialog.tsx:362 +msgid "{0, plural, other {+# more}}" +msgstr "" + +#. placeholder {0}: aaRegionConfig.minAccessAge +#: src/screens/Signup/StepInfo/index.tsx:314 +msgid "{0, plural, other {You must be # years of age or older to create an account in your region.}}" +msgstr "" + +#. placeholder {0}: i18n.date(d, {timeStyle: ts}) +#. placeholder {1}: i18n.date(d, {dateStyle: 'medium'}) +#: src/lib/strings/time.ts:15 +msgctxt "date and time formatted like this: [time] ยท [date]" +msgid "{0} ยท {1}" +msgstr "" + +#. placeholder {0}: desc.name +#: src/components/moderation/ContentHider.tsx:98 +msgid "{0} (Account)" +msgstr "" + +#. Pattern: {wordValue} in tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:495 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:484 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 +msgid "{0} added to chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +msgid "{0} and {1} added to chat" +msgstr "" + +#. placeholder {0}: profile.followsCount || 0 +#: src/screens/Profile/Header/Metrics.tsx:49 +msgid "{0} following" +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/dms/MessageItem.tsx:724 +msgid "{0} is blocking you" +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle) +#: src/features/liveNow/components/LiveStatusDialog.tsx:84 +msgid "{0} is live" +msgstr "" + +#. placeholder {0}: createFullHandle(draftValue, state.userDomain) +#: src/screens/Signup/StepHandle/index.tsx:211 +msgid "{0} is not available" +msgstr "" + +#. placeholder {0}: codeToLanguageName( expectedSourceLanguage, langPrefs.appLanguage, ) +#: src/lib/translation/index.tsx:314 +msgid "{0} is not supported by your device." +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:83 +msgid "{0} joined" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:84 +msgid "{0} joined the group" +msgstr "" + +#. placeholder {0}: formatCount(i18n, JOINED_THIS_WEEK) +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 +msgid "{0} joined this week" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:96 +msgid "{0} left" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:97 +msgid "{0} left the group" +msgstr "" + +#. placeholder {0}: formatTime(currentTime) +#. placeholder {1}: formatTime(duration) +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 +msgid "{0} of {1}" +msgstr "" + +#. Accessibility label describing how many characters the user has entered out of a 50-character limit in a text input field +#. placeholder {0}: state.name?.length +#: src/screens/StarterPack/Wizard/StepDetails.tsx:56 +msgid "{0} out of 50" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(memberSender) +#. placeholder {1}: reaction.value +#: src/components/dms/MessageItem.tsx:366 +msgid "{0} reacted {1}" +msgstr "" + +#. Accessibility hint for the bottom bar chat icon when the number of unread messages exceeds the cap, with the + symbol already included โ€“ for example, 99+ unread items +#. placeholder {0}: numUnreadMessages.numUnread +#: src/view/shell/bottom-bar/BottomBar.tsx:246 +msgid "{0} unread items" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:57 +msgid "{0} was added" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:58 +msgid "{0} was added to the group" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:70 +msgid "{0} was removed" +msgstr "" + +#. placeholder {0}: action.displayName +#: src/components/dms/getSystemMessageInfo.ts:71 +msgid "{0} was removed from the group" +msgstr "" + +#. List formatting: {0}, {1}, {2} +#. placeholder {0}: link(lang) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:113 +msgid "{0}, " +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 +msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" +msgstr "" + +#. placeholder {0}: feed.displayName +#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') +#. placeholder {2}: feed.likeCount || 0 +#: src/view/com/feeds/FeedSourceCard.tsx:189 +msgid "{0}, a feed by {1}, liked by {2}" +msgstr "" + +#. placeholder {0}: feed.displayName +#. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') +#: src/view/com/feeds/FeedSourceCard.tsx:192 +msgid "{0}, a list by {1}" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 +msgid "{0}'s avatar" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/screens/Messages/JoinRequest.tsx:139 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {0}: preview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: joinLinkPreview.memberLimit +#. placeholder {2}: preview.memberLimit +#: src/components/dms/ChatInvite/Card.tsx:62 +#: src/components/intents/GroupChatJoinDialog.tsx:341 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. Badge showing the current image position out of the total number of images in a gallery. +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:532 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" + +#. Displayed when the number of requests exceeds the cap โ€“ for example, 99+ requests +#. placeholder {0}: UNREAD_REQUEST_CAP - 1 +#: src/screens/Messages/components/InboxRequests.tsx:55 +msgid "{0}+" +msgstr "" + +#. Displayed when the number of requests exceeds the cap +#. placeholder {0}: UNREAD_REQUEST_CAP - 1 +#: src/screens/Messages/components/InboxRequests.tsx:30 +msgid "{0}+ requests" +msgstr "" + +#. How many days have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:171 +msgid "{0}d" +msgstr "" + +#. How many hours have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:161 +msgid "{0}h" +msgstr "" + +#. How many minutes have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:151 +msgid "{0}m" +msgstr "" + +#. How many seconds have passed, displayed in a narrow form +#. placeholder {0}: diff.value +#: src/lib/hooks/useTimeAgo.ts:141 +msgid "{0}s" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:38 +msgid "{count, plural, one {# chat update} other {# chat updates}}" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "" + +#: src/screens/Messages/components/InboxRequests.tsx:34 +msgid "{count, plural, one {# request} other {# requests}}" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:484 +msgid "{count, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:427 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + +#: src/components/dms/DateDivider.tsx:60 +msgid "{date} at {time}" +msgstr "" + +#: src/lib/generate-starterpack.ts:104 +#: src/screens/StarterPack/Wizard/index.tsx:189 +msgid "{displayName}'s Starter Pack" +msgstr "" + +#: src/screens/SignupQueued.tsx:219 +msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" +msgstr "" + +#: src/screens/SignupQueued.tsx:225 +msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:170 +msgid "{filterCount, plural, one {+# filter} other {+# filters}}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:361 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:395 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:304 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:500 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:473 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:328 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:524 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:419 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:448 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:373 +msgid "{firstAuthorLink} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:350 +msgid "{firstAuthorLink} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:407 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:316 +msgid "{firstAuthorLink} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:512 +msgid "{firstAuthorLink} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:485 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:340 +msgid "{firstAuthorLink} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:536 +msgid "{firstAuthorLink} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:431 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:460 +msgid "{firstAuthorLink} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:354 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:388 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:297 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:493 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:466 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:321 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:517 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:412 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:441 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:359 +msgid "{firstAuthorName} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:349 +msgid "{firstAuthorName} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:393 +msgid "{firstAuthorName} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:302 +msgid "{firstAuthorName} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:498 +msgid "{firstAuthorName} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:471 +msgid "{firstAuthorName} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:326 +msgid "{firstAuthorName} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:522 +msgid "{firstAuthorName} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:417 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:446 +msgid "{firstAuthorName} verified you" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:572 +msgid "{following} following" +msgstr "" + +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:1158 +msgid "{handle} canโ€™t be added" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:459 +msgid "{handle} can't be messaged" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:1119 +msgid "{handle} canโ€™t be messaged" +msgstr "" + +#: src/features/liveNow/utils.ts:40 +msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" +msgstr "" + +#: src/features/liveNow/utils.ts:44 +msgid "{hours, plural, one {# hour} other {# hours}}" +msgstr "" + +#. Displayed when the number of requests is greater than 20 +#: src/screens/Messages/components/RequestStatus.tsx:69 +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:219 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "" + +#. Number of users (always at least 50) who have joined Bluesky using a specific starter pack +#: src/components/StarterPack/StarterPackCard.tsx:102 +msgid "{joinedAllTimeCount, plural, other {# users have}} joined!" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:138 +msgid "{MAX_ALT_TEXT, plural, other {Alt text must be less than # characters.}}" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:380 +msgid "{MAX_DESCRIPTION, plural, other {Description is too long. The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:329 +msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 +msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" +msgstr "" + +#. The number of group chat members out of the total number of permitted users. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 +msgid "{memberCount}/{memberLimit}" +msgstr "" + +#: src/features/liveNow/utils.ts:35 +msgid "{minutes, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:65 +msgid "{name} reacted {0} to {target}" +msgstr "" + +#. When the last message in a group chat came from someone other than you. +#: src/components/dms/getMessageInfo.ts:89 +msgid "{name}: {message}" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:76 +msgid "{name}'s favorite feeds and people - join me!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:49 +msgid "{name}'s starter pack" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 +msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:457 +msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" +msgstr "" + +#: src/components/NewskieDialog.tsx:115 +msgid "{profileName} joined Bluesky {timeAgoString} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:112 +msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" +msgstr "" + +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 +msgid "{rank}." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 +msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:811 +msgid "{replierDisplayName} replied" +msgstr "" + +#: src/components/dms/MessageItem.tsx:810 +msgid "{replierDisplayName} replied to {originalName}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:808 +msgid "{replierDisplayName} replied to you" +msgstr "" + +#. The number of requests to join a group chat. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 +msgid "{requestCount, plural, one {# request} other {# requests}}" +msgstr "" + +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 +msgid "{requestCount}+ requests" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:62 +msgid "{userName} is a trusted verifier" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:69 +msgid "{userName} is verified" +msgstr "" + +#. Possessive, meaning "the verifications of {userName}" +#: src/components/verification/VerificationsDialog.tsx:71 +msgid "{userName}'s verifications" +msgstr "" + +#. Number of images beyond the first 3 +#. placeholder {0}: labels.length +#. placeholder {0}: totalNumber - 3 +#: src/components/moderation/PostAlerts.tsx:163 +#: src/view/com/composer/ComposerReplyTo.tsx:278 +msgid "+{0}" +msgstr "" + +#. Indicates the number of additional profiles are in the Starter Pack e.g. +12 +#: src/screens/Search/components/StarterPackCard.tsx:258 +msgid "+{computedTotal}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:569 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[2]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:516 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) +#. placeholder {1}: profile?.followersCount || 0 +#: src/view/shell/Drawer.tsx:155 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) +#. placeholder {1}: profile?.followsCount || 0 +#: src/view/shell/Drawer.tsx:166 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.quoteCount) +#. placeholder {1}: post.quoteCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 +msgid "<0>{0} {1, plural, one {quote} other {quotes}}" +msgstr "" + +#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.repostCount) +#. placeholder {1}: post.repostCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 +msgid "<0>{0} {1, plural, one {repost} other {reposts}}" +msgstr "" + +#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.bookmarkCount) +#. placeholder {1}: post.bookmarkCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 +msgid "<0>{0} {1, plural, one {save} other {saves}}" +msgstr "" + +#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(likeCount) +#: src/screens/PostThread/components/LikesStat.tsx:44 +msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[1]) +#: src/screens/StarterPack/Wizard/index.tsx:503 +#: src/screens/StarterPack/Wizard/index.tsx:557 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:550 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/WhoCanReply.tsx:353 +msgid "<0>{0} members" +msgstr "" + +#. Text identifying the person who added you to a group chat +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 +msgid "<0>{displayName}<1/><2> added you" +msgstr "" + +#: src/screens/Hashtag.tsx:230 +#: src/screens/Search/SearchResults.tsx:412 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:250 +msgid "<0>Tap here to update your location with GPS." +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#: src/screens/StarterPack/Wizard/index.tsx:494 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/lib/strings/handles.ts:38 +#: src/screens/Profile/Header/Handle.tsx:58 +msgid "โš Invalid Handle" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:202 +#: src/components/dialogs/MutedWords.tsx:551 +#: src/components/dialogs/MutedWords.tsx:554 +msgid "24 hours" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:436 +msgid "2FA Confirmation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:241 +#: src/components/dialogs/MutedWords.tsx:565 +#: src/components/dialogs/MutedWords.tsx:568 +msgid "30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:226 +#: src/components/dialogs/MutedWords.tsx:558 +#: src/components/dialogs/MutedWords.tsx:561 +msgid "7 days" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 +msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" +msgstr "" + +#. If last message does not contain text, fall back to "{user} reacted to {a message}" +#: src/components/dms/getReactionInfo.ts:53 +msgid "a message" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:102 +msgid "A network error occurred. Please check your internet connection" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:99 +#: src/components/contacts/screens/VerifyNumber.tsx:155 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 +msgid "A network error occurred. Please check your internet connection." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:143 +msgid "A new code has been sent" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 +msgid "A new form of verification" +msgstr "" + +#: src/components/dms/MessageItem.tsx:821 +msgid "A reply to a message sent before you joined" +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:147 +msgid "A screenshot of a post from @esb.lol, showing the user is currently livestreaming content on Twitch. The post reads: \"Hello! I'm live on Twitch, and I'm testing Bluesky's latest feature too!\"" +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:121 +msgid "A screenshot of a post with a new button next to the share button that allows you to save the post to your bookmarks. The post is from @jcsalterego.bsky.social and reads \"inventing a saturday that immediately follows monday\"." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:114 +msgid "A screenshot of a profile page with a bell icon next to the follow button, indicating the new activity notifications feature." +msgstr "" + +#. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:98 +msgid "A screenshot of the post composer with a new button next to the post button that says \"Drafts\", with a rainbow firework effect. Below, the text in the composer reads \"Hey, did you hear the news? Bluesky has drafts now!!!\"." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:483 +#: src/screens/Settings/AboutSettings.tsx:85 +#: src/screens/Settings/Settings.tsx:264 +#: src/screens/Settings/Settings.tsx:267 +msgid "About" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:100 +msgid "Abusive or discriminatory behavior" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/RequestButtons.tsx:287 +msgid "Accept" +msgstr "" + +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 +msgid "Accept chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + +#. Accept a chat request +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 +msgid "Accept Request" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:460 +msgid "Accept this language suggestion" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:119 +msgid "Access requested! The group owner will review your request." +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:45 +#: src/screens/Settings/Settings.tsx:234 +#: src/screens/Settings/Settings.tsx:237 +msgid "Accessibility" +msgstr "" + +#: src/Navigation.tsx:390 +msgid "Accessibility Settings" +msgstr "" + +#: src/Navigation.tsx:406 +#: src/screens/Settings/AccountSettings.tsx:54 +#: src/screens/Settings/Settings.tsx:174 +#: src/screens/Settings/Settings.tsx:177 +msgid "Account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: src/view/com/profile/ProfileMenu.tsx:182 +msgctxt "toast" +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:198 +msgctxt "toast" +msgid "Account followed" +msgstr "" + +#: src/lib/strings/errors.ts:33 +msgid "Account has been suspended" +msgstr "" + +#: src/lib/strings/errors.ts:36 +msgid "Account is deactivated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 +#: src/view/com/profile/ProfileMenu.tsx:152 +msgctxt "toast" +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:123 +#: src/lib/moderation/useModerationCauseDescription.ts:99 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:109 +msgid "Account Muted by List" +msgstr "" + +#: src/screens/Settings/Settings.tsx:646 +msgid "Account options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:681 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:87 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:169 +msgctxt "toast" +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:213 +msgctxt "toast" +msgid "Account unfollowed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:139 +msgctxt "toast" +msgid "Account unmuted" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:100 +msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:214 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 +msgid "Activity from others" +msgstr "" + +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 +#: src/components/dialogs/MutedWords.tsx:337 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:388 +#: src/components/dms/AddMembersFlow.tsx:410 +msgid "Add" +msgstr "" + +#. placeholder {0}: 8 - items.length +#: src/screens/StarterPack/Wizard/index.tsx:605 +msgid "Add {0} more to continue" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:63 +msgid "Add {displayName} to starter pack" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:103 +#: src/view/com/composer/labels/LabelsBtn.tsx:108 +msgid "Add a content warning" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:114 +msgid "Add a temporary live status to your profile. When someone clicks on your avatar, theyโ€™ll see information about your live event." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:64 +#: src/screens/ProfileList/AboutSection.tsx:82 +msgid "Add a user to this list" +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:56 +#: src/screens/Deactivated.tsx:184 +msgid "Add account" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:76 +#: src/view/com/composer/GifAltText.tsx:150 +#: src/view/com/composer/GifAltText.tsx:217 +#: src/view/com/composer/photos/Gallery.tsx:201 +#: src/view/com/composer/photos/Gallery.tsx:236 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:95 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:103 +msgid "Add alt text" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:115 +msgid "Add alt text (optional)" +msgstr "" + +#: src/screens/Settings/Settings.tsx:584 +#: src/screens/Settings/Settings.tsx:587 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 +msgid "Add another account" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1607 +msgid "Add another post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2273 +msgid "Add another post to thread" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 +msgid "Add another search filter" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 +msgid "Add app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:75 +#: src/screens/Settings/AppPasswords.tsx:83 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:111 +msgid "Add App Password" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:170 +msgid "Add automation label to account" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.web.tsx:31 +msgid "Add emoji reaction" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 +msgid "Add filter" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:492 +msgid "Add group chat members" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:223 +msgid "Add image" +msgstr "" + +#. Accessibility label for button in composer to add images, a video, or a GIF to a post +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Add media to post" +msgstr "" + +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:72 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:106 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:125 +msgid "Add members" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 +msgid "Add more details (optional)" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:218 +#: src/screens/Settings/LanguageSettings.tsx:223 +msgid "Add more languagesโ€ฆ" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:330 +msgid "Add mute word with chosen settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:120 +msgid "Add muted words and tags" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172 +#: src/screens/ProfileList/AboutSection.tsx:72 +#: src/screens/ProfileList/AboutSection.tsx:90 +msgid "Add people" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:81 +msgid "Add people to list" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:56 +msgid "Add Reaction" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:100 +msgid "Add recommended feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:538 +msgid "Add some feeds to your starter pack!" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:40 +msgid "Add the default feed of only people you follow" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:419 +msgid "Add the following DNS record to your domain:" +msgstr "" + +#: src/components/FeedCard.tsx:338 +msgid "Add this feed to your feeds" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:350 +#: src/view/com/profile/ProfileMenu.tsx:353 +msgid "Add to lists" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:121 +msgid "Add to saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:184 +#: src/view/com/profile/ProfileMenu.tsx:341 +#: src/view/com/profile/ProfileMenu.tsx:344 +msgid "Add to starter packs" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:178 +msgid "Add user to list" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:297 +msgid "Add your birthdate" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) +#: src/screens/Messages/ConversationSettings/Member.tsx:109 +msgid "Added by {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:114 +msgid "Added by invite link" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:125 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:221 +msgid "Added to list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:274 +msgid "Added to starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:225 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:230 +msgid "Adding members to list..." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:116 +msgid "Additional details (limit 1000 characters)" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:546 +msgid "Additional details (limit 300 characters)" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 +msgid "Admin" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:155 +msgid "Adult" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:66 +msgid "Adult content" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:129 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:149 +#: src/view/com/composer/labels/LabelsBtn.tsx:123 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:412 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:252 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:134 +#: src/view/com/composer/labels/LabelsBtn.tsx:192 +msgid "Adult Content labels" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:76 +msgid "Adult sexual abuse content" +msgstr "" + +#: src/screens/Moderation/index.tsx:457 +msgid "Advanced" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:72 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:82 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:185 +msgid "Age assurance only takes a few minutes" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:449 +msgid "Age assurance only takes a few minutes." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 +msgid "alice@example.com" +msgstr "" + +#. the default tab in the interests tab bar +#: src/components/dms/ReactionsDialog.tsx:292 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 +#: src/view/screens/Notifications.tsx:86 +msgid "All" +msgstr "" + +#. Tab label showing the total count of reactions on a chat message. +#. placeholder {0}: tab.count +#: src/components/dms/ReactionsDialog.tsx:389 +msgid "All {0}" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:400 +msgid "All accounts have been followed!" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:144 +msgid "All friends followed!" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:255 +msgid "All languages" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:189 +msgid "All languages will be shown in your feeds." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:245 +msgid "All of these words" +msgstr "" + +#: src/view/screens/Feeds.tsx:700 +msgid "All the feeds you've saved, right in one place." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:146 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:153 +msgid "Allow access to your direct messages" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:451 +msgid "Allow anyone to reply" +msgstr "" + +#: src/screens/Messages/Settings.tsx:156 +#: src/screens/Messages/Settings.tsx:171 +msgid "Allow direct messages from" +msgstr "" + +#: src/screens/Messages/Settings.tsx:202 +#: src/screens/Messages/Settings.tsx:224 +msgid "Allow group chat invites from" +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:128 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:134 +msgid "Allow location access" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:53 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 +msgid "Allow others to be notified of your posts" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:504 +msgid "Allow people you follow to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:518 +msgid "Allow people you mention to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:636 +msgid "Allow quote posts" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:598 +msgid "Allow users in {0} to reply" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:490 +msgid "Allow your followers to reply" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:201 +msgid "Allows access to direct messages" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:174 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:237 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:243 +msgid "Already have a code?" +msgstr "" + +#: src/components/WelcomeModal.tsx:187 +msgid "Already have an account?" +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Login/ChooseAccountForm.tsx:44 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:76 +#: src/components/images/AutoSizedImage.tsx:205 +#: src/components/images/Gallery/index.tsx:596 +#: src/components/images/ImageLayoutGridItem.tsx:135 +#: src/view/com/composer/GifAltText.tsx:100 +#: src/view/com/composer/photos/Gallery.tsx:211 +msgid "ALT" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:55 +#: src/view/com/composer/GifAltText.tsx:160 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:128 +#: src/view/com/composer/videos/SubtitleDialog.tsx:41 +#: src/view/com/composer/videos/SubtitleDialog.tsx:59 +#: src/view/com/composer/videos/SubtitleDialog.tsx:110 +#: src/view/com/composer/videos/SubtitleDialog.tsx:114 +msgid "Alt text" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:83 +msgid "Alt Text" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:105 +#: src/view/com/composer/photos/Gallery.tsx:130 +msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." +msgstr "" + +#. placeholder {0}: i18n.number(MAX_ALT_TEXT) +#: src/view/com/composer/GifAltText.tsx:185 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:149 +msgid "Alt text will be truncated. {MAX_ALT_TEXT, plural, other {Limit: {0} characters.}}" +msgstr "" + +#. placeholder {0}: currentAccount?.email || '(no email)' +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:94 +msgid "An email has been sent to {0}. It includes a confirmation code which you can enter below." +msgstr "" + +#. Accessibility label for the dialog shown when the GIF picker hits an unexpected runtime error and falls back to its error boundary. +#: src/components/dialogs/LanguageSelectDialog.tsx:344 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:15 +msgid "An error has occurred" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:433 +msgid "An error occurred while compressing the video." +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:223 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:69 +msgid "An error occurred while fetching suggested accounts." +msgstr "" + +#: src/state/queries/explore-feed-previews.tsx:183 +msgid "An error occurred while fetching the feed." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +msgid "An error occurred while generating your starter pack. Want to try again?" +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/ViewMatches.tsx:243 +msgid "An error occurred while hiding suggestion. {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 +msgid "An error occurred while loading the video. Please try again." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:581 +msgid "An error occurred while loading your lists :/" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:104 +msgid "An error occurred while saving the QR code!" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:54 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:82 +#: src/screens/StarterPack/StarterPackScreen.tsx:359 +#: src/screens/StarterPack/StarterPackScreen.tsx:386 +msgid "An error occurred while trying to follow all" +msgstr "" + +#: src/view/com/composer/state/video.ts:485 +msgid "An error occurred while uploading the video. {message}" +msgstr "" + +#: src/view/com/composer/state/video.ts:477 +msgid "An error occurred while uploading the video. Please check your internet connection and try again." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/PhoneInput.tsx:120 +#: src/components/contacts/screens/VerifyNumber.tsx:131 +#: src/components/contacts/screens/VerifyNumber.tsx:184 +msgid "An error occurred. {0}" +msgstr "" + +#: src/components/contacts/components/HeroImage.tsx:28 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:79 +msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 +msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:111 +msgid "An illustration of the Bluesky app with a paper airplane flying out of it, representing inviting friends" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:86 +#: src/components/verification/VerifierDialog.tsx:88 +msgid "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:198 +msgid "An invite link lets people join this group chat without being added directly. You control who can join the chat. You can disable the link at any time." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 +msgid "An issue not included in these options" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 +msgid "An issue occurred starting the chat, please try again." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" + +#: src/components/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:52 +#: src/components/ProfileCard.tsx:510 +#: src/components/ProfileCard.tsx:532 +#: src/view/com/notifications/NotificationFeedItem.tsx:798 +#: src/view/com/notifications/NotificationFeedItem.tsx:820 +msgid "An issue occurred, please try again." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:121 +msgid "An mockup of a iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:154 +#: src/lib/moderation/useModerationCauseDescription.ts:145 +msgid "an unknown labeler" +msgstr "" + +#: src/components/WhoCanReply.tsx:374 +msgid "and" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:88 +msgid "Animal sexual abuse" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:130 +msgid "Animal welfare" +msgstr "" + +#: src/lib/interests.ts:52 +msgid "Animals" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/Gif.tsx:85 +msgid "Animated GIF" +msgstr "" + +#: src/components/PolicyUpdateOverlay/Badge.tsx:33 +msgid "Announcement" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:39 +msgid "Announcing verification on Bluesky" +msgstr "" + +#. Placeholder text for a date picker +#: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 +msgid "Any date" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 +msgid "Anyone" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:135 +msgid "Anyone can interact" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:356 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +msgid "Anyone can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +msgid "Anyone can request to join" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:112 +#: src/screens/Settings/ActivityPrivacySettings.tsx:117 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 +msgid "Anyone who follows me" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:478 +msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." +msgstr "" + +#: src/Navigation.tsx:491 +#: src/screens/Settings/AppIconSettings/index.tsx:65 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 +#: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 +msgid "App Icon" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:107 +#: src/screens/Settings/LanguageSettings.tsx:123 +msgid "App language" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 +msgid "App Password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:147 +msgctxt "toast" +msgid "App password deleted" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:84 +msgid "App password name must be unique" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 +msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 +msgid "App passwords" +msgstr "" + +#: src/Navigation.tsx:358 +#: src/screens/Settings/AppPasswords.tsx:51 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:169 +#: src/components/moderation/LabelsOnMeDialog.tsx:172 +#: src/components/moderation/ModerationDetailsDialog.tsx:223 +msgid "Appeal" +msgstr "" + +#. placeholder {0}: strings.name +#: src/components/moderation/AppealForm.tsx:93 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:159 +msgid "Appeal label" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 +msgid "Appeal livestream suspension" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:83 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 +#: src/screens/Messages/components/ChatDisabled.tsx:125 +msgctxt "toast" +msgid "Appeal submitted" +msgstr "" + +#: src/screens/Takendown.tsx:114 +#: src/screens/Takendown.tsx:140 +msgid "Appeal suspension" +msgstr "" + +#: src/screens/Takendown.tsx:117 +msgid "Appeal Suspension" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:76 +#: src/screens/Messages/components/ChatDisabled.tsx:79 +#: src/screens/Messages/components/ChatDisabled.tsx:133 +#: src/screens/Messages/components/ChatDisabled.tsx:135 +msgid "Appeal this decision" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:219 +msgid "Appeal this label" +msgstr "" + +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 +#: src/screens/Settings/Settings.tsx:226 +#: src/screens/Settings/Settings.tsx:229 +msgid "Appearance" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:52 +#: src/screens/Home/NoFeedsPinned.tsx:94 +msgid "Apply default recommended feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:515 +#: src/screens/Settings/Settings.tsx:517 +msgid "Apply Pull Request" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt, 'medium') +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 +msgid "Archived from {0}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 +msgid "Archived post" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:327 +msgid "Are you really, really sure?" +msgstr "" + +#. placeholder {0}: link(languages[0]) +#. placeholder {1}: link(languages[1]) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:100 +msgid "Are you searching for posts in {0} or {1}?" +msgstr "" + +#. placeholder {0}: link(languages[0]) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:95 +msgid "Are you searching for posts in {0}?" +msgstr "" + +#. List formatting: {0}, {1}, or {2} +#. placeholder {0}: head.map(lang => ( {link(lang)},{' '} )) +#. placeholder {1}: link(last) +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:110 +msgid "Are you searching for posts in {0}or {1}?" +msgstr "" + +#. placeholder {0}: appPassword.name +#: src/screens/Settings/AppPasswords.tsx:210 +msgid "Are you sure you want to delete the app password \"{0}\"?" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:183 +msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:684 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:99 +#: src/screens/Profile/Header/EditProfileDialog.tsx:77 +msgid "Are you sure you want to discard your changes?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:128 +#: src/screens/Messages/ConversationSettings/prompts.tsx:152 +msgid "Are you sure you want to leave {groupName}?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:57 +msgid "Are you sure you want to leave this conversation?" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:56 +msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants." +msgstr "" + +#: src/components/FeedCard.tsx:374 +msgid "Are you sure you want to remove this from your feeds?" +msgstr "" + +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:116 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1743 +msgid "Are you sure you'd like to discard this post?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:452 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:349 +msgid "Are you writing in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/lib/interests.ts:53 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:167 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 +msgid "Assign topic for algo" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:209 +msgid "At least 8 characters" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:338 +msgid "AT Protocol FAQ" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 +msgctxt "Name of app icon variant" +msgid "Aurora" +msgstr "" + +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + +#: src/components/BotAccountAlert.tsx:32 +#: src/components/BotBadge.tsx:65 +msgid "Automated account" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:165 +#: src/screens/Login/components/HostingProviderDialog.tsx:167 +msgid "Automatic" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:155 +#: src/screens/Settings/AccountSettings.tsx:158 +msgid "Automation label" +msgstr "" + +#: src/Navigation.tsx:422 +#: src/screens/Settings/AutomationLabelSettings.tsx:103 +msgid "Automation Label" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:118 +#: src/screens/Settings/ContentAndMediaSettings.tsx:124 +msgid "Autoplay videos and GIFs" +msgstr "" + +#. Shown next to an available username suggestion in the account creation flow +#. Shown next to an available username suggestion in the account creation flow +#: src/screens/Signup/StepHandle/HandleSuggestions/index.native.tsx:69 +#: src/screens/Signup/StepHandle/HandleSuggestions/index.tsx:88 +msgid "Available" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:359 +#: src/components/dms/AddMembersFlow.tsx:527 +#: src/components/dms/AddMembersFlow.tsx:533 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 +#: src/components/moderation/AppealForm.tsx:145 +#: src/components/moderation/AppealForm.tsx:146 +#: src/screens/Login/ChooseAccountForm.tsx:96 +#: src/screens/Login/ChooseAccountForm.tsx:100 +#: src/screens/Login/ForgotPasswordForm.tsx:119 +#: src/screens/Login/ForgotPasswordForm.tsx:124 +#: src/screens/Login/LoginForm.tsx:511 +#: src/screens/Login/LoginForm.tsx:516 +#: src/screens/Login/SetNewPasswordForm.tsx:157 +#: src/screens/Login/SetNewPasswordForm.tsx:163 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:276 +#: src/screens/Messages/components/InviteLinkDialog.tsx:304 +#: src/screens/Messages/Inbox.tsx:233 +#: src/screens/Profile/Header/Shell.tsx:174 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:273 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:282 +#: src/screens/Signup/BackNextButtons.tsx:42 +#: src/screens/StarterPack/Wizard/index.tsx:315 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:87 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:93 +msgid "Back" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:232 +msgid "Back to Chats" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:216 +msgid "Banned activities or security violations" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:227 +msgid "Banned user returning" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:184 +msgid "Based on your device's location, we think you're in <0>{geolocationString}." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236 +msgid "Based on your device's location, we think you're in <0>{region}." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:194 +msgid "Based on your network, we think you're in <0>{geolocationString}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 +msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/view/screens/Lists.tsx:35 +#: src/view/screens/ModerationModlists.tsx:35 +msgid "Before creating a list, you must first verify your email." +msgstr "" + +#: src/lib/hooks/useOpenComposer.tsx:14 +msgid "Before creating a post or replying, you must first verify your email." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:72 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 +msgid "Before creating a starter pack, you must first verify your email." +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:260 +msgid "Before you can accept this chat request, you must first verify your email." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:56 +msgid "Before you can get notifications for {name}'s posts, you must first verify your email." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:155 +#: src/components/dms/MessageProfileButton.tsx:60 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 +msgid "Before you can message another user, you must first verify your email." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:319 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:313 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:99 +msgid "Beta Feature" +msgstr "" + +#: src/Navigation.tsx:414 +#: src/screens/Settings/BetaFeaturesSettings.tsx:108 +#: src/screens/Settings/Settings.tsx:248 +#: src/screens/Settings/Settings.tsx:251 +msgid "Beta features" +msgstr "" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:144 +msgctxt "web" +msgid "Beta features may be unstable. Some changes may require reloading the app." +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:149 +msgctxt "native" +msgid "Beta features may be unstable. Some changes may require restarting the app." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:163 +msgid "Birthdate" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:145 +msgid "Birthday" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 +msgid "Block" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 +msgid "Block {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/screens/Messages/components/RequestButtons.tsx:154 +#: src/screens/Messages/components/RequestButtons.tsx:156 +#: src/view/com/profile/ProfileMenu.tsx:464 +#: src/view/com/profile/ProfileMenu.tsx:471 +msgid "Block account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:148 +msgid "Block account?" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:91 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:94 +msgid "Block accounts" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:148 +msgid "Block and delete" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:167 +msgctxt "button" +msgid "Block and leave" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:119 +msgid "Block list" +msgstr "" + +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 +msgid "Block or report" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:114 +msgid "Block these accounts?" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:221 +#: src/components/dms/AfterReportConversationDialog.tsx:224 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 +msgid "Block user" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:182 +msgctxt "button" +msgid "Block user" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:185 +msgid "Block user and/or delete this conversation" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:217 +msgid "Block user and/or leave this conversation" +msgstr "" + +#: src/components/Post/Embed/index.tsx:212 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:329 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:194 +#: src/view/screens/ModerationBlockedAccounts.tsx:95 +msgid "Blocked Accounts" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:163 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:181 +msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:204 +msgid "Blocking does not prevent this labeler from placing labels on your account." +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:116 +msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:157 +msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:176 +msgid "Blog" +msgstr "" + +#. Advanced search: Examples of hashtags +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:17 +msgid "bloomscrolling booksky" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:144 +#: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +msgid "Bluesky" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 +msgid "Bluesky cannot confirm the authenticity of the claimed date." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:165 +msgctxt "Name of app icon variant" +msgid "Bluesky Classicโ„ข" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:235 +msgid "Bluesky helps friends find each other by creating an encoded digital fingerprint, called a \"hash\", and then looking for matching hashes." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:214 +#: src/screens/Login/components/HostingProviderDialog.tsx:236 +msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:162 +msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." +msgstr "" + +#: src/components/ProgressGuide/List.tsx:115 +msgid "Bluesky is better with friends!" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:43 +msgid "Bluesky is more fun with friends" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 +msgid "Bluesky is more fun with friends! Import your contacts to see whoโ€™s already here." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:315 +msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "" + +#: src/screens/Takendown.tsx:213 +msgid "Bluesky Social Terms of Service" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:570 +msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:100 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 +msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:97 +msgid "Bluesky+" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:100 +msgid "Bluesky+ icons" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:54 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/lib/interests.ts:54 +msgid "Books" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:215 +msgid "Breaking site rules" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:167 +#: src/view/com/feeds/ProfileFeedgens.tsx:168 +msgid "Browse custom feeds" +msgstr "" + +#: src/components/FeedInterstitials.tsx:540 +msgid "Browse more accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:670 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:679 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:104 +#: src/screens/Home/NoFeedsPinned.tsx:110 +msgid "Browse other feeds" +msgstr "" + +#: src/components/TrendingTopics.tsx:78 +msgid "Browse posts about {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:86 +msgid "Browse posts tagged with {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:95 +msgid "Browse starter pack {displayName}" +msgstr "" + +#. placeholder {0}: trend.displayName +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 +msgid "Browse topic {0}" +msgstr "" + +#: src/components/TrendingTopics.tsx:132 +msgid "Browse topic {displayName}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:171 +msgid "Business" +msgstr "" + +#: src/screens/Bookmarks.tsx:295 +msgid "Button to go back to the home timeline" +msgstr "" + +#. The owner (creator) of a group chat. +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile( joinLinkPreview.owner, moderationOpts, ).ui('displayName'), ) +#. placeholder {0}: sanitizeHandle(handle, '@') +#. placeholder {0}: sanitizeHandle(item.feed.creator.handle, '@') +#: src/components/LabelingServiceCard/index.tsx:62 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:177 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 +msgid "By {0}" +msgstr "" + +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') +#: src/components/intents/GroupChatJoinDialog.tsx:379 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 +msgid "By <0>{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:84 +msgid "By <0>{ownerDisplayName}" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:297 +msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:76 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:43 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:63 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:111 +msgid "By you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 +msgid "Camera" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 +#: src/components/contacts/screens/GetContacts.tsx:292 +#: src/components/contacts/screens/GetContacts.tsx:297 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:141 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:146 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:122 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:128 +#: src/components/dialogs/InAppBrowserConsent.tsx:99 +#: src/components/dialogs/InAppBrowserConsent.tsx:105 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:192 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:200 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:291 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:299 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 +#: src/components/Menu/index.tsx:373 +#: src/components/moderation/BlockDialog.tsx:204 +#: src/components/PostControls/RepostButton.tsx:210 +#: src/components/Prompt.tsx:152 +#: src/components/Prompt.tsx:154 +#: src/components/SendErrorReportDialog.tsx:98 +#: src/components/SendErrorReportDialog.tsx:102 +#: src/features/liveNow/components/GoLiveDialog.tsx:254 +#: src/features/liveNow/components/GoLiveDialog.tsx:260 +#: src/lib/media/picker.tsx:38 +#: src/screens/Deactivated.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:108 +#: src/screens/Messages/ConversationSettings/prompts.tsx:132 +#: src/screens/Messages/ConversationSettings/prompts.tsx:156 +#: src/screens/Messages/ConversationSettings/prompts.tsx:180 +#: src/screens/Profile/Header/EditProfileDialog.tsx:215 +#: src/screens/Profile/Header/EditProfileDialog.tsx:223 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:202 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:209 +#: src/screens/Settings/AppIconSettings/index.tsx:42 +#: src/screens/Settings/AppIconSettings/index.tsx:228 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:143 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:152 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:80 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:87 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:248 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:254 +#: src/screens/Settings/Settings.tsx:309 +#: src/screens/Takendown.tsx:102 +#: src/screens/Takendown.tsx:105 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:44 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:53 +#: src/view/shell/desktop/LeftNav.tsx:228 +msgid "Cancel" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:205 +msgid "Cancel quote post" +msgstr "" + +#: src/screens/Deactivated.tsx:144 +msgid "Cancel reactivation and sign out" +msgstr "" + +#: src/screens/Messages/components/MessageInputReply.tsx:83 +msgid "Cancel reply" +msgstr "" + +#: src/screens/Search/Shell.tsx:592 +msgid "Cancel search" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 +msgid "Cancels signing in so you can check your username" +msgstr "" + +#: src/components/PostControls/index.tsx:108 +#: src/components/PostControls/index.tsx:138 +#: src/components/PostControls/index.tsx:166 +#: src/state/shell/composer/index.tsx:105 +msgid "Cannot interact with a blocked user" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:156 +msgid "Captions (.vtt)" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:41 +#: src/view/com/composer/videos/SubtitleDialog.tsx:57 +msgid "Captions & alt text" +msgstr "" + +#: src/components/images/Gallery/index.tsx:273 +msgid "carousel" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Cashtag {tag}" +msgstr "" + +#. Advanced search: Example of an โ€œall of these wordsโ€ search. Paired with โ€œcows pigsโ€. +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:250 +msgid "cats dogs" +msgstr "" + +#: src/components/Post/Translated/index.tsx:439 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Change" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:37 +msgid "Change app icon" +msgstr "" + +#. placeholder {0}: icon.name +#. placeholder {0}: next.name +#: src/screens/Settings/AppIconSettings/index.tsx:36 +#: src/screens/Settings/AppIconSettings/index.tsx:224 +msgid "Change app icon to \"{0}\"" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:41 +msgid "Change app language" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:96 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:100 +msgid "Change Handle" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:644 +msgid "Change hosting provider" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:445 +msgid "Change moderation service" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:262 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:268 +msgid "Change password" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:165 +msgid "Change password dialog" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:312 +msgid "Change report category" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:390 +msgid "Change report reason" +msgstr "" + +#: src/components/Post/Translated/index.tsx:424 +msgid "Change the source language" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:58 +msgid "Change your password" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:219 +msgid "Changes app icon" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:50 +#: src/components/forms/HostingProvider.tsx:70 +msgid "Changes hosting provider" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:179 +msgid "Changes saved" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:164 +msgid "Changes to the starter pack will not be reflected in the list after creation. The list will be an independent copy." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:133 +#: src/Navigation.tsx:509 +#: src/view/shell/bottom-bar/BottomBar.tsx:242 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 +msgid "Chat" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 +msgctxt "toast" +msgid "Chat deleted" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:108 +msgid "Chat ended" +msgstr "" + +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:269 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:104 +msgid "Chat locked" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:146 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:137 +msgid "Chat messages - sound" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:206 +msgctxt "toast" +msgid "Chat muted" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 +msgid "Chat not found." +msgstr "" + +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 +msgid "Chat options" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:290 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:529 +msgid "Chat request inbox" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:62 +#: src/screens/Messages/Inbox.tsx:97 +msgid "Chat requests" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 +#: src/screens/Messages/Settings.tsx:48 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:147 +msgid "Chat Settings" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:115 +msgid "Chat title changed" +msgstr "" + +#. placeholder {0}: data.newName +#: src/components/dms/getSystemMessageInfo.ts:114 +msgid "Chat title changed to {0}" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:106 +msgid "Chat unlocked" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:208 +msgctxt "toast" +msgid "Chat unmuted" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 +msgid "Chats" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:233 +msgid "Check <0>{currentEmail} for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:182 +msgid "Check back later!" +msgstr "" + +#: src/screens/SignupQueued.tsx:79 +#: src/screens/SignupQueued.tsx:83 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:463 +msgid "Check your email for a sign in code and enter it here." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:161 +msgid "Child safety" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:165 +msgid "Child Sexual Abuse Material (CSAM)" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:401 +msgid "Choose domain verification method" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:205 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 +msgid "Choose for me" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:199 +msgid "Choose languages" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:201 +msgid "Choose People" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:75 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:136 +msgid "Choose post languages" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 +msgid "Choose who can join this group chat and how." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:57 +msgid "Choose who to invite" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:134 +#: src/screens/Login/components/HostingProviderDialog.tsx:155 +msgid "Choose your hosting provider" +msgstr "" + +#: src/view/screens/Feeds.tsx:726 +msgid "Choose your own timeline! Feeds built by the community help you find content you love." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:271 +msgid "Choose your password" +msgstr "" + +#: src/screens/Signup/index.tsx:201 +msgid "Choose your username" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.native.tsx:73 +#: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.tsx:110 +#: src/screens/Search/components/AdvancedSearchDialog/ClearableInput.tsx:59 +msgid "Clear" +msgstr "" + +#: src/screens/Settings/Settings.tsx:507 +msgid "Clear all storage data" +msgstr "" + +#: src/screens/Settings/Settings.tsx:509 +msgid "Clear all storage data (restart after this)" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:70 +msgid "Clear date" +msgstr "" + +#. Accessibility label for the X button inside the search input that clears the typed query and returns to the trending feed. +#: src/features/gifPicker/components/GifPickerHeader.tsx:67 +msgid "Clear GIF search" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:134 +#: src/screens/Settings/AboutSettings.tsx:138 +msgid "Clear image cache" +msgstr "" + +#: src/components/forms/SearchInput.tsx:87 +msgid "Clear search query" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:88 +msgid "Click for information" +msgstr "" + +#: src/view/screens/Support.tsx:35 +msgid "click here" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 +msgid "Click here to add people to this group chat" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +msgid "Click here to create or manage an invite link for this group chat" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:327 +msgid "Click here to delete your account" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:318 +msgid "Click here to log out" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:263 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:272 +msgid "Click here to resend the email" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 +msgid "Click here to restart the verification process." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:119 +#: src/ageAssurance/components/NoAccessScreen.tsx:294 +msgid "Click here to update your birthdate" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 +msgid "Click here to update your email" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 +msgid "Click here to view the invite link for this group chat" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:56 +msgid "Click to open tag menu for {0}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:643 +msgid "Click to retry failed message" +msgstr "" + +#. Visible label of the button that dismisses the GIF picker error dialog. +#: src/ageAssurance/components/RedirectOverlay.tsx:265 +#: src/ageAssurance/components/RedirectOverlay.tsx:271 +#: src/ageAssurance/components/RedirectOverlay.tsx:321 +#: src/ageAssurance/components/RedirectOverlay.tsx:327 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:174 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:180 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 +#: src/components/AltBadgeWithDialog.tsx:88 +#: src/components/dialogs/LanguageSelectDialog.tsx:359 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:147 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:160 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:169 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:173 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:178 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:187 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:192 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200 +#: src/components/dialogs/SearchablePeopleList.tsx:340 +#: src/components/dialogs/StarterPackDialog.tsx:187 +#: src/components/dms/AddMembersFlow.tsx:384 +#: src/components/dms/AfterReportConversationDialog.tsx:91 +#: src/components/dms/AfterReportConversationDialog.tsx:96 +#: src/components/dms/AfterReportConversationDialog.tsx:247 +#: src/components/dms/AfterReportConversationDialog.tsx:252 +#: src/components/dms/AfterReportDialog.tsx:94 +#: src/components/dms/AfterReportDialog.tsx:99 +#: src/components/dms/AfterReportDialog.tsx:212 +#: src/components/dms/AfterReportDialog.tsx:217 +#: src/components/dms/EmojiPopup.android.tsx:59 +#: src/components/dms/InitiateChatFlow.tsx:670 +#: src/components/intents/GroupChatJoinDialog.tsx:246 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +#: src/components/NewskieDialog.tsx:169 +#: src/components/NewskieDialog.tsx:175 +#: src/components/ProgressGuide/FollowDialog.tsx:462 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:122 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:128 +#: src/components/verification/VerificationsDialog.tsx:146 +#: src/components/verification/VerifierDialog.tsx:147 +#: src/components/WhoCanReply.tsx:236 +#: src/components/WhoCanReply.tsx:243 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45 +#: src/features/liveNow/components/EditLiveDialog.tsx:210 +#: src/features/liveNow/components/EditLiveDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:524 +#: src/screens/Messages/components/InviteLinkDialog.tsx:529 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:288 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:293 +#: src/view/com/feeds/MissingFeed.tsx:211 +#: src/view/com/feeds/MissingFeed.tsx:218 +msgid "Close" +msgstr "" + +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:30 +msgid "Close alert" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + +#. Accessibility label for the button that dismisses the GIF picker error dialog. +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:223 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:229 +#: src/components/dialogs/LanguageSelectDialog.tsx:221 +#: src/components/dialogs/LanguageSelectDialog.tsx:322 +#: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:102 +#: src/components/moderation/BlockDialog.tsx:201 +#: src/components/verification/VerificationsDialog.tsx:138 +#: src/components/verification/VerifierDialog.tsx:140 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 +msgid "Close dialog" +msgstr "" + +#: src/view/shell/index.web.tsx:127 +msgid "Close drawer menu" +msgstr "" + +#: src/components/Lightbox/chrome/Header.tsx:47 +msgid "Close image" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:73 +#: src/components/Lightbox/Lightbox.web.tsx:334 +msgid "Close image viewer" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:53 +#: src/components/ContextMenu/Backdrop.ios.tsx:79 +#: src/components/ContextMenu/Backdrop.tsx:45 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 +msgid "Close menu" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:239 +#: src/components/intents/GroupChatJoinDialog.tsx:240 +#: src/components/intents/GroupChatJoinDialog.tsx:276 +#: src/components/intents/GroupChatJoinDialog.tsx:277 +#: src/components/Menu/index.tsx:367 +msgid "Close this dialog" +msgstr "" + +#: src/components/WelcomeModal.tsx:212 +msgid "Close welcome modal" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:31 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1829 +msgid "Closes post composer and discards post draft" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:611 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:949 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:68 +msgid "Color" +msgstr "" + +#: src/components/dialogs/Embed.tsx:150 +#: src/screens/Settings/AppearanceSettings.tsx:79 +msgid "Color mode" +msgstr "" + +#: src/components/dialogs/Embed.tsx:147 +msgid "Color theme" +msgstr "" + +#: src/lib/interests.ts:55 +msgid "Comedy" +msgstr "" + +#: src/lib/interests.ts:56 +msgid "Comics" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 +#: src/Navigation.tsx:348 +#: src/view/screens/CommunityGuidelines.tsx:28 +msgid "Community Guidelines" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:329 +msgid "Complete onboarding and start using your account" +msgstr "" + +#: src/screens/Signup/index.tsx:203 +msgid "Complete the challenge" +msgstr "" + +#: src/lib/hotkeys/index.tsx:66 +#: src/view/com/feeds/ComposerPrompt.tsx:147 +#: src/view/shell/desktop/LeftNav.tsx:587 +msgid "Compose new post" +msgstr "" + +#. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 +#: src/view/com/composer/Composer.tsx:1705 +msgid "Compose posts up to {0, plural, other {# characters}} in length" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:63 +msgid "Compose reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2677 +msgid "Compressing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2679 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:88 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:254 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/Prompt.tsx:211 +#: src/components/Prompt.tsx:214 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:186 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:189 +msgid "Confirm" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 +#: src/screens/Login/LoginForm.tsx:442 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:187 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:191 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:244 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:145 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:151 +msgid "Confirmation code" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:132 +msgid "Connecting to service..." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:542 +msgid "Connecting to serviceโ€ฆ" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:138 +#: src/screens/Login/LoginForm.tsx:548 +msgid "Connectingโ€ฆ" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Connection issue" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:404 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:128 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:31 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:109 +msgid "Contact our support team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 +msgid "Contact support" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 +#: src/screens/Settings/FindContactsSettings.tsx:164 +msgid "Contact sync is not available on this device, as the app is unable to access your contacts." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 +msgid "Contact us" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:526 +msgid "Contacts imported" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:499 +msgid "Contacts removed" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:53 +msgid "Content & Media" +msgstr "" + +#: src/screens/Settings/Settings.tsx:206 +#: src/screens/Settings/Settings.tsx:209 +msgid "Content and media" +msgstr "" + +#: src/Navigation.tsx:467 +msgid "Content and Media" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:18 +msgid "Content Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:362 +msgid "Content filters" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:177 +msgid "Content languages" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:102 +#: src/lib/moderation/useModerationCauseDescription.ts:83 +msgid "Content Not Available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:192 +msgid "Content promoting or depicting self-harm" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:70 +#: src/components/moderation/ScreenHider.tsx:98 +#: src/lib/moderation/useGlobalLabelStrings.ts:22 +#: src/lib/moderation/useModerationCauseDescription.ts:46 +msgid "Content Warning" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:61 +msgid "Content warnings" +msgstr "" + +#: src/components/Menu/index.web.tsx:93 +msgid "Context menu backdrop, click to close the menu." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 +#: src/screens/Onboarding/StepInterests/index.tsx:93 +#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 +msgid "Continue" +msgstr "" + +#. placeholder {0}: account.handle +#: src/components/AccountList.tsx:134 +msgid "Continue as {0} (currently signed in)" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 +msgid "Continue signing in" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 +msgid "Continue thread" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:64 +msgid "Continue thread..." +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:598 +msgid "Continue to group name" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:90 +#: src/screens/Onboarding/StepProfile/index.tsx:298 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 +#: src/screens/Signup/BackNextButtons.tsx:61 +msgid "Continue to next step" +msgstr "" + +#: src/screens/Messages/Conversation.tsx:63 +msgid "Conversation" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:321 +msgid "Conversation deleted" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 +msgctxt "toast" +msgid "Conversation deleted" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:172 +#: src/components/dms/AfterReportConversationDialog.tsx:179 +msgctxt "toast" +msgid "Conversation left" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:169 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/screens/Search/Shell.tsx:512 +msgid "Copied link to clipboard" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:97 +#: src/components/PostControls/DiscoverDebug.tsx:36 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 +#: src/lib/sharing.ts:24 +#: src/lib/sharing.ts:42 +msgid "Copied to clipboard" +msgstr "" + +#: src/components/dialogs/Embed.tsx:197 +#: src/screens/Messages/components/CopyTextButton.tsx:71 +#: src/screens/Settings/components/CopyButton.tsx:66 +msgid "Copied!" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:145 +msgid "Copies build version to clipboard" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:256 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:266 +msgid "Copy" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:501 +#: src/view/com/profile/ProfileMenu.tsx:504 +msgid "Copy at:// URI" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 +msgid "Copy author DID" +msgstr "" + +#: src/components/dialogs/Embed.tsx:186 +#: src/components/dialogs/Embed.tsx:202 +msgid "Copy code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:504 +#: src/view/com/profile/ProfileMenu.tsx:510 +#: src/view/com/profile/ProfileMenu.tsx:513 +msgid "Copy DID" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:436 +msgid "Copy host" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copy invite link" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:91 +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/screens/StarterPack/StarterPackScreen.tsx:644 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:122 +msgid "Copy Link" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:164 +msgid "Copy link to list" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 +msgid "Copy link to post" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:290 +msgid "Copy link to profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:637 +msgid "Copy link to starter pack" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:198 +#: src/components/dms/MessageContextMenu.tsx:202 +msgid "Copy message text" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 +msgid "Copy post at:// URI" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +msgid "Copy post text" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:184 +msgid "Copy QR code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:457 +msgid "Copy TXT record value" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 +#: src/Navigation.tsx:353 +#: src/view/screens/CopyrightPolicy.tsx:25 +msgid "Copyright Policy" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:80 +msgid "Could not capture QR code" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:42 +msgid "Could not connect to custom feed" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:134 +msgid "Could not connect to feed service" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:121 +msgid "Could not copy โ€“ please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:75 +msgid "Could not download โ€“ please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 +msgid "Could not fetch post" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:183 +msgid "Could not find profile" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 +msgid "Could not follow all matches - please check your network connection." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 +msgid "Could not follow all matches. {0}" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:158 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 +msgid "Could not leave chat" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:282 +msgid "Could not leave chat." +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:72 +msgid "Could not load feed" +msgstr "" + +#: src/screens/ProfileList/components/ErrorScreen.tsx:27 +#: src/screens/ProfileList/index.tsx:80 +#: src/screens/ProfileList/index.tsx:102 +msgid "Could not load list" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 +msgid "Could not mute chat" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:308 +msgid "Could not remove member." +msgstr "" + +#. placeholder {0}: cleanError(error) +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 +msgid "Could not save changes: {0}" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:61 +msgid "Could not share โ€“ please try again" +msgstr "" + +#: src/state/queries/notifications/settings.ts:124 +msgid "Could not update notification settings" +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/components/contacts/screens/GetContacts.tsx:171 +msgid "Could not upload contacts. {0}" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:165 +msgid "Could not upload contacts. You need to re-verify your phone number to proceed" +msgstr "" + +#. Title of the error screen shown when the GIF provider request fails. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:51 +msgid "Couldnโ€™t load GIFs" +msgstr "" + +#: src/components/InternationalPhoneCodeSelect.tsx:80 +msgid "Country code" +msgstr "" + +#. Advanced search: Example of a โ€œnone of these wordsโ€ search. Paired with โ€œcats dogsโ€. +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:268 +msgid "cows pigs" +msgstr "" + +#. Text on button to create a new starter pack +#. Text on button to create a new starter pack +#: src/components/dialogs/StarterPackDialog.tsx:113 +#: src/components/dialogs/StarterPackDialog.tsx:210 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 +msgid "Create" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:166 +#: src/view/com/lists/ProfileLists.tsx:167 +msgid "Create a list" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:620 +msgid "Create a list from this starter pack" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:169 +msgid "Create a QR code for a starter pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 +msgid "Create a starter pack" +msgstr "" + +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 +msgid "Create a Starter Pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 +msgid "Create a starter pack for me" +msgstr "" + +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 +#: src/screens/Messages/JoinRequest.tsx:310 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 +#: src/view/shell/bottom-bar/BottomBar.tsx:351 +#: src/view/shell/bottom-bar/BottomBar.tsx:355 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/NavSignupCard.tsx:48 +#: src/view/shell/NavSignupCard.tsx:53 +msgid "Create account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:87 +#: src/components/dialogs/Signin.tsx:89 +#: src/screens/Hashtag.tsx:236 +#: src/screens/Search/SearchResults.tsx:418 +msgid "Create an account" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:310 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +msgid "Create an account without using this starter pack" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:314 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 +msgid "Create another" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:606 +msgid "Create group chat" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:180 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:188 +msgid "Create list" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:626 +msgid "Create list from members" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:148 +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:152 +msgid "Create list from starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:367 +msgid "Create moderation list" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:304 +#: src/view/com/auth/SplashScreen.tsx:89 +#: src/view/com/auth/SplashScreen.web.tsx:110 +msgid "Create new account" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:554 +msgid "Create or modify an invite link for this group chat" +msgstr "" + +#. Accessibility label for button to create a moderation report for the selected option +#. placeholder {0}: option.title +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 +msgid "Create report for {0}" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:108 +#: src/components/dialogs/StarterPackDialog.tsx:205 +msgid "Create starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:366 +msgid "Create user list" +msgstr "" + +#. placeholder {0}: i18n.date(appPassword.createdAt, { year: 'numeric', month: 'numeric', day: 'numeric', hour: '2-digit', minute: '2-digit', }) +#. placeholder {0}: i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', }) +#. placeholder {0}: i18n.date(createdAt, { month: 'long', day: 'numeric', year: 'numeric', }) +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:509 +#: src/screens/Settings/AppPasswords.tsx:174 +msgid "Created {0}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:131 +msgid "Creator has been blocked" +msgstr "" + +#: src/lib/interests.ts:57 +msgid "Culture" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:188 +msgid "Current beta features" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:375 +msgid "Current chat" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:152 +#: src/components/dialogs/ServerInput.tsx:154 +msgid "Custom" +msgstr "" + +#: src/components/dialogs/Embed.tsx:140 +msgid "Customization options" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:60 +msgid "Customizes your Bluesky experience" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:200 +msgid "Dangerous challenges or activities" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:204 +msgid "Dangerous substances or drug abuse" +msgstr "" + +#: src/components/dialogs/Embed.tsx:164 +#: src/components/dialogs/Embed.tsx:166 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 +msgctxt "Name of app icon variant" +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:104 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:299 +msgid "Date of birth" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Day" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:177 +#: src/screens/Settings/AccountSettings.tsx:182 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "" + +#: src/screens/Settings/Settings.tsx:472 +msgid "Debug Moderation" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:469 +msgid "Decline this language suggestion" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:84 +msgid "Deepfake adult content" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:154 +msgid "Default" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:73 +msgid "Default icons" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:184 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:812 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:275 +#: src/screens/Settings/AppPasswords.tsx:213 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:715 +#: src/screens/StarterPack/StarterPackScreen.tsx:794 +msgid "Delete" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:187 +#: src/screens/Settings/AccountSettings.tsx:192 +msgid "Delete account" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:183 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:230 +msgid "Delete account โ€œ{currentHandle}โ€" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:187 +msgid "Delete app password" +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:208 +msgid "Delete app password?" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 +msgid "Delete chat" +msgstr "" + +#: src/screens/Settings/Settings.tsx:479 +msgid "Delete chat declaration record" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:567 +msgid "Delete contacts" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:151 +#: src/components/dms/AfterReportDialog.tsx:195 +#: src/components/dms/AfterReportDialog.tsx:198 +#: src/screens/Messages/components/RequestButtons.tsx:147 +#: src/screens/Messages/components/RequestButtons.tsx:149 +msgid "Delete conversation" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:212 +msgid "Delete for me" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:199 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:202 +msgid "Delete list" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:182 +msgid "Delete message" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:209 +msgid "Delete message for me" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:309 +msgid "Delete my account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1717 +msgid "Delete post" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:609 +#: src/screens/StarterPack/StarterPackScreen.tsx:785 +msgid "Delete starter pack" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:681 +msgid "Delete starter pack?" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:270 +msgid "Delete this list?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +msgid "Delete this post?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:205 +msgid "Deleted" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 +msgid "Deleted Account" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:286 +msgid "Deleted by Plivo after verification" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:43 +#: src/view/com/feeds/MissingFeed.tsx:76 +#: src/view/com/feeds/MissingFeed.tsx:128 +#: src/view/com/feeds/MissingFeed.tsx:136 +msgid "Deleted list" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:453 +#: src/components/SendErrorReportDialog.tsx:78 +#: src/screens/Profile/Header/EditProfileDialog.tsx:360 +#: src/screens/Profile/Header/EditProfileDialog.tsx:367 +msgid "Description" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:82 +msgid "Description (1000 characters max)" +msgstr "" + +#: src/view/com/composer/GifAltText.tsx:156 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:124 +msgid "Descriptive alt text" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 +msgid "Detach quote" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 +msgid "Detach quote post?" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:158 +msgctxt "toast" +msgid "Developer mode disabled" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:152 +msgctxt "toast" +msgid "Developer mode enabled" +msgstr "" + +#: src/screens/Settings/Settings.tsx:291 +#: src/screens/Settings/Settings.tsx:294 +msgid "Developer options" +msgstr "" + +#: src/lib/translation/index.tsx:303 +msgid "Device failed to translate :(" +msgstr "" + +#: src/components/WhoCanReply.tsx:222 +msgid "Dialog: adjust who can interact with this post" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 +msgid "Dialog: Set search filters" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:108 +msgid "Dim" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 +msgid "Disable" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 +msgid "Disable 2FA" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 +msgid "Disable captions" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 +msgid "Disable email 2FA" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:90 +msgid "Disable Email 2FA" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:90 +#: src/screens/Settings/AccessibilitySettings.tsx:95 +msgid "Disable haptic feedback" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +msgid "Disable link" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:628 +msgid "Disable quote posts of this post" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:465 +msgid "Disable replies entirely" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 +msgid "Disable this invite link?" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:35 +#: src/lib/moderation/useLabelBehaviorDescription.ts:45 +#: src/lib/moderation/useLabelBehaviorDescription.ts:71 +#: src/screens/Moderation/index.tsx:402 +msgid "Disabled" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 +#: src/screens/Profile/Header/EditProfileDialog.tsx:79 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 +#: src/view/com/composer/drafts/DraftItem.tsx:242 +#: src/view/com/composer/drafts/DraftsButton.tsx:131 +msgid "Discard" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:98 +#: src/screens/Profile/Header/EditProfileDialog.tsx:76 +msgid "Discard changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1495 +#: src/view/com/composer/drafts/DraftItem.tsx:239 +#: src/view/com/composer/drafts/DraftsButton.tsx:98 +msgid "Discard draft?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 +msgid "Discard post?" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 +msgid "Disconnect Germ DM" +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:88 +#: src/screens/Settings/components/PwiOptOut.tsx:92 +msgid "Discourage apps from showing my account to logged-out users" +msgstr "" + +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:64 +#: src/view/com/posts/FollowingEmptyState.tsx:69 +#: src/view/com/posts/FollowingEndOfFeed.tsx:65 +#: src/view/com/posts/FollowingEndOfFeed.tsx:70 +msgid "Discover new custom feeds" +msgstr "" + +#: src/view/screens/Feeds.tsx:723 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:398 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 +msgid "Dismiss" +msgstr "" + +#: src/components/contacts/FindContactsBannerNUX.tsx:78 +msgid "Dismiss banner" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2598 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:80 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 +msgid "Dismiss interests" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 +msgid "Dismiss live event banner" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:89 +msgid "Dismiss this section" +msgstr "" + +#: src/components/FeedInterstitials.tsx:351 +msgid "Dismiss this suggestion" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:70 +#: src/screens/Settings/AccessibilitySettings.tsx:75 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:310 +#: src/screens/Profile/Header/EditProfileDialog.tsx:316 +msgid "Display name" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 +msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:405 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:407 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:525 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 +msgid "Don't have a code or need a new one? <0>Click here." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:269 +msgid "Donโ€™t see a code? <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 +msgid "Don't see an email? <0>Click here to resend." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:26 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:73 +#: src/components/contacts/components/InviteInfo.tsx:79 +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:412 +#: src/components/dialogs/BirthDateSettings.tsx:193 +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200 +#: src/components/dialogs/LanguageSelectDialog.tsx:327 +#: src/components/dialogs/NotificationSettingsDialog.tsx:106 +#: src/components/dialogs/ServerInput.tsx:237 +#: src/components/dialogs/ServerInput.tsx:239 +#: src/components/dms/AfterReportConversationDialog.tsx:164 +#: src/components/dms/AfterReportDialog.tsx:145 +#: src/components/forms/DateField/index.tsx:128 +#: src/components/forms/DateField/index.tsx:145 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:147 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:153 +#: src/lib/media/picker.tsx:37 +#: src/screens/Login/components/HostingProviderDialog.tsx:253 +#: src/screens/Login/components/HostingProviderDialog.tsx:255 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 +#: src/view/com/composer/labels/LabelsBtn.tsx:219 +#: src/view/com/composer/labels/LabelsBtn.tsx:226 +#: src/view/com/composer/videos/SubtitleDialog.tsx:192 +#: src/view/com/composer/videos/SubtitleDialog.tsx:203 +msgid "Done" +msgstr "" + +#: src/components/dms/MessageItem.tsx:541 +msgid "Double tap or long press the message to add a reaction" +msgstr "" + +#: src/components/Dialog/index.tsx:399 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1178 +msgid "Double tap to like" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 +msgid "Download Bluesky" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:149 +msgid "Download chat data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:154 +msgctxt "button" +msgid "Download chat data" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 +msgid "Download image" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 +msgid "Doxxing" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:120 +#: src/view/com/composer/drafts/DraftsButton.tsx:70 +#: src/view/com/composer/drafts/DraftsButton.tsx:79 +#: src/view/com/composer/drafts/DraftsListDialog.tsx:119 +msgid "Drafts" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.web.tsx:369 +msgid "Drop to add images" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:20 +msgid "Due to laws in your region, certain features on Bluesky are currently restricted until you're able to verify you're an adult." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:162 +msgid "Duration:" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Dusk" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:237 +msgid "e.g. alice" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:317 +msgid "e.g. Alice Lastname" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:388 +msgid "e.g. alice.com" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:43 +msgid "E.g. artistic nudes." +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:370 +msgid "e.g. Great Posters" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:371 +msgid "e.g. Spammers" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:374 +msgid "e.g. The posters who never miss." +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:375 +msgid "e.g. Users that repeatedly reply with ads." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:196 +msgid "Eating disorders" +msgstr "" + +#: src/screens/Messages/components/EditTextButton.tsx:52 +#: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 +#: src/screens/StarterPack/StarterPackScreen.tsx:604 +#: src/screens/StarterPack/Wizard/index.tsx:331 +#: src/screens/StarterPack/Wizard/index.tsx:336 +msgid "Edit" +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:215 +#: src/view/com/lists/ListMembers.tsx:220 +msgctxt "action" +msgid "Edit" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 +msgid "Edit avatar" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:116 +msgid "Edit Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:43 +#: src/screens/Messages/ConversationSettings/prompts.tsx:49 +msgid "Edit group name" +msgstr "" + +#: src/view/com/composer/photos/EditImageDialog.web.tsx:86 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:90 +#: src/view/com/composer/photos/Gallery.tsx:218 +msgid "Edit image" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 +msgid "Edit interaction settings" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 +msgid "Edit interests" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 +msgid "Edit link settings" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:191 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:194 +msgid "Edit list details" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:364 +#: src/view/com/profile/ProfileMenu.tsx:384 +msgid "Edit live status" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:364 +msgid "Edit moderation list" +msgstr "" + +#: src/Navigation.tsx:363 +#: src/view/screens/Feeds.tsx:511 +msgid "Edit My Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:544 +msgid "Edit name" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 +msgid "Edit People" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:116 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:266 +msgid "Edit post interaction settings" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:265 +#: src/screens/Profile/Header/EditProfileDialog.tsx:271 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:305 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:330 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:308 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:332 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:596 +msgid "Edit starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:493 +#: src/screens/Messages/ConversationSettings/index.tsx:543 +msgid "Edit this group chatโ€™s name" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:363 +msgid "Edit user list" +msgstr "" + +#: src/components/WhoCanReply.tsx:116 +msgid "Edit who can reply" +msgstr "" + +#: src/Navigation.tsx:565 +msgid "Edit your starter pack" +msgstr "" + +#: src/lib/interests.ts:59 +msgid "Education" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:145 +msgid "Either the creator of this list has blocked you or you have blocked the creator." +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:223 +msgid "Email" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:65 +msgctxt "toast" +msgid "Email 2FA disabled" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:63 +msgid "Email 2FA enabled" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:90 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:99 +msgid "Email Resent" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 +msgid "Email sent!" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:260 +msgid "Email sent! <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:183 +msgid "Email verification complete!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:74 +msgid "Email Verified" +msgstr "" + +#: src/components/dialogs/Embed.tsx:178 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:105 +#: src/components/dialogs/Embed.tsx:109 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 +msgid "Embed post" +msgstr "" + +#: src/components/dialogs/Embed.tsx:113 +msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 +msgid "Embedded video player" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:101 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:108 +#: src/screens/Settings/components/Email2FAToggle.tsx:31 +msgid "Enable" +msgstr "" + +#. placeholder {0}: externalEmbedLabels[source] +#: src/components/dialogs/EmbedConsent.tsx:96 +msgid "Enable {0} only" +msgstr "" + +#: src/screens/Moderation/index.tsx:389 +msgid "Enable adult content" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:117 +#: src/screens/Settings/BetaFeaturesSettings.tsx:124 +msgid "Enable beta features" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 +msgid "Enable captions" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 +msgid "Enable email 2FA" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:80 +#: src/components/dialogs/EmbedConsent.tsx:86 +msgid "Enable external media" +msgstr "" + +#: src/screens/Settings/ExternalMediaPreferences.tsx:53 +msgid "Enable media players for" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 +#: src/view/screens/Storybook/Admonitions.tsx:76 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 +msgid "Enable push notifications" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:629 +msgid "Enable quote posts of this post" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:90 +msgid "Enable this source only" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:134 +#: src/screens/Settings/ContentAndMediaSettings.tsx:148 +msgid "Enable trending topics" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:155 +#: src/screens/Settings/ContentAndMediaSettings.tsx:169 +msgid "Enable trending videos in your Discover feed" +msgstr "" + +#: src/screens/Moderation/index.tsx:400 +msgid "Enabled" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:135 +msgid "End of feed" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:182 +msgid "Ensure you have selected a language for each caption file." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:231 +msgid "Enter 6-digit code that was sent to your phone number" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:136 +msgid "Enter a password" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:136 +#: src/components/dialogs/MutedWords.tsx:137 +msgid "Enter a word or tag" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:328 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:64 +msgid "Enter code" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 +msgid "Enter fullscreen" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:226 +msgid "Enter the 6-digit code sent to {prettyNumber}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:382 +msgid "Enter the domain you want to use" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:109 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:337 +msgid "Enter the username or email address you used when you created your account" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:164 +msgid "Enter your birthdate" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:96 +#: src/screens/Signup/StepInfo/index.tsx:243 +msgid "Enter your email address" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:389 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:291 +msgid "Enter your password" +msgstr "" + +#: src/screens/Login/index.tsx:144 +msgid "Enter your username and password" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:163 +msgid "Enters full screen" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 +msgid "Entertainment" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2697 +#: src/view/com/util/error/ErrorScreen.tsx:40 +msgid "Error" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:95 +msgid "Error getting the latest data." +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:27 +msgid "Error loading post" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 +msgid "Error loading preference" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:201 +msgid "Error message" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:47 +#: src/screens/Settings/components/ExportCarDialog.tsx:80 +msgid "Error occurred while saving file" +msgstr "" + +#: src/screens/Signup/StepCaptcha/index.tsx:127 +msgid "Error receiving captcha response." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:206 +msgid "Error: {error}" +msgstr "" + +#: src/components/WhoCanReply.tsx:85 +msgid "Everybody can reply" +msgstr "" + +#: src/components/WhoCanReply.tsx:279 +msgid "Everybody can reply to this post." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:93 +msgctxt "allow group chat invites from" +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:78 +msgctxt "allow messages from" +msgid "Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 +msgid "Everything else" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 +msgid "Everything look right?" +msgstr "" + +#. Advanced search filter +#. Advanced search filter +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:46 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:57 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:86 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:92 +msgid "Exclude" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:320 +msgid "Exclude users you follow" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:605 +msgid "Excludes users you follow" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 +msgid "Exit fullscreen" +msgstr "" + +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 +msgid "Expand alt text" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:612 +msgid "Expand list of users" +msgstr "" + +#: src/view/com/composer/ComposerReplyTo.tsx:103 +msgid "Expand or collapse the full post you are replying to" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:31 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1054 +msgid "Expands or collapses post text" +msgstr "" + +#: src/lib/api/index.ts:490 +msgid "Expected uri to resolve to a record" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:127 +msgid "Experimental" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:520 +msgid "Expired" +msgstr "" + +#. placeholder {0}: formatDistance(expiryDate, new Date(), { addSuffix: true, }) +#: src/components/dialogs/MutedWords.tsx:589 +msgid "Expires {0}" +msgstr "" + +#. placeholder {0}: timeDiff(Date.now(), label.exp) +#. placeholder {0}: timeDiff(Date.now(), modcause.label.exp) +#: src/components/moderation/LabelsOnMeDialog.tsx:218 +#: src/components/moderation/ModerationDetailsDialog.tsx:294 +msgid "Expires in {0}" +msgstr "" + +#. placeholder {0}: displayDuration(i18n, minutesUntilExpiry) +#. placeholder {1}: i18n.date(expiryDateTime, { hour: 'numeric', minute: '2-digit', hour12: true, }) +#: src/features/liveNow/components/EditLiveDialog.tsx:125 +msgid "Expires in {0} at {1}" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:47 +#: src/lib/moderation/useGlobalLabelStrings.ts:51 +msgid "Explicit or potentially disturbing media." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:35 +msgid "Explicit sexual images." +msgstr "" + +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 +msgid "Explore" +msgstr "" + +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 +msgid "Explore the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:329 +#: src/screens/Messages/Settings.tsx:338 +#: src/screens/Settings/components/ExportCarDialog.tsx:130 +msgid "Export my chat data" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:168 +#: src/screens/Settings/AccountSettings.tsx:172 +msgid "Export my data" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:97 +msgid "Export my profile data" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:86 +#: src/screens/Settings/ContentAndMediaSettings.tsx:89 +msgid "External media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:54 +#: src/components/dialogs/EmbedConsent.tsx:58 +msgid "External Media" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:70 +#: src/screens/Settings/ExternalMediaPreferences.tsx:44 +msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." +msgstr "" + +#: src/Navigation.tsx:382 +#: src/screens/Settings/ExternalMediaPreferences.tsx:35 +msgid "External Media Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:146 +msgid "Extremist content" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:244 +msgctxt "toast" +msgid "Failed to accept chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:92 +#: src/components/dms/MessageContextMenu.tsx:140 +msgid "Failed to add emoji reaction" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 +msgid "Failed to add members" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:239 +msgid "Failed to add to list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:280 +msgid "Failed to add to starter pack" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:605 +msgid "Failed to change handle. Please try again." +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 +#: src/screens/Search/Shell.tsx:513 +msgid "Failed to copy link" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 +msgid "Failed to create app password. Please try again." +msgstr "" + +#: src/components/dms/MessageProfileButton.tsx:38 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 +msgid "Failed to create conversation" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 +msgid "Failed to create invite link" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:250 +#: src/screens/StarterPack/Wizard/index.tsx:260 +msgid "Failed to create starter pack" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 +msgctxt "toast" +msgid "Failed to delete chat" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:112 +msgid "Failed to delete message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 +msgid "Failed to delete post, please try again" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:754 +msgid "Failed to delete starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +msgid "Failed to disable invite link" +msgstr "" + +#. placeholder {0}: error?.message +#: src/screens/Profile/components/GermButton.tsx:196 +msgid "Failed to disconnect Germ DM. Error: {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:381 +msgid "Failed to edit group chat name" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 +msgid "Failed to edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 +msgid "Failed to enable invite link" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:143 +msgid "Failed to follow all suggested accounts, please try again" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:148 +msgid "Failed to follow all your friends, please try again" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:236 +msgid "Failed to hide suggestion, please check your internet connection" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Failed to join the group chat. Please try again." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:582 +msgid "Failed to launch SMS app" +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:41 +#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/screens/Messages/ConversationSettings/index.tsx:408 +msgctxt "toast" +msgid "Failed to leave group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:420 +#: src/screens/Messages/Inbox.tsx:202 +msgid "Failed to load conversations" +msgstr "" + +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 +msgid "Failed to load feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:85 +#: src/screens/Messages/Settings.tsx:369 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 +msgid "Failed to load notification settings." +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:22 +msgid "Failed to load past messages" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:66 +msgid "Failed to load preference." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:292 +msgid "Failed to load profiles" +msgstr "" + +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:386 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:433 +msgid "Failed to lock group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:636 +#: src/view/shell/bottom-bar/BottomBar.tsx:447 +msgid "Failed to mark all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:645 +#: src/screens/Messages/Inbox.tsx:304 +#: src/view/shell/bottom-bar/BottomBar.tsx:456 +msgid "Failed to mark all requests as read" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:397 +msgid "Failed to mute group chat" +msgstr "" + +#: src/state/queries/pinned-post.ts:75 +msgid "Failed to pin post" +msgstr "" + +#. placeholder {0}: e?.message +#: src/screens/Profile/components/GermButton.tsx:164 +msgid "Failed to reconnect Germ DM. Error: {0}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to reject join request" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:509 +msgid "Failed to remove data due to a network error, please check your internet connection." +msgstr "" + +#. placeholder {0}: cleanError(err) +#: src/screens/Settings/FindContactsSettings.tsx:515 +msgid "Failed to remove data. {0}" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:77 +#: src/components/dms/MessageContextMenu.tsx:125 +#: src/components/dms/ReactionsDialog.tsx:179 +msgid "Failed to remove emoji reaction" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:258 +msgid "Failed to remove from list" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:293 +msgid "Failed to remove from starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 +msgid "Failed to remove group chat member" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:34 +msgid "Failed to remove verification" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:193 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 +msgid "Failed to resolve location. Please try again." +msgstr "" + +#: src/view/com/composer/Composer.tsx:731 +msgid "Failed to save draft" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:319 +msgid "Failed to save image" +msgstr "" + +#. placeholder {0}: String(e) +#: src/lib/media/save-image.ios.ts:27 +#: src/lib/media/save-image.ts:31 +msgid "Failed to save image: {0}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:109 +msgid "Failed to save settings. Please try again." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:147 +msgctxt "toast" +msgid "Failed to save your interests." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:121 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:137 +msgid "Failed to send email, please try again." +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:52 +msgid "Failed to send report" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:77 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 +#: src/screens/Messages/components/ChatDisabled.tsx:119 +msgid "Failed to submit appeal, please try again." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 +msgid "Failed to toggle thread mute, please try again" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:442 +msgid "Failed to unlock group chat" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107 +msgid "Failed to unpin list" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:148 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:82 +msgid "Failed to update email 2FA settings" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 +msgid "Failed to update email, please try again." +msgstr "" + +#: src/components/FeedCard.tsx:316 +msgid "Failed to update feeds" +msgstr "" + +#: src/state/queries/activity-subscriptions.ts:101 +msgid "Failed to update notification declaration" +msgstr "" + +#: src/screens/Messages/Settings.tsx:110 +msgid "Failed to update settings" +msgstr "" + +#: src/lib/media/video/upload.ts:73 +#: src/lib/media/video/upload.web.ts:73 +#: src/lib/media/video/upload.web.ts:77 +#: src/lib/media/video/upload.web.ts:87 +msgid "Failed to upload video" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:169 +msgid "Failed to verify email, please try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:372 +msgid "Failed to verify handle. Please try again." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 +msgid "Fake account or bot" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55 +msgid "False information about elections" +msgstr "" + +#: src/Navigation.tsx:293 +msgid "Feed" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') +#. placeholder {0}: sanitizeHandle(view.creator.handle, '@') +#: src/components/FeedCard.tsx:170 +#: src/state/queries/feed.ts:127 +#: src/view/com/feeds/FeedSourceCard.tsx:151 +msgid "Feed by {0}" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:153 +msgid "Feed creator" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:190 +msgid "Feed identifier" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 +msgid "Feed menu" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Feed toggle" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:74 +msgid "Feed unavailable" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:109 +#: src/view/shell/desktop/RightNav.tsx:110 +#: src/view/shell/Drawer.tsx:427 +msgid "Feedback" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 +msgctxt "toast" +msgid "Feedback sent to feed operator" +msgstr "" + +#: src/Navigation.tsx:545 +#: src/screens/SavedFeeds.tsx:112 +#: src/screens/SavedFeeds.tsx:303 +#: src/screens/Search/SearchResults.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:196 +#: src/view/screens/Feeds.tsx:504 +#: src/view/screens/Profile.tsx:241 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 +msgid "Feeds" +msgstr "" + +#: src/screens/SavedFeeds.tsx:227 +#: src/screens/SavedFeeds.tsx:398 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0>See this guide for more information." +msgstr "" + +#: src/components/FeedCard.tsx:313 +#: src/screens/SavedFeeds.tsx:92 +#: src/screens/SavedFeeds.tsx:271 +msgctxt "toast" +msgid "Feeds updated!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:61 +msgid "Fetch update" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:43 +#: src/screens/Settings/components/ExportCarDialog.tsx:76 +msgid "File saved successfully!" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 +msgid "Filter by author (currently: {currentLabel})" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:69 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:70 +msgid "Filter search by language (currently: {currentLanguageLabel})" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + +#. placeholder {0}: lang.name +#: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 +msgid "Filter this search by {0}" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:106 +msgid "Filter who can opt to receive notifications for your activity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 +msgid "Filter who you receive notifications from" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:78 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 +msgctxt "search" +msgid "Filters" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:335 +msgid "Finalizing" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 +msgid "Finally!" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 +msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." +msgstr "" + +#: src/lib/interests.ts:60 +msgid "Finance" +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:67 +#: src/view/com/posts/CustomFeedEmptyState.tsx:72 +#: src/view/com/posts/FollowingEmptyState.tsx:48 +#: src/view/com/posts/FollowingEmptyState.tsx:53 +#: src/view/com/posts/FollowingEndOfFeed.tsx:49 +#: src/view/com/posts/FollowingEndOfFeed.tsx:54 +msgid "Find accounts to follow" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 +#: src/screens/Settings/Settings.tsx:217 +#: src/screens/Settings/Settings.tsx:220 +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 +msgid "Find Contacts" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:273 +#: src/components/contacts/screens/GetContacts.tsx:287 +msgid "Find my friends" +msgstr "" + +#. Starter packs suggested to the user for them to follow +#: src/components/ProgressGuide/FollowDialog.tsx:72 +#: src/components/ProgressGuide/FollowDialog.tsx:80 +#: src/components/ProgressGuide/FollowDialog.tsx:448 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:43 +msgid "Find people to follow" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + +#: src/screens/Search/Shell.tsx:765 +msgid "Find posts, users, and feeds on Bluesky" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 +msgid "Find your friends" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 +#: src/screens/Settings/FindContactsSettings.tsx:133 +msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 +msgid "Find your people" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:281 +msgid "Finding friends..." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:206 +msgid "Finish" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:149 +msgctxt "Name of app icon variant" +msgid "Flat Black" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:117 +msgctxt "Name of app icon variant" +msgid "Flat Blue" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:133 +msgctxt "Name of app icon variant" +msgid "Flat White" +msgstr "" + +#: src/components/contacts/components/OTPInput.tsx:55 +msgid "Focus code input" +msgstr "" + +#: src/lib/hotkeys/index.tsx:73 +msgid "Focus the search field" +msgstr "" + +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:548 +#: src/components/ProfileHoverCard/index.web.tsx:495 +#: src/components/ProfileHoverCard/index.web.tsx:506 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 +#: src/screens/VideoFeed/index.tsx:937 +#: src/view/com/notifications/NotificationFeedItem.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:871 +msgid "Follow" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:397 +msgid "Follow {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:167 +msgid "Follow {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:916 +msgid "Follow {handle}" +msgstr "" + +#: src/state/shell/progress-guide.tsx:232 +msgid "Follow 10 accounts" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:73 +msgid "Follow 10 people to get started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:114 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:331 +msgid "Follow account" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:276 +#: src/components/contacts/screens/ViewMatches.tsx:291 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:294 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:162 +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:169 +#: src/screens/Settings/FindContactsSettings.tsx:465 +#: src/screens/Settings/FindContactsSettings.tsx:475 +#: src/screens/StarterPack/StarterPackScreen.tsx:452 +#: src/screens/StarterPack/StarterPackScreen.tsx:460 +msgid "Follow all" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:291 +msgid "Follow all accounts" +msgstr "" + +#. User is not following this account, click to follow back +#: src/components/ProfileCard.tsx:544 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:407 +#: src/view/com/notifications/NotificationFeedItem.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:871 +msgid "Follow back" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:132 +msgid "Followed all accounts!" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:418 +msgid "Followed all matches" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#: src/components/KnownFollowers.tsx:233 +msgid "Followed by <0>{0}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: serverCount - 1 +#: src/components/KnownFollowers.tsx:219 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#: src/components/KnownFollowers.tsx:206 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#. placeholder {2}: serverCount - 2 +#: src/components/KnownFollowers.tsx:189 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:355 +msgid "Followers can join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:247 +msgid "Followers of @{0} that you know" +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:98 +#: src/screens/Profile/KnownFollowers.tsx:115 +msgid "Followers you know" +msgstr "" + +#. User is following this account, click to unfollow +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:539 +#: src/components/ProfileHoverCard/index.web.tsx:494 +#: src/components/ProfileHoverCard/index.web.tsx:505 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 +#: src/screens/VideoFeed/index.tsx:935 +#: src/view/com/notifications/NotificationFeedItem.tsx:842 +#: src/view/com/notifications/NotificationFeedItem.tsx:859 +msgid "Following" +msgstr "" + +#: src/screens/SavedFeeds.tsx:618 +#: src/view/screens/Feeds.tsx:596 +msgctxt "feed-name" +msgid "Following" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#: src/components/ProfileCard.tsx:500 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:247 +#: src/view/com/notifications/NotificationFeedItem.tsx:791 +msgid "Following {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:66 +msgid "Following {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:915 +msgid "Following {handle}" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:78 +#: src/screens/Settings/ContentAndMediaSettings.tsx:81 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:369 +#: src/screens/Settings/FollowingFeedPreferences.tsx:57 +msgid "Following Feed Preferences" +msgstr "" + +#: src/components/Pills.tsx:213 +#: src/screens/Profile/Header/Handle.tsx:33 +msgid "Follows you" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:126 +msgid "Font" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:146 +msgid "Font size" +msgstr "" + +#: src/lib/interests.ts:61 +msgid "Food" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:106 +msgid "For organizational accounts, use the birthdate of the person who is responsible for the account." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:186 +msgid "For security reasons, weโ€™ll need to send a confirmation code to your email address <0>{currentEmail}." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:208 +msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:128 +msgid "For the best experience, we recommend using the theme font." +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:131 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 +msgid "For You" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:187 +#: src/components/dialogs/MutedWords.tsx:572 +#: src/components/dialogs/MutedWords.tsx:575 +msgid "Forever" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 +msgid "Forget the noise" +msgstr "" + +#: src/screens/Login/index.tsx:176 +#: src/screens/Login/index.tsx:192 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:421 +#: src/screens/Login/LoginForm.tsx:428 +msgid "Forgot password?" +msgstr "" + +#. This is alt text for a marketing image which transcribes English text that appears in the image +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:153 +msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 +msgid "Free your feed" +msgstr "" + +#. Filter who you receive notifications from +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +msgid "From" +msgstr "" + +#: src/screens/Hashtag.tsx:123 +msgid "From {sanitizedAuthor}" +msgstr "" + +#: src/screens/Hashtag.tsx:124 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:48 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:30 +msgid "From these people" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +msgid "Generate a starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 +#: src/screens/Messages/components/InviteLinkDialog.tsx:277 +#: src/screens/Messages/components/InviteLinkDialog.tsx:305 +msgid "Generate invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 +msgid "Generate new invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 +msgid "Generate new link" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:86 +#: src/screens/Profile/components/GermButton.tsx:225 +msgid "Germ DM" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:183 +msgid "Germ DM disconnected" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 +msgid "Germ DM Link" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:160 +msgid "Germ DM reconnected" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:132 +msgid "Get early access to experimental features weโ€™re testing." +msgstr "" + +#: src/view/shell/Drawer.tsx:431 +msgid "Get help" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:389 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:316 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:366 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:340 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:348 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:332 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:357 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:375 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:33 +msgid "Get notifications when people send you message requests." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:23 +msgid "Get notifications when people send you messages." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:89 +#: src/components/activity-notifications/SubscribeProfileButton.tsx:90 +msgid "Get notified about new posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 +msgid "Get notified of new posts from {name}" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:233 +msgid "Get notified of this accountโ€™s activity" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:84 +msgid "Get notified when {name} posts" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 +msgid "Get notified when someone posts" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 +#: src/screens/Messages/components/InviteLinkDialog.tsx:219 +#: src/screens/Messages/components/InviteLinkDialog.tsx:226 +msgid "Get started" +msgstr "" + +#: src/components/MediaPreview.tsx:182 +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:93 +msgid "GIF" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2702 +msgid "GIF uploaded" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:256 +msgid "Give your profile a face" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:142 +msgid "Glorification of violence" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:127 +#: src/components/dialogs/LinkWarning.tsx:133 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 +#: src/screens/Login/components/AuthLayout/Header/index.tsx:74 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 +#: src/screens/ProfileList/components/ErrorScreen.tsx:35 +#: src/screens/ProfileList/components/ErrorScreen.tsx:41 +#: src/screens/VideoFeed/components/Header.tsx:163 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 +#: src/view/com/auth/LoggedOut.tsx:127 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go back" +msgstr "" + +#: src/components/Error.tsx:72 +#: src/screens/List/ListHiddenScreen.tsx:228 +#: src/screens/Profile/ErrorState.tsx:63 +#: src/screens/Profile/ErrorState.tsx:67 +#: src/screens/StarterPack/StarterPackScreen.tsx:807 +msgid "Go Back" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:97 +#: src/screens/Onboarding/Layout.tsx:198 +#: src/screens/Signup/BackNextButtons.tsx:36 +msgid "Go back to previous step" +msgstr "" + +#: src/screens/Bookmarks.tsx:296 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:365 +#: src/view/com/profile/ProfileMenu.tsx:386 +msgid "Go live" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:106 +#: src/features/liveNow/components/GoLiveDialog.tsx:111 +#: src/features/liveNow/components/GoLiveDialog.tsx:239 +#: src/features/liveNow/components/GoLiveDialog.tsx:248 +msgid "Go Live" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:362 +#: src/view/com/profile/ProfileMenu.tsx:382 +msgid "Go live (disabled)" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:181 +msgid "Go live for" +msgstr "" + +#. placeholder {0}: name.displayName +#: src/screens/PostThread/components/LikesStat.tsx:146 +msgid "Go to {0}'s profile" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:256 +msgid "Go to {firstAuthorName}'s profile" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:93 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:73 +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:82 +#: src/screens/Moderation/index.tsx:237 +msgid "Go to account settings" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Messages/components/ChatListItem.tsx:155 +msgid "Go to conversation with {0}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:39 +msgid "Go to feed" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:168 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:194 +#: src/view/shell/desktop/LeftNav.tsx:336 +#: src/view/shell/desktop/LeftNav.tsx:342 +msgid "Go to profile" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:211 +msgid "Go to the group chat named \"{chatName}\"" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:258 +msgid "Go to user's profile" +msgstr "" + +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 +msgid "Go to userโ€™s profile" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105 +msgid "Going live is currently disabled for your account" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:121 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:126 +#: src/screens/Profile/components/GermButton.tsx:253 +#: src/screens/Profile/components/GermButton.tsx:258 +msgid "Got it" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:46 +#: src/lib/moderation/useGlobalLabelStrings.ts:50 +#: src/view/com/composer/labels/LabelsBtn.tsx:197 +#: src/view/com/composer/labels/LabelsBtn.tsx:200 +msgid "Graphic Media" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:138 +msgid "Graphic violent content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:169 +msgid "Grooming or predatory behavior" +msgstr "" + +#: src/components/dms/ChatInvite/Card.tsx:51 +#: src/components/intents/GroupChatJoinDialog.tsx:333 +#: src/screens/Messages/JoinRequest.tsx:125 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 +msgid "Group chat invite link dialog" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:424 +msgctxt "toast" +msgid "Group chat locked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:389 +msgctxt "toast" +msgid "Group chat muted" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:376 +msgctxt "toast" +msgid "Group chat name updated" +msgstr "" + +#: src/Navigation.tsx:514 +#: src/screens/Messages/ConversationSettings/index.tsx:113 +msgid "Group chat settings" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:427 +msgctxt "toast" +msgid "Group chat unlocked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:392 +msgctxt "toast" +msgid "Group chat unmuted" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" + +#: src/screens/Messages/Settings.tsx:212 +msgid "Group chats are only available to users 18 and over." +msgstr "" + +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:205 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 +msgid "Group is locked" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 +#: src/screens/Messages/ConversationSettings/prompts.tsx:50 +msgid "Group name" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:730 +#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 +msgid "Hacking or system attacks" +msgstr "" + +#: src/state/shell/progress-guide.tsx:221 +#: src/state/shell/progress-guide.tsx:231 +msgid "Half way there!" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:133 +#: src/screens/Settings/AccountSettings.tsx:138 +msgid "Handle" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:609 +msgid "Handle already taken. Please try a different one." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:197 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:356 +msgid "Handle changed!" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:613 +msgid "Handle too long. Please try a shorter one." +msgstr "" + +#: src/components/FeedCard.tsx:156 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 +msgid "Happening now" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to happy/joyful GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:65 +msgid "Happy GIFs" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:86 +msgid "Haptics" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 +msgid "Harassment or hate" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:189 +msgid "Harmful or high-risk activities" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:162 +msgid "Harming or endangering minors" +msgstr "" + +#: src/Navigation.tsx:498 +msgid "Hashtag" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Hashtag {tag}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:111 +msgid "Hate speech" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 +msgid "Have a code? <0>Click here." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:323 +msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." +msgstr "" + +#: src/screens/Signup/index.tsx:246 +msgid "Having trouble?" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:290 +msgid "Held by Bluesky for 7 days to prevent abuse, then deleted" +msgstr "" + +#: src/screens/Settings/Settings.tsx:256 +#: src/screens/Settings/Settings.tsx:260 +#: src/view/shell/desktop/RightNav.tsx:130 +#: src/view/shell/desktop/RightNav.tsx:133 +#: src/view/shell/Drawer.tsx:440 +msgid "Help" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:259 +msgid "Help people know you're not a bot by uploading a picture or creating an avatar." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:187 +msgid "Here is your app password!" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:74 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:120 +msgid "Hey there ๐Ÿ‘‹" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:171 +msgid "Hey there!" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:276 +msgid "Hi there!" +msgstr "" + +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 +msgid "Hidden" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:714 +msgid "Hidden by your moderation settings." +msgstr "" + +#: src/components/ListCard.tsx:133 +msgid "Hidden list" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:140 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 +#: src/lib/moderation/useLabelBehaviorDescription.ts:18 +#: src/lib/moderation/useLabelBehaviorDescription.ts:23 +#: src/lib/moderation/useLabelBehaviorDescription.ts:28 +#: src/lib/moderation/useLabelBehaviorDescription.ts:33 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:956 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/components/dialogs/Embed.tsx:124 +msgid "Hide customization options" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:57 +msgid "Hide group chat updates" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:533 +msgid "Hide lists" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:613 +msgid "Hide password" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 +msgid "Hide post for me" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 +msgid "Hide reply for everyone" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 +msgid "Hide reply for me" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 +msgid "Hide this card" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +msgid "Hide this post?" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 +msgid "Hide this reply?" +msgstr "" + +#: src/components/Post/Translated/index.tsx:216 +#: src/components/Post/Translated/index.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 +msgid "Hide translation" +msgstr "" + +#: src/components/interstitials/Trending.tsx:126 +msgid "Hide trending topics" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 +msgid "Hide trending topics?" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:136 +msgid "Hide trending videos?" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:947 +msgid "Hide user list" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:88 +#: src/screens/Moderation/VerificationSettings.tsx:97 +msgid "Hide verification badges" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:168 +#: src/components/moderation/PostHider.tsx:94 +msgid "Hides the content" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:76 +msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:122 +msgid "Hmm, it seems we weren't able to compute your level of access. Please try again." +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:141 +msgid "Hmm, it seems your device was unable to share age information with us." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:125 +msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:113 +msgid "Hmm, the feed server appears to be misconfigured. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:119 +msgid "Hmm, the feed server appears to be offline. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:116 +msgid "Hmm, the feed server gave a bad response. Please let the feed owner know about this issue." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:110 +msgid "Hmm, we're having trouble finding this feed. It may have been deleted." +msgstr "" + +#: src/screens/Moderation/index.tsx:61 +msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:32 +msgid "Hmmmm, we couldn't load that moderation service." +msgstr "" + +#: src/view/com/composer/state/video.ts:447 +msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 +#: src/view/shell/bottom-bar/BottomBar.tsx:196 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 +msgid "Home" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:430 +msgid "Host:" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:138 +#: src/screens/Login/components/HostingProviderDialog.tsx:159 +#: src/screens/Login/ForgotPasswordForm.tsx:80 +#: src/screens/Login/LoginForm.tsx:659 +msgid "Hosting provider" +msgstr "" + +#. placeholder {0}: toNiceHostingUrl(state.pdsUrl) +#: src/screens/Login/LoginForm.tsx:655 +msgid "Hosting provider: {0}" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:657 +msgid "Hosting provider: Bluesky" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:54 +msgid "How it works:" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:63 +#: src/components/dialogs/InAppBrowserConsent.tsx:67 +msgid "How should we open this link?" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:279 +msgid "How we use your number:" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:150 +msgid "Human trafficking" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:267 +msgid "I consent to Bluesky using my contacts for mutual friend discovery and to retain hashed data for matching until I opt out." +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:134 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:137 +msgid "I have a code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:292 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:298 +msgid "I have my own domain" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:55 +msgid "I understand" +msgstr "" + +#. placeholder {0}: currentAccount.handle +#: src/components/contacts/screens/ViewMatches.tsx:578 +msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:246 +msgid "If alt text is long, toggles alt text expanded state" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:235 +msgid "If none are selected, all languages will be shown in your feeds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:103 +msgid "If you are 18 years of age or older and want to try again, click the button below and use a different verification method if one is available in your region. If you have questions or concerns, <0>our support team can help." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:340 +msgid "If you are not yet an adult according to the laws of your country, your parent or legal guardian must read these Terms on your behalf." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:116 +msgid "If you believe your birthdate is incorrect, you can update it by <0>clicking here." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:272 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:274 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 +msgid "If you need to update your email, <0>click here." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 +msgid "If you update your email address, email 2FA will be disabled." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:60 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 +#: src/view/screens/Storybook/Admonitions.tsx:90 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:210 +msgid "If you're a developer, you can host your own server." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/components/images/ImageLayoutGridItem.tsx:91 +msgid "Image" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:457 +msgid "Image {0}" +msgstr "" + +#. placeholder {0}: index + 1 +#. placeholder {1}: imgs.length +#: src/components/Lightbox/Lightbox.web.tsx:261 +msgid "Image {0} of {1}" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:442 +msgid "Image {0} of {imageCount}" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:74 +msgid "Image cache cleared" +msgstr "" + +#. Android-only toast message which includes amount of space freed using localized number formatting +#. placeholder {0}: i18n.number( Math.abs(sizeDiffBytes / 1024 / 1024), { notation: 'compact', style: 'unit', unit: 'megabyte', }, ) +#: src/screens/Settings/AboutSettings.tsx:60 +msgid "Image cache cleared, freed {0}" +msgstr "" + +#. placeholder {0}: images.length +#: src/components/images/Gallery/index.tsx:274 +msgid "Image gallery, {0} images" +msgstr "" + +#. Image has been moderated and user has the option of showing it temporarily +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 +msgid "Image is hidden due to your moderation settings." +msgstr "" + +#. Image has been moderated and is not visible to the user +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 +msgid "Image is unavailable." +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:72 +#: src/components/Lightbox/Lightbox.web.tsx:265 +#: src/components/Lightbox/Lightbox.web.tsx:273 +msgid "Image options" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/lib/media/save-image.ios.ts:25 +#: src/lib/media/save-image.ts:29 +msgid "Image saved" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:82 +msgid "Image viewer" +msgstr "" + +#: src/lib/media/save-image.ts:51 +msgid "Images cannot be saved unless permission is granted to access your photo library." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:51 +msgid "Impersonation" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 +msgid "Import contacts" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 +msgid "Import Contacts" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "" + +#: src/components/contacts/FindContactsBannerNUX.tsx:33 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 +msgid "Import contacts to find your friends" +msgstr "" + +#. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) +#: src/screens/Settings/FindContactsSettings.tsx:535 +msgid "Imported on {0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:279 +msgid "In order to provide an age-appropriate experience, we need to know your birthdate. This is a one-time thing, and your data will be kept private." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:30 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:21 +msgid "In-app, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:25 +msgid "In-app, people you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:29 +msgid "In-app, push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:20 +msgid "In-app, push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:24 +msgid "In-app, push, people you follow" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:437 +msgid "Inbox empty" +msgstr "" + +#. Title message shown in chat requests inbox when it's empty +#: src/screens/Messages/Inbox.tsx:219 +msgid "Inbox zero!" +msgstr "" + +#. Advanced search filter +#. Advanced search filter +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:47 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 +msgid "Include" +msgstr "" + +#. placeholder {0}: filter.mode === 'exclude' ? l({message: 'Exclude', comment: 'Advanced search filter'}) : l({message: 'Include', comment: 'Advanced search filter'}) +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:44 +msgid "Include or exclude matching posts (currently: {0})" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 +msgid "Include posts and/or replies (currently: {currentLabel})" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:305 +msgid "Include posts made since this date" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:329 +msgid "Include posts made until this date" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:165 +msgid "Incorrect username or password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:124 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:148 +msgid "Input new password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:456 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:136 +msgid "Interaction limited" +msgstr "" + +#: src/screens/Moderation/index.tsx:269 +msgid "Interaction settings" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:33 +msgid "Introducing activity notifications" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:49 +msgid "Introducing drafts" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:56 +msgid "Introducing finding friends via contacts" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 +msgid "Introducing saved posts AKA bookmarks" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:156 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:71 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:157 +msgid "Invalid group chat code." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:615 +msgid "Invalid handle. Please try a different one." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 +msgctxt "toast" +msgid "Invalid interaction settings." +msgstr "" + +#: src/components/contacts/phone-number.ts:33 +#: src/components/contacts/screens/PhoneInput.tsx:142 +msgid "Invalid phone number" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:100 +msgid "Invalid report subject" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:200 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:86 +msgid "Invalid Verification Code" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:587 +msgid "Invite" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:567 +msgid "Invite {name} to join Bluesky" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:193 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:363 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:42 +#: src/components/contacts/components/InviteInfo.tsx:44 +msgid "Invite Friends" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:301 +msgid "Invite friends <0/>" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:193 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 +#: src/screens/Messages/components/InviteLinkDialog.tsx:335 +#: src/screens/Messages/components/InviteLinkDialog.tsx:514 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149 +#: src/screens/Messages/ConversationSettings/index.tsx:557 +msgid "Invite link" +msgstr "" + +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:214 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:127 +msgid "Invite link copied" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:120 +msgid "Invite link created" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:138 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 +msgid "Invite link disabled" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:126 +msgid "Invite link edited" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:132 +msgid "Invite link enabled" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:83 +msgid "Invite people to this starter pack!" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:37 +msgid "Invite your friends to follow your favorite feeds and people" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 +msgid "Invited" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:34 +msgid "Invites, but personal" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:47 +msgid "It looks like some of your contacts have not tried to find you here yet. You can personally invite them by customizing a draft message we will provide." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:373 +msgid "It's correct" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:483 +msgid "It's just <0>{0} right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:478 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#. placeholder {0}: videoState.jobId +#: src/view/com/composer/Composer.tsx:2617 +msgid "Job ID: {0}" +msgstr "" + +#. Link to a page with job openings at Bluesky +#: src/view/com/auth/SplashScreen.web.tsx:181 +msgid "Jobs" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +msgid "Join" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:488 +msgid "Join Bluesky" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:72 +#: src/components/intents/GroupChatJoinDialog.tsx:464 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:189 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:72 +#: src/view/shell/NavSignupCard.tsx:41 +msgid "Join the conversation" +msgstr "" + +#: src/lib/interests.ts:63 +msgid "Journalism" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 +#: src/view/com/composer/drafts/DraftsButton.tsx:135 +msgid "Keep editing" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:230 +msgid "Keep me posted" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 +msgid "KWS website" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName(desc.source!) +#: src/components/moderation/ContentHider.tsx:245 +msgid "Labeled by {0}." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:243 +msgid "Labeled by the author." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:70 +#: src/view/screens/Profile.tsx:234 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:68 +msgid "Labels added" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:78 +msgid "Labels applied to this post" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:195 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:76 +msgid "Labels on your account" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:357 +msgid "Language" +msgstr "" + +#: src/Navigation.tsx:220 +msgid "Language Settings" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:98 +#: src/screens/Settings/Settings.tsx:240 +#: src/screens/Settings/Settings.tsx:243 +msgid "Languages" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:158 +msgid "Larger" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:443 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:179 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:441 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:177 +msgid "Last initiated just now" +msgstr "" + +#: src/screens/Hashtag.tsx:97 +#: src/screens/Search/SearchResults.tsx:95 +#: src/screens/Topic.tsx:64 +msgid "Latest" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:168 +#: src/components/verification/VerifierDialog.tsx:136 +#: src/screens/Moderation/VerificationSettings.tsx:50 +#: src/screens/Profile/Header/EditProfileDialog.tsx:346 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:215 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:279 +msgctxt "english-only-resource" +msgid "Learn more" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:143 +msgid "Learn More" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:273 +msgctxt "english-only-resource" +msgid "Learn more about <0>how to use advanced search." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 +msgid "Learn more about age assurance" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:169 +msgid "Learn more about Bluesky" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:33 +msgid "Learn more about how inviting friends works" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:303 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 +#: src/screens/Settings/FindContactsSettings.tsx:140 +msgctxt "english-only-resource" +msgid "Learn more about importing contacts" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:220 +#: src/screens/Login/components/HostingProviderDialog.tsx:241 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 +msgid "Learn more about the moderation applied to this content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:150 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:90 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:116 +#: src/components/moderation/ScreenHider.tsx:132 +msgid "Learn more about this warning" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:153 +#: src/components/verification/VerifierDialog.tsx:122 +msgctxt "english-only-resource" +msgid "Learn more about verification on Bluesky" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:212 +msgid "Learn more about your Germ DM link" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:90 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:222 +#: src/components/moderation/ContentHider.tsx:253 +#: src/screens/Login/components/HostingProviderDialog.tsx:243 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:591 +msgid "Leave" +msgstr "" + +#. Leave a conversation (reject a chat invitation) +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 +msgctxt "Button" +msgid "Leave" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:109 +#: src/components/dms/MessagesListBlockedFooter.tsx:116 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 +#: src/screens/Messages/components/ChatEnded.tsx:66 +#: src/screens/Messages/components/ChatLocked.tsx:112 +msgid "Leave chat" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:229 +#: src/components/dms/AfterReportConversationDialog.tsx:233 +#: src/components/dms/ConvoMenu.tsx:236 +#: src/components/dms/ConvoMenu.tsx:240 +#: src/components/dms/ConvoMenu.tsx:308 +#: src/components/dms/ConvoMenu.tsx:312 +#: src/components/dms/LeaveConvoPrompt.tsx:53 +msgid "Leave conversation" +msgstr "" + +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:174 +msgctxt "button" +msgid "Leave conversation" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:130 +#: src/screens/Messages/ConversationSettings/prompts.tsx:154 +msgid "Leave group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:590 +msgid "Leave this group chat" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:83 +#: src/components/dialogs/LinkWarning.tsx:91 +msgid "Leaving Bluesky" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:153 +msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:274 +msgid "Left group chat." +msgstr "" + +#: src/screens/SignupQueued.tsx:158 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:177 +#: src/screens/Login/index.tsx:193 +msgid "Let's get your password reset!" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:337 +msgid "Let's go!" +msgstr "" + +#: src/components/dialogs/Embed.tsx:159 +#: src/components/dialogs/Embed.tsx:161 +#: src/screens/Settings/AppearanceSettings.tsx:87 +msgid "Light" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:14 +msgctxt "Name of app icon variant" +msgid "Light" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 +msgid "Like" +msgstr "" + +#. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form +#. placeholder {0}: post.likeCount || 0 +#: src/components/PostControls/index.tsx:284 +msgid "Like ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:108 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:217 +#: src/state/shell/progress-guide.tsx:222 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 +msgid "Like this feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:149 +msgid "Like this labeler" +msgstr "" + +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 +msgid "Liked by" +msgstr "" + +#: src/screens/Post/PostLikedBy.tsx:31 +#: src/screens/Profile/ProfileLabelerLikedBy.tsx:22 +#: src/view/screens/ProfileFeedLikedBy.tsx:22 +msgid "Liked By" +msgstr "" + +#. placeholder {0}: count || 0 +#. placeholder {0}: feed.likeCount || 0 +#: src/components/FeedCard.tsx:249 +#: src/view/com/feeds/FeedSourceCard.tsx:173 +msgid "Liked by {0, plural, one {# user} other {# users}}" +msgstr "" + +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:96 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 +msgid "Liked by {likeCount, plural, one {# user} other {# users}}" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:158 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 +msgid "Likes" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:200 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 +msgid "Likes of your reposts" +msgstr "" + +#: src/screens/PostThread/components/LikesStat.tsx:39 +msgid "Likes on this post" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:49 +#: src/screens/PostThread/components/HeaderDropdown.tsx:54 +msgid "Linear" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:300 +msgid "Link copied to clipboard" +msgstr "" + +#: src/Navigation.tsx:253 +msgid "List" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:397 +msgid "List avatar" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:48 +msgctxt "toast" +msgid "List blocked" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') +#: src/components/ListCard.tsx:153 +#: src/view/com/feeds/FeedSourceCard.tsx:153 +msgid "List by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:145 +msgid "List by <0/>" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:143 +msgid "List by you" +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:127 +msgid "List created, but failed to add some members" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:155 +msgid "List creator" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:93 +msgctxt "toast" +msgid "List deleted" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:446 +msgid "List description" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:466 +msgid "List description is too long. {DESCRIPTION_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:133 +msgid "List has been hidden" +msgstr "" + +#: src/screens/ProfileList/index.tsx:175 +msgid "List Hidden" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:438 +msgid "List must have a name." +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:33 +msgctxt "toast" +msgid "List muted" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:410 +msgid "List name" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:430 +msgid "List name is too long. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {The maximum number of characters is #.}}" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:115 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:130 +msgctxt "toast" +msgid "List unblocked" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:101 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:116 +msgctxt "toast" +msgid "List unmuted" +msgstr "" + +#: src/Navigation.tsx:174 +#: src/view/screens/Lists.tsx:60 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 +msgid "Lists" +msgstr "" + +#: src/view/com/lists/MyLists.tsx:72 +msgid "Lists allow you to see content from your favorite people." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:38 +msgid "Lists blocking this user:" +msgstr "" + +#. Live status indicator on avatar. Should be extremely short, not much space for more than 4 characters +#: src/features/liveNow/components/LiveIndicator.tsx:46 +msgid "LIVE" +msgstr "" + +#. placeholder {0}: feed.title +#: src/features/liveEvents/components/LiveEventFeedCardCompact.tsx:53 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:54 +msgid "Live event happening now: {0}" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 +msgid "Live event hidden" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 +msgid "Live event unhidden" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 +msgid "Live feature is in beta" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:142 +#: src/features/liveNow/components/EditLiveDialog.tsx:146 +#: src/features/liveNow/components/GoLiveDialog.tsx:137 +#: src/features/liveNow/components/GoLiveDialog.tsx:141 +msgid "Live link" +msgstr "" + +#: src/screens/Search/Explore.tsx:87 +msgid "Load more" +msgstr "" + +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Notifications.tsx:271 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 +#: src/screens/ProfileList/FeedSection.tsx:113 +#: src/view/com/feeds/FeedPage.tsx:168 +msgid "Load new posts" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:254 +msgctxt "placeholder" +msgid "Loading chatโ€ฆ" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:575 +msgid "Loading lists..." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:279 +msgid "Loading post interaction settings..." +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60 +msgid "Loading..." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:571 +msgid "Lock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:107 +msgid "Lock group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:105 +msgid "Lock group chat?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:569 +msgid "Lock this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:571 +msgid "Locked" +msgstr "" + +#: src/Navigation.tsx:328 +msgid "Log" +msgstr "" + +#: src/components/AccountList.tsx:189 +msgid "Logged out" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 +msgid "Logged-out visibility" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:142 +msgid "Logo by @sawaratsuki.bsky.social" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:139 +#: src/view/shell/Drawer.tsx:768 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:55 +msgid "Long press to open tag menu for {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:114 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:44 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:84 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below ๐Ÿ˜„" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:36 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to GIFs about love/affection. +#: src/features/gifPicker/components/GifCategoryPills.tsx:55 +msgid "Love GIFs" +msgstr "" + +#: src/components/dialogs/EmailDialog/index.tsx:39 +msgid "Make adjustments to email settings for your account" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 +msgid "Make one for me" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:101 +msgid "Make sure this is where you intend to go!" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:62 +#: src/screens/Settings/ContentAndMediaSettings.tsx:65 +msgid "Manage saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:339 +msgid "Manage verification settings" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:111 +msgid "Manage your muted words and tags" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:173 +#: src/screens/Login/components/HostingProviderDialog.tsx:174 +msgid "Manual" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:312 +#: src/screens/Messages/Inbox.tsx:318 +msgid "Mark all as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 +#: src/view/shell/bottom-bar/BottomBar.tsx:465 +#: src/view/shell/bottom-bar/BottomBar.tsx:469 +msgid "Mark all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 +#: src/view/shell/bottom-bar/BottomBar.tsx:473 +#: src/view/shell/bottom-bar/BottomBar.tsx:477 +msgid "Mark all requests as read" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 +msgid "Mark as read" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:299 +msgid "Marked all as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:633 +#: src/view/shell/bottom-bar/BottomBar.tsx:444 +msgid "Marked all chats as read" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:642 +#: src/view/shell/bottom-bar/BottomBar.tsx:453 +msgid "Marked all requests as read" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +msgid "Maybe later" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 +#: src/view/screens/Profile.tsx:238 +msgid "Media" +msgstr "" + +#. Example: "Media stored on John's iPhone" +#. placeholder {0}: draft.draft.deviceName +#: src/view/com/composer/drafts/DraftItem.tsx:119 +msgid "Media stored on {0}" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:117 +msgid "Media stored on another device" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:206 +msgid "Media that may be disturbing or inappropriate for some audiences." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:300 +msgid "Member removed from group chat." +msgstr "" + +#. The heading above the list of chat members. +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +msgid "Members" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:106 +msgid "Members can still read chat history but canโ€™t send new messages." +msgstr "" + +#: src/components/WhoCanReply.tsx:320 +msgid "mentioned users" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:179 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 +#: src/view/screens/Notifications.tsx:99 +msgid "Mentions" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:37 +msgid "Mentions of these people" +msgstr "" + +#: src/components/Menu/index.tsx:119 +msgid "Menu" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 +msgctxt "action" +msgid "Message" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:255 +msgctxt "description" +msgid "Message" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/components/dms/MessageProfileButton.tsx:99 +msgid "Message {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +msgid "Message {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:322 +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageOverlays.tsx:111 +msgctxt "toast" +msgid "Message deleted" +msgstr "" + +#: src/components/dms/MessageItem.tsx:637 +msgid "Message failed to send." +msgstr "" + +#. placeholder {0}: sender?.handle ?? 'unknown' +#. placeholder {1}: message.text +#: src/components/dms/MessageContextMenu.tsx:166 +msgid "Message from @{0}: {1}" +msgstr "" + +#. placeholder {0}: rawError.message +#: src/view/com/posts/PostFeedErrorMessage.tsx:209 +msgid "Message from server: {0}" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:251 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:116 +msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:165 +msgid "Message options" +msgstr "" + +#: src/Navigation.tsx:779 +msgid "Messages" +msgstr "" + +#: src/components/dms/MessageItem.tsx:736 +msgid "Messages from this person are hidden while they are blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:731 +msgid "Messages from this person are hidden while you are blocking them." +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 +msgctxt "Name of app icon variant" +msgid "Midnight" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:177 +msgid "Minor harassment or bullying" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 +msgid "Misleading" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:131 +msgid "Missing media" +msgstr "" + +#: src/Navigation.tsx:179 +#: src/screens/Moderation/index.tsx:100 +msgid "Moderation" +msgstr "" + +#: src/screens/Settings/Settings.tsx:190 +#: src/screens/Settings/Settings.tsx:193 +msgid "Moderation and content filters" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:175 +msgid "Moderation details" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:311 +#: src/components/ListCard.tsx:152 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:309 +#: src/view/com/profile/ProfileSubpageHeader.tsx:156 +msgid "Moderation list by you" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:256 +msgctxt "toast" +msgid "Moderation list created" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:242 +msgctxt "toast" +msgid "Moderation list updated" +msgstr "" + +#: src/screens/Moderation/index.tsx:299 +msgid "Moderation lists" +msgstr "" + +#: src/Navigation.tsx:184 +#: src/view/screens/ModerationModlists.tsx:60 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:257 +msgid "moderation settings" +msgstr "" + +#: src/Navigation.tsx:313 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:253 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:72 +#: src/lib/moderation/useModerationCauseDescription.ts:48 +msgid "Moderator has chosen to set a general warning on the content." +msgstr "" + +#: src/view/shell/desktop/Feeds.tsx:106 +#: src/view/shell/desktop/Feeds.tsx:153 +msgid "More feeds" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:125 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:128 +msgid "More languages..." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 +#: src/view/com/composer/drafts/DraftItem.tsx:190 +#: src/view/com/profile/ProfileMenu.tsx:251 +#: src/view/com/profile/ProfileMenu.tsx:258 +msgid "More options" +msgstr "" + +#: src/screens/SavedFeeds.tsx:488 +msgid "Move feed down" +msgstr "" + +#: src/screens/SavedFeeds.tsx:478 +msgid "Move feed up" +msgstr "" + +#: src/lib/interests.ts:64 +msgid "Movies" +msgstr "" + +#: src/lib/interests.ts:65 +msgid "Music" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:536 +msgid "Mute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:184 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97 +msgctxt "video" +msgid "Mute" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:154 +#: src/components/RichTextTag.tsx:170 +msgid "Mute {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 +#: src/view/com/profile/ProfileMenu.tsx:443 +#: src/view/com/profile/ProfileMenu.tsx:450 +msgid "Mute account" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:83 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:86 +msgid "Mute accounts" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 +msgid "Mute conversation" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:262 +msgid "Mute in:" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:109 +msgid "Mute list" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:104 +msgid "Mute these accounts?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:534 +msgid "Mute this group chat" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:194 +msgid "Mute this word for 24 hours" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:233 +msgid "Mute this word for 30 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:218 +msgid "Mute this word for 7 days" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:267 +msgid "Mute this word in post text and tags" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:283 +msgid "Mute this word in tags only" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:179 +msgid "Mute this word until you unmute it" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 +msgid "Mute thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 +msgid "Mute words & tags" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. Itโ€™s your chat." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:536 +msgid "Muted" +msgstr "" + +#: src/screens/Moderation/index.tsx:314 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:189 +#: src/view/screens/ModerationMutedAccounts.tsx:107 +msgid "Muted Accounts" +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:193 +msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." +msgstr "" + +#. placeholder {0}: cause.source.list.name +#: src/lib/moderation/useModerationCauseDescription.ts:93 +msgid "Muted by \"{0}\"" +msgstr "" + +#: src/screens/Moderation/index.tsx:284 +msgid "Muted words & tags" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:106 +msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:54 +#: src/components/dialogs/BirthDateSettings.tsx:58 +msgid "My birthdate" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:77 +msgid "My favorite feeds and people - join me!" +msgstr "" + +#: src/view/screens/Feeds.tsx:697 +msgid "My Feeds" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:49 +msgid "My starter pack" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:416 +msgid "Name" +msgstr "" + +#: src/lib/interests.ts:66 +msgid "Nature" +msgstr "" + +#. placeholder {0}: record.name +#. placeholder {0}: view.record.name +#: src/components/StarterPack/StarterPackCard.tsx:134 +#: src/components/StarterPack/StarterPackCard.tsx:169 +msgid "Navigate to {0}" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:135 +msgid "Navigate to starter pack" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:144 +#: src/screens/Login/ForgotPasswordForm.tsx:169 +#: src/screens/Login/LoginForm.tsx:555 +msgid "Navigates to the next screen" +msgstr "" + +#: src/view/shell/Drawer.tsx:92 +msgid "Navigates to your profile" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:342 +#: src/components/moderation/ReportDialog/index.tsx:358 +msgid "Need to report a copyright violation, legal request, or regulatory compliance issue?" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:585 +msgid "Nevermind, create a handle for me" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:398 +msgid "New" +msgstr "" + +#: src/view/screens/Lists.tsx:71 +#: src/view/screens/ModerationModlists.tsx:72 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 +msgctxt "nux-description" +msgid "New" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:569 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:552 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 +#: src/screens/Messages/ChatList.tsx:232 +#: src/screens/Messages/ChatList.tsx:455 +#: src/screens/Messages/ChatList.tsx:456 +#: src/screens/Messages/ChatList.tsx:580 +msgid "New chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 +msgid "New chat with {0}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 +msgid "New chat with {0} and {1}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73 +msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 +msgid "New email address" +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:75 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:74 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:85 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:65 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:129 +msgid "New Feature" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:193 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 +msgid "New followers" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 +msgid "New group chat" +msgstr "" + +#. Button used to create a new group chat. +#. Button used to create a new group chat. +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:332 +msgid "New group chat with:" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:228 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:236 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:387 +msgid "New handle" +msgstr "" + +#: src/view/screens/Lists.tsx:64 +#: src/view/screens/ModerationModlists.tsx:64 +msgid "New list" +msgstr "" + +#: src/screens/Messages/Settings.tsx:289 +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:281 +msgid "New message requests" +msgstr "" + +#: src/screens/Messages/Settings.tsx:268 +#: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 +#: src/screens/Settings/NotificationSettings/index.tsx:264 +msgid "New messages" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:130 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:204 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:208 +msgid "New password" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:218 +#: src/screens/ProfileList/index.tsx:237 +#: src/screens/ProfileList/index.tsx:280 +#: src/view/screens/Feeds.tsx:545 +#: src/view/screens/Notifications.tsx:165 +#: src/view/screens/Profile.tsx:607 +msgid "New post" +msgstr "" + +#: src/view/com/feeds/FeedPage.tsx:179 +#: src/view/shell/desktop/LeftNav.tsx:598 +msgctxt "action" +msgid "New post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:558 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:543 +msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:202 +msgid "New starter pack" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:569 +msgid "New to Bluesky? <0>Sign up" +msgstr "" + +#: src/components/NewskieDialog.tsx:122 +msgid "New user info dialog" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:95 +#: src/screens/PostThread/components/HeaderDropdown.tsx:100 +#: src/screens/Settings/ThreadPreferences.tsx:73 +#: src/screens/Settings/ThreadPreferences.tsx:76 +msgid "Newest replies first" +msgstr "" + +#: src/lib/interests.ts:67 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 +msgid "News" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:410 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:599 +#: src/screens/Login/ForgotPasswordForm.tsx:143 +#: src/screens/Login/ForgotPasswordForm.tsx:150 +#: src/screens/Login/SetNewPasswordForm.tsx:171 +#: src/screens/Login/SetNewPasswordForm.tsx:177 +#: src/screens/Onboarding/StepFinished/index.tsx:330 +#: src/screens/Onboarding/StepFinished/index.tsx:339 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:157 +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:165 +#: src/screens/Signup/BackNextButtons.tsx:68 +#: src/screens/StarterPack/Wizard/index.tsx:198 +#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:384 +#: src/screens/StarterPack/Wizard/index.tsx:391 +msgid "Next" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:218 +msgid "Next image" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:33 +msgid "Night" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 +msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:108 +msgid "No app passwords yet" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:177 +msgid "No beta features at the moment." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:681 +msgid "No contacts found" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:659 +msgid "No contacts with the name โ€œ{query}โ€ found" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:161 +msgid "No custom feeds yet" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:410 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:412 +msgid "No DNS Panel" +msgstr "" + +#: src/view/com/composer/drafts/DraftsListDialog.tsx:143 +msgid "No drafts yet" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:134 +msgid "No expiry set" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:122 +msgid "No feeds found. Try searching for something else." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:216 +msgid "No followers yet" +msgstr "" + +#. Empty-state message shown in the GIF picker when a search returns zero results. Placeholder is the userโ€™s search query. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:25 +msgid "No GIFs found for \"{query}\"." +msgstr "" + +#. Empty-state message shown when the trending/featured GIF feed returns no results (rare, usually a transient provider issue). +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:36 +msgid "No GIFs to show right now. Try again in a moment." +msgstr "" + +#: src/features/liveNow/components/LinkPreview.tsx:64 +msgid "No image" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + +#: src/components/LikedByList.tsx:84 +#: src/view/com/post-thread/PostLikedBy.tsx:84 +#: src/view/screens/Profile.tsx:539 +msgid "No likes yet" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:160 +msgid "No lists" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) +#. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) +#: src/components/ProfileCard.tsx:523 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:273 +#: src/view/com/notifications/NotificationFeedItem.tsx:813 +msgid "No longer following {0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 +msgid "No media yet" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:310 +msgid "No messages yet" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 +msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:563 +msgid "No name" +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:125 +msgid "No notifications yet!" +msgstr "" + +#: src/screens/Messages/Settings.tsx:104 +msgctxt "allow group chat invites from" +msgid "No one" +msgstr "" + +#: src/screens/Messages/Settings.tsx:86 +msgctxt "allow messages from" +msgid "No one" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:130 +#: src/screens/Settings/ActivityPrivacySettings.tsx:135 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:160 +msgctxt "enable for" +msgid "No one" +msgstr "" + +#: src/components/WhoCanReply.tsx:303 +msgid "No one but the author can quote this post." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "No one can send messages" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + +#: src/screens/Notifications/ActivityList.tsx:43 +msgid "No posts here" +msgstr "" + +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 +msgid "No posts yet" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:114 +msgid "No quotes yet" +msgstr "" + +#. Empty-state message shown in the GIF pickerโ€™s Recents tab before the user has selected any GIFs. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:31 +msgid "No recent GIFs yet. Pick one to see it here." +msgstr "" + +#: src/view/screens/Profile.tsx:470 +msgid "No replies yet" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:90 +msgid "No reposts yet" +msgstr "" + +#: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60 +#: src/view/com/composer/text-input/web/Autocomplete.tsx:192 +msgid "No result" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:250 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:469 +#: src/components/ProgressGuide/FollowDialog.tsx:221 +msgid "No results" +msgstr "" + +#. placeholder {0}: interestsDisplayNames[selectedInterest] +#: src/screens/Search/Explore.tsx:817 +msgid "No results for \"{0}\"." +msgstr "" + +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 +msgid "No results found" +msgstr "" + +#: src/view/screens/Feeds.tsx:466 +msgid "No results found for \"{query}\"" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:233 +msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:245 +msgid "No results found for โ€œ<0>{query}โ€." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:239 +msgid "No results found for your query with advanced search filters applied." +msgstr "" + +#: src/screens/Search/Explore.tsx:821 +msgid "No results." +msgstr "" + +#: src/view/screens/Profile.tsx:571 +msgid "No Starter Packs yet" +msgstr "" + +#: src/components/dialogs/EmbedConsent.tsx:100 +#: src/components/dialogs/EmbedConsent.tsx:107 +msgid "No thanks" +msgstr "" + +#: src/lib/translation/index.tsx:308 +msgid "No translation received from your device." +msgstr "" + +#: src/view/screens/Profile.tsx:512 +msgid "No video posts yet" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:471 +msgid "Nobody" +msgstr "" + +#: src/components/LikedByList.tsx:86 +#: src/view/com/post-thread/PostLikedBy.tsx:86 +msgid "Nobody has liked this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:116 +msgid "Nobody has quoted this yet. Maybe you should be the first!" +msgstr "" + +#: src/view/com/post-thread/PostRepostedBy.tsx:92 +msgid "Nobody has reposted this yet. Maybe you should be the first!" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:107 +msgid "Nobody was found. Try searching for someone else." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:80 +msgid "Non-consensual intimate imagery" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:42 +msgid "Non-sexual Nudity" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 +msgid "None of these words" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" + +#: src/screens/FindContactsFlowScreen.tsx:62 +#: src/screens/Settings/FindContactsSettings.tsx:106 +msgid "Not available on this platform." +msgstr "" + +#: src/components/KnownFollowers.tsx:254 +msgid "Not followed by anyone youโ€™re following" +msgstr "" + +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 +msgid "Not Found" +msgstr "" + +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:131 +msgid "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:546 +msgid "Note about sharing" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:117 +msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks.tsx:292 +msgid "Nothing saved yet" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:72 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 +#: src/view/screens/Notifications.tsx:134 +msgid "Notification settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:305 +#: src/screens/Messages/Settings.tsx:318 +msgid "Notification sounds" +msgstr "" + +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 +#: src/screens/Messages/Settings.tsx:255 +#: src/screens/Notifications/ActivityList.tsx:31 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 +#: src/screens/Settings/Settings.tsx:198 +#: src/screens/Settings/Settings.tsx:201 +#: src/view/screens/Notifications.tsx:128 +#: src/view/shell/bottom-bar/BottomBar.tsx:279 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 +msgid "Notifications" +msgstr "" + +#: src/lib/hooks/useTimeAgo.ts:135 +msgid "now" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:146 +#: src/view/com/composer/labels/LabelsBtn.tsx:149 +msgid "Nudity" +msgstr "" + +#: src/components/contacts/phone-number.ts:43 +msgid "Number should be a mobile number" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:14 +#: src/screens/Settings/AccountSettings.tsx:162 +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:34 +msgid "Off" +msgstr "" + +#. Title of the error screen shown when the GIF picker crashes unexpectedly. +#: src/components/dialogs/LanguageSelectDialog.tsx:347 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:22 +#: src/view/com/util/ErrorBoundary.tsx:57 +msgid "Oh no!" +msgstr "" + +#. Confirm button text. +#: src/components/contacts/screens/GetContacts.tsx:317 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Settings/AppIconSettings/index.tsx:46 +#: src/screens/Settings/AppIconSettings/index.tsx:232 +msgid "OK" +msgstr "" + +#: src/components/BotAccountAlert.tsx:52 +#: src/components/BotAccountAlert.tsx:57 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 +#: src/screens/Login/PasswordUpdatedForm.tsx:35 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +msgid "Okay" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:85 +#: src/screens/PostThread/components/HeaderDropdown.tsx:90 +#: src/screens/Settings/ThreadPreferences.tsx:65 +#: src/screens/Settings/ThreadPreferences.tsx:68 +msgid "Oldest replies first" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:162 +msgid "On" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:86 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/screens/Settings/Settings.tsx:405 +msgid "Onboarding reset" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:939 +msgid "One or more GIFs is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:936 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "One or more of your selected files are not supported." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:446 +msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." +msgstr "" + +#: src/view/com/composer/Composer.tsx:742 +msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" +msgstr "" + +#: src/view/com/composer/Composer.tsx:946 +msgid "One or more videos is missing alt text." +msgstr "" + +#. placeholder {0}: settings.map((rule, i) => ( )) +#: src/components/WhoCanReply.tsx:283 +msgid "Only {0} can reply." +msgstr "" + +#. Toast shown when adding images would exceed the post gallery cap; only the first N are kept +#. placeholder {0}: result.accepted.length +#. placeholder {1}: next.length +#. placeholder {2}: next.length +#: src/view/com/composer/Composer.tsx:235 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can reject join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:155 +msgid "Only followers can join this group chat." +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:121 +#: src/screens/Settings/ActivityPrivacySettings.tsx:126 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 +msgid "Only followers who I follow" +msgstr "" + +#: src/lib/media/picker.shared.ts:34 +msgid "Only image files are supported" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:218 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:306 +msgid "Only people the chat owner follows can join" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 +msgid "Only posts with media" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:24 +msgid "Only posts with videos" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:24 +msgid "Only replies" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 +msgid "Only WebVTT (.vtt) files are supported" +msgstr "" + +#: src/components/Lists.tsx:99 +msgid "Oops, something went wrong!" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +msgid "Oops, this profile doesn't exist. Try scanning another one." +msgstr "" + +#: src/components/Lists.tsx:184 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 +#: src/screens/Settings/AppPasswords.tsx:59 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:108 +#: src/view/screens/Profile.tsx:133 +msgid "Oops!" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:66 +msgid "Open advanced search options" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:308 +msgid "Open avatar creator" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:201 +msgid "Open camera" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Open chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 +msgid "Open chat member options for {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:490 +#: src/screens/Messages/components/ChatListItem.tsx:494 +msgid "Open conversation options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:69 +msgid "Open draft" +msgstr "" + +#: src/components/Layout/Header/index.tsx:168 +msgid "Open drawer menu" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:213 +#: src/view/com/composer/Composer.tsx:2250 +msgid "Open emoji picker" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 +msgid "Open feed info screen" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 +msgid "Open feed options menu" +msgstr "" + +#: src/components/dms/EmojiPopup.android.tsx:28 +msgid "Open full emoji list" +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:75 +msgid "Open Germ DM" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:446 +msgid "Open group chat" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 +msgid "Open group chat settings" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:147 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:40 +msgid "Open message options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:470 +msgid "Open moderation debug page" +msgstr "" + +#: src/screens/Moderation/index.tsx:280 +msgid "Open muted words and tags settings" +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:128 +msgid "Open pack" +msgstr "" + +#: src/components/PostControls/PostMenu/index.tsx:67 +msgid "Open post options menu" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 +msgid "Open profile" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "" + +#: src/components/BotAccountAlert.tsx:62 +#: src/components/BotAccountAlert.tsx:71 +msgid "Open settings" +msgstr "" + +#: src/components/PostControls/ShareMenu/index.tsx:98 +msgid "Open share menu" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +msgid "Open starter pack menu" +msgstr "" + +#: src/screens/Settings/Settings.tsx:463 +#: src/screens/Settings/Settings.tsx:477 +msgid "Open storybook page" +msgstr "" + +#: src/screens/Settings/Settings.tsx:456 +msgid "Open system log" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Open this group chat" +msgstr "" + +#. placeholder {0}: feedInfo.displayName +#: src/view/shell/desktop/Feeds.tsx:185 +msgid "Opens {0} feed" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:63 +msgid "Opens a dialog to add a content warning to your post" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:645 +msgid "Opens a dialog to change the hosting provider you sign in to" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 +msgid "Opens a dialog to choose who can interact with this post" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:40 +msgid "Opens a list of color themes for the QR card" +msgstr "" + +#: src/screens/Log.tsx:74 +msgid "Opens additional details for a debug entry" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:45 +msgid "Opens alt text dialog" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 +msgid "Opens camera on device" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:44 +msgid "Opens captions and alt text dialog" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:134 +msgid "Opens change handle dialog" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:64 +msgid "Opens composer" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:202 +msgid "Opens device camera" +msgstr "" + +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:517 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:305 +#: src/view/com/auth/SplashScreen.tsx:91 +#: src/view/com/auth/SplashScreen.web.tsx:112 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:291 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 +msgid "Opens flow to sign in to your existing Bluesky account" +msgstr "" + +#: src/components/images/Gallery/index.tsx:458 +msgid "Opens full image" +msgstr "" + +#: src/screens/Settings/Settings.tsx:257 +msgid "Opens helpdesk in browser" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:224 +msgid "Opens image picker" +msgstr "" + +#. placeholder {0}: link?.href ?? '' +#: src/components/dialogs/LinkWarning.tsx:113 +msgid "Opens link {0}" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:603 +msgid "Opens live status dialog" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:200 +msgid "Opens post language settings" +msgstr "" + +#: src/components/dms/SystemMessageItem.tsx:61 +msgid "Opens profile" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "" + +#. Accessibility hint announced after the GIF picker button label, describing what activating it will do. +#: src/view/com/composer/photos/SelectGifBtn.tsx:45 +msgid "Opens the GIF picker dialog" +msgstr "" + +#: src/view/shell/Drawer.tsx:123 +msgid "Opens the invite friends sheet to share your profile" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:148 +msgid "Opens the post composer" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:70 +msgid "Opens this draft in the composer" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:621 +msgid "Opens this profile" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:308 +msgid "Options:" +msgstr "" + +#: src/screens/Deactivated.tsx:192 +msgid "Or, continue with another account." +msgstr "" + +#: src/screens/Deactivated.tsx:179 +msgid "Or, sign in to one of your other accounts." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:55 +msgid "OTA status: ..." +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:51 +msgid "OTA status: Available!" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:53 +msgid "OTA status: Error fetching update" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:57 +msgid "OTA status: None available" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:238 +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:242 +#: src/view/com/composer/labels/LabelsBtn.tsx:181 +msgid "Other" +msgstr "" + +#: src/components/AccountList.tsx:93 +msgid "Other account" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:181 +msgid "Other child safety issue" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:208 +msgid "Other dangerous content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:119 +msgid "Other harassing or hateful content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 +msgid "Other misleading content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:231 +msgid "Other network rule-breaking" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:92 +msgid "Other sexual violence content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:154 +msgid "Other violent content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:51 +msgid "Our blog post" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:86 +#: src/components/dms/AfterReportConversationDialog.tsx:213 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 +msgid "Our moderation team has received your report." +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:54 +msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:384 +msgid "Owner" +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" + +#: src/components/Lists.tsx:204 +#: src/components/Lists.tsx:219 +#: src/view/screens/NotFound.tsx:34 +#: src/view/screens/NotFound.tsx:41 +msgid "Page not found" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:85 +msgid "Party GIFs" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:365 +#: src/screens/Login/LoginForm.tsx:372 +#: src/screens/Settings/AccountSettings.tsx:124 +#: src/screens/Settings/AccountSettings.tsx:128 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:284 +#: src/screens/Signup/StepInfo/index.tsx:258 +msgid "Password" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:70 +msgid "Password changed" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:125 +msgid "Password must be at least 8 characters long." +msgstr "" + +#: src/screens/Login/index.tsx:206 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:22 +msgid "Password updated!" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 +msgid "Pause" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32 +msgid "Pause GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 +msgid "Pause video" +msgstr "" + +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Search/SearchResults.tsx:107 +#: src/screens/StarterPack/StarterPackScreen.tsx:195 +msgid "People" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 +msgid "People {ownerName} follows can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 +msgid "People {ownerName} follows can request to join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:240 +msgid "People followed by @{0}" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:233 +msgid "People following @{0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:97 +msgctxt "allow group chat invites from" +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:82 +msgctxt "allow messages from" +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 +msgid "People I follow can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 +msgid "People I follow can request to join" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 +msgid "People you follow" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:524 +msgid "People you mention" +msgstr "" + +#: src/lib/media/save-image.ts:59 +msgid "Permission to access your photo library was denied. Please enable it in your system settings." +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 +msgid "Person toggle" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:60 +msgid "Personalize the message" +msgstr "" + +#: src/lib/interests.ts:68 +msgid "Pets" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:192 +#: src/components/contacts/screens/PhoneInput.tsx:204 +msgid "Phone number" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:304 +msgid "Phone number verified" +msgstr "" + +#: src/lib/interests.ts:69 +msgid "Photography" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:39 +msgid "Pick a color theme" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:165 +msgid "Pictures meant for adults." +msgstr "" + +#: src/components/FeedCard.tsx:364 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 +#: src/screens/SavedFeeds.tsx:559 +msgid "Pin feed" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:151 +#: src/screens/ProfileList/components/Header.tsx:158 +msgid "Pin to home" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 +msgid "Pin to Home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 +msgid "Pin to your profile" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:116 +msgid "Pinned" +msgstr "" + +#. placeholder {0}: info.displayName +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 +msgid "Pinned {0} to Home" +msgstr "" + +#: src/screens/SavedFeeds.tsx:146 +#: src/screens/SavedFeeds.tsx:337 +msgid "Pinned Feeds" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:77 +msgid "Pinned to your feeds" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 +msgid "Play" +msgstr "" + +#. placeholder {0}: link.title +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:110 +msgid "Play {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:32 +msgid "Play GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 +msgid "Play video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 +msgid "Play Video" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:33 +msgid "Plays or pauses the GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:169 +msgid "Plays or pauses the video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:109 +msgid "Plays the GIF" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 +msgid "Plays the video" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:111 +msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:189 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:313 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:305 +#: src/screens/Signup/StepInfo/index.tsx:149 +msgid "Please choose your password." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:286 +msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." +msgstr "" + +#: src/screens/Signup/state.ts:325 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/view/com/composer/state/video.ts:471 +msgid "Please confirm your email address to upload videos." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:102 +#: src/screens/Signup/StepInfo/index.tsx:139 +msgid "Please double-check that you have entered your email address correctly." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:56 +msgid "Please enter a password." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:120 +msgid "Please enter a password. It must be at least 8 characters long." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:134 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146 +msgid "Please enter a valid code." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 +msgid "Please enter a valid email address." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:89 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:145 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:66 +msgid "Please enter the code you received and the new password you would like to use." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +msgid "Please enter the security code we sent to your previous email address." +msgstr "" + +#: src/screens/Signup/state.ts:289 +#: src/screens/Signup/StepInfo/index.tsx:122 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:115 +msgid "Please enter your invite code." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 +msgid "Please enter your new email address." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:196 +msgid "Please enter your password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:190 +msgid "Please enter your username" +msgstr "" + +#. placeholder {0}: labeler ? sanitizeHandle(labeler.creator.handle, '@') : label.src +#: src/components/moderation/AppealForm.tsx:120 +msgid "Please explain why you think this label was incorrectly applied by {0}" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:143 +msgid "Please explain why you think your chats were incorrectly disabled" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:124 +msgid "Please explain why you think your Go Live access was incorrectly disabled." +msgstr "" + +#: src/components/FocusScope/index.tsx:91 +#: src/components/FocusScope/index.tsx:115 +msgid "Please go back, or activate this element to return to the start of the active content." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:102 +msgid "Please provide any additional details you feel moderators may need in order to properly assess your Age Assurance status." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:304 +msgid "Please select a language" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:32 +msgid "Please select a moderation service" +msgstr "" + +#: src/components/moderation/ReportDialog/action.ts:29 +msgid "Please select a reason for this report" +msgstr "" + +#. placeholder {0}: account.handle +#: src/lib/hooks/useAccountSwitcher.ts:45 +#: src/lib/hooks/useAccountSwitcher.ts:54 +msgid "Please sign in as @{0}" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:107 +msgid "Please use the native app to import your contacts." +msgstr "" + +#: src/screens/FindContactsFlowScreen.tsx:63 +msgid "Please use the native app to sync your contacts." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 +msgid "Please verify your email" +msgstr "" + +#: src/lib/hooks/useCreateSupportLink.ts:29 +msgid "Please write your message below:" +msgstr "" + +#: src/lib/interests.ts:70 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +msgid "Porn" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1895 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/screens/PostThread/index.tsx:560 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 +msgid "Post a photo" +msgstr "" + +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 +msgid "Post a video" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1893 +msgctxt "action" +msgid "Post All" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1554 +msgid "Post anyway" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 +msgid "Post by @{0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 +msgctxt "toast" +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:189 +msgid "Post failed to upload. Please check your Internet connection and try again." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:132 +#: src/screens/PostThread/components/ThreadItemPost.tsx:116 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:109 +#: src/screens/VideoFeed/index.tsx:551 +msgid "Post has been deleted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:127 +#: src/lib/moderation/useModerationCauseDescription.ts:107 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:130 +#: src/lib/moderation/useModerationCauseDescription.ts:116 +msgid "Post Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:685 +msgid "Post interaction settings" +msgstr "" + +#: src/Navigation.tsx:200 +#: src/screens/ModerationInteractionSettings/index.tsx:35 +msgid "Post Interaction Settings" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "" + +#. Accessibility label for button that opens dialog to choose post language settings +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:195 +msgid "Post language selection" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 +msgid "Post link" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:33 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgctxt "toast" +msgid "Post pinned" +msgstr "" + +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" + +#: src/state/queries/pinned-post.ts:61 +msgctxt "toast" +msgid "Post unpinned" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 +#: src/screens/StarterPack/StarterPackScreen.tsx:197 +#: src/view/screens/Profile.tsx:236 +msgid "Posts" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:123 +msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:76 +msgid "Posts hidden" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:89 +msgid "Potentially misleading link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:82 +msgid "Potentially misleading link warning" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:292 +msgid "Preferred language" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:18 +msgid "Press to attempt reconnection" +msgstr "" + +#: src/components/Error.tsx:56 +#: src/components/Lists.tsx:104 +#: src/screens/Messages/components/MessageListError.tsx:23 +#: src/screens/Messages/JoinRequests.tsx:355 +#: src/screens/Signup/BackNextButtons.tsx:48 +msgid "Press to retry" +msgstr "" + +#: src/components/KnownFollowers.tsx:125 +msgid "Press to view followers of this account that you also follow" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 +msgid "Preview" +msgstr "" + +#: src/components/Lightbox/Lightbox.web.tsx:197 +msgid "Previous image" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:141 +#: src/screens/Settings/LanguageSettings.tsx:157 +msgid "Primary language" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:118 +#: src/view/shell/desktop/RightNav.tsx:119 +msgid "Privacy" +msgstr "" + +#: src/screens/Settings/Settings.tsx:182 +#: src/screens/Settings/Settings.tsx:185 +msgid "Privacy and security" +msgstr "" + +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 +#: src/screens/Settings/ActivityPrivacySettings.tsx:41 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 +msgid "Privacy and Security" +msgstr "" + +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 +#: src/view/screens/Storybook/Admonitions.tsx:94 +msgid "Privacy and Security settings" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 +#: src/Navigation.tsx:338 +#: src/screens/Settings/AboutSettings.tsx:102 +#: src/screens/Settings/AboutSettings.tsx:105 +#: src/view/screens/PrivacyPolicy.tsx:25 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 +msgid "Privacy Policy" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:173 +msgid "Privacy violation of a minor" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2691 +msgid "Processing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2693 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:62 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:956 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:322 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 +msgid "Profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:164 +msgid "Profile banner placeholder" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 +#: src/lib/strings/errors.ts:39 +msgid "Profile not found" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:186 +msgctxt "toast" +msgid "Profile updated" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:223 +msgid "Promoting or selling prohibited items or services" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:160 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:161 +msgid "Psst! You can edit who can interact with this post." +msgstr "" + +#: src/view/com/lists/MyLists.tsx:77 +msgid "Public, sharable lists of users to mute or block in bulk." +msgstr "" + +#. Accessibility label for button to publish a single post +#: src/view/com/composer/Composer.tsx:1879 +msgid "Publish post" +msgstr "" + +#. Accessibility label for button to publish multiple posts in a thread +#: src/view/com/composer/Composer.tsx:1874 +msgid "Publish posts" +msgstr "" + +#. Accessibility label for button to publish multiple replies in a thread +#: src/view/com/composer/Composer.tsx:1863 +msgid "Publish replies" +msgstr "" + +#. Accessibility label for button to publish a single reply +#: src/view/com/composer/Composer.tsx:1868 +msgid "Publish reply" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:31 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:22 +msgid "Push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/SettingPreview.tsx:26 +msgid "Push, people you follow" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:143 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:121 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:101 +msgid "QR code saved to your camera roll!" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:176 +#: src/components/PostControls/RepostButton.tsx:199 +#: src/components/PostControls/RepostButton.web.tsx:84 +#: src/components/PostControls/RepostButton.web.tsx:91 +#: src/view/com/composer/drafts/DraftItem.tsx:137 +msgid "Quote post" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 +msgid "Quote post was re-attached" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +msgid "Quote post was successfully detached" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:175 +#: src/components/PostControls/RepostButton.tsx:197 +#: src/components/PostControls/RepostButton.web.tsx:83 +#: src/components/PostControls/RepostButton.web.tsx:90 +msgid "Quote posts disabled" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:186 +#: src/screens/Post/PostQuotes.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 +msgid "Quotes" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 +msgid "Quotes of this post" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:618 +msgid "Rate limit exceeded โ€“ you've tried to change your handle too many times in a short period. Please wait a minute before trying again." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:109 +msgid "Rate limit exceeded. Please try again later." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 +msgid "Re-attach quote" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 +msgid "Re-enable invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 +msgid "Re-enable link" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.tsx:80 +msgid "React with {emoji}" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:70 +#: src/components/dms/ReactionsDialog.tsx:98 +msgid "Reactions" +msgstr "" + +#: src/screens/Deactivated.tsx:133 +msgid "Reactivate your account" +msgstr "" + +#. placeholder {0}: item.moreReplies +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:93 +msgid "Read {0, plural, one {# more reply} other {# more replies}}" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:276 +msgctxt "english-only-resource" +msgid "Read about how to use advanced search filters" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 +msgid "Read blog post" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1055 +msgid "Read less" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1055 +msgid "Read more" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemReadMore.tsx:72 +msgid "Read more replies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:113 +msgid "Read our blog post" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:174 +msgid "Read the Bluesky blog" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:53 +#: src/screens/Signup/StepInfo/Policies.tsx:79 +msgid "Read the Bluesky Privacy Policy" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:46 +#: src/screens/Signup/StepInfo/Policies.tsx:66 +msgid "Read the Bluesky Terms of Service" +msgstr "" + +#: src/components/WelcomeModal.tsx:144 +msgid "Real conversations." +msgstr "" + +#: src/components/WelcomeModal.tsx:142 +msgid "Real people." +msgstr "" + +#: src/screens/Takendown.tsx:158 +#: src/screens/Takendown.tsx:166 +msgid "Reason for appeal" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +msgid "Receive push notifications" +msgstr "" + +#. Accessibility label for the icon-only pill that shows previously selected GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:35 +msgid "Recent GIFs" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:52 +msgid "Recent searches" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:249 +msgid "Recently used" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Reconnect" +msgstr "" + +#. Reject a chat request, this opens a menu with options +#: src/screens/Messages/components/RequestButtons.tsx:136 +msgid "Reject" +msgstr "" + +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 +msgid "Reject chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:424 +#: src/screens/Messages/Inbox.tsx:206 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:193 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 +#: src/components/dialogs/MutedWords.tsx:457 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:386 +#: src/components/FeedCard.tsx:376 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:106 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:113 +#: src/screens/Bookmarks.tsx:258 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:178 +#: src/screens/Moderation/index.tsx:477 +#: src/screens/Settings/Settings.tsx:683 +#: src/view/com/posts/PostFeedErrorMessage.tsx:221 +msgid "Remove" +msgstr "" + +#: src/components/dms/ChatProfileTabs.tsx:153 +msgid "Remove {displayName} from group chat" +msgstr "" + +#: src/components/StarterPack/Wizard/WizardListCard.tsx:62 +msgid "Remove {displayName} from starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 +msgid "Remove {displayName} from this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:176 +msgid "Remove {displayName}?" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:182 +msgid "Remove {q}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 +msgid "Remove account" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 +msgid "Remove all contacts" +msgstr "" + +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 +msgid "Remove attachment" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 +msgid "Remove Avatar" +msgstr "" + +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 +msgid "Remove Banner" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:286 +msgid "Remove caption file" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:234 +#: src/screens/Messages/components/MessageInputEmbed.tsx:289 +#: src/screens/Messages/components/MessageInputEmbed.tsx:344 +msgid "Remove embed" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:121 +#: src/view/com/posts/FeedShutdownMsg.tsx:125 +#: src/view/com/posts/PostFeedErrorMessage.tsx:177 +msgid "Remove feed" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:218 +msgid "Remove feed?" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:143 +msgid "Remove filter" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 +msgid "Remove from chat" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 +#: src/screens/SavedFeeds.tsx:549 +msgid "Remove from my feeds" +msgstr "" + +#: src/screens/Settings/Settings.tsx:677 +msgid "Remove from quick access?" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:174 +#: src/screens/List/ListHiddenScreen.tsx:178 +msgid "Remove from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:120 +#: src/screens/Bookmarks.tsx:252 +msgid "Remove from saved posts" +msgstr "" + +#: src/components/FeedCard.tsx:373 +msgid "Remove from your feeds?" +msgstr "" + +#: src/view/com/composer/photos/Gallery.tsx:227 +msgid "Remove image" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:221 +#: src/features/liveNow/components/EditLiveDialog.tsx:228 +msgid "Remove live status" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 +msgid "Remove member" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:613 +msgid "Remove mute word from your list" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:243 +msgid "Remove profile" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:153 +#: src/components/PostControls/RepostButton.tsx:163 +msgid "Remove repost" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:500 +#: src/screens/Settings/FindContactsSettings.tsx:349 +msgid "Remove suggestion" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:219 +msgid "Remove this feed from your saved feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:473 +msgid "Remove unavailable moderation services" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 +msgid "Remove user from list" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:48 +#: src/components/verification/VerificationsDialog.tsx:250 +#: src/view/com/profile/ProfileMenu.tsx:416 +#: src/view/com/profile/ProfileMenu.tsx:419 +msgid "Remove verification" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:46 +msgid "Remove your verification for this account?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:240 +msgid "Removed by author" +msgstr "" + +#: src/components/Post/Embed/index.tsx:238 +msgid "Removed by you" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:136 +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:246 +msgid "Removed from list" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:98 +msgid "Removed from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:88 +#: src/screens/Bookmarks.tsx:211 +msgid "Removed from saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:287 +msgid "Removed from starter pack" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 +#: src/view/com/posts/FeedShutdownMsg.tsx:45 +msgid "Removed from your feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:187 +msgid "Removed unavailable services" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:32 +msgid "Removed verification" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:541 +msgid "Renew" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:547 +msgid "Renew duration" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:531 +msgid "Renew mute word" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:134 +#: src/view/com/posts/FeedShutdownMsg.tsx:138 +msgid "Replace with Discover" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:39 +msgctxt "description" +msgid "Replied to <0><1/>" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:28 +msgctxt "description" +msgid "Replied to a blocked post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:30 +msgctxt "description" +msgid "Replied to a post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:36 +msgctxt "description" +msgid "Replied to you" +msgstr "" + +#: src/components/dms/MessageItem.tsx:926 +msgid "Replied-to message from {senderName}, tap to scroll to it" +msgstr "" + +#: src/components/dms/MessageItem.tsx:924 +msgid "Replied-to message was sent before you joined" +msgstr "" + +#: src/components/dms/MessageItem.tsx:927 +msgid "Replied-to message, tap to scroll to it" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 +#: src/lib/hooks/useNotificationHandler.ts:172 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 +msgid "Replies" +msgstr "" + +#: src/components/WhoCanReply.tsx:87 +msgid "Replies disabled" +msgstr "" + +#: src/components/WhoCanReply.tsx:281 +msgid "Replies to this post are disabled." +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:182 +#: src/components/dms/MessageContextMenu.tsx:185 +msgid "Reply" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1891 +msgctxt "action" +msgid "Reply" +msgstr "" + +#. Accessibility label for the reply button, verb form followed by number of replies and noun form +#. placeholder {0}: post.replyCount || 0 +#: src/components/PostControls/index.tsx:240 +msgid "Reply ({0, plural, one {# reply} other {# replies}})" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:136 +#: src/lib/moderation/useModerationCauseDescription.ts:126 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:135 +#: src/lib/moderation/useModerationCauseDescription.ts:125 +msgid "Reply Hidden by You" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 +msgid "Reply settings are chosen by the author of the thread" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:71 +msgid "Reply sorting" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 +msgctxt "toast" +msgid "Reply visibility updated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +msgid "Reply was successfully hidden" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:220 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:583 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:483 +#: src/view/com/profile/ProfileMenu.tsx:486 +msgid "Report account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:295 +#: src/components/dms/ConvoMenu.tsx:299 +#: src/screens/Messages/components/RequestButtons.tsx:161 +#: src/screens/Messages/components/RequestButtons.tsx:164 +msgid "Report conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 +msgid "Report dialog" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 +msgid "Report feed" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:210 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:213 +msgid "Report list" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:217 +msgid "Report message" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 +msgid "Report post" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:47 +msgid "Report sent" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:657 +#: src/screens/StarterPack/StarterPackScreen.tsx:660 +msgid "Report starter pack" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:83 +#: src/components/dms/AfterReportConversationDialog.tsx:210 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 +msgid "Report submitted" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:51 +#: src/components/moderation/ReportDialog/copy.ts:65 +msgid "Report this conversation" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:37 +msgid "Report this feed" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:582 +msgid "Report this group chat" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:31 +msgid "Report this list" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:19 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 +msgid "Report this livestream" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:57 +msgid "Report this message" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:25 +msgid "Report this post" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:43 +msgid "Report this starter pack" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:13 +msgid "Report this user" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:154 +#: src/components/PostControls/RepostButton.tsx:165 +#: src/components/PostControls/RepostButton.web.tsx:68 +#: src/components/PostControls/RepostButton.web.tsx:75 +msgctxt "action" +msgid "Repost" +msgstr "" + +#. Accessibility label for the repost button when the post has not been reposted, verb form followed by number of reposts and noun form +#. placeholder {0}: repostCount || 0 +#: src/components/PostControls/RepostButton.tsx:78 +msgid "Repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#: src/components/PostControls/RepostButton.tsx:146 +#: src/components/PostControls/RepostButton.web.tsx:43 +#: src/components/PostControls/RepostButton.web.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:577 +msgid "Repost or quote post" +msgstr "" + +#: src/screens/Post/PostRepostedBy.tsx:31 +msgid "Reposted By" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:78 +#: src/view/com/posts/PostFeedReason.tsx:97 +msgid "Reposted by {reposter}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:78 +#: src/view/com/posts/PostFeedReason.tsx:95 +msgid "Reposted by you" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:165 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 +msgid "Reposts of this post" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:207 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 +msgid "Reposts of your reposts" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:463 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:226 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:232 +msgid "Request code" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request rejected." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:295 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + +#. Incoming message requests +#: src/screens/Messages/components/InboxRequests.tsx:25 +msgid "Requests" +msgstr "" + +#: src/Navigation.tsx:519 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:59 +#: src/screens/Settings/AccessibilitySettings.tsx:64 +msgid "Require alt text before posting" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 +msgid "Require an email code to sign in to your account." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:207 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:310 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:115 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:117 +msgid "Rescind request" +msgstr "" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 +msgid "Resend" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:365 +#: src/components/contacts/screens/VerifyNumber.tsx:382 +msgid "Resend code" +msgstr "" + +#. placeholder {0}: String( clamp(Math.round(timeUntilCanResend / 1000), 0, 30), ).padStart(2, '0') +#: src/components/contacts/screens/VerifyNumber.tsx:372 +msgid "Resend code in <0>00:{0}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:174 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:177 +msgid "Resend email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:124 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:117 +msgid "Resend Verification Email" +msgstr "" + +#: src/screens/Settings/Settings.tsx:499 +#: src/screens/Settings/Settings.tsx:501 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:108 +msgid "Reset code" +msgstr "" + +#: src/screens/Settings/Settings.tsx:484 +#: src/screens/Settings/Settings.tsx:486 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:77 +msgid "Reset password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:422 +msgid "Reset your password by sending a code to your email" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 +msgid "Resync contacts" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:532 +msgid "Retries signing in" +msgstr "" + +#: src/view/com/util/error/ErrorMessage.tsx:56 +#: src/view/com/util/error/ErrorScreen.tsx:93 +msgid "Retries the last action, which errored out" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:28 +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 +#: src/components/contacts/screens/VerifyNumber.tsx:350 +#: src/components/contacts/screens/VerifyNumber.tsx:355 +#: src/components/Error.tsx:60 +#: src/components/Lists.tsx:115 +#: src/components/moderation/ReportDialog/index.tsx:297 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 +#: src/screens/Login/LoginForm.tsx:531 +#: src/screens/Login/LoginForm.tsx:537 +#: src/screens/Messages/ChatList.tsx:429 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/JoinRequests.tsx:361 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:95 +#: src/screens/PostThread/components/ThreadError.tsx:81 +#: src/screens/PostThread/components/ThreadError.tsx:87 +#: src/screens/Signup/BackNextButtons.tsx:54 +#: src/view/com/util/error/ErrorMessage.tsx:55 +#: src/view/com/util/error/ErrorScreen.tsx:91 +#: src/view/screens/Storybook/Admonitions.tsx:64 +msgid "Retry" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:294 +#: src/view/screens/Storybook/Admonitions.tsx:61 +msgid "Retry loading report options" +msgstr "" + +#: src/components/Error.tsx:68 +#: src/screens/List/ListHiddenScreen.tsx:223 +#: src/screens/StarterPack/StarterPackScreen.tsx:801 +msgid "Return to previous page" +msgstr "" + +#: src/view/screens/NotFound.tsx:54 +msgid "Returns to home page" +msgstr "" + +#: src/screens/ProfileList/components/ErrorScreen.tsx:36 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:577 +#: src/screens/VideoFeed/index.tsx:1240 +#: src/view/screens/NotFound.tsx:54 +msgid "Returns to previous page" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:316 +msgid "Returns to the previous step" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:613 +msgid "Reveal password" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:75 +msgid "Sad GIFs" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:309 +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 +#: src/components/StarterPack/QrCodeDialog.tsx:210 +#: src/features/liveNow/components/EditLiveDialog.tsx:197 +#: src/features/liveNow/components/EditLiveDialog.tsx:204 +#: src/screens/Messages/ConversationSettings/prompts.tsx:82 +#: src/screens/Profile/Header/EditProfileDialog.tsx:233 +#: src/screens/Profile/Header/EditProfileDialog.tsx:247 +#: src/screens/SavedFeeds.tsx:124 +#: src/screens/SavedFeeds.tsx:315 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:269 +#: src/view/com/composer/GifAltText.tsx:199 +#: src/view/com/composer/GifAltText.tsx:208 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:63 +#: src/view/com/composer/photos/EditImageDialog.web.tsx:76 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:163 +#: src/view/com/composer/photos/ImageAltTextDialog.tsx:173 +msgid "Save" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:193 +msgid "Save birthdate" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:198 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:207 +#: src/screens/SavedFeeds.tsx:120 +#: src/screens/SavedFeeds.tsx:124 +#: src/screens/SavedFeeds.tsx:311 +#: src/screens/SavedFeeds.tsx:315 +#: src/view/com/composer/Composer.tsx:1535 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save changes" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1507 +#: src/view/com/composer/drafts/DraftsButton.tsx:93 +msgid "Save changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1535 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save draft" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1509 +#: src/view/com/composer/drafts/DraftsButton.tsx:95 +msgid "Save draft?" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/MediaPreview.tsx:231 +#: src/components/Post/Embed/ImageContextMenu.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:144 +#: src/components/StarterPack/ShareDialog.tsx:150 +msgid "Save image" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:255 +msgid "Save new handle" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:202 +msgid "Save QR code" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:649 +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:655 +msgid "Save these options for next time" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 +msgid "Save to my feeds" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 +msgctxt "link to bookmarks screen" +msgid "Saved" +msgstr "" + +#: src/screens/SavedFeeds.tsx:198 +#: src/screens/SavedFeeds.tsx:375 +msgid "Saved Feeds" +msgstr "" + +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:579 +#: src/screens/Bookmarks.tsx:59 +msgid "Saved Posts" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 +#: src/screens/ProfileList/components/Header.tsx:88 +msgid "Saved to your feeds" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +#: src/view/com/notifications/NotificationFeedItem.tsx:895 +#: src/view/com/notifications/NotificationFeedItem.tsx:920 +msgid "Say hello!" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 +msgid "Say hi to someone" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:43 +msgid "Scam" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:318 +msgid "Scan QR code" +msgstr "" + +#: src/lib/interests.ts:71 +msgid "Science" +msgstr "" + +#: src/components/InterestTabs.tsx:258 +msgid "Scroll left" +msgstr "" + +#: src/components/InterestTabs.tsx:292 +msgid "Scroll right" +msgstr "" + +#: src/components/dms/MessageItem.tsx:820 +msgid "Scroll to the message this is replying to" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:132 +msgid "Scroll to top" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:667 +#: src/components/forms/SearchInput.tsx:51 +#: src/components/forms/SearchInput.tsx:53 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 +#: src/screens/Search/Shell.tsx:753 +#: src/view/shell/bottom-bar/BottomBar.tsx:216 +msgid "Search" +msgstr "" + +#. placeholder {0}: profile.handle +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:259 +#: src/screens/Profile/ProfileSearch.tsx:37 +msgid "Search @{0}'s posts" +msgstr "" + +#: src/components/ProgressGuide/FollowDialog.tsx:708 +msgid "Search by name or interest" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:356 +msgid "Search contacts" +msgstr "" + +#: src/view/screens/Feeds.tsx:437 +msgid "Search feeds" +msgstr "" + +#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is not currently active and can be selected. +#: src/components/ProgressGuide/FollowDialog.tsx:505 +msgid "Search for \"{interestsDisplayName}\"" +msgstr "" + +#. Accessibility label for a tab that searches for accounts in a category (e.g. Art, Video Games, Sports, etc.) that are suggested for the user to follow. The tab is currently selected. +#: src/components/ProgressGuide/FollowDialog.tsx:500 +msgid "Search for \"{interestsDisplayName}\" (active)" +msgstr "" + +#: src/screens/Search/components/AutocompleteResults.tsx:49 +msgid "Search for โ€œ{searchText}โ€" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:136 +msgid "Search for {q}" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:541 +msgid "Search for feeds that you want to suggest to others." +msgstr "" + +#: src/screens/Search/Explore.tsx:373 +msgid "Search for more accounts" +msgstr "" + +#: src/screens/Search/Explore.tsx:452 +msgid "Search for more feeds" +msgstr "" + +#: src/components/dms/components/UserSearchInput.tsx:43 +msgid "Search for people" +msgstr "" + +#. Accessibility label for the GIF search input inside the GIF picker dialog. +#: src/features/gifPicker/components/GifPickerHeader.tsx:40 +msgid "Search GIFs" +msgstr "" + +#: src/screens/Hashtag.tsx:228 +#: src/screens/Search/SearchResults.tsx:410 +msgid "Search is currently unavailable when logged out" +msgstr "" + +#. Placeholder text inside the GIF search input. KLIPY is the third-party GIF provider; keep the brand name as-is. +#: src/features/gifPicker/components/GifPickerHeader.tsx:45 +msgid "Search KLIPY" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:232 +#: src/components/dialogs/LanguageSelectDialog.tsx:233 +msgid "Search languages" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:36 +msgid "Search my posts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:301 +#: src/view/com/profile/ProfileMenu.tsx:304 +msgid "Search posts" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:687 +#: src/components/dms/components/UserSearchInput.tsx:63 +#: src/components/ProgressGuide/FollowDialog.tsx:727 +msgid "Search profiles" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 +msgid "Search query" +msgstr "" + +#: src/screens/Profile/ProfileSearch.tsx:38 +msgid "Search..." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:688 +#: src/components/dms/components/UserSearchInput.tsx:64 +#: src/components/ProgressGuide/FollowDialog.tsx:728 +msgid "Searches for profiles" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 +msgid "Security step required" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:114 +msgid "See {0} posts" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:131 +msgid "See {0} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:122 +msgid "See {tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:140 +msgid "See {tag} posts by user" +msgstr "" + +#: src/components/RichTextTag.tsx:124 +msgid "See #{tag} posts" +msgstr "" + +#: src/components/RichTextTag.tsx:142 +msgid "See #{tag} posts by user" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:179 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:475 +msgid "See more suggested profiles" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 +msgid "See suggested accounts" +msgstr "" + +#: src/screens/SavedFeeds.tsx:232 +#: src/screens/SavedFeeds.tsx:403 +msgid "See this guide" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:196 +msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space to play/pause" +msgstr "" + +#. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. +#: src/components/InterestTabs.tsx:340 +msgid "Select \"{interestsDisplayName}\" category" +msgstr "" + +#. Accessibility label for a username suggestion in the account creation flow +#. Accessibility label for a username suggestion in the account creation flow +#. placeholder {0}: item.handle +#. placeholder {0}: suggestion.handle +#: src/screens/Signup/StepHandle/HandleSuggestions/index.native.tsx:40 +#: src/screens/Signup/StepHandle/HandleSuggestions/index.tsx:72 +msgid "Select {0}" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:110 +msgid "Select {langName}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 +msgid "Select a color" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:380 +msgid "Select a reason" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:79 +msgid "Select account" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:63 +msgid "Select an app language" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 +msgid "Select an emoji" +msgstr "" + +#: src/components/Select/index.tsx:199 +msgid "Select an option" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:118 +msgid "Select app language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 +msgid "Select caption file (.vtt)" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 +msgid "Select chat \"{name}\"" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:195 +#: src/screens/Settings/LanguageSettings.tsx:233 +msgid "Select content languages" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:186 +msgid "Select duration" +msgstr "" + +#. placeholder {0}: labels[filter.field].title +#: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:102 +msgid "Select filter type (currently: {0})" +msgstr "" + +#: src/screens/Login/index.tsx:166 +msgid "Select from an existing account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:553 +msgid "Select from your lists" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:555 +msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}" +msgstr "" + +#. Accessibility label for the button in the post composer that opens the GIF picker dialog. +#: src/view/com/composer/photos/SelectGifBtn.tsx:38 +msgid "Select GIF" +msgstr "" + +#. Accessibility label for an individual GIF tile in the picker grid. The placeholder is the GIFโ€™s title from the provider. +#. placeholder {0}: gif.title +#: src/features/gifPicker/components/GifPickerItem.tsx:31 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:830 +msgid "Select group chat members" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:151 +msgid "Select how long to mute this word for." +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:71 +#: src/components/LanguageSelect.tsx:41 +#: src/components/LanguageSelect.tsx:42 +msgid "Select language" +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:273 +msgid "Select language..." +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:267 +msgid "Select languages" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:430 +msgid "Select moderation service" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:91 +msgid "Select post language" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:152 +msgid "Select primary language" +msgstr "" + +#: src/components/InternationalPhoneCodeSelect.tsx:68 +msgid "Select telephone code" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 +msgid "Select the {emojiName} emoji as your avatar" +msgstr "" + +#: src/components/Post/Translated/index.tsx:446 +msgid "Select the source language" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:77 +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:137 +msgid "Select up to 3 languages used in this post" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:251 +msgid "Select what content this mute word should apply to." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:111 +msgid "Select which language to use for the app's user interface." +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:181 +msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:300 +msgid "Select your date of birth" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:69 +#: src/screens/Settings/InterestsSettings.tsx:178 +msgid "Select your interests from the options below" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:145 +msgid "Select your preferred language for translations in your feed." +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:426 +msgid "Selecting multiple media types is not supported." +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:188 +msgid "Self-harm or dangerous behaviors" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:255 +#: src/components/contacts/screens/PhoneInput.tsx:260 +msgid "Send code" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:172 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:179 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:311 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:199 +msgid "Send email" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:60 +#: src/components/SendErrorReportDialog.tsx:64 +#: src/screens/Settings/AboutSettings.tsx:125 +#: src/screens/Settings/AboutSettings.tsx:128 +msgid "Send error report" +msgstr "" + +#: src/view/shell/Drawer.tsx:420 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:324 +msgid "Send message" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:146 +msgid "Send post to {name}" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 +msgid "Send post to..." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:818 +msgid "Send report to {title}" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:63 +msgid "Send the message from your phone" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:304 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:121 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:124 +msgid "Send verification email" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" + +#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) +#: src/components/dms/MessageContextMenu.tsx:175 +msgid "Sent at {0}" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:283 +msgid "Sent to our phone number verification provider Plivo" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:174 +#: src/screens/Login/components/HostingProviderDialog.tsx:200 +msgid "Server address" +msgstr "" + +#. placeholder {0}: icon.name +#: src/screens/Settings/AppIconSettings/index.tsx:176 +msgid "Set app icon to {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:99 +msgid "Set new password" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:481 +msgid "Set precisely which groups of people can reply to your post" +msgstr "" + +#: src/screens/Onboarding/Layout.tsx:48 +msgid "Set up your account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:431 +msgid "Set who can reply to your post" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:286 +msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:352 +msgid "set your hosting provider manually" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:486 +msgid "Set your hosting provider manually" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:104 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:215 +#: src/screens/Settings/Settings.tsx:99 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 +msgid "Settings" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:220 +msgid "Settings for activity from others" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 +msgid "Settings for allowing others to be notified of your posts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:154 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:187 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:165 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:293 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:233 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Messages/Settings.tsx:280 +#: src/screens/Settings/NotificationSettings/index.tsx:276 +msgid "Settings for notifications for new message requests" +msgstr "" + +#: src/screens/Messages/Settings.tsx:259 +#: src/screens/Settings/NotificationSettings/index.tsx:259 +msgid "Settings for notifications for new messages" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:246 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:198 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:176 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:209 +msgid "Settings for repost notifications" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:103 +msgctxt "toast" +msgid "Settings saved" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:169 +msgid "Sexual activity or erotic nudity." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:38 +msgid "Sexually Suggestive" +msgstr "" + +#: src/components/Link.tsx:428 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/screens/Hashtag.tsx:130 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/StarterPack/StarterPackScreen.tsx:447 +#: src/screens/Topic.tsx:89 +msgid "Share" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:62 +msgid "Share age range" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:549 +msgid "Share anyway" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 +msgid "Share author DID" +msgstr "" + +#: src/screens/Settings/BetaFeaturesSettings.tsx:158 +#: src/screens/Settings/BetaFeaturesSettings.tsx:165 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 +msgid "Share feedback" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 +msgid "Share image" +msgstr "" + +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:120 +#: src/components/StarterPack/ShareDialog.tsx:115 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/features/inviteFriends/components/ActionButtons.tsx:28 +msgid "Share link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:74 +msgid "Share link dialog" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 +msgid "Share post at:// URI" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:141 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:156 +msgid "Share Profile" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:129 +#: src/components/StarterPack/ShareDialog.tsx:139 +msgid "Share QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 +msgid "Share this feed" +msgstr "" + +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 +msgid "Share this search" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:440 +msgid "Share this starter pack" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:86 +msgid "Share this starter pack and help people join your community on Bluesky." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 +#: src/screens/StarterPack/StarterPackScreen.tsx:646 +#: src/view/com/profile/ProfileMenu.tsx:280 +#: src/view/com/profile/ProfileMenu.tsx:292 +msgid "Share via..." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:232 +msgid "Share your contacts to find friends" +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 +msgid "Share your thoughtsโ€ฆ" +msgstr "" + +#: src/Navigation.tsx:323 +msgid "Shared Preferences Tester" +msgstr "" + +#. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 +msgid "Sharing your age range reveals only the range associated with your Apple Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." +msgstr "" + +#. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 +msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:217 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:140 +msgid "Show" +msgstr "" + +#: src/components/AltBadgeWithDialog.tsx:48 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 +#: src/features/liveNow/components/LiveStatusDialog.tsx:318 +#: src/features/liveNow/components/LiveStatusDialog.tsx:322 +#: src/screens/List/ListHiddenScreen.tsx:194 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 +msgid "Show anyway" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 +msgid "Show automation label" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:30 +#: src/lib/moderation/useLabelBehaviorDescription.ts:66 +msgid "Show badge" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:64 +msgid "Show badge and filter from feeds" +msgstr "" + +#: src/components/dialogs/Embed.tsx:125 +msgid "Show customization options" +msgstr "" + +#: src/components/dms/SystemMessageGroup.tsx:57 +msgid "Show group chat updates" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 +msgid "Show less like this" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:190 +msgid "Show list anyway" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:534 +msgid "Show lists of users to select from" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 +msgid "Show more like this" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemShowOtherReplies.tsx:15 +msgid "Show more replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:99 +msgid "Show post replies in a threaded tree view" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:108 +#: src/screens/Settings/FollowingFeedPreferences.tsx:118 +msgid "Show quote posts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:72 +#: src/screens/Settings/FollowingFeedPreferences.tsx:82 +msgid "Show replies" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:45 +msgid "Show replies as" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 +msgid "Show reply for everyone" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:90 +#: src/screens/Settings/FollowingFeedPreferences.tsx:100 +msgid "Show reposts" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:133 +#: src/screens/Settings/FollowingFeedPreferences.tsx:143 +msgid "Show samples of your saved feeds in your Following feed" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:61 +msgid "Show warning" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:59 +msgid "Show warning and filter from feeds" +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 +msgid "Show when youโ€™re live" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 +msgid "Shows information about when this post was created" +msgstr "" + +#: src/screens/Settings/Settings.tsx:124 +msgid "Shows other accounts you can switch to" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:169 +#: src/components/moderation/PostHider.tsx:94 +msgid "Shows the content" +msgstr "" + +#: src/components/dialogs/Signin.tsx:98 +#: src/components/dialogs/Signin.tsx:100 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 +#: src/screens/Hashtag.tsx:231 +#: src/screens/Login/index.tsx:143 +#: src/screens/Login/index.tsx:165 +#: src/screens/Login/LoginForm.tsx:274 +#: src/screens/Login/LoginForm.tsx:554 +#: src/screens/Login/LoginForm.tsx:560 +#: src/screens/Messages/JoinRequest.tsx:290 +#: src/screens/Messages/JoinRequest.tsx:296 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 +#: src/view/shell/bottom-bar/BottomBar.tsx:360 +#: src/view/shell/bottom-bar/BottomBar.tsx:364 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:255 +#: src/view/shell/NavSignupCard.tsx:58 +#: src/view/shell/NavSignupCard.tsx:63 +msgid "Sign in" +msgstr "" + +#. placeholder {0}: account.handle +#: src/components/AccountList.tsx:135 +msgid "Sign in as {0}" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:84 +msgid "Sign in asโ€ฆ" +msgstr "" + +#: src/screens/Deactivated.tsx:195 +#: src/screens/Deactivated.tsx:201 +msgid "Sign in or create an account" +msgstr "" + +#: src/components/dialogs/Signin.tsx:76 +msgid "Sign in or create your account to join the conversation!" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:216 +msgid "Sign in to accept invite." +msgstr "" + +#: src/components/AccountList.tsx:70 +msgid "Sign in to account that is not listed" +msgstr "" + +#: src/components/dialogs/Signin.tsx:47 +msgid "Sign in to Bluesky or create a new account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:215 +msgid "Sign in to request access to this group chat." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 +msgid "Sign in to view post" +msgstr "" + +#: src/screens/Settings/Settings.tsx:274 +#: src/screens/Settings/Settings.tsx:276 +#: src/screens/Settings/Settings.tsx:308 +#: src/screens/SignupQueued.tsx:94 +#: src/screens/SignupQueued.tsx:97 +#: src/screens/Takendown.tsx:88 +#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:282 +#: src/view/shell/desktop/LeftNav.tsx:285 +msgid "Sign out" +msgstr "" + +#: src/screens/Takendown.tsx:91 +msgid "Sign Out" +msgstr "" + +#: src/screens/Settings/Settings.tsx:305 +#: src/view/shell/desktop/LeftNav.tsx:224 +msgid "Sign out?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:572 +msgid "Sign up" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:96 +#: src/lib/moderation/useGlobalLabelStrings.ts:28 +msgid "Sign-in Required" +msgstr "" + +#. placeholder {0}: account.handle +#: src/lib/hooks/useAccountSwitcher.ts:42 +#: src/screens/Login/ChooseAccountForm.tsx:54 +msgid "Signed in as @{0}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:299 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:302 +msgid "Since" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:163 +#: src/components/contacts/screens/VerifyNumber.tsx:205 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:86 +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:90 +#: src/screens/Onboarding/StepFinished/index.tsx:295 +#: src/screens/Onboarding/StepFinished/index.tsx:317 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:281 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:105 +#: src/screens/StarterPack/Wizard/index.tsx:206 +msgid "Skip" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:160 +#: src/components/contacts/screens/VerifyNumber.tsx:202 +msgid "Skip contact sharing and continue to the app" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1552 +msgid "Skip empty posts?" +msgstr "" + +#: src/screens/Onboarding/StepFinished/index.tsx:288 +#: src/screens/Onboarding/StepFinished/index.tsx:314 +msgid "Skip introduction and start using your account" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:278 +#: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102 +msgid "Skip to next step" +msgstr "" + +#: src/components/images/Gallery/index.tsx:441 +msgid "slide" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:150 +msgid "Smaller" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 +msgid "Snoozes the reminder" +msgstr "" + +#: src/view/com/composer/drafts/DraftsListDialog.tsx:155 +msgid "So many thoughts, you should post one" +msgstr "" + +#: src/components/WelcomeModal.tsx:146 +msgid "Social media you control." +msgstr "" + +#. Name for a feature flag +#: src/analytics/features/index.ts:84 +msgid "Social proofing on posts" +msgstr "" + +#: src/lib/interests.ts:58 +msgid "Software Dev" +msgstr "" + +#: src/screens/Moderation/index.tsx:466 +msgid "Some moderation services in your list are no longer available." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:122 +msgid "Some of your verifications are invalid." +msgstr "" + +#: src/components/FeedInterstitials.tsx:633 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:88 +msgid "Some people can reply" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:86 +msgid "Someone joined" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:87 +msgid "Someone joined the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:99 +msgid "Someone left" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:100 +msgid "Someone left the group" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:368 +msgid "Someone reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:67 +msgid "Someone reacted {0} to {target}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:813 +msgid "Someone replied" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:60 +msgid "Someone was added" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:61 +msgid "Someone was added to the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:73 +msgid "Someone was removed" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:74 +msgid "Someone was removed from the group" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:103 +msgid "Something wasn't quite right with the data you're trying to report. Please contact support." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 +msgid "Something went wrong" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 +#: src/components/moderation/ReportDialog/index.tsx:289 +#: src/screens/Deactivated.tsx:86 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 +#: src/view/screens/Storybook/Admonitions.tsx:56 +msgid "Something went wrong, please try again" +msgstr "" + +#: src/screens/Moderation/index.tsx:112 +#: src/screens/Profile/Sections/Labels.tsx:185 +#: src/screens/Settings/BetaFeaturesSettings.tsx:80 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 +msgid "Something went wrong, please try again." +msgstr "" + +#: src/components/Lists.tsx:185 +msgid "Something went wrong!" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:28 +msgid "Something went wrong. Please try again in a moment." +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:247 +msgid "Something went wrong. Please try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 +msgid "Something wrong? Let us know." +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:231 +msgid "Sorry, we're unable to load account suggestions at this time." +msgstr "" + +#: src/App.tsx:139 +#: src/App.web.tsx:118 +msgid "Sorry! Your session expired. Please sign in again." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:45 +msgid "Sort replies" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:52 +msgid "Sort replies by" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:49 +msgid "Sort replies to the same post by:" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:197 +#: src/components/moderation/ModerationDetailsDialog.tsx:272 +msgid "Source: <0>{sourceName}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 +msgid "Spam" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:36 +msgid "Spam or other inauthentic behavior or deception" +msgstr "" + +#: src/lib/interests.ts:72 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 +msgid "Sports" +msgstr "" + +#. Description of a feature flag (Social proofing on posts) +#: src/analytics/features/index.ts:90 +msgid "Spot posts your friends and follows have liked." +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 +msgid "Start a conversation, and it will appear here." +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:192 +msgid "Start a new chat" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:104 +#: src/screens/ProfileList/FeedSection.tsx:82 +msgid "Start adding people" +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:110 +#: src/screens/ProfileList/FeedSection.tsx:88 +msgid "Start adding people!" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:831 +msgid "Start chat" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:428 +#: src/components/dms/InitiateChatFlow.tsx:1087 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 +#: src/screens/StarterPack/Wizard/index.tsx:197 +msgid "Starter Pack" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#: src/components/StarterPack/StarterPackCard.tsx:91 +msgid "Starter pack by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:171 +msgid "Starter pack by <0/>" +msgstr "" + +#: src/components/StarterPack/StarterPackCard.tsx:90 +#: src/view/com/profile/ProfileSubpageHeader.tsx:169 +msgid "Starter pack by you" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:765 +msgid "Starter pack is invalid" +msgstr "" + +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:105 +msgid "Starter packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/view/screens/Profile.tsx:569 +msgid "Starter Packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:110 +#: src/screens/Settings/AboutSettings.tsx:113 +msgid "Status Page" +msgstr "" + +#. placeholder {0}: state.activeStep + 1 +#. placeholder {0}: state.activeStepIndex + 1 +#. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' +#. placeholder {1}: state.totalSteps +#: src/screens/Onboarding/Layout.tsx:226 +#: src/screens/Signup/index.tsx:189 +msgid "Step {0} of {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:410 +msgid "Storage cleared, you need to restart the app now." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:294 +msgid "Stored as part of a secure code for matching with others" +msgstr "" + +#: src/Navigation.tsx:308 +#: src/screens/Settings/Settings.tsx:465 +msgid "Storybook" +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:182 +msgid "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:122 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128 +#: src/components/moderation/AppealForm.tsx:154 +#: src/components/moderation/AppealForm.tsx:155 +#: src/components/SendErrorReportDialog.tsx:90 +#: src/components/SendErrorReportDialog.tsx:95 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:139 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:140 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:133 +msgid "Submit" +msgstr "" + +#: src/screens/Takendown.tsx:76 +msgid "Submit appeal" +msgstr "" + +#: src/screens/Takendown.tsx:80 +msgid "Submit Appeal" +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 +msgid "Submit feedback" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:508 +#: src/components/moderation/ReportDialog/index.tsx:569 +#: src/components/moderation/ReportDialog/index.tsx:576 +msgid "Submit report" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:75 +msgid "Subscribe" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:447 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:476 +msgid "Subscribe on {0}" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:475 +msgid "Subscribe to {publicationTitle} on {0}" +msgstr "" + +#. placeholder {0}: labelerInfo.creator.handle +#: src/screens/Profile/Sections/Labels.tsx:232 +msgid "Subscribe to @{0} to use these labels:" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:252 +msgid "Subscribe to account activity" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:356 +msgid "Subscribe to Labeler" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:322 +msgid "Subscribe to this labeler" +msgstr "" + +#: src/screens/ProfileList/components/SubscribeMenu.tsx:63 +msgid "Subscribe to this list" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:252 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:160 +msgid "Success" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 +msgid "Success!" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:131 +msgid "Successfully joined the group chat!" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:37 +msgid "Successfully verified" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:432 +msgid "Suggested" +msgstr "" + +#: src/screens/Search/Explore.tsx:369 +msgid "Suggested accounts" +msgstr "" + +#. Accounts suggested to the user for them to follow +#: src/components/FeedInterstitials.tsx:472 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:143 +msgid "Suggestive" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Sunlight" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:72 +msgctxt "Name of app icon variant" +msgid "Sunrise" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:86 +msgctxt "Name of app icon variant" +msgid "Sunset" +msgstr "" + +#: src/Navigation.tsx:333 +#: src/view/screens/Support.tsx:25 +#: src/view/screens/Support.tsx:28 +msgid "Support" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:236 +msgid "Support for this feature in your country has not been enabled yet! Please check back later." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 +msgid "Suspended accounts cannot participate in chat." +msgstr "" + +#: src/components/dialogs/SwitchAccount.tsx:47 +#: src/components/dialogs/SwitchAccount.tsx:50 +#: src/screens/Settings/Settings.tsx:123 +#: src/screens/Settings/Settings.tsx:135 +#: src/screens/Settings/Settings.tsx:624 +#: src/view/shell/desktop/LeftNav.tsx:262 +msgid "Switch account" +msgstr "" + +#: src/view/shell/desktop/LeftNav.tsx:124 +msgid "Switch accounts" +msgstr "" + +#. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) +#: src/view/shell/desktop/LeftNav.tsx:364 +msgid "Switch to {0}" +msgstr "" + +#: src/components/dialogs/Embed.tsx:154 +#: src/components/dialogs/Embed.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 +msgid "System" +msgstr "" + +#: src/screens/Log.tsx:49 +#: src/screens/Settings/AboutSettings.tsx:117 +#: src/screens/Settings/AboutSettings.tsx:120 +#: src/screens/Settings/Settings.tsx:458 +msgid "System log" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:291 +msgid "Tags only" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:110 +msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." +msgstr "" + +#: src/components/dms/MessageItem.tsx:682 +msgid "Tap for details" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:90 +msgid "Tap for information" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:45 +msgid "Tap for more information" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:213 +#: src/screens/Signup/StepInfo/index.tsx:326 +msgid "Tap here to update your location with GPS." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165 +msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" +msgstr "" + +#: src/components/ContextMenu/Backdrop.ios.tsx:54 +#: src/components/ContextMenu/Backdrop.ios.tsx:80 +#: src/components/ContextMenu/Backdrop.tsx:46 +msgid "Tap to close context menu" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + +#: src/components/ProgressGuide/Toast.tsx:159 +msgid "Tap to dismiss" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:469 +msgid "Tap to join this group chat immediately" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:200 +msgid "Tap to remove" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/ReactionsDialog.tsx:216 +msgid "Tap to remove your {0} reaction" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:468 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:647 +msgid "Tap to retry" +msgstr "" + +#. placeholder {0}: tab.value +#: src/components/dms/ReactionsDialog.tsx:362 +msgid "Tap to show {0} reactions" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:361 +msgid "Tap to show all reactions" +msgstr "" + +#: src/components/dms/MessageItem.tsx:394 +msgid "Tap to view reactions" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 +msgid "Targeted harassment" +msgstr "" + +#: src/state/shell/progress-guide.tsx:236 +msgid "Task complete - 10 follows!" +msgstr "" + +#: src/state/shell/progress-guide.tsx:226 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:109 +msgid "Teach our algorithm what you like" +msgstr "" + +#: src/lib/interests.ts:73 +msgid "Tech" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:368 +msgid "Tell us a bit about yourself" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:70 +msgid "Tell us a little more" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:214 +msgid "Temporarily deactivate your account" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:125 +#: src/view/shell/desktop/RightNav.tsx:126 +msgid "Terms" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:181 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 +#: src/Navigation.tsx:343 +#: src/screens/Settings/AboutSettings.tsx:94 +#: src/screens/Settings/AboutSettings.tsx:97 +#: src/view/screens/TermsOfService.tsx:25 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 +msgid "Terms of Service" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:275 +msgid "Text & tags" +msgstr "" + +#: src/components/moderation/AppealForm.tsx:118 +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 +#: src/screens/Messages/components/ChatDisabled.tsx:142 +msgid "Text input field" +msgstr "" + +#: src/view/com/posts/ShowLessFollowup.tsx:39 +msgid "Thank you for your feedback! It has been sent to the feed operator." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 +msgid "Thanks for your feedback!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:77 +msgid "Thanks, you have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:233 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:224 +msgid "Thanks! You're all set." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:500 +msgid "That contains the following:" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:115 +#: src/screens/StarterPack/StarterPackScreen.tsx:116 +#: src/screens/StarterPack/StarterPackScreen.tsx:160 +#: src/screens/StarterPack/StarterPackScreen.tsx:161 +#: src/screens/StarterPack/Wizard/index.tsx:116 +#: src/screens/StarterPack/Wizard/index.tsx:126 +msgid "That starter pack could not be found." +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:90 +msgid "That username is already taken" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:142 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1212 +msgid "That's everything!" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:422 +msgid "The account will be able to interact with you after unblocking." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:39 +#: src/screens/Settings/AppIconSettings/index.tsx:225 +msgid "The app will be restarted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:139 +#: src/lib/moderation/useModerationCauseDescription.ts:129 +msgid "The author of this thread has hidden this reply." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:169 +msgid "The birthdate you've entered means you are under 18 years old. Certain content and features may be unavailable to you." +msgstr "" + +#: src/screens/Moderation/index.tsx:415 +msgid "The Bluesky web application" +msgstr "" + +#: src/view/screens/CommunityGuidelines.tsx:32 +msgid "The Community Guidelines have been moved to <0/>" +msgstr "" + +#: src/view/screens/CopyrightPolicy.tsx:29 +msgid "The Copyright Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:107 +msgid "The Discover feed" +msgstr "" + +#: src/state/shell/progress-guide.tsx:227 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:332 +msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:70 +msgid "The feed has been replaced with Discover." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:64 +msgid "The following labels were applied to this post." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:63 +msgid "The following labels were applied to your account." +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:168 +msgid "The following services are enabled for your account: {allowedServices}" +msgstr "" + +#: src/screens/ModerationInteractionSettings/index.tsx:43 +msgid "The following settings will be used as your defaults when creating new posts. You can edit these for a specific post from the composer." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:23 +msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 +msgid "The post youโ€™re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:29 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:429 +#: src/view/com/composer/state/video.ts:468 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB}ย MB. Please try again with a smaller file." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:41 +#: src/lib/strings/errors.ts:18 +msgid "The server appears to be experiencing issues. Please try again in a few moments." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:775 +msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." +msgstr "" + +#: src/components/ContextMenu/index.tsx:507 +msgid "The subject of the context menu" +msgstr "" + +#: src/view/screens/Support.tsx:31 +msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." +msgstr "" + +#: src/view/screens/TermsOfService.tsx:29 +msgid "The Terms of Service have been moved to" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:89 +msgid "The verification code you have provided is invalid. Please make sure that you have used the correct verification link or request a new one." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:115 +#: src/components/contacts/screens/VerifyNumber.tsx:113 +#: src/components/contacts/screens/VerifyNumber.tsx:165 +msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:137 +msgid "Theme" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:106 +msgid "There is a limit to how often you can change your birthdate. You may need to wait a day or two before updating it again." +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 +msgid "There is no invite link for this group chat." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 +msgid "There is no time limit for account deactivation, come back any time." +msgstr "" + +#. Body message of the error screen shown when the GIF provider request fails. Encourages the user to retry. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:56 +msgid "There was a problem loading GIFs. Check your connection and try again." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:149 +#: src/components/intents/GroupChatJoinDialog.tsx:195 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 +msgid "There was a problem with your internet connection, please try again" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 +#: src/screens/ProfileList/components/Header.tsx:91 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 +#: src/screens/SavedFeeds.tsx:99 +#: src/screens/SavedFeeds.tsx:278 +msgid "There was an issue contacting the server" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 +msgid "There was an issue contacting the server, please check your internet connection and try again." +msgstr "" + +#: src/view/com/notifications/NotificationFeed.tsx:133 +msgid "There was an issue fetching notifications. Tap here to try again." +msgstr "" + +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:180 +msgid "There was an issue fetching the list. Tap here to try again." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:60 +msgid "There was an issue fetching your app passwords" +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:185 +#: src/view/com/lists/ProfileLists.tsx:184 +msgid "There was an issue fetching your lists. Tap here to try again." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:109 +msgid "There was an issue fetching your service info" +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:153 +msgid "There was an issue removing this feed. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 +#: src/view/com/posts/FeedShutdownMsg.tsx:53 +#: src/view/com/posts/FeedShutdownMsg.tsx:74 +msgid "There was an issue updating your feeds, please check your internet connection and try again." +msgstr "" + +#. placeholder {0}: e.toString() +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:432 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:455 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:475 +#: src/screens/Messages/ConversationSettings/Member.tsx:71 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:114 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:127 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:92 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:257 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:284 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:300 +#: src/view/com/profile/ProfileMenu.tsx:144 +#: src/view/com/profile/ProfileMenu.tsx:157 +#: src/view/com/profile/ProfileMenu.tsx:174 +#: src/view/com/profile/ProfileMenu.tsx:187 +#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:218 +msgid "There was an issue! {0}" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:241 +#: src/screens/List/ListHiddenScreen.tsx:67 +#: src/screens/List/ListHiddenScreen.tsx:81 +#: src/screens/List/ListHiddenScreen.tsx:103 +#: src/screens/ProfileList/components/Header.tsx:106 +#: src/screens/ProfileList/components/Header.tsx:120 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:121 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:135 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:38 +#: src/screens/ProfileList/components/SubscribeMenu.tsx:53 +msgid "There was an issue. Please check your internet connection and try again." +msgstr "" + +#. Body of the error screen shown when the GIF picker crashes unexpectedly. Encourages the user to report the issue. +#: src/components/dialogs/LanguageSelectDialog.tsx:349 +#: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:27 +#: src/view/com/util/ErrorBoundary.tsx:59 +msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" +msgstr "" + +#: src/screens/SignupQueued.tsx:133 +msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:660 +msgid "These are your default settings" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:51 +msgid "These domains" +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:44 +msgid "These hashtags" +msgstr "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:66 +msgid "These settings only apply to the Following feed." +msgstr "" + +#. Advanced search filter +#: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 +msgid "These URLs" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:353 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:177 +msgid "They wonโ€™t be able to rejoin unless you invite them again." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:116 +msgid "This {screenDescription} has been flagged:" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:89 +msgid "This account has a checkmark because it's been verified by trusted sources." +msgstr "" + +#: src/components/BotAccountAlert.tsx:27 +msgid "This account has been marked as automated by its owner." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:94 +msgid "This account has one or more attempted verifications, but it is not currently verified." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:111 +msgid "This account has requested that users sign in to view their profile." +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:33 +msgid "This account is blocked by one or more of your moderation lists. To unblock, please visit the lists directly and remove this user." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:56 +msgid "This action can be undone at any time." +msgstr "" + +#: src/components/moderation/AppealForm.tsx:96 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 +#: src/screens/Messages/components/ChatDisabled.tsx:138 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "This author has chosen to make their posts visible only to people who are signed in." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:244 +msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below." +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:48 +msgid "This chat has ended" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:301 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:376 +#: src/screens/Messages/components/ChatLocked.tsx:69 +msgid "This chat is locked" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:437 +msgid "This chat is locked by a moderation action" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:17 +msgid "This chat was disconnected" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:106 +msgid "This code is invalid. Resend to get a new code." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:145 +msgid "This confirmation code is not valid. Please try again." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:19 +msgid "This content has been hidden by the moderators." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:24 +msgid "This content has received a general warning from moderators." +msgstr "" + +#. placeholder {0}: externalEmbedLabels[source] +#: src/components/dialogs/EmbedConsent.tsx:63 +msgid "This content is hosted by {0}. Do you want to enable external media?" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:104 +#: src/lib/moderation/useModerationCauseDescription.ts:85 +msgid "This content is not available because one of the users involved has blocked the other." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:122 +msgid "This content is not viewable without a Bluesky account." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This conversation is locked." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:156 +msgid "This conversation is with a deleted or a deactivated account. Press for options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:240 +msgid "This draft will be permanently deleted." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 +msgid "This email is already associated with your account." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:280 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:283 +msgid "This exact phrase" +msgstr "" + +#: src/screens/Settings/ActivityPrivacySettings.tsx:56 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:166 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:61 +msgid "This feature is not available while using an app password. Please sign in with your main password." +msgstr "" + +#: src/lib/strings/errors.ts:30 +msgid "This feature is not available while using an App Password. Please sign in with your main password." +msgstr "" + +#: src/view/com/posts/PostFeedErrorMessage.tsx:128 +msgid "This feed is currently receiving high traffic and is temporarily unavailable. Please try again later." +msgstr "" + +#: src/view/com/posts/CustomFeedEmptyState.tsx:60 +msgid "This feed is empty! You may need to follow more users or tune your language settings." +msgstr "" + +#: src/components/StarterPack/Main/PostsList.tsx:41 +#: src/screens/Profile/ProfileFeed/index.tsx:170 +#: src/screens/ProfileList/FeedSection.tsx:78 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:104 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:72 +msgid "This group is locked by a moderation action on the owner" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:611 +msgid "This handle is reserved. Please try a different one." +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:140 +msgid "This image could not be used. Try a different format like .jpg or .png." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:62 +msgid "This information is private and not shared with other users." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:161 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:236 +msgid "This invite link is invalid" +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 +msgid "This is just a one-time security check, since we haven't seen this account on this device before." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:171 +#: src/features/liveNow/components/GoLiveDialog.tsx:161 +msgid "This is not a valid link" +msgstr "" + +#: src/screens/Settings/AutomationLabelSettings.tsx:173 +msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:254 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:184 +msgid "This label was applied by you." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:156 +#: src/components/moderation/ModerationDetailsDialog.tsx:231 +msgid "This label was applied to the entire user account and will appear on all posts." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:219 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:95 +msgid "This link is taking you to the following website:" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/screens/List/ListHiddenScreen.tsx:155 +msgid "This list โ€“ created by <0>{0} โ€“ contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:150 +msgid "This list โ€“ created by you โ€“ contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:100 +msgid "This list is empty." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:335 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 +msgid "This message is hidden because this user is blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 +msgid "This message is hidden because you are blocking this user." +msgstr "" + +#: src/screens/Profile/ErrorState.tsx:41 +msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:84 +msgid "This person is blocking you" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt) +#. placeholder {1}: niceDate(i18n, indexedAt) +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "" + +#: src/components/WhoCanReply.tsx:274 +msgid "This post has an unknown type of threadgate on it. Your app may be out of date." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 +msgid "This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks.tsx:248 +msgid "This post was deleted by its author" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 +msgid "This post will be hidden from feeds and threads. This cannot be undone." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1127 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:547 +msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 +msgid "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies - both for yourself and others." +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 +msgid "This screen is only available for group conversations." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:32 +msgid "This service has not provided terms of service or a privacy policy." +msgstr "" + +#: src/features/liveNow/index.tsx:203 +msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:469 +msgid "This should create a domain record at:" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:214 +msgid "This should only take a few minutes." +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:94 +msgid "This user does not have a display name, and therefore cannot be verified." +msgstr "" + +#: src/view/com/profile/ProfileFollowers.tsx:217 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:99 +#: src/lib/moderation/useModerationCauseDescription.ts:76 +msgid "This user has blocked you. You cannot view their content." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 +msgid "This user has disabled chat and cannot be messaged." +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:30 +msgid "This user has requested that their content only be shown to signed-in users." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:79 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:111 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:49 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:196 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 +msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:65 +msgid "This video canโ€™t be previewed in your browser. It will still be uploaded." +msgstr "" + +#: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 +msgid "This will create a new list with the same name, description, and members as this starter pack." +msgstr "" + +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:454 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:330 +msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} and all associated data. Note that this will affect any other <1>AT Protocol services you use with this account." +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Settings/Settings.tsx:678 +msgid "This will remove @{0} from the quick access list." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +msgid "This will remove your post from this quote post for all users, and replace it with a placeholder." +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:25 +#: src/screens/PostThread/components/HeaderDropdown.tsx:28 +msgid "Thread options" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:70 +#: src/screens/Settings/ContentAndMediaSettings.tsx:73 +msgid "Thread preferences" +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:35 +msgid "Thread Preferences" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:59 +#: src/screens/PostThread/components/HeaderDropdown.tsx:64 +msgid "Threaded" +msgstr "" + +#: src/Navigation.tsx:376 +msgid "Threads Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:134 +msgid "Threats or incitement" +msgstr "" + +#. placeholder {0}: Number(time) || 0 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 +msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:68 +msgid "Title" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:71 +msgid "Title (100 characters max)" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:100 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 +msgid "To disable your email 2FA method, please verify your access to <0>{0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:315 +msgid "To log out, <0>click here. Or if youโ€™d prefer, you can <1>delete your account." +msgstr "" + +#: src/components/dms/DateDivider.tsx:27 +msgid "Today" +msgstr "" + +#: src/screens/Moderation/index.tsx:392 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:186 +msgid "Toggles the sound" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:123 +msgid "Too many attempts. Please wait a few minutes and try again." +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:176 +msgid "Too many codes sent. Please wait a few minutes and try again." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:156 +msgid "Too many contacts - you've exceeded the number of contacts you can import to find your friends" +msgstr "" + +#: src/screens/Hashtag.tsx:86 +#: src/screens/Search/SearchResults.tsx:83 +#: src/screens/Topic.tsx:58 +msgid "Top" +msgstr "" + +#: src/screens/PostThread/components/HeaderDropdown.tsx:75 +#: src/screens/PostThread/components/HeaderDropdown.tsx:80 +#: src/screens/Settings/ThreadPreferences.tsx:57 +#: src/screens/Settings/ThreadPreferences.tsx:60 +msgid "Top replies first" +msgstr "" + +#: src/Navigation.tsx:503 +msgid "Topic" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:191 +#: src/components/dms/MessageContextMenu.tsx:194 +#: src/components/Post/Translated/index.tsx:150 +#: src/components/Post/Translated/index.tsx:157 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 +msgid "Translate" +msgstr "" + +#: src/components/Post/Translated/index.tsx:326 +msgid "Translated" +msgstr "" + +#: src/components/Post/Translated/index.tsx:113 +msgid "Translating" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 +msgid "Translatingโ€ฆ" +msgstr "" + +#: src/lib/translation/index.tsx:305 +msgid "Translation to the same language is unavailable on your device." +msgstr "" + +#: src/screens/Settings/ThreadPreferences.tsx:87 +#: src/screens/Settings/ThreadPreferences.tsx:92 +msgid "Tree view" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 +msgid "Trending" +msgstr "" + +#. Accessibility label for the icon-only pill that shows currently trending/featured GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:45 +msgid "Trending GIFs" +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 +msgid "Trending options" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 +msgid "Trolling" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 +msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:260 +msgid "Try a different search term or remove some filters." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:262 +msgid "Try a different search term." +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "" + +#: src/view/com/util/error/ErrorScreen.tsx:97 +msgctxt "action" +msgid "Try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:171 +msgid "Try again in a moment." +msgstr "" + +#: src/components/Post/Translated/index.tsx:229 +#: src/components/Post/Translated/index.tsx:242 +msgid "Try Google Translate" +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "" + +#: src/lib/interests.ts:74 +msgid "TV" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:32 +msgid "Twilight" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:65 +msgid "Two-factor authentication (2FA)" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:445 +msgid "Type:" +msgstr "" + +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:86 +msgid "Unable to access location. You'll need to visit your system settings to enable location services for Bluesky." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:30 +#: src/lib/strings/errors.ts:11 +msgid "Unable to connect. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:96 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:141 +msgid "Unable to contact your service. Please check your internet connection and try again." +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:66 +#: src/screens/Login/index.tsx:100 +#: src/screens/Login/LoginForm.tsx:169 +#: src/screens/Login/SetNewPasswordForm.tsx:77 +#: src/screens/Signup/index.tsx:89 +msgid "Unable to contact your service. Please check your Internet connection." +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:700 +msgid "Unable to delete" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 +msgid "Unable to find the selected recipient." +msgstr "" + +#: src/lib/strings/errors.ts:42 +msgid "Unable to resolve handle" +msgstr "" + +#: src/screens/Settings/Settings.tsx:524 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:526 +msgid "Unapply Pull Request {currentChannel}" +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:43 +msgid "Unavailable" +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:127 +msgid "Unavailable feed information" +msgstr "" + +#: src/components/dms/MessageItem.tsx:747 +#: src/components/dms/MessagesListBlockedFooter.tsx:97 +#: src/components/dms/MessagesListBlockedFooter.tsx:104 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:427 +#: src/screens/ProfileList/components/Header.tsx:166 +#: src/screens/ProfileList/components/Header.tsx:173 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:369 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 +msgid "Unblock {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:463 +#: src/view/com/profile/ProfileMenu.tsx:469 +msgid "Unblock account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +msgid "Unblock Account?" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:242 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:245 +msgid "Unblock list" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 +#: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 +msgid "Undo" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:43 +msgctxt "Button label to undo saving/removing a post from saved posts." +msgid "Undo" +msgstr "" + +#: src/components/PostControls/RepostButton.web.tsx:67 +#: src/components/PostControls/RepostButton.web.tsx:74 +msgid "Undo repost" +msgstr "" + +#. Accessibility label for the repost button when the post has been reposted, verb followed by number of reposts and noun +#. placeholder {0}: repostCount || 0 +#: src/components/PostControls/RepostButton.tsx:68 +msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:396 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:329 +msgid "Unfollow account" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:919 +msgid "Unfollows the user" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:492 +msgid "Unfortunately, none of your subscribed labelers supports this report type." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:263 +msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:247 +msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:209 +msgid "Unknown verifier" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 +msgid "Unlabeled adult content" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68 +msgid "Unlabeled, abusive, or non-consensual adult content" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 +msgid "Unlike" +msgstr "" + +#. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun +#. placeholder {0}: post.likeCount || 0 +#: src/components/PostControls/index.tsx:276 +msgid "Unlike ({0, plural, one {# like} other {# likes}})" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:91 +msgid "Unlock chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:568 +msgid "Unlock this group chat" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:180 +#: src/screens/ProfileList/components/Header.tsx:187 +msgid "Unmute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:183 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:96 +msgctxt "video" +msgid "Unmute" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:153 +#: src/components/RichTextTag.tsx:169 +msgid "Unmute {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 +#: src/view/com/profile/ProfileMenu.tsx:442 +#: src/view/com/profile/ProfileMenu.tsx:448 +msgid "Unmute account" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:272 +msgid "Unmute conversation" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:252 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:255 +msgid "Unmute list" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:533 +msgid "Unmute this group chat" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 +msgid "Unmute thread" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 +msgid "Unmute video" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:151 +#: src/screens/ProfileList/components/Header.tsx:158 +msgid "Unpin" +msgstr "" + +#: src/components/FeedCard.tsx:355 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 +#: src/screens/SavedFeeds.tsx:467 +msgid "Unpin feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 +msgid "Unpin from home" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 +msgid "Unpin from profile" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:225 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:228 +msgid "Unpin moderation list" +msgstr "" + +#. placeholder {0}: info.displayName +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 +msgid "Unpinned {0} from Home" +msgstr "" + +#: src/screens/ProfileList/components/Header.tsx:78 +msgid "Unpinned from your feeds" +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:105 +msgid "Unpinned list" +msgstr "" + +#: src/screens/Settings/Settings.tsx:491 +#: src/screens/Settings/Settings.tsx:493 +msgid "Unsnooze email reminder" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:354 +msgid "Unsubscribe" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:202 +#: src/screens/List/ListHiddenScreen.tsx:212 +msgid "Unsubscribe from list" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:321 +msgid "Unsubscribe from this labeler" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:90 +msgid "Unsubscribed from list" +msgstr "" + +#: src/view/com/composer/text-input/TextInput.tsx:127 +msgid "Unsupported clipboard content" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1644 +msgid "Unsupported video type: {mimeType}" +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:323 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:326 +msgid "Until" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "" + +#: src/screens/Settings/components/OTAInfo.tsx:61 +#: src/screens/Settings/components/OTAInfo.tsx:77 +msgid "Update" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(profile, true) +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:138 +msgid "Update {0} in Lists" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 +#: src/screens/Settings/AccountSettings.tsx:110 +#: src/screens/Settings/AccountSettings.tsx:118 +msgid "Update email" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:142 +msgid "Update in Lists" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 +#: src/screens/Messages/components/InviteLinkDialog.tsx:275 +#: src/screens/Messages/components/InviteLinkDialog.tsx:303 +msgid "Update invite link" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:544 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:565 +msgid "Update to {domain}" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 +msgid "Update your email" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:208 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:252 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:41 +#: src/components/dialogs/DeviceLocationRequestDialog.tsx:106 +msgid "Update your location" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 +msgctxt "toast" +msgid "Updating quote attachment failed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 +msgctxt "toast" +msgid "Updating reply visibility failed" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:312 +msgid "Upload a photo instead" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:485 +msgid "Upload a text file to:" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:494 +#: src/view/com/util/UserAvatar.tsx:497 +#: src/view/com/util/UserBanner.tsx:164 +#: src/view/com/util/UserBanner.tsx:167 +msgid "Upload from Camera" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 +msgid "Upload from Files" +msgstr "" + +#: src/view/com/util/UserAvatar.tsx:505 +#: src/view/com/util/UserAvatar.tsx:509 +#: src/view/com/util/UserBanner.tsx:175 +#: src/view/com/util/UserBanner.tsx:179 +msgid "Upload from Library" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2684 +msgid "Uploading GIF..." +msgstr "" + +#: src/lib/api/index.ts:327 +#: src/lib/api/index.ts:354 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:426 +#: src/lib/api/index.ts:450 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2686 +msgid "Uploading video..." +msgstr "" + +#: src/screens/Settings/AppPasswords.tsx:67 +msgid "Use app passwords to sign in to other Bluesky clients without giving full access to your account or password." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:576 +msgid "Use default provider" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:78 +#: src/components/dialogs/InAppBrowserConsent.tsx:84 +msgid "Use in-app browser" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:104 +#: src/screens/Settings/ContentAndMediaSettings.tsx:110 +msgid "Use in-app browser to open links" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:88 +#: src/components/dialogs/InAppBrowserConsent.tsx:94 +msgid "Use my default browser" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:57 +msgid "Use recommended" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:190 +msgid "Use this to sign in to the other app along with your handle." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:278 +msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." +msgstr "" + +#: src/view/screens/Profile.tsx:396 +msgid "user" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:155 +msgctxt "toast" +msgid "User blocked" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:91 +#: src/lib/moderation/useModerationCauseDescription.ts:64 +msgid "User Blocked" +msgstr "" + +#. placeholder {0}: cause.source.list.name +#: src/lib/moderation/useModerationCauseDescription.ts:56 +msgid "User Blocked by \"{0}\"" +msgstr "" + +#: src/components/dms/BlockedByListDialog.tsx:27 +msgid "User blocked by list" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:77 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:74 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:97 +msgid "User Blocks You" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:303 +msgid "User list by {0}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(view.creator.handle, '@') +#: src/state/queries/feed.ts:171 +msgid "User List by {0}" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:301 +msgid "User list by you" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:255 +msgctxt "toast" +msgid "User list created" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:241 +msgctxt "toast" +msgid "User list updated" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:257 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:241 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:245 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:305 +msgid "Username or email" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:315 +msgid "Username or email address" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:337 +msgid "users followed by <0>@{0}" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:324 +msgid "users following <0>@{0}" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:451 +msgid "Value:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:40 +msgid "Verification failed, please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:344 +msgid "Verification settings" +msgstr "" + +#: src/Navigation.tsx:208 +#: src/screens/Moderation/VerificationSettings.tsx:34 +msgid "Verification Settings" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:43 +msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:105 +msgid "Verified by:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:85 +#: src/components/verification/VerificationCreatePrompt.tsx:87 +#: src/view/com/profile/ProfileMenu.tsx:426 +#: src/view/com/profile/ProfileMenu.tsx:429 +msgid "Verify account" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:64 +msgid "Verify again" +msgstr "" + +#. Button text and accessibility label for action to verify the user's email address using the code entered +#. Button text and accessibility label for action to verify the user's email address using the code entered +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 +msgctxt "action" +msgid "Verify code" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:546 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:567 +msgid "Verify DNS Record" +msgstr "" + +#. Dialog title when a user is verifying their email address by entering a code they have been sent +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 +msgid "Verify email code" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:62 +msgid "Verify email dialog" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:65 +msgid "Verify now" +msgstr "" + +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:34 +#: src/ageAssurance/components/DeviceSignalsNotice.tsx:52 +msgid "Verify now using KWS" +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:175 +#: src/components/contacts/screens/VerifyNumber.tsx:217 +msgid "Verify phone number" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:547 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:569 +msgid "Verify Text File" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:52 +msgid "Verify this account?" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 +msgid "Verify your age" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 +#: src/screens/Settings/AccountSettings.tsx:84 +#: src/screens/Settings/AccountSettings.tsx:104 +msgid "Verify your email" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Verifying" +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:165 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:75 +msgid "Verifying your age assurance status" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:307 +msgid "Verifying..." +msgstr "" + +#. placeholder {0}: env.APP_VERSION +#: src/screens/Settings/AboutSettings.tsx:144 +#: src/screens/Settings/AboutSettings.tsx:173 +msgid "Version {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:95 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:162 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:390 +msgid "Video failed to process" +msgstr "" + +#: src/Navigation.tsx:571 +msgid "Video Feed" +msgstr "" + +#. placeholder {0}: author.handle +#: src/components/VideoPostCard.tsx:121 +msgid "Video from {0}: {text}" +msgstr "" + +#. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) +#: src/screens/VideoFeed/index.tsx:1174 +msgid "Video from {0}. Tap to play or pause the video" +msgstr "" + +#: src/lib/interests.ts:62 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 +msgid "Video Games" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1173 +msgid "Video is paused" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1173 +msgid "Video is playing" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2704 +msgid "Video uploaded" +msgstr "" + +#. placeholder {0}: embed.alt +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:95 +msgid "Video: {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:239 +msgid "Videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 +#: src/view/com/composer/SelectMediaButton.tsx:440 +msgid "Videos must be less than 3 minutes long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1234 +msgctxt "Action to view the post the user just created" +msgid "View" +msgstr "" + +#. placeholder {0}: view.source.title +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:340 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:670 +msgid "View {0}" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/Shell.tsx:256 +msgid "View {0}'s avatar" +msgstr "" + +#. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle +#. placeholder {0}: info.creatorHandle +#. placeholder {0}: profile.handle +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 +#: src/screens/Search/components/SearchProfileCard.tsx:37 +#: src/screens/VideoFeed/index.tsx:880 +#: src/view/com/notifications/NotificationFeedItem.tsx:619 +msgid "View {0}'s profile" +msgstr "" + +#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle) +#: src/components/ProfileCard.tsx:150 +msgid "View {0}โ€™s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 +msgid "View {displayName}โ€™s profile" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:478 +msgid "View {publicationTitle}" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:479 +msgid "View blocked user's profile" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:170 +msgid "View blogpost for more details" +msgstr "" + +#: src/screens/Log.tsx:72 +msgid "View debug entry" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 +msgid "View details" +msgstr "" + +#: src/view/com/posts/ViewFullThread.tsx:31 +#: src/view/com/posts/ViewFullThread.tsx:65 +msgid "View full thread" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +msgid "View incoming group chat requests" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "" + +#: src/components/moderation/LabelsOnMe.tsx:51 +msgid "View information about these labels" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 +msgid "View more" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:227 +msgid "View more trending videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1229 +msgid "View post" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:465 +#: src/components/ProfileHoverCard/index.web.tsx:485 +#: src/components/ProfileHoverCard/index.web.tsx:512 +#: src/view/com/posts/PostFeedErrorMessage.tsx:183 +#: src/view/com/util/PostMeta.tsx:92 +#: src/view/com/util/PostMeta.tsx:120 +msgid "View profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:163 +msgid "View profile banner" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:340 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:448 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:479 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:670 +msgid "View publication" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:108 +msgid "View the avatar" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:555 +msgid "View the invite link for this group chat" +msgstr "" + +#. placeholder {0}: labeler.creator.handle +#: src/components/LabelingServiceCard/index.tsx:164 +msgid "View the labeling service provided by @{0}" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:103 +msgid "View this user's verifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +msgid "View users who like this feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:398 +msgid "View video" +msgstr "" + +#: src/screens/Moderation/index.tsx:324 +msgid "View your blocked accounts" +msgstr "" + +#: src/screens/Moderation/index.tsx:264 +msgid "View your default post interaction settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 +msgid "View your feeds and explore more" +msgstr "" + +#: src/screens/Moderation/index.tsx:294 +msgid "View your moderation lists" +msgstr "" + +#: src/screens/Moderation/index.tsx:309 +msgid "View your muted accounts" +msgstr "" + +#: src/components/verification/VerificationCheckButton.tsx:102 +msgid "View your verifications" +msgstr "" + +#: src/components/images/AutoSizedImage.tsx:222 +#: src/components/images/AutoSizedImage.tsx:254 +msgid "Views full image" +msgstr "" + +#: src/components/VideoPostCard.tsx:120 +msgid "Views video in immersive mode" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:126 +msgid "Violence" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:127 +msgid "Violent or threatening content" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:122 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:296 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +msgid "Volume" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:142 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:49 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 +msgid "Watch now" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:253 +msgid "We apply the highest privacy standards, and never share or sell your contact information." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:141 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:147 +msgid "We could not find this list. It was probably deleted." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:348 +msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." +msgstr "" + +#: src/screens/Hashtag.tsx:260 +msgid "We couldn't find any results for that tag." +msgstr "" + +#: src/screens/Topic.tsx:166 +msgid "We couldn't find any results for that topic." +msgstr "" + +#: src/screens/Messages/Conversation.tsx:134 +msgid "We couldn't load this conversation" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldnโ€™t load this conversationโ€™s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 +msgid "We couldnโ€™t load this conversationโ€™s settings" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:482 +msgid "We couldnโ€™t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:244 +msgid "We delete hashes after matches are made" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:67 +msgid "We don't store your friends' phone numbers or send any messages" +msgstr "" + +#: src/screens/SignupQueued.tsx:163 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:197 +msgid "We have partnered with <0>KWS to handle age verification. When you click \"Begin\" below, KWS will email you instructions to complete the verification process. If your email address has already been used to verify your age for another game or service that uses KWS, you wonโ€™t need to do it again. When youโ€™re done, you'll be brought back to continue using Bluesky." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/intents/VerifyEmailIntentDialog.tsx:102 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:184 +msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:241 +msgid "We never keep plain phone numbers" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:247 +msgid "We only suggest follows if both people consent" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:171 +msgid "We recommend selecting at least two interests." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/view/com/composer/state/video.ts:451 +msgid "We were unable to determine if you are allowed to upload videos. Please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceErrors.tsx:19 +msgid "We were unable to load the age assurance configuration for your region, probably due to a network error. Some content and features may be unavailable temporarily. Please try again later." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:41 +msgid "We were unable to load your birthdate preferences. Please try again." +msgstr "" + +#: src/screens/Moderation/index.tsx:492 +msgid "We were unable to load your configured labelers at this time." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:305 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:217 +msgid "We were unable to receive the verification due to a connection issue. It may arrive later. If it does, your account will update automatically." +msgstr "" + +#: src/screens/SignupQueued.tsx:167 +msgid "We will let you know when your account is ready." +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:531 +msgid "We will notify you when we find your friends." +msgstr "" + +#: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 +msgid "Weโ€™d love to hear about your experience testing beta features!" +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:62 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:140 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:83 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:311 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:223 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:151 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:127 +#: src/components/ProgressGuide/FollowDialog.tsx:195 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:321 +msgid "Weโ€™re having network issues, try again" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 +msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." +msgstr "" + +#: src/screens/Signup/index.tsx:140 +msgid "Weโ€™re so excited to have you join us!" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:117 +msgid "We're sorry, but based on the data shared by your device, you are not old enough to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:227 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:218 +msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance." +msgstr "" + +#: src/screens/ProfileList/index.tsx:88 +msgid "We're sorry, but we were unable to resolve this list. If this persists, please contact the list creator, @{handleOrDid}." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:387 +msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 +msgid "Weโ€™re sorry, but your search could not be completed." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 +msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." +msgstr "" + +#: src/components/ageAssurance/AgeRestrictedScreen.tsx:62 +msgid "We're sorry, you cannot access this screen at this time." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1125 +msgid "We're sorry! The post you are replying to has been deleted." +msgstr "" + +#: src/components/Lists.tsx:223 +#: src/view/screens/NotFound.tsx:44 +msgid "We're sorry! We can't find the page you were looking for." +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:220 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:123 +msgid "Weโ€™re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:64 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:77 +msgid "Weโ€™re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:62 +msgid "Weโ€™re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:257 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:165 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + +#: src/screens/Deactivated.tsx:117 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:59 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:44 +msgid "What do you want to call your starter pack?" +msgstr "" + +#. Advanced search: Example of an โ€œexact phraseโ€ search +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:285 +msgid "whatโ€™s up" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 +#: src/view/com/feeds/ComposerPrompt.tsx:192 +msgid "What's up?" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 +msgid "When you tap on a check, youโ€™ll see which organizations have granted verification." +msgstr "" + +#: src/components/WhoCanReply.tsx:226 +msgid "Who can interact with this post?" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 +msgid "Who can join this group chat and how" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 +#: src/components/WhoCanReply.tsx:116 +msgid "Who can reply" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 +msgid "Who can verify?" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:80 +#: src/screens/Messages/ChatList.tsx:409 +#: src/screens/Messages/Inbox.tsx:191 +msgid "Whoops!" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:126 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:108 +msgid "Whoops! Trending videos failed to load." +msgstr "" + +#: src/screens/Takendown.tsx:169 +msgid "Why are you appealing?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:52 +#: src/components/moderation/ReportDialog/copy.ts:66 +msgid "Why should this conversation be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:38 +msgid "Why should this feed be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:32 +msgid "Why should this list be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:20 +msgid "Why should this livestream be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:58 +msgid "Why should this message be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:26 +msgid "Why should this post be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:44 +msgid "Why should this starter pack be reviewed?" +msgstr "" + +#: src/components/moderation/ReportDialog/copy.ts:14 +msgid "Why should this user be reviewed?" +msgstr "" + +#: src/components/dms/AfterReportDialog.tsx:51 +msgid "Would you like to block this user and/or delete this conversation?" +msgstr "" + +#: src/components/dms/AfterReportConversationDialog.tsx:47 +msgid "Would you like to block this user and/or leave this conversation?" +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:110 +msgid "Would you like to save this as a draft before viewing your drafts?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1523 +msgid "Would you like to save this as a draft to edit later?" +msgstr "" + +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 +msgid "Write a post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1704 +msgid "Write post" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 +#: src/view/com/composer/Composer.tsx:1606 +msgid "Write your reply" +msgstr "" + +#: src/lib/interests.ts:75 +msgid "Writers" +msgstr "" + +#. placeholder {0}: verifyError.did +#: src/screens/Settings/components/ChangeHandleDialog.tsx:368 +msgid "Wrong DID returned from server. Received: {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 +msgid "Wrong kind of conversation" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:147 +#: src/features/liveNow/components/GoLiveDialog.tsx:142 +msgid "www.mylivestream.tv" +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to affirmation/agreement GIFs. +#: src/features/gifPicker/components/GifCategoryPills.tsx:95 +msgid "Yes GIFs" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:105 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:107 +msgid "Yes, deactivate" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:348 +msgid "Yes, delete my account" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:712 +msgid "Yes, delete this starter pack" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 +msgid "Yes, detach" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 +msgid "Yes, hide" +msgstr "" + +#: src/screens/Deactivated.tsx:139 +msgid "Yes, reactivate my account" +msgstr "" + +#: src/components/dms/DateDivider.tsx:29 +msgid "Yesterday" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:61 +msgid "You are a trusted verifier" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:174 +msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/dms/MessageItem.tsx:720 +msgid "You are blocking {0}" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:81 +msgid "You are blocking the chat owner" +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:83 +msgid "You are blocking this person" +msgstr "" + +#: src/components/forms/HostingProvider.tsx:46 +msgid "You are creating an account on" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:108 +msgid "You are currently blocked from using the Go Live feature. To appeal this moderation decision, please submit the form below." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:400 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:124 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + +#: src/screens/SignupQueued.tsx:160 +msgid "You are in line." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:113 +#: src/features/liveNow/components/EditLiveDialog.tsx:118 +msgid "You are Live" +msgstr "" + +#: src/features/liveNow/index.tsx:371 +msgid "You are no longer live" +msgstr "" + +#: src/view/com/composer/state/video.ts:444 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:195 +msgid "You are not following anyone yet" +msgstr "" + +#: src/features/liveNow/index.tsx:315 +msgid "You are now live!" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:66 +msgid "You are verified" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:341 +msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:210 +msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 +msgid "You can adjust your interests at any time from \"Content and media\" settings." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:211 +msgid "You can also <0>temporarily deactivate your account instead. Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:60 +#: src/view/com/posts/FollowingEndOfFeed.tsx:61 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:139 +msgid "You can also download your chat data as a \"JSONL\" file. This file only includes chat messages that you have sent and does not include chat messages that you have received." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:250 +msgid "You can always opt out and delete your data" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:134 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:165 +#: src/screens/Messages/Settings.tsx:216 +msgid "You can continue ongoing conversations regardless of which setting you choose." +msgstr "" + +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:150 +msgid "You can now choose to be notified when specific people post. If thereโ€™s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +msgstr "" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:154 +msgid "You can now invite friends with a link or QR code. Share the link anywhere, or let them scan the code to join you on Bluesky." +msgstr "" + +#: src/screens/Login/index.tsx:207 +#: src/screens/Login/PasswordUpdatedForm.tsx:25 +msgid "You can now sign in with your new password." +msgstr "" + +#. Toast shown when the user tries to add more images but the post gallery is already at the cap +#: src/view/com/composer/Composer.tsx:222 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1528 +msgid "You can only save drafts up to 1000 characters." +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:116 +msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:443 +msgid "You can only select one GIF at a time." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:437 +msgid "You can only select one video at a time." +msgstr "" + +#: src/screens/Deactivated.tsx:125 +msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." +msgstr "" + +#: src/components/dms/MessagesListBlockedFooter.tsx:93 +msgid "You can read chat history but canโ€™t send new messages." +msgstr "" + +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:429 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." +msgstr "" + +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 +msgid "You can update this later from your settings." +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:81 +#: src/components/dms/MessageContextMenu.tsx:129 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 +msgid "You cannot create a group chat yet." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:54 +#: src/lib/strings/errors.ts:27 +msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." +msgstr "" + +#: src/screens/Profile/KnownFollowers.tsx:103 +msgid "You don't follow any users who follow @{name}." +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:589 +msgid "You don't have any lists yet." +msgstr "" + +#: src/screens/SavedFeeds.tsx:153 +#: src/screens/SavedFeeds.tsx:343 +msgid "You don't have any pinned feeds." +msgstr "" + +#: src/screens/SavedFeeds.tsx:205 +#: src/screens/SavedFeeds.tsx:381 +msgid "You don't have any saved feeds." +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:312 +msgid "You got here first" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +msgid "You have been previously removed from this group and canโ€™t join it using this link." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:93 +#: src/lib/moderation/useModerationCauseDescription.ts:58 +#: src/lib/moderation/useModerationCauseDescription.ts:66 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "You have completed the Age Assurance process, but based on the results, we cannot be sure that you are 18 years of age or older. Due to laws in your region, certain features on Bluesky must remain restricted until you're able to verify you're an adult." +msgstr "" + +#: src/view/screens/Notifications.tsx:291 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:48 +#: src/screens/Login/SetNewPasswordForm.tsx:89 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:113 +msgid "You have entered an invalid code. It should look like XXXXX-XXXXX." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:117 +msgid "You have hidden this post" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:131 +msgid "You have hidden this post." +msgstr "" + +#: src/components/BotAccountAlert.tsx:26 +msgid "You have marked this account as automated. You can remove it at any time from your account settings." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:124 +#: src/lib/moderation/useModerationCauseDescription.ts:100 +msgid "You have muted this account." +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:94 +msgid "You have muted this user" +msgstr "" + +#: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:71 +#: src/view/com/lists/MyLists.tsx:81 +msgid "You have no lists." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:102 +msgid "You have no starter packs." +msgstr "" + +#: src/view/screens/ModerationBlockedAccounts.tsx:155 +msgid "You have not blocked any accounts yet. To block an account, go to their profile and select \"Block account\" from the menu on their account." +msgstr "" + +#: src/view/screens/ModerationMutedAccounts.tsx:168 +msgid "You have not muted any accounts yet. To mute an account, go to their profile and select \"Mute account\" from the menu on their account." +msgstr "" + +#: src/components/Lists.tsx:62 +msgid "You have reached the end" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:188 +msgid "You have successfully verified your email address. You can close this dialog." +msgstr "" + +#: src/lib/media/video/upload.shared.ts:56 +msgid "You have temporarily reached the limit for video uploads. Please try again later." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1518 +msgid "You have unsaved changes to this draft, would you like to save them?" +msgstr "" + +#: src/view/com/composer/drafts/DraftsButton.tsx:105 +msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +msgid "You haven't created a starter pack yet!" +msgstr "" + +#: src/view/com/lists/ProfileLists.tsx:159 +msgid "You haven't created any lists yet." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:160 +msgid "You haven't made any custom feeds yet." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:407 +msgid "You haven't muted any words or tags yet" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:138 +#: src/lib/moderation/useModerationCauseDescription.ts:128 +msgid "You hid this reply." +msgstr "" + +#. placeholder {0}: getTimeAgo(lastInitiatedAt, new Date(), {format: 'long'}) +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:240 +msgid "You initiated this flow already, {0} ago. It may take up to 5 minutes for emails to reach your inbox. Please consider waiting a few minutes before trying again." +msgstr "" + +#: src/components/NewskieDialog.tsx:107 +msgid "You joined Bluesky {timeAgoString} ago" +msgstr "" + +#: src/components/NewskieDialog.tsx:104 +msgid "You joined Bluesky using a starter pack {timeAgoString} ago" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:83 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:88 +#: src/components/moderation/ModerationDetailsDialog.tsx:210 +msgid "You may appeal these labels if you feel they were placed in error." +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:80 +msgid "You may only add up to {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} profiles}}" +msgstr "" + +#: src/screens/StarterPack/Wizard/State.tsx:101 +msgid "You may only add up to 3 feeds" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:318 +msgid "You must be a chat owner to remove a member." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:177 +msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:89 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:472 +msgid "You need to allow access to your media library." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 +msgid "You need to verify your email address before you can enable email 2FA." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:349 +msgid "You own this chat" +msgstr "" + +#. placeholder {0}: currentAccount?.handle +#: src/screens/Deactivated.tsx:120 +msgid "You previously deactivated @{0}." +msgstr "" + +#: src/screens/Settings/Settings.tsx:421 +msgid "You probably want to restart the app now." +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:361 +msgid "You reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:63 +msgid "You reacted {0} to {target}" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:92 +#: src/components/dialogs/BirthDateSettings.tsx:102 +msgid "You recently changed your birthdate" +msgstr "" + +#: src/components/dms/MessageItem.tsx:806 +msgid "You replied" +msgstr "" + +#: src/components/dms/MessageItem.tsx:805 +msgid "You replied to {originalName}" +msgstr "" + +#: src/components/dms/MessageItem.tsx:803 +msgid "You replied to yourself" +msgstr "" + +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:105 +msgid "You requested to join" +msgstr "" + +#: src/screens/Settings/Settings.tsx:306 +#: src/view/shell/desktop/LeftNav.tsx:225 +msgid "You will be signed out of all your accounts." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:140 +msgid "You will no longer receive notifications for {0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 +msgid "You will no longer receive notifications for this thread" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 +msgid "You will now receive notifications for this thread" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:101 +msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:129 +msgid "You wonโ€™t be able to rejoin unless youโ€™re invited." +msgstr "" + +#. When the last message in a chat was made by you. +#: src/components/dms/getMessageInfo.ts:82 +msgid "You: {message}" +msgstr "" + +#: src/screens/Signup/index.tsx:158 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:163 +msgid "You'll follow the suggested users once you finish creating your account!" +msgstr "" + +#. placeholder {0}: listItemsCount - 8 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:243 +msgid "You'll follow these people and {0} others" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:241 +msgid "You'll follow these people right away" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:314 +msgid "You'll need to go to the System Settings for Bluesky and give permission if you want to use this feature." +msgstr "" + +#. placeholder {0}: sanitizeHandle(profile.handle, '@') +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:172 +msgid "You'll start receiving notifications for {0}!" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:281 +msgid "You'll stay updated with these feeds" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:133 +msgid "You're all set!" +msgstr "" + +#: src/ageAssurance/useVerificationFlow.ts:127 +msgid "You're all set! However, certain features may still be restricted until you're able to verify you're an adult." +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "Youโ€™re in control" +msgstr "" + +#: src/screens/SignupQueued.tsx:130 +msgid "You're in line" +msgstr "" + +#: src/screens/Deactivated.tsx:81 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 +msgid "You're signed in with an App Password. Please sign in with your main password to continue deactivating your account." +msgstr "" + +#: src/components/moderation/AppealForm.tsx:73 +msgid "You've already appealed this label and it's being reviewed by our moderation team." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:128 +#: src/lib/moderation/useModerationCauseDescription.ts:109 +msgid "You've chosen to hide a word or tag within this post." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:313 +msgid "You've denied access to your contacts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:237 +msgid "You've found some people to follow" +msgstr "" + +#: src/components/FocusScope/index.tsx:112 +msgid "You've reached the end of the active content." +msgstr "" + +#: src/view/com/posts/FollowingEndOfFeed.tsx:42 +msgid "You've reached the end of your feed! Find some more accounts to follow." +msgstr "" + +#: src/view/com/composer/Composer.tsx:729 +msgid "You've reached the maximum number of drafts" +msgstr "" + +#: src/lib/hooks/useCleanError.ts:68 +msgid "You've reached the maximum number of requests allowed. Please try again later." +msgstr "" + +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 +msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." +msgstr "" + +#: src/components/FocusScope/index.tsx:88 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:455 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:459 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1221 +msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" +msgstr "" + +#: src/screens/Signup/index.tsx:199 +msgid "Your account" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:128 +msgid "Your account has been deleted, see ya! โœŒ๏ธ" +msgstr "" + +#: src/screens/Takendown.tsx:142 +msgid "Your account has been suspended" +msgstr "" + +#: src/view/com/composer/state/video.ts:463 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:836 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:837 +msgid "Your account must be at least 7 days old to create a new group chat." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:107 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Takendown.tsx:210 +msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." +msgstr "" + +#: src/screens/Takendown.tsx:150 +msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:287 +msgid "Your birth date" +msgstr "" + +#: src/screens/Messages/components/ChatDisabled.tsx:45 +msgid "Your chats have been disabled" +msgstr "" + +#: src/components/dialogs/InAppBrowserConsent.tsx:70 +msgid "Your choice will be remembered for future links. You can change it at any time in settings." +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:380 +msgid "Your contact {firstAuthorLink} is on Bluesky" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:378 +msgid "Your contact {firstAuthorName} is on Bluesky" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:454 +msgid "Your contact {name}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(currentAccount?.handle || '', '@') +#: src/screens/Settings/components/ChangeHandleDialog.tsx:531 +msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." +msgstr "" + +#: src/screens/Moderation/index.tsx:231 +msgid "Your declared age is under 18. Some settings below may be disabled. If this was a mistake, you may edit your birthdate in your <0>account settings." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:252 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:256 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +msgid "Your email" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:51 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:82 +#: src/screens/Signup/state.ts:297 +#: src/screens/Signup/StepInfo/index.tsx:129 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 +msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." +msgstr "" + +#: src/state/shell/progress-guide.tsx:216 +msgid "Your first like!" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:496 +msgid "Your followers" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:41 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#. placeholder {0}: createFullHandle(subdomain, host) +#: src/screens/Settings/components/ChangeHandleDialog.tsx:247 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:182 +msgid "Your hosting provider canโ€™t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." +msgstr "" + +#: src/screens/Login/components/HostingProviderDialog.tsx:188 +msgid "Your hosting provider is detected automatically from the username you enter." +msgstr "" + +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 +#: src/screens/Settings/ContentAndMediaSettings.tsx:94 +#: src/screens/Settings/ContentAndMediaSettings.tsx:97 +#: src/screens/Settings/InterestsSettings.tsx:49 +msgid "Your interests" +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:138 +msgctxt "toast" +msgid "Your interests have been updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 +msgid "Your interests help us find what you like!" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:356 +msgid "Your location has been updated." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "Your muted words" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +msgid "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:72 +msgid "Your password has been changed successfully! Please use your new password when you sign in to Bluesky from now on." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:156 +msgid "Your password must be at least 8 characters long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1225 +msgid "Your post was sent" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1222 +msgid "Your posts were sent" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:289 +msgid "Your preferred language" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 +msgid "Your profile picture" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 +msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 +msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1224 +msgid "Your reply was sent" +msgstr "" + +#. placeholder {0}: state.selectedLabeler?.creator.displayName +#: src/components/moderation/ReportDialog/index.tsx:519 +msgid "Your report will be sent to <0>{0}." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:63 +msgid "Your selected interests help us serve you content you care about." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1553 +msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." +msgstr "" + +#: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 +msgid "Your username and password will be shared with <0>{host}. If you donโ€™t recognize this provider, double-check your username." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:67 +msgid "Your verifications" +msgstr "" + diff --git a/src/locale/locales/lt/messages.po b/src/locale/locales/lt/messages.po index 52359b7d03..b1f8eee4ba 100644 --- a/src/locale/locales/lt/messages.po +++ b/src/locale/locales/lt/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: lt\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Lithuanian\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -1560,7 +1511,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1591,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1656,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1838,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1927,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2244,7 @@ msgstr "" msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2256,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2293,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -2425,28 +2388,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2468,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2819,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2844,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2968,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3106,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3218,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3230,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3263,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3585,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3618,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3627,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3659,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3855,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3949,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,28 +4064,28 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4368,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4467,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4476,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4500,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4576,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4618,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4652,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4723,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4854,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +4996,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5497,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "" @@ -6198,7 +6154,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "" msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" @@ -6776,12 +6726,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6766,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6802,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6814,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6824,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6867,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6943,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7007,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7026,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7035,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7043,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7061,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7112,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7260,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7608,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7617,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "" msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8198,11 +8190,7 @@ msgstr "" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8325,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8345,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8466,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8543,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8569,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8627,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8726,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8925,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9076,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "" @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "" @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "" @@ -9269,7 +9269,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9340,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,21 +10703,26 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13376,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13674,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13683,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13745,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13818,8 +13839,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14156,8 @@ msgstr "" msgid "whatโ€™s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "" @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/lv/messages.po b/src/locale/locales/lv/messages.po index e3ca059618..e78aa5e2aa 100644 --- a/src/locale/locales/lv/messages.po +++ b/src/locale/locales/lv/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: lv\n" "Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "" msgid "7 days" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "" msgid "Account options" msgstr "" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "" msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -1560,7 +1511,7 @@ msgstr "" msgid "Already have a code?" msgstr "" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "" msgid "An error has occurred" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "" @@ -1640,11 +1591,11 @@ msgstr "" msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "" @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,16 +1656,14 @@ msgstr "" msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." msgstr "" #: src/components/hooks/useFollowMethods.ts:35 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1891,8 +1838,8 @@ msgstr "" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1927,7 @@ msgstr "" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" @@ -2282,7 +2244,7 @@ msgstr "" msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "" @@ -2294,7 +2256,7 @@ msgstr "" msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:174 +#: src/view/com/auth/SplashScreen.web.tsx:176 msgid "Blog" msgstr "" @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2293,7 @@ msgstr "" msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -2425,28 +2388,29 @@ msgstr "" msgid "Browse other feeds" msgstr "" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:169 +#: src/view/com/auth/SplashScreen.web.tsx:171 msgid "Business" msgstr "" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2468,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "" msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "" @@ -2854,7 +2819,7 @@ msgstr "" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "" @@ -2879,7 +2844,7 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "" @@ -3003,7 +2968,7 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "" msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -3141,7 +3106,7 @@ msgstr "" msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "" @@ -3253,7 +3218,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3230,6 @@ msgstr "" msgid "Content filters" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "" msgid "Content warnings" msgstr "" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "" @@ -3302,7 +3263,7 @@ msgstr "" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "" @@ -3624,27 +3585,27 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 -#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:240 @@ -3657,7 +3618,7 @@ msgstr "" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "" @@ -3666,15 +3627,15 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3698,7 +3659,7 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:89 -#: src/view/com/auth/SplashScreen.web.tsx:108 +#: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Create new account" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "" @@ -3894,7 +3855,7 @@ msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "" @@ -3988,7 +3949,7 @@ msgstr "" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -4103,28 +4064,28 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "" msgid "Display name" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "" msgid "Edit interaction settings" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" @@ -4406,6 +4368,11 @@ msgstr "" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "" @@ -4500,8 +4467,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "" @@ -4509,7 +4476,7 @@ msgstr "" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4500,7 @@ msgstr "" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "" msgid "Enable media players for" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "" @@ -4608,7 +4576,7 @@ msgstr "" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4618,11 @@ msgstr "" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4652,7 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "" msgid "Excludes users you follow" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "" @@ -4755,11 +4723,11 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4886,7 +4854,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "" @@ -5027,12 +4996,12 @@ msgstr "" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "" @@ -5544,7 +5497,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "" @@ -6198,7 +6154,7 @@ msgstr "" msgid "Hide reply for me" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "" msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" @@ -6776,12 +6726,12 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" #. Link to a page with job openings at Bluesky -#: src/view/com/auth/SplashScreen.web.tsx:179 +#: src/view/com/auth/SplashScreen.web.tsx:181 msgid "Jobs" msgstr "" @@ -6816,8 +6766,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "" @@ -6852,7 +6802,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "" @@ -6864,7 +6814,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "" @@ -6874,7 +6824,7 @@ msgstr "" msgid "Languages" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6917,7 +6867,7 @@ msgstr "" msgid "Learn more about age assurance" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:167 +#: src/view/com/auth/SplashScreen.web.tsx:169 msgid "Learn more about Bluesky" msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "" @@ -6993,8 +6943,8 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "" @@ -7057,7 +7007,7 @@ msgstr "" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7026,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "" @@ -7085,7 +7035,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "" @@ -7093,8 +7043,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "" @@ -7111,27 +7061,45 @@ msgstr "" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "" @@ -7144,7 +7112,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "" @@ -7292,8 +7260,8 @@ msgstr "" msgid "Load new notifications" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7636,7 +7608,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7645,7 +7617,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "" msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "" @@ -8198,11 +8190,7 @@ msgstr "" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "" @@ -8333,7 +8325,7 @@ msgstr "" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" @@ -8353,11 +8345,12 @@ msgstr "" msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "" @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8466,7 @@ msgstr "" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "" @@ -8544,7 +8543,7 @@ msgstr "" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "" @@ -8570,21 +8569,22 @@ msgstr "" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "" @@ -8627,7 +8627,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "" @@ -8726,13 +8726,13 @@ msgstr "" #: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:91 -#: src/view/com/auth/SplashScreen.web.tsx:110 +#: src/view/com/auth/SplashScreen.web.tsx:112 msgid "Opens flow to create a new Bluesky account" msgstr "" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 -#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "" @@ -8925,12 +8925,12 @@ msgstr "" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "" @@ -9076,8 +9076,8 @@ msgstr "" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "" @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "" @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "" @@ -9269,7 +9269,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "" @@ -9340,7 +9340,7 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "" @@ -9398,6 +9396,10 @@ msgstr "" msgid "Posts hidden" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "" @@ -9647,7 +9650,7 @@ msgstr "" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9673,7 +9676,7 @@ msgstr "" msgid "Read our blog post" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:172 +#: src/view/com/auth/SplashScreen.web.tsx:174 msgid "Read the Bluesky blog" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "" msgid "Read the Bluesky Terms of Service" msgstr "" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "" @@ -9766,7 +9765,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "" @@ -9862,7 +9861,7 @@ msgstr "" msgid "Remove from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "" msgid "Removed from saved feeds" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "" @@ -10037,7 +10037,7 @@ msgstr "" msgid "Reply" msgstr "" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "" @@ -10098,8 +10098,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" @@ -10520,8 +10520,8 @@ msgstr "" msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10703,21 +10703,26 @@ msgstr "" msgid "See #{tag} posts by user" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:177 +#: src/view/com/auth/SplashScreen.web.tsx:179 msgid "See jobs at Bluesky" msgstr "" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "" @@ -10764,11 +10769,11 @@ msgstr "" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "" @@ -10945,7 +10951,8 @@ msgstr "" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "" @@ -10963,11 +10970,11 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "" msgid "Show alt text" msgstr "" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "" @@ -11274,8 +11281,8 @@ msgstr "" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,11 +11365,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 -#: src/view/com/auth/SplashScreen.web.tsx:122 -#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 +#: src/view/com/auth/SplashScreen.web.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 #: src/view/shell/bottom-bar/BottomBar.tsx:364 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:250 @@ -11436,7 +11443,7 @@ msgstr "" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "" @@ -11469,7 +11476,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -11715,12 +11722,16 @@ msgstr "" msgid "Starter pack is invalid" msgstr "" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" @@ -11728,7 +11739,7 @@ msgstr "" msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "" @@ -11754,7 +11765,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "" @@ -12060,7 +12073,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "" msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "" @@ -12786,7 +12801,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "" @@ -13355,7 +13376,7 @@ msgstr "" msgid "Upload from Library" msgstr "" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "" @@ -13653,7 +13674,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13683,17 @@ msgstr "" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "" @@ -13724,13 +13745,13 @@ msgstr "" msgid "View debug entry" msgstr "" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13818,8 +13839,8 @@ msgstr "" msgid "View your default post interaction settings" msgstr "" -#: src/view/com/home/HomeHeaderLayout.web.tsx:59 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayout.web.tsx:67 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "" msgid "View your muted accounts" msgstr "" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "" msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -14133,8 +14156,8 @@ msgstr "" msgid "whatโ€™s up" msgstr "" -#: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/auth/SplashScreen.web.tsx:100 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "" @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/ne/messages.po b/src/locale/locales/ne/messages.po index d451899481..65c92282d9 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Nepali\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เคธเคฎเคพเคตเฅ‡เคถ เค—เคฐเคฟเคเค•เฅ‹ เค›" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# เค˜เคฃเฅเคŸเคพ} other {# เค˜เคฃเฅเคŸเคพเคนเคฐเฅ‚}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} เคชเค›เฅเคฏเคพเค‰เคเคฆเฅˆ เค›เคจเฅ" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} เคฒเคพเคˆ เคธเคจเฅเคฆเฅ‡เคถ เคชเค เคพเค‰เคจ เคธเค•เคฟเคฆเฅˆเคจ" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {เคชเค›เฅเคฏเคพเค‰เคเคฆเฅˆ เค›เคจเฅ} other #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {เค‰เคฆเฅเคงเคฐเคฃ} other {เค‰เคฆเฅเคงเคฐเคฃเคนเคฐเฅ‚}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {เคชเฅเคจ: เคชเฅ‹เคทเฅเคŸ} other {เคชเฅเคจ: เคชเฅ‹เคทเฅเคŸเคนเคฐเฅ‚}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "เฅฉเฅฆ เคฆเคฟเคจ" msgid "7 days" msgstr "เฅญ เคฆเคฟเคจ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "เคชเคนเฅเคเคšเคฏเฅ‹เค—เฅเคฏเคคเคพ" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "เคชเคนเฅเคเคšเคฏเฅ‹เค—เฅเคฏเคคเคพ เคธเฅ‡เคŸเคฟเค™เฅเคธ" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "เคธเฅ‚เคšเฅ€เคฆเฅเคตเคพเคฐเคพ เค–เคพเคคเคพ เคฎเฅเคฏเฅ‚เคŸ เค—เคฐเคฟเค msgid "Account options" msgstr "เค–เคพเคคเคพเค•เฅ‹ เคตเคฟเค•เคฒเฅเคชเคนเคฐเฅ‚" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "เค–เคพเคคเคพ เค›เคฟเคŸเฅ‹ เคชเคนเฅเคเคšเคฌเคพเคŸ เคนเคŸเคพเค‡เคเค•เฅ‹ เค›" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "เคตเฅˆเค•เคฒเฅเคชเคฟเค• เคชเคพเค  เคฅเคชเฅเคจเฅเคนเฅ‹เคธเฅ (เคเคš msgid "Add another account" msgstr "เค…เคฐเฅเค•เฅ‹ เค–เคพเคคเคพ เคฅเคชเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "เค…เคฐเฅเค•เฅ‹ เคชเฅ‹เคทเฅเคŸ เคฅเคชเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "เคฏเคธ เคซเคฟเคกเคฒเคพเคˆ เคคเคชเคพเคˆเค‚เค•เฅ‹ เคซเคฟเคกเคฎเคพ เคฅเคช msgid "Add to lists" msgstr "เคธเฅ‚เคšเฅ€เคนเคฐเฅ‚เคฎเคพ เคฅเคชเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "เคตเคฏเคธเฅเค•" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "เคคเคชเคพเคˆเค‚เคฒเฅ‡ เคฌเคšเคค เค—เคฐเฅ‡เค•เคพ เคธเคฌเฅˆ เคซเคฟเคกเคนเคฐเฅ‚ เคเค‰เคŸเฅˆ เคธเฅเคฅเคพเคจเคฎเคพเฅค" @@ -1560,7 +1511,7 @@ msgstr "เคชเฅเคฐเคคเฅเคฏเค•เฅเคท เคธเคจเฅเคฆเฅ‡เคถเคนเคฐเฅ‚เคฎเคพ เคชเคนเฅ msgid "Already have a code?" msgstr "เคชเคนเคฟเคฒเฅ‡ เคจเฅˆ เค•เฅ‹เคก เค›?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "เคเค• เค‡เคฎเฅ‡เคฒ {0} เคฎเคพ เคชเค เคพเค‡เคเค•เฅ‹ เค›เฅค เคฏเคธเคฎเคพ msgid "An error has occurred" msgstr "เคคเฅเคฐเฅเคŸเคฟ เคญเคเค•เฅ‹ เค›" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "เคคเฅเคฐเฅเคŸเคฟ เคญเคฏเฅ‹" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค• เคจเคฟเคฐเฅเคฎเคพเคฃ เค—เคฐเฅเคฆเคพ เคคเฅเคฐเฅเคŸเคฟ เคญเคฏเฅ‹เฅค เค•เฅ‡ เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจ เคšเคพเคนเคจเฅเคนเฅเคจเฅเค›?" @@ -1640,11 +1591,11 @@ msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค• เคจเคฟเคฐ msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เคฒเฅ‹เคก เค—เคฐเฅเคฆเคพ เคคเฅเคฐเฅเคŸเคฟ เคญเคฏเฅ‹เฅค เค•เฅƒเคชเคฏเคพ เคชเค›เคฟ เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เคฒเฅ‹เคก เค—เคฐเฅเคฆเคพ เคคเฅเคฐเฅเคŸเคฟ เคญเคฏเฅ‹เฅค เค•เฅƒเคชเคฏเคพ เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "เคฏเฅ€ เคตเคฟเค•เคฒเฅเคชเคนเคฐเฅ‚เคฎเคพ เคธเคฎเคพเคตเฅ‡เคถ เคจเคญเคเค•เฅ‹ เคธเคฎเคธเฅเคฏเคพ" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "เค•เฅเคฐเคพเค•เคพเคจเฅ€ เค–เฅ‹เคฒเฅเคจเฅ‡ เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคฆเคพ เคธเคฎเคธเฅเคฏเคพ เคญเคฏเฅ‹" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "เคเคช เคชเคพเคธเคตเคฐเฅเคก เคจเคพเคฎ เค•เคฎเฅเคคเคฟเคฎเคพ เฅช เคตเคฐ msgid "App passwords" msgstr "เคเคช เคชเคพเคธเคตเคฐเฅเคกเคนเคฐเฅ‚" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "เคเคช เคชเคพเคธเคตเคฐเฅเคกเคนเคฐเฅ‚" @@ -1891,8 +1838,8 @@ msgstr "เคฏเฅ‹ เคจเคฟเคฐเฅเคฃเคฏเค•เฅ‹ เค…เคชเฅ€เคฒ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "{0} เคฌเคพเคŸ เค†เคฐเฅเค•เคพเค‡เคญ เค—เคฐเคฟเคเค•เฅ‹" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "เค†เคฐเฅเค•เคพเค‡เคญ เค—เคฐเคฟเคเค•เฅ‹ เคชเฅ‹เคธเฅเคŸ" @@ -1980,7 +1927,7 @@ msgstr "เค•เฅ‡ เคคเคชเคพเคˆเค‚ เคฏเคธเคฒเคพเคˆ เค†เคซเฅเคจเฅ‹ เคซเคฟเคกเคนเคฐ msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "เค•เฅ‡ เคคเคชเคพเคˆเค‚ เคฏเคธ เคชเฅ‹เคธเฅเคŸ เคนเคŸเคพเค‰เคจ เคšเคพเคนเคจเฅเคนเฅเคจเฅเค›?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เคฐ GIF เคนเคฐเฅ‚ เค…เคŸเฅ‹เคชเฅเคฒเฅ‡ เค—เคฐเฅเคจ msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค• เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅเคจเฅ เค…เค˜เคฟ, เคคเคชเคพเคˆเค‚เคฒเฅ‡ เคชเคนเคฟเคฒเฅ‡ เค†เคซเฅเคจเฅ‹ เค‡เคฎเฅ‡เคฒ เคชเฅเคฐเคฎเคพเคฃเคฟเคค เค—เคฐเฅเคจเฅเคชเคฐเฅเค›เฅค" @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "เคœเคจเฅเคฎเคฆเคฟเคจ" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "เคฌเฅเคฒเค• เค—เคฐเคฟเคฏเฅ‹" msgid "Blocked accounts" msgstr "เคฌเฅเคฒเค• เค—เคฐเคฟเคเค•เคพ เค–เคพเคคเคพเคนเคฐเฅ‚" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "เคฌเฅเคฒเค• เค—เคฐเคฟเคเค•เคพ เค–เคพเคคเคพเคนเคฐเฅ‚" @@ -2282,7 +2244,7 @@ msgstr "เคฌเฅเคฒเค• เค—เคฐเคฟเคเค•เคพ เค–เคพเคคเคพเคนเคฐเฅ‚เคฒเฅ‡ เคคเคชเคพเคˆ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "เคฌเฅเคฒเค• เค—เคฐเคฟเคเค•เคพ เค–เคพเคคเคพเคนเคฐเฅ‚เคฒเฅ‡ เคคเคชเคพเคˆเค‚เค•เฅ‹ เคฅเฅเคฐเฅ‡เคกเคนเคฐเฅ‚เคฎเคพ เค‰เคคเฅเคคเคฐ เคฆเคฟเคจ เคธเค•เฅเคฆเฅˆเคจเคจเฅ, เคคเคชเคพเคˆเค‚เคฒเคพเคˆ เค‰เคฒเฅเคฒเฅ‡เค– เค—เคฐเฅเคจ เคธเค•เฅเคฆเฅˆเคจเคจเฅ, เคตเคพ เค…เคจเฅเคฏเคฅเคพ เคคเคชเคพเคˆเค‚เคธเคเค— เค…เคจเฅเคคเคฐเค•เฅเคฐเคฟเคฏเคพ เค—เคฐเฅเคจ เคธเค•เฅเคฆเฅˆเคจเคจเฅเฅค เคคเคชเคพเคˆเค‚เคฒเฅ‡ เค‰เคจเฅ€เคนเคฐเฅ‚เค•เฅ‹ เคธเคพเคฎเค—เฅเคฐเฅ€ เคฆเฅ‡เค–เฅเคจ เคธเค•เฅเคจเฅเคนเฅเคจเฅเคจ เคฐ เคคเคฟเคจเฅ€เคนเคฐเฅ‚เคฒเฅ‡ เคคเคชเคพเคˆเค‚เค•เฅ‹ เคธเคพเคฎเค—เฅเคฐเฅ€ เคนเฅ‡เคฐเฅเคจเคฌเคพเคŸ เคฐเฅ‹เค•เคฟเคจเฅ‡เค›เคจเฅเฅค" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "เคฌเฅเคฒเค•เคฒเฅ‡ เคฏเคธ เคฒเฅ‡เคฌเคฒเค•เคฐเฅเคคเคพเคฒเฅ‡ เคคเคชเคพเคˆเค‚เค•เฅ‹ เค–เคพเคคเคพเคฎเคพ เคฒเฅ‡เคฌเคฒ เคฐเคพเค–เฅเคจเคฌเคพเคŸ เคฐเฅ‹เค•เฅเคฆเฅˆเคจเฅค" @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "เคฌเฅเคฒเฅ‚เคธเฅเค•เคพเคˆ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "เคฌเฅเคฒเฅ‚เคธเฅเค•เคพเคˆเคฒเฅ‡ เคฆเคพเคฌเฅ€ เค—เคฐเคฟเคเค•เฅ‹ เคฎเคฟเคคเคฟเค•เฅ‹ เคชเฅเคฐเคพเคฎเคพเคฃเคฟเค•เคคเคพ เคชเฅเคทเฅเคŸเคฟ เค—เคฐเฅเคจ เคธเค•เฅเคฆเฅˆเคจเฅค" @@ -2330,7 +2293,7 @@ msgstr "เคฌเฅเคฒเฅ‚เคธเฅเค•เคพเคˆ เค–เฅเคฒเคพ เคจเฅ‡เคŸเคตเคฐเฅเค• เคนเฅ‹ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "เคฌเฅเคฒเฅ‚เคธเฅเค•เคพเคˆ เคธเคพเคฅเฅ€เคนเคฐเฅ‚เคธเคเค— เค…เค เคฐเคพเคฎเฅเคฐเฅ‹ เค›!" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "เคฌเฅเคฒเฅ‚เคธเฅเค•เคพเคˆ เคคเคชเคพเคˆเค‚เค•เฅ‹ เคจเฅ‡เคŸเคตเคฐเฅเค•เค•เคพ เคฎเคพเคจเคฟเคธเคนเคฐเฅ‚เคฌเคพเคŸ เคธเคฟเคซเคพเคฐเคฟเคธ เค—เคฐเคฟเคเค•เคพ เค–เคพเคคเคพเคนเคฐเฅ‚เค•เฅ‹ เคธเฅ‡เคŸ เคšเคฏเคจ เค—เคฐเฅเคจเฅ‡เค›เฅค" @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "เคเค•เฅเคธเคชเฅเคฒเฅ‹เคฐ เคชเฅƒเคทเฅเค เคฎเคพ เคฅเคช เคซเคฟเคก เคฌเฅเคฐเคพเค‰เคœ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "เคฅเคช เคธเฅเคเคพเคตเคนเคฐเฅ‚ เคฌเฅเคฐเคพเค‰เคœ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "เคเค•เฅเคธเคชเฅเคฒเฅ‹เคฐ เคชเฅƒเคทเฅเค เคฎเคพ เคฅเคช เคธเฅเคเคพเคตเคนเคฐเฅ‚ เคฌเฅเคฐเคพเค‰เคœ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -2425,24 +2388,25 @@ msgstr "เคเค•เฅเคธเคชเฅเคฒเฅ‹เคฐ เคชเฅƒเคทเฅเค เคฎเคพ เคฅเคช เคธเฅเคเคพเคต msgid "Browse other feeds" msgstr "เค…เคจเฅเคฏ เคซเคฟเคกเคนเคฐเฅ‚ เคฌเฅเคฐเคพเค‰เคœ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "{0} เคฆเฅเคตเคพเคฐเคพ" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2468,11 @@ msgstr "เค–เคพเคคเคพ เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅ‡เคฐ เคคเคชเคพเคˆเค‚ <0>เคธ msgid "By creating an account you agree to the <0>Terms of Service." msgstr "เค–เคพเคคเคพ เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅ‡เคฐ เคคเคชเคพเคˆเค‚ <0>เคธเฅ‡เคตเคพ เคธเคฐเฅเคคเคนเคฐเฅ‚ เคธเคเค— เคธเคนเคฎเคค เคนเฅเคจเฅเคนเฅเคจเฅเค›เฅค" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "เค•เฅเคฏเคพเคฎเฅ‡เคฐเคพ" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "เคชเฅเคจเคƒ เคธเค•เฅเคฐเคฟเคฏเคคเคพ เคฐเคฆเฅเคฆ เค—เคฐเฅเคจเฅเคนเฅ‹ msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "เค–เฅ‹เคœเฅ€ เคฐเคฆเฅเคฆ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "เค•เฅเคฐเคพเค•เคพเคจเฅ€ เคฎเฅเคฏเฅ‚เคŸ เค—เคฐเคฟเคฏเฅ‹" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "เค•เฅเคฐเคพเค•เคพเคจเฅ€ เคธเฅ‡เคŸเคฟเค™เฅเคธ" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "เค•เฅเคฐเคพเค•เคพเคจเฅ€ เค…เคจเคฎเฅเคฏเฅ‚เคŸ เค—เคฐเคฟเคฏเฅ‹" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "เคกเฅ‹เคฎเฅ‡เคจ เคชเฅเคฐเคฎเคพเคฃเฅ€เค•เคฐเคฃ เคตเคฟเคงเคฟ เค›เคพเคจเฅ msgid "Choose Feeds" msgstr "เคซเคฟเคกเคนเคฐเฅ‚ เค›เคพเคจเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "เคฎเฅ‡เคฐเฅ‹ เคฒเคพเค—เคฟ เค›เคพเคจเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -2854,7 +2819,7 @@ msgstr "เคตเฅเคฏเค•เฅเคคเคฟเคนเคฐเฅ‚ เค›เคพเคจเฅเคจเฅเคนเฅ‹เคธเฅ" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "เคฏเฅ‹ เคฐเค‚เค—เคฒเคพเคˆ เค†เคซเฅเคจเฅ‹ เค…เคตเคคเคพเคฐเค•เฅ‹ เคฐเฅ‚เคชเคฎเคพ เค›เคพเคจเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -2879,7 +2844,7 @@ msgstr "" msgid "Choose your password" msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เคชเคพเคธเคตเคฐเฅเคก เค›เคพเคจเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "เค…เคธเคซเคฒ เคธเคจเฅเคฆเฅ‡เคถ เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจ เค•เฅเคฒเคฟเค• เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -3003,7 +2968,7 @@ msgstr "เค…เคธเคซเคฒ เคธเคจเฅเคฆเฅ‡เคถ เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅ #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "เค…เคธเคซเคฒ เคธเคจเฅเคฆเฅ‡เคถ เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅ msgid "Close" msgstr "เคฌเคจเฅเคฆ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "เคธเค•เฅเคฐเคฟเคฏ เคธเค‚เคตเคพเคฆ เคฌเคจเฅเคฆ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "เคฏเฅ‹ เคธเค‚เคตเคพเคฆ เคฌเคจเฅเคฆ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "เคชเคพเคธเคตเคฐเฅเคก เค…เคฆเฅเคฏเคพเคตเคงเคฟเค• เคšเฅ‡เคคเคพเคตเคจเฅ€ เคฌเคจเฅเคฆ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "เคฐเค‚เค— เคฎเฅ‹เคก" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "เค•เคฎเคฟเค•เฅเคธ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "เคธเคฎเฅเคฆเคพเคฏเค•เคพ เคฆเคฟเคถเคพเคจเคฟเคฐเฅเคฆเฅ‡เคถเคนเคฐเฅ‚" @@ -3141,7 +3106,7 @@ msgstr "เคธเคฎเฅเคฆเคพเคฏเค•เคพ เคฆเคฟเคถเคพเคจเคฟเคฐเฅเคฆเฅ‡เคถเคนเคฐเฅ‚" msgid "Complete onboarding and start using your account" msgstr "เค…เคจเคฌเฅ‹เคฐเฅเคกเคฟเค™ เคชเฅ‚เคฐเคพ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ เคฐ เค†เคซเฅเคจเฅ‹ เค–เคพเคคเคพ เคชเฅเคฐเคฏเฅ‹เค— เค—เคฐเฅเคจ เคธเฅเคฐเฅ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "เคšเฅเคจเฅŒเคคเฅ€ เคชเฅ‚เคฐเคพ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "เคจเคฏเคพเค เคชเฅ‹เคธเฅเคŸ เคคเคฏเคพเคฐ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "เคœเคตเคพเคซ เคคเคฏเคพเคฐ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เค•เคฎเฅเคชเฅเคฐเฅ‡เคธ เค—เคฐเฅเคฆเฅˆ..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "เคธเคฎเคฐเฅเคฅเคจ เคธเคฎเฅเคชเคฐเฅเค• เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -3253,7 +3218,7 @@ msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เคฐ เคฎเคฟเคกเคฟเคฏเคพ" msgid "Content and media" msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เคฐ เคฎเคฟเคกเคฟเคฏเคพ" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เคฐ เคฎเคฟเคกเคฟเคฏเคพ" @@ -3265,10 +3230,6 @@ msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เค…เคตเคฐเฅเคฆเฅเคง เค—เคฐเคฟเคฏเฅ‹" msgid "Content filters" msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เคซเคฟเคฒเฅเคŸเคฐเคนเคฐเฅ‚" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เคšเฅ‡เคคเคพเคตเคจเฅ€" msgid "Content warnings" msgstr "เคธเคพเคฎเค—เฅเคฐเฅ€ เคšเฅ‡เคคเคพเคตเคจเฅ€เคนเคฐเฅ‚" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "เคธเคจเฅเคฆเคฐเฅเคญ เคฎเฅ‡เคจเฅ เคชเฅƒเคทเฅเค เคญเฅ‚เคฎเคฟ, เคฎเฅ‡เคจเฅ เคฌเคจเฅเคฆ เค—เคฐเฅเคจ เค•เฅเคฒเคฟเค• เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -3302,7 +3263,7 @@ msgstr "เคธเคจเฅเคฆเคฐเฅเคญ เคฎเฅ‡เคจเฅ เคชเฅƒเคทเฅเค เคญเฅ‚เคฎเคฟ, เคฎเฅ‡ #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "เคฅเฅเคฐเฅ‡เคก เคœเคพเคฐเฅ€ เคฐเคพเค–เฅเคจเฅเคนเฅ‹เคธเฅ..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "เคฌเคฟเคฒเฅเคก เคธเค‚เคธเฅเค•เคฐเคฃ เค•เฅเคฒเคฟเคชเคฌเฅ‹เคฐเฅเคกเคฎเคพ เคชเฅเคฐเคคเคฟเคฒเคฟเคชเคฟ เค—เคฐเคฟเคฏเฅ‹" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "เคเคช เคชเคพเคธเคตเคฐเฅเคก เคชเฅเคฐเคคเคฟเคฒเคฟเคชเคฟ เค—เคฐเฅเคจเฅ msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "เคฒเคฟเค‚เค• เคชเฅเคฐเคคเคฟเคฒเคฟเคชเคฟ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" msgid "Copy link to list" msgstr "เคธเฅ‚เคšเฅ€เค•เฅ‹ เคฒเคฟเค‚เค• เคชเฅเคฐเคคเคฟเคฒเคฟเคชเคฟ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "เคชเฅ‹เคธเฅเคŸเค•เฅ‹ เคฒเคฟเค‚เค• เคชเฅเคฐเคคเคฟเคฒเคฟเคชเคฟ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "เคธเคจเฅเคฆเฅ‡เคถเค•เฅ‹ เคชเคพเค  เคชเฅเคฐเคคเคฟเคฒเคฟเคชเคฟ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "TXT เคฐเฅ‡เค•เคฐเฅเคก เคฎเคพเคจ เคชเฅเคฐเคคเคฟเคฒเคฟเคชเคฟ เค—เคฐเฅ #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "เคชเฅเคฐเคคเคฟเคฒเคฟเคชเคฟ เค…เคงเคฟเค•เคพเคฐ เคจเฅ€เคคเคฟ" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "เค•เฅเคฐเคพเค•เคพเคจเฅ€ เค›เฅ‹เคกเฅเคจ เคธเค•เคฟเคเคจ" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "เคซเคฟเคก เคฒเฅ‹เคก เค—เคฐเฅเคจ เคธเค•เคฟเคเคจ" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "เค•เฅเคฐเคพเค•เคพเคจเฅ€ เคฎเฅเคฏเฅ‚เคŸ เค—เคฐเฅเคจ เคธเค•เคฟเคเคจ" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค•เค•เคพ เคฒเคพเค—เคฟ QR เค•เฅ‹เคก เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค• เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "เคฎเฅ‡เคฐเฅ‹ เคฒเคพเค—เคฟ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค• เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "เคธเคพเค‡เคจ เค…เคช เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "เค–เคพเคคเคพ เคฌเคจเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" @@ -3666,15 +3627,15 @@ msgstr "เค–เคพเคคเคพ เคฌเคจเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "เคฏเคธเค•เฅ‹ เคธเคŸเฅเคŸเคพ เคเค‰เคŸเคพ เค…เคตเคคเคพเคฐ เคฌเคจเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "เค…เคฐเฅเค•เฅ‹ เคฌเคจเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "เคธเค‚เคธเฅเค•เฅƒเคคเคฟ" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "เค—เคพเคขเคพ" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "เค—เคพเคขเคพ" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "เค—เคพเคขเคพ เคฅเคฟเคฎ" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "เคกเคฟเคซเคฒเฅเคŸ" @@ -3894,7 +3855,7 @@ msgstr "เคฎเฅ‡เคฐเฅ‹ เค–เคพเคคเคพ เคฎเฅ‡เคŸเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "เคชเฅ‹เคธเฅเคŸ เคฎเฅ‡เคŸเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" @@ -3988,7 +3949,7 @@ msgstr "เคธเค‚เคตเคพเคฆ: เคฏเฅ‹ เคชเฅ‹เคธเฅเคŸเคธเคเค— เค•เคธเคฒเฅ‡ เค…เคจเฅ msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "เคงเฅ‚เคฎเคฟเคฒ" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "เค…เค•เฅเคทเคฎ เค—เคฐเคฟเคฏเฅ‹" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "เคคเฅเคฏเคพเค—เฅเคจเฅเคนเฅ‹เคธเฅ" msgid "Discard changes?" msgstr "เคชเคฐเคฟเคตเคฐเฅเคคเคจเคนเคฐเฅ‚ เคคเฅเคฏเคพเค—เฅเคจเฅเคนเฅ‹เคธเฅ?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "เคฎเคธเฅเคฏเฅŒเคฆเคพ เคคเฅเคฏเคพเค—เฅเคจเฅเคนเฅ‹เคธเฅ?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "เคชเฅ‹เคธเฅเคŸ เคคเฅเคฏเคพเค—เฅเคจเฅเคนเฅ‹เคธเฅ?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "เคเคชเคนเคฐเฅ‚เคฒเคพเคˆ เคฎเฅ‡เคฐเฅ‹ เค–เคพเคคเคพ เคฒเค—เค‡เคจ เคจเค—เคฐเฅ‡เค•เคพ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเคนเคฐเฅ‚เคฒเคพเคˆ เคฆเฅ‡เค–เคพเค‰เคจเคฌเคพเคŸ เคนเคคเฅ‹เคคเฅเคธเคพเคนเคฟเคค เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "เคเคชเคนเคฐเฅ‚เคฒเคพเคˆ เคฎเฅ‡เคฐเฅ‹ เค–เคพเคคเคพ เคฒเค—เค‡เคจ เคจเค— msgid "Discover new custom feeds" msgstr "เคจเคฏเคพเค เค…เคจเฅเค•เฅ‚เคฒเคฟเคค เคซเคฟเคกเคนเคฐเฅ‚ เคชเคคเฅเคคเคพ เคฒเค—เคพเค‰เคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "เคจเคฏเคพเค เคซเคฟเคกเคนเคฐเฅ‚ เค–เฅ‹เคœเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "เคฐเคฆเฅเคฆ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -4103,28 +4064,28 @@ msgstr "เคฐเคฆเฅเคฆ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "เคคเฅเคฐเฅเคŸเคฟ เคฐเคฆเฅเคฆ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "เค—เคพเค‡เคกเคฒเคพเคˆ เคฐเคฆเฅเคฆ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "เค เฅ‚เคฒเฅ‹ เคตเฅˆเค•เคฒเฅเคชเคฟเค• เคชเคพเค  เคฌเฅเคฏเคพเคœ เคฆเฅ‡ msgid "Display name" msgstr "เคชเฅเคฐเคฆเคฐเฅเคถเคจ เคจเคพเคฎ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "เคธเคฎเฅเคชเคจเฅเคจ" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "เคธเค‚เคตเคพเคฆ เคฌเคจเฅเคฆ เค—เคฐเฅเคจ เคกเคฌเคฒ เคŸเฅเคฏเคพเคช เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "เคšเคฟเคคเฅเคฐ เคธเคฎเฅเคชเคพเคฆเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" msgid "Edit interaction settings" msgstr "เค…เคจเฅเคคเคฐเฅเค•เฅเคฐเคฟเคฏเคพ เคธเฅ‡เคŸเคฟเค™เฅเคธ เคธเคฎเฅเคชเคพเคฆเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "เคฎเฅ‡เคฐเฅ‹ เคซเคฟเคก เคธเคฎเฅเคชเคพเคฆเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -4406,6 +4368,11 @@ msgstr "เคฎเฅ‡เคฐเฅ‹ เคซเคฟเคก เคธเคฎเฅเคชเคพเคฆเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "เคตเฅเคฏเค•เฅเคคเคฟ เคธเคฎเฅเคชเคพเคฆเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "เค•เฅ‹ เค‰เคคเฅเคคเคฐ เคฆเคฟเคจ เคธเค•เฅเค› เคธเคฎเฅเคชเคพเคฆเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค• เคธเคฎเฅเคชเคพเคฆเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -4500,8 +4467,8 @@ msgstr "HTML เค•เฅ‹เคก เคธเคฎเคพเคตเฅ‡เคถ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "เคชเฅ‹เคธเฅเคŸ เคธเคฎเคพเคตเฅ‡เคถ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -4509,7 +4476,7 @@ msgstr "เคชเฅ‹เคธเฅเคŸ เคธเคฎเคพเคตเฅ‡เคถ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "เคฏเฅ‹ เคชเฅ‹เคธเฅเคŸเคฒเคพเคˆ เคคเคชเคพเคˆเค‚เค•เฅ‹ เคตเฅ‡เคฌเคธเคพเค‡เคŸเคฎเคพ เคธเคฎเคพเคตเฅ‡เคถ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค เคคเคฒเค•เฅ‹ เคธเฅเคจเคฟเคชเฅ‡เคŸ เคชเฅเคฐเคคเคฟเคฒเคฟเคชเคฟ เค—เคฐเฅ€ เคคเคชเคพเคˆเค‚เค•เฅ‹ เคตเฅ‡เคฌเคธเคพเค‡เคŸเค•เฅ‹ HTML เค•เฅ‹เคกเคฎเคพ เคŸเคพเคเคธเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "เคธเคฎเคพเคตเคฟเคทเฅเคŸ เคญเคฟเคกเคฟเคฏเฅ‹ เคชเฅเคฒเฅ‡เคฏเคฐ" @@ -4533,7 +4500,7 @@ msgstr "เคตเคฏเคธเฅเค• เคธเคพเคฎเค—เฅเคฐเฅ€ เคธเค•เฅเคทเคฎ เค—เคฐเฅเคจเฅเคน msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "เคฌเคพเคนเฅเคฏ เคฎเคฟเคกเคฟเคฏเคพ เคธเค•เฅเคทเคฎ เค—เคฐเฅเคจเฅเคนเฅ‹ msgid "Enable media players for" msgstr "เคฎเคฟเคกเคฟเคฏเคพ เคชเฅเคฒเฅ‡เคฏเคฐ เคธเค•เฅเคทเคฎ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "เคธเค•เฅเคทเคฎ เค—เคฐเคฟเคเค•เฅ‹" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "เคซเคฟเคกเค•เฅ‹ เค…เคจเฅเคคเฅเคฏ" @@ -4608,7 +4576,7 @@ msgstr "เคถเคฌเฅเคฆ เคตเคพ เคŸเฅเคฏเคพเค— เคชเฅเคฐเคตเคฟเคทเฅเคŸ เค—เคฐเฅ msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "เคชเฅ‚เคฐเฅเคฃ เคธเฅเค•เฅเคฐเฅ€เคจเคฎเคพ เคชเฅเคฐเคตเฅ‡เคถ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -4650,11 +4618,11 @@ msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เคจเคพเคฎ เคฐ msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "เคคเฅเคฐเฅเคŸเคฟ" @@ -4684,7 +4652,7 @@ msgstr "เคซเคพเค‡เคฒ เคฌเคšเคค เค—เคฐเฅเคฆเคพ เคคเฅเคฐเฅเคŸเคฟ เคญเคฏเฅ‹" msgid "Error receiving captcha response." msgstr "เค•เฅเคฏเคพเคชเฅเคšเคพ เคชเฅเคฐเคคเคฟเค•เฅเคฐเคฟเคฏเคพ เคชเฅเคฐเคพเคชเฅเคค เค—เคฐเฅเคฆเคพ เคคเฅเคฐเฅเคŸเคฟเฅค" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "เคธเคฌเฅˆเคฒเฅ‡ เค‰เคคเฅเคคเคฐ เคฆเคฟเคจ เคธเค•เฅเค›เคจเฅ" msgid "Everybody can reply to this post." msgstr "เคธเคฌเฅˆเคฒเฅ‡ เคฏเฅ‹ เคชเฅ‹เคธเฅเคŸเคฎเคพ เค‰เคคเฅเคคเคฐ เคฆเคฟเคจ เคธเค•เฅเค›เคจเฅเฅค" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "เคธเคฌเฅˆ เคœเคจเคพ" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "เคธเคฌเฅˆ เคœเคจเคพ" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "เคคเคชเคพเคˆเค‚เคฒเฅ‡ เคชเค›เฅเคฏเคพเคเค•เคพ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐ msgid "Excludes users you follow" msgstr "เคคเคชเคพเคˆเค‚เคฒเฅ‡ เคชเค›เฅเคฏเคพเคเค•เคพ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเคนเคฐเฅ‚ เคนเคŸเคพเค‰เคเค›" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "เคชเฅ‚เคฐเฅเคฃ เคธเฅเค•เฅเคฐเฅ€เคจเคฌเคพเคŸ เคฌเคพเคนเคฟเคฐ เคœเคพเคจเฅเคนเฅ‹เคธเฅ" @@ -4755,11 +4723,11 @@ msgstr "เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเคนเคฐเฅ‚เค•เฅ‹ เคธเฅ‚เคšเฅ€ เคตเคฟเคธ msgid "Expand or collapse the full post you are replying to" msgstr "เคœเคธเคฎเคพ เคคเคชเคพเคˆเค‚ เค‰เคคเฅเคคเคฐ เคฆเคฟเคเคฆเฅˆ เคนเฅเคจเฅเคนเฅเคจเฅเค›, เคคเฅเคฏเฅ‹ เคชเฅ‹เคธเฅเคŸ เคตเคฟเคธเฅเคคเคพเคฐ เคตเคพ เคธเค™เฅเค•เฅเคšเคฟเคค เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "เคธเฅเคชเคทเฅเคŸ เคตเคพ เคธเคฎเฅเคญเคพเคตเคฟเคค เคฐเฅ‚เคชเคฎเคพ เคฌ msgid "Explicit sexual images." msgstr "เคธเฅเคชเคทเฅเคŸ เคฏเฅŒเคจ เคšเคฟเคคเฅเคฐเคนเคฐเฅ‚เฅค" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "เคฌเคพเคนเฅเคฏ เคฎเคฟเคกเคฟเคฏเคพ" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "เคฌเคพเคนเฅเคฏ เคฎเคฟเคกเคฟเคฏเคพเคฒเฅ‡ เคตเฅ‡เคฌเคธเคพเค‡เคŸเคนเคฐเฅ‚เคฒเคพเคˆ เคคเคชเคพเคˆเค‚ เคฐ เคคเคชเคพเคˆเค‚เค•เฅ‹ เค‰เคชเค•เคฐเคฃเค•เฅ‹ เคœเคพเคจเค•เคพเคฐเฅ€ เคธเค™เฅเค•เคฒเคจ เค—เคฐเฅเคจ เค…เคจเฅเคฎเคคเคฟ เคฆเคฟเคจ เคธเค•เฅเค›เฅค \"เคชเฅเคฒเฅ‡\" เคฌเคŸเคจ เคฆเคฌเคพเค‰เคจเฅ‡เคธเคฎเฅเคฎ เค•เฅเคจเฅˆ เคœเคพเคจเค•เคพเคฐเฅ€ เคชเค เคพเค‡เคเคฆเฅˆเคจ เคตเคพ เค…เคจเฅเคฐเฅ‹เคง เค—เคฐเคฟเคเคฆเฅˆเคจเฅค" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "เคฌเคพเคนเฅเคฏ เคฎเคฟเคกเคฟเคฏเคพ เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพเคนเคฐเฅ‚" @@ -4886,7 +4854,7 @@ msgstr "เคนเฅเคฏเคพเคจเฅเคกเคฒ เคชเคฐเคฟเคตเคฐเฅเคคเคจ เค—เคฐเฅเคจ เค…เคธเคซ #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "เคซเคฟเคกเฅเคธ เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพเคนเคฐเฅ‚ เคฒเฅ‹เคก เค—เคฐเฅเคจ เค…เคธเคซเคฒ" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "เคธเฅเคเคพเคต เค—เคฐเคฟเคเค•เคพ เคซเคฟเคกเฅเคธ เคฒเฅ‹เคก เค—เคฐเฅเคจ เค…เคธเคซเคฒ เคญเคฏเฅ‹" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "เคธเฅเคเคพเคต เค—เคฐเคฟเคเค•เคพ เคซเคฒเฅ‹เคนเคฐเฅ‚ เคฒเฅ‹เคก เค—เคฐเฅเคจ เค…เคธเคซเคฒ เคญเคฏเฅ‹" @@ -5027,12 +4996,12 @@ msgstr "เคธเฅเคเคพเคต เค—เคฐเคฟเคเค•เคพ เคซเคฒเฅ‹เคนเคฐเฅ‚ เคฒเฅ‹เคก เค—เคฐ msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "เคซเคฟเคก" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "เคซเคฟเคกเฅเคธ เค…เคฆเฅเคฏเคพเคตเคงเคฟเค• เค—เคฐเคฟเคฏเฅ‹!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "เคซเคพเค‡เคฒ เคธเคซเคฒเคคเคพเคชเฅ‚เคฐเฅเคตเค• เคธเฅเคฐเค•เฅเคทเคฟเคค เค—เคฐเคฟเคฏเฅ‹!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "เคซเคฟเคกเฅเคธเคฌเคพเคŸ เคซเคฟเคฒเฅเคŸเคฐ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "เคซเคฒเฅ‹ เค—เคฐเฅเคจ เค–เคพเคคเคพเคนเคฐเฅ‚ เคซเฅ‡เคฒเคพ เคชเคพเคฐเฅ msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "{0} เคฒเคพเคˆ เค…เคจเฅเคธเคฐเคฃ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "เฅญ เค–เคพเคคเคพเคนเคฐเฅ‚ เค…เคจเฅเคธเคฐเคฃ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "เคคเคชเคพเคˆเค‚เคฒเฅ‡ เคšเคฟเคจเฅ‡เค•เคพ @{0} เค•เคพ เค…เคจเฅเคธเคฐเคฃเค•เคฐเฅเคคเคพเคนเคฐเฅ‚" @@ -5544,7 +5497,7 @@ msgstr "เคคเคชเคพเคˆเค‚เคฒเฅ‡ เคšเคฟเคจเฅ‡เค•เคพ เค…เคจเฅเคธเคฐเคฃเค•เคฐเฅเคค #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "{0} เคฒเคพเคˆ เค…เคจเฅเคธเคฐเคฃ เค—เคฐเฅเคฆเฅˆ" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "เค…เคจเฅเคธเคฐเคฃ เคซเคฟเคก เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพเคนเคฐเฅ‚" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "เค…เคจเฅเคธเคฐเคฃ เคซเคฟเคก เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพเคนเคฐเฅ‚" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "เคคเคชเคพเคˆเคฒเคพเคˆ เค…เคจเฅเคธเคฐเคฃ เค—เคฐเฅเค›" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "เคซเคจเฅเคŸ" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "เคซเคจเฅเคŸ เค†เค•เคพเคฐ" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "เคธเฅเคฐเค•เฅเคทเคพ เค•เคพเคฐเคฃเคนเคฐเฅ‚เค•เฅ‹ เคฒเคพเค—เคฟ, เคคเคชเคพเคˆเค‚ เคฏเคธเคฒเคพเคˆ เคชเฅเคจ: เคนเฅ‡เคฐเฅเคจ เคธเค•เฅเคจเฅเคนเฅเคจเฅ‡เค›เฅˆเคจเฅค เคฏเคฆเคฟ เคคเคชเคพเคˆเค‚เคฒเฅ‡ เคฏเฅ‹ เคชเคพเคธเคตเคฐเฅเคก เคนเคฐเคพเค‰เคจเฅ เคญเคฏเฅ‹ เคญเคจเฅ‡, เคคเคชเคพเคˆเค‚เคฒเฅ‡ เคจเคฏเคพเค เค‰เคคเฅเคชเคจเฅเคจ เค—เคฐเฅเคจเฅเคชเคฐเฅเคจเฅ‡เค›เฅค" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "เคธเคฐเฅเคตเฅ‹เคคเฅเคคเคฎ เค…เคจเฅเคญเคตเค•เฅ‹ เคฒเคพเค—เคฟ, เคนเคพเคฎเฅ€ เคฅเคฟเคฎ เคซเคจเฅเคŸ เคชเฅเคฐเคฏเฅ‹เค— เค—เคฐเฅเคจ เคธเคฟเคซเคพเคฐเคฟเคธ เค—เคฐเฅเค›เฅŒเค‚เฅค" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "เคธเคงเฅˆเค‚เค•เฅ‹ เคฒเคพเค—เคฟ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "เคชเคพเคธเคตเคฐเฅเคก เคฌเคฟเคฐเฅเคธเคจเฅเคญเคฏเฅ‹?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "<0/> เคฌเคพเคŸ" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค• เค‰เคคเฅเคชเคจเฅเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "เคฎเคฆเฅเคฆเคค เคชเฅเคฐเคพเคชเฅเคค เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "เค†เคซเฅเคจเฅ‹ เคชเฅเคฐเฅ‹เคซเคพเค‡เคฒเคฒเคพเคˆ เค…เคจเฅเคนเคพเคฐ เคฆเคฟเคจเฅเคนเฅ‹เคธเฅ" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "เคนเฅเคฏเคพเคธเคŸเฅเคฏเคพเค—" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "เคธเคฎเคธเฅเคฏเคพ เคญเค‡เคฐเคนเฅ‡เค•เฅ‹ เค›?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "เคธเคนเคฏเฅ‹เค—" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "เคซเฅ‹เคŸเฅ‹ เค…เคชเคฒเฅ‹เคก เค—เคฐเฅ‡เคฐ เคตเคพ เค…เคตเคคเคพเคฐ เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅ‡เคฐ เค†เคซเฅ‚ เคฌเฅ‹เคŸ เคนเฅ‹เค‡เคจ เคญเคจเฅ‡เคฐ เคฆเฅ‡เค–เคพเค‰เคจ เคธเคนเคฏเฅ‹เค— เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "เคฒเฅเค•เฅ‡เค•เฅ‹ เคธเฅ‚เคšเฅ€" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "เคฒเฅเค•เฅ‡เค•เฅ‹ เคธเฅ‚เคšเฅ€" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "เคฒเฅเค•เคพเค‰เคจเฅเคนเฅ‹เคธเฅ" @@ -6198,7 +6154,7 @@ msgstr "เคธเคฌเฅˆเค•เคพ เคฒเคพเค—เคฟ เค‰เคคเฅเคคเคฐ เคฒเฅเค•เคพเค‰เคจเฅเคนเฅ‹ msgid "Hide reply for me" msgstr "เคฎเฅ‡เคฐเฅ‹ เคฒเคพเค—เคฟ เค‰เคคเฅเคคเคฐ เคฒเฅเค•เคพเค‰เคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "เคฏเฅ‹ เค‰เคคเฅเคคเคฐ เคฒเฅเค•เคพเค‰เคจเฅเคนเฅ‹เคธเฅ?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เคธเฅ‚เคšเฅ€ เคฒเฅเค•เคพเค‰เคจเฅเคน msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "เคนเคพเคฎเฅเคฐเฅ‹เคฎเคพ เคธเคฎเคธเฅเคฏเคพ เค›, เคนเคพเคฎเฅ€เคฒเฅ‡ เคค msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "เคชเคฐเฅเค–เคจเฅเคนเฅ‹เคธเฅ! เคนเคพเคฎเฅ€ เคฌเคฟเคธเฅเคคเคพเคฐเฅˆ เคญเคฟเคกเคฟเคฏเฅ‹ เคชเคนเฅเคเคš เค‰เคชเคฒเคฌเฅเคง เค—เคฐเคพเค‰เคเคฆเฅˆเค›เฅŒเค‚, เคฐ เคคเคชเคพเคˆเค‚ เค…เคเฅˆ เคชเฅเคฐเคคเฅ€เค•เฅเคทเคพเคฎเคพ เคนเฅเคจเฅเคนเฅเคจเฅเค›เฅค เค›เคฟเคŸเฅเคŸเฅˆ เคชเฅเคจเคƒ เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "เคฏเคฆเคฟ เคคเคชเคพเคˆเค‚ เค†เคซเฅเคจเฅ‹ เคชเคพเคธเคตเคฐเฅเคก เคชเคฐเคฟเคตเคฐเฅเคคเคจ เค—เคฐเฅเคจ เคšเคพเคนเคจเฅเคนเฅเคจเฅเค› เคญเคจเฅ‡, เคนเคพเคฎเฅ€ เคคเคชเคพเคˆเค‚เคฒเคพเคˆ เคฏเฅ‹ เค–เคพเคคเคพ เคนเฅ‹ เคญเคจเฅ‡เคฐ เคชเฅเคฐเคฎเคพเคฃเคฟเคค เค—เคฐเฅเคจ เค•เฅ‹เคก เคชเค เคพเค‰เคจเฅ‡เค›เฅŒเค‚เฅค" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "เค…เคฎเคพเคจเฅเคฏ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เคจเคพเคฎ เคตเคพ เคชเคพเคธเคตเคฐเฅเคก" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "เคจเคฟเคฎเคจเฅเคคเฅเคฐเคฃเคพ เค•เฅ‹เคก" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "เคจเคฟเคฎเคจเฅเคคเฅเคฐเคฃเคพ เค•เฅ‹เคก เคธเฅเคตเฅ€เค•เคพเคฐ เค—เคฐเคฟเคเคจเฅค เค•เฅƒเคชเคฏเคพ เคฏเคธเคฒเคพเคˆ เคธเคนเคฟ เคคเคฐเคฟเค•เคพเคฒเฅ‡ เคชเฅเคฐเคตเคฟเคทเฅเคŸ เค—เคฐเฅเคจเฅเคญเคเค•เฅ‹ เค› เค•เคฟ เค›เฅˆเคจ เคœเคพเคเคš เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ เคฐ เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "เค…เคนเคฟเคฒเฅ‡ เคฎเคพเคคเฅเคฐ เคคเคชเคพเคˆเค‚ เคนเฅเคจเฅเคนเฅเคจเฅเค›! เคฎเคพเคฅเคฟ เค–เฅ‹เคœเฅ‡เคฐ เค†เคซเฅเคจเฅ‹ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค•เคฎเคพ เคฅเคช เคฎเคพเคจเคฟเคธเคนเคฐเฅ‚ เคฅเคชเฅเคจเฅเคนเฅ‹เคธเฅเฅค" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "เคœเฅ‰เคฌ เค†เคˆเคกเฅ€: {0}" @@ -6816,8 +6766,8 @@ msgstr "เค•เฅเคฐเคพ เค—เคฐเฅเคจเฅ‡ เคชเฅเคฐเค•เฅเคฐเคฟเคฏเคพเคฎเคพ เคธเคพเคฎ msgid "Journalism" msgstr "เคชเคคเฅเคฐเค•เคพเคฐเคฟเคคเคพ" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0} เคฆเฅเคตเคพเคฐเคพ เคฒเฅ‡เคฌเคฒ เค—เคฐเคฟเคเค•เฅ‹เฅค" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "เคฒเฅ‡เค–เค•เคฆเฅเคตเคพเคฐเคพ เคฒเฅ‡เคฌเคฒ เค—เคฐเคฟเคเค•เฅ‹เฅค" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "เคฒเฅ‡เคฌเคฒเคนเคฐเฅ‚" @@ -6852,7 +6802,7 @@ msgstr "เคฒเฅ‡เคฌเคฒเคนเคฐเฅ‚ เคฅเคชเคฟเคฏเฅ‹" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "เคฒเฅ‡เคฌเคฒเคนเคฐเฅ‚ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เคฐ เคธเคพเคฎเค—เฅเคฐเฅ€เคฎเคพ เคŸเฅเคฏเคพเค—เคนเคฐเฅ‚ เคนเฅเคจเฅเฅค เคคเฅ€ เคจเฅ‡เคŸเคตเคฐเฅเค•เคฒเคพเคˆ เคฒเฅเค•เคพเค‰เคจ, เคšเฅ‡เคคเคพเคตเคจเฅ€ เคฆเคฟเคจ, เคฐ เคตเคฐเฅเค—เฅ€เค•เฅƒเคค เค—เคฐเฅเคจ เคชเฅเคฐเคฏเฅ‹เค— เค—เคฐเฅเคจ เคธเค•เคฟเคจเฅเค›เฅค" @@ -6864,7 +6814,7 @@ msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เค–เคพเคคเคพเคฎเคพ เคฒเฅ‡เคฌเคฒเคนเคฐเฅ‚" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "เคญเคพเคทเคพ เคธเฅ‡เคŸเคฟเค™" @@ -6874,7 +6824,7 @@ msgstr "เคญเคพเคทเคพ เคธเฅ‡เคŸเคฟเค™" msgid "Languages" msgstr "เคญเคพเคทเคพเคนเคฐเฅ‚" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "เค เฅ‚เคฒเฅ‹" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "เคชเค›เคฟเคฒเฅเคฒเฅ‹" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "เคฅเคช เคœเคพเคจเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "เค†เคซเฅเคจเฅ‹ PDS เค†เคซเฅˆเค‚ เคนเฅ‹เคธเฅเคŸ เค—เคฐเฅเคจเฅ‡ เคฌเคพเคฐเฅ‡ เคฅเคช เคœเคพเคจเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "เคฏเคธ เคšเฅ‡เคคเคพเคตเคจเฅ€เคฌเคพเคฐเฅ‡ เคฅเคช เคœเคพเคจเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "เคฅเคช เคœเคพเคจเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -6993,8 +6943,8 @@ msgstr "เค›เฅ‹เคกเฅเคจเฅเคนเฅ‹เคธเฅ" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "เคฌเฅเคฒเฅ‚เคธเฅเค•เคพเคˆ เค›เฅ‹เคกเฅเคฆเฅˆ" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "เคœเคพเคจ เคฌเคพเคเค•เฅ€เฅค" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "เคฎเคฒเคพเคˆ เค›เคพเคจเฅเคจ เคฆเคฟเคจเฅเคนเฅ‹เคธเฅ" @@ -7057,7 +7007,7 @@ msgstr "เคนเคฟเคเคกเฅŒเค‚!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "เคนเคฒเฅเค•เคพ" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "เคนเคฒเฅเค•เคพ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7026,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "เฅงเฅฆ เคชเฅ‹เคธเฅเคŸเคนเคฐเฅ‚ เคฎเคจ เคชเคฐเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" @@ -7085,7 +7035,7 @@ msgstr "เฅงเฅฆ เคชเฅ‹เคธเฅเคŸเคนเคฐเฅ‚ เคฎเคจ เคชเคฐเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" msgid "Like 10 posts to train the Discover feed" msgstr "เคกเคฟเคธเฅเค•เคญเคฐ เคซเฅ€เคกเคฒเคพเคˆ เคคเคพเคฒเคฟเคฎ เคฆเคฟเคจ เฅงเฅฆ เคชเฅ‹เคธเฅเคŸ เคฎเคจ เคชเคฐเคพเค‰เคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "เคฏเคธ เคซเฅ€เคกเคฒเคพเคˆ เคฎเคจ เคชเคฐเคพเค‰เคจเฅเคนเฅ‹เคธเฅเฅค" @@ -7093,8 +7043,8 @@ msgstr "เคฏเคธ เคซเฅ€เคกเคฒเคพเคˆ เคฎเคจ เคชเคฐเคพเค‰เคจเฅเคนเฅ‹เคธเฅเฅค" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "เคฎเคจ เคชเคฐเคพเค‰เคจเฅ‡เคนเคฐเฅ‚" @@ -7111,27 +7061,45 @@ msgstr "เคฎเคจ เคชเคฐเคพเค‰เคจเฅ‡เคนเคฐเฅ‚" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "เคฐเฅเคšเคฟเคนเคฐเฅ‚" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "เคฏเคธ เคชเฅ‹เคธเฅเคŸเคฎเคพ เคฐเฅเคšเคฟเคนเคฐเฅ‚" @@ -7144,7 +7112,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "เคธเฅ‚เคšเฅ€" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "เคธเฅ‚เคšเฅ€ เค…เคจเคฎเฅเคฏเฅ‚เคŸ เค—เคฐเคฟเคฏเฅ‹" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "เคฅเคช เคฒเฅ‹เคก เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "เคฅเคช เคธเฅเคเคพเค‡เคเค•เคพ เคซเฅ€เคกเคนเคฐเฅ‚ เคฒเฅ‹เคก เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -7292,8 +7260,8 @@ msgstr "เคฅเคช เคธเฅเคเคพเค‡เคเค•เคพ เคซเฅ€เคกเคนเคฐเฅ‚ เคฒเฅ‹เคก เค—เคฐเฅ msgid "Load new notifications" msgstr "เคจเคฏเคพเค เคธเฅ‚เคšเคจเคพเคนเคฐเฅ‚ เคฒเฅ‹เคก เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "เคฒเค—" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "เคฎเฅ‡เคฐเฅ‹ เคฒเคพเค—เคฟ เคเค‰เคŸเคพ เคฌเคจเคพเค‰เคจเฅเคนเฅ‹เคธเฅเฅค" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "เคชเคขเคฟเคเค•เฅ‹ เคฐเฅ‚เคชเคฎเคพ เคšเคฟเคจเฅเคน เคฒเค—เคพเค‰เคจเฅเคน msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "เคฎเคฟเคกเคฟเคฏเคพ" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "เค•เฅ‡เคนเฅ€ เคฆเคฐเฅเคถเค•เคนเคฐเฅ‚เค•เฅ‹ เคฒเคพเค—เคฟ เค…เคธเฅเคตเคฟเคงเคพเคœเคจเค• เคตเคพ เค…เคจเฅเคšเคฟเคค เคนเฅเคจ เคธเค•เฅเคจเฅ‡ เคฎเคฟเคกเคฟเคฏเคพเฅค" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "เค‰เคฒเฅเคฒเฅ‡เค– เค—เคฐเคฟเคเค•เคพ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "เคธเคจเฅเคฆเฅ‡เคถ เคฎเฅ‡เคŸเคพเค‡เคเค•เฅ‹เฅค" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "เคธเคจเฅเคฆเฅ‡เคถเคนเคฐเฅ‚" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "เคฎเฅ‹เคกเคฐเฅ‡เคถเคจ" @@ -7636,7 +7608,7 @@ msgstr "เคฎเฅ‹เคกเคฐเฅ‡เคถเคจ เคธเฅ‚เคšเฅ€ เค…เคชเคกเฅ‡เคŸ เค—เคฐเคฟเคฏเฅ‹เฅค" msgid "Moderation lists" msgstr "เคฎเฅ‹เคกเคฐเฅ‡เคถเคจ เคธเฅ‚เคšเฅ€เคนเคฐเฅ‚" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "เคฎเฅ‹เคกเคฐเฅ‡เคถเคจ เคธเฅ‚เคšเฅ€เคนเคฐเฅ‚" @@ -7645,7 +7617,7 @@ msgstr "เคฎเฅ‹เคกเคฐเฅ‡เคถเคจ เคธเฅ‚เคšเฅ€เคนเคฐเฅ‚" msgid "moderation settings" msgstr "เคฎเฅ‹เคกเคฐเฅ‡เคถเคจ เคธเฅ‡เคŸเคฟเค™เฅเคธ" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "เคฎเฅ‹เคกเคฐเฅ‡เคถเคจ เค…เคตเคธเฅเคฅเคพเคนเคฐเฅ‚" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "เคฎเฅเคฏเฅ‚เคŸ เค—เคฐเคฟเคเค•เคพ เค–เคพเคคเคพ" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "เคฎเฅเคฏเฅ‚เคŸ เค—เคฐเคฟเคเค•เคพ เค–เคพเคคเคพ" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "เค•เฅ‡เคนเฅ€ เค›เฅˆเคจ, เคฎเฅ‡เคฐเฅ‹ เคฒเคพเค—เคฟ เคเค• เคนเฅˆเค‚เคกเคฒ เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "เคจเคฏเคพเค" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "เคจเคฏเคพเค เค•เฅเคฐเคพเค•เคพเคจเฅ€" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "เคจเคฏเคพเค เคชเคพเคธเคตเคฐเฅเคก" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "เคจเคฏเคพเค เคชเฅ‹เคธเฅเคŸ" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "เคชเคนเคฟเคฒเฅ‡ เคธเคฌเฅˆเคญเคจเฅเคฆเคพ เคจเคฏเคพเค เค‰เคคเฅเคคเคฐเคนเคฐเฅ‚" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "เคธเคฎเคพเคšเคพเคฐ" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "เค…เคฐเฅเค•เฅ‹ เคšเคฟเคคเฅเคฐ" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "เค…เคนเคฟเคฒเฅ‡เคธเคฎเฅเคฎ เค•เฅเคจเฅˆ เคเคช เคชเคพเคธเคตเคฐเฅเคก เค›เฅˆเคจ" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "เค•เฅเคจเฅˆ เคซเฅ€เคกเคนเคฐเฅ‚ เคซเฅ‡เคฒเคพ เคชเคฐเฅ‡เคจเคจเฅเฅค เค•เฅ‡เคนเคฟ เค…เคฐเฅ‚ เค–เฅ‹เคœเฅเคจเฅ‡ เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "เค…เคนเคฟเคฒเฅ‡เคธเคฎเฅเคฎ เค•เฅเคจเฅˆ เคฐเฅเคšเคฟเคนเคฐเฅ‚ เค›เฅˆเคจ" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "{0} เคฒเคพเคˆ เค…เคฌ เค…เคจเฅเคธเคฐเคฃ เค—เคฐเคฟเคฐเคนเฅ‡เค•เฅ‹ เค›เฅˆเคจ" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "เค…เคนเคฟเคฒเฅ‡เคธเคฎเฅเคฎ เค•เฅเคจเฅˆ เคธเคจเฅเคฆเฅ‡เคถ เค›เฅˆเคจ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "เคฒเฅ‡เค–เค•เคฌเคพเคนเฅ‡เค• เค•เคธเฅˆเคฒเฅ‡ เคชเคจเคฟ เคฏเฅ‹ เคชเฅ‹เคธ msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "เค…เคนเคฟเคฒเฅ‡เคธเคฎเฅเคฎ เค•เฅเคจเฅˆ เค‰เคฆเฅเคงเคฐเคฃ เค›เฅˆเคจเฅค" @@ -8198,11 +8190,7 @@ msgstr "เค…เคนเคฟเคฒเฅ‡เคธเคฎเฅเคฎ เค•เฅเคจเฅˆ เค‰เคฆเฅเคงเคฐเคฃ เค›เฅˆเคจเฅค msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "เค•เฅเคจเฅˆ เคชเคฐเคฟเคฃเคพเคฎ เค›เฅˆเคจ" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "เค•เฅเคจเฅˆ เคชเคฐเคฟเคฃเคพเคฎ เค›เฅˆเคจ" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "เค•เฅเคจเฅˆ เคชเคฐเคฟเคฃเคพเคฎ เคญเฅ‡เคŸเคฟเคเคจ" msgid "No results found for \"{query}\"" msgstr "\"{query}\" เค•เฅ‹ เคฒเคพเค—เคฟ เค•เฅเคจเฅˆ เคชเคฐเคฟเคฃเคพเคฎ เคญเฅ‡เคŸเคฟเคเคจ" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "เคนเฅˆเคจ, เคงเคจเฅเคฏเคตเคพเคฆ" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "เค•เคธเฅˆเคฒเฅ‡ เคชเคจเคฟ เคนเฅ‹เค‡เคจ" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "เค…เคนเคฟเคฒเฅ‡เคธเคฎเฅเคฎ เค•เคธเฅˆเคฒเฅ‡ เคฏเฅ‹ เคฎเคจ เคชเคฐเคพเคเค•เคพ เค›เฅˆเคจเคจเฅเฅค เคธเคพเคฏเคฆ เคคเคชเคพเคˆ เคชเคนเคฟเคฒเฅ‹ เคนเฅเคจเฅ เคชเคฐเฅเค›!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "เค…เคนเคฟเคฒเฅ‡เคธเคฎเฅเคฎ เค•เคธเฅˆเคฒเฅ‡ เค‰เคฆเฅเคงเฅƒเคค เค—เคฐเฅ‡เค•เคพ เค›เฅˆเคจเคจเฅเฅค เคธเคพเคฏเคฆ เคคเคชเคพเคˆ เคชเคนเคฟเคฒเฅ‹ เคนเฅเคจเฅ เคชเคฐเฅเค›!" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "เค…-เคฏเฅŒเคจ เคจเค—เฅเคจเคคเคพ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "เคซเฅ‡เคฒเคพ เคชเคฐเฅ‡เคจ" @@ -8333,7 +8325,7 @@ msgstr "เคธเคพเคเฅ‡เคฆเคพเคฐเฅ€เค•เฅ‹ เคฌเคพเคฐเฅ‡เคฎเคพ เคจเฅ‹เคŸ" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "เคจเฅ‹เคŸ: Bluesky เคเค• เค–เฅเคฒเคพ เคฐ เคธเคพเคฐเฅเคตเคœเคจเคฟเค• เคจเฅ‡เคŸเคตเคฐเฅเค• เคนเฅ‹เฅค เคฏเฅ‹ เคธเฅ‡เคŸเคฟเค™เคฒเฅ‡ เคคเคชเคพเคˆเค‚เค•เฅ‹ เคธเคพเคฎเค—เฅเคฐเฅ€เค•เฅ‹ เคฆเฅƒเคถเฅเคฏเคคเคพ เค•เฅ‡เคตเคฒ Bluesky เคเคช เคฐ เคตเฅ‡เคฌเคธเคพเค‡เคŸเคฎเคพ เคธเฅ€เคฎเคฟเคค เค—เคฐเฅเคฆเค›, เคฐ เค…เคจเฅเคฏ เคเคชเคนเคฐเฅ‚เคฒเฅ‡ เคฏเฅ‹ เคธเฅ‡เคŸเคฟเค™เคฒเคพเคˆ เคธเคฎเฅเคฎเคพเคจ เคจเค—เคฐเฅเคจ เคธเค•เฅเค›เคจเฅเฅค เคคเคชเคพเคˆเค‚เค•เฅ‹ เคธเคพเคฎเค—เฅเคฐเฅ€ เค…เคจเฅเคฏ เคเคชเคนเคฐเฅ‚ เคฐ เคตเฅ‡เคฌเคธเคพเค‡เคŸเคนเคฐเฅ‚เคฒเฅ‡ เคฒเค— เค†เค‰เคŸ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเคนเคฐเฅ‚เคฒเคพเคˆ เคฆเฅ‡เค–เคพเค‰เคจ เคธเค•เฅเค›เฅค" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "เคธเฅ‚เคšเคจเคพ เคธเฅ‡เคŸเคฟเค™เฅเคธ" @@ -8353,11 +8345,12 @@ msgstr "เคธเฅ‚เคšเคจเคพ เคธเฅ‡เคŸเคฟเค™เฅเคธ" msgid "Notification sounds" msgstr "เคธเฅ‚เคšเคจเคพ เคงเฅเคตเคจเฅ€เคนเคฐเฅ‚" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "เค“เคนเฅ‹!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "เค เคฟเค• เค›" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "เคนเฅเคจเฅเค›" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "เค…เคจเคฌเฅ‹เคฐเฅเคกเคฟเค™ เคฐเคฟเคธเฅ‡เคŸ" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "เคเค• เคตเคพ เคฌเคขเฅ€ GIF เคนเคฐเฅ‚เคฎเคพ เคตเฅˆเค•เคฒเฅเคชเคฟเค• เคชเคพเค  เค›เฅˆเคจเฅค" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "เคเค• เคตเคพ เคฌเคขเฅ€ เคšเคฟเคคเฅเคฐเคนเคฐเฅ‚เคฎเคพ เคตเฅˆเค•เคฒเฅเคชเคฟเค• เคชเคพเค  เค›เฅˆเคจเฅค" @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "เคเค• เคตเคพ เคฌเคขเฅ€ เคญเคฟเคกเคฟเคฏเฅ‹เคนเคฐเฅ‚เคฎเคพ เคตเฅˆเค•เคฒเฅเคชเคฟเค• เคชเคพเค  เค›เฅˆเคจเฅค" @@ -8471,7 +8466,7 @@ msgstr "เค•เฅ‡เคตเคฒ {0} เค‰เคคเฅเคคเคฐ เคฆเคฟเคจ เคธเค•เฅเค›เฅค" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "เค•เฅ‡เคตเคฒ WebVTT (.vtt) เคซเคพเค‡เคฒเคนเคฐเฅ‚ เคธเคฎเคฐเฅเคฅเคฟเคค เค›เคจเฅ" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "เค“เคนเฅ‹!" @@ -8544,7 +8543,7 @@ msgstr "เค“เคนเฅ‹!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "เค…เคตเคคเคพเคฐ เคธเคฟเคฐเฅเคœเคจเคพเค•เคฐเฅเคคเคพ เค–เฅ‹เคฒเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -8570,21 +8569,22 @@ msgstr "เค•เฅเคฐเคพเค•เคพเคจเฅ€ เคตเคฟเค•เคฒเฅเคช เค–เฅ‹เคฒเฅเคจเฅเคนเฅ‹เคธ msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "เค‡เคฎเฅ‹เคœเฅ€ เคšเคฏเคจเค•เคฐเฅเคคเคพ เค–เฅ‹เคฒเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "เคซเคฟเคก เคตเคฟเค•เคฒเฅเคช เคฎเฅ‡เคจเฅ เค–เฅ‹เคฒเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -8627,7 +8627,7 @@ msgstr "เคฎเฅ‹เคกเคฐเฅ‡เคธเคจ เคกเคฟเคฌเค— เคชเฅƒเคทเฅเค  เค–เฅ‹เคฒเฅเคจเฅเคน msgid "Open muted words and tags settings" msgstr "เคฎเฅเคŸ เค—เคฐเคฟเคเค•เคพ เคถเคฌเฅเคฆเคนเคฐเฅ‚ เคฐ เคŸเฅเคฏเคพเค—เคนเคฐเฅ‚เค•เฅ‹ เคธเฅ‡เคŸเคฟเค™ เค–เฅ‹เคฒเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "เคกเคฟเคฌเค— เคชเฅเคฐเคตเคฟเคทเฅเคŸเคฟเค•เคพ เคฒเคพเค—เคฟ เคฅเคช เคต msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "เคกเคฟเคญเคพเค‡เคธเคฎเคพ เค•เฅเคฏเคพเคฎเฅ‡เคฐเคพ เค–เฅ‹เคฒเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "เคจเคฏเคพเค Bluesky เค–เคพเคคเคพ เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅเคจ เคชเฅเคฐเคตเคพเคน เค–เฅ‹เคฒเฅเคจเฅเคนเฅ‹เคธเฅ" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "เค†เคซเฅเคจเฅ‹ เคตเคฟเคฆเฅเคฏเคฎเคพเคจ Bluesky เค–เคพเคคเคพเคฎเคพ เคธเคพเค‡เคจ เค‡เคจ เค—เคฐเฅเคจ เคชเฅเคฐเคตเคพเคน เค–เฅ‹เคฒเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "เคชเคพเคธเคตเคฐเฅเคก เค…เคฆเฅเคฏเคพเคตเคงเคฟเค• เค—เคฐเคฟเคฏเฅ‹!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "เคฐเฅ‹เค•เฅเคจเฅเคนเฅ‹เคธเฅ" @@ -8925,12 +8925,12 @@ msgstr "เคฐเฅ‹เค•เฅเคจเฅเคนเฅ‹เคธเฅ" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เคฐเฅ‹เค•เฅเคจเฅเคนเฅ‹เคธเฅ" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "เคตเฅเคฏเค•เฅเคคเคฟ" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0} เคฆเฅเคตเคพเคฐเคพ เค…เคจเฅเคธเคฐเคฃ เค—เคฐเคฟเคเค•เคพ เคตเฅเคฏเค•เฅเคคเคฟ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "@{0} เคฒเคพเคˆ เค…เคจเฅเคธเคฐเคฃ เค—เคฐเฅเคจเฅ‡ เคตเฅเคฏเค•เฅเคคเคฟ" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "เคตเคฏเคธเฅเค•เค•เคพ เคฒเคพเค—เคฟ เคฌเคจเคพเค‡เคเค•เคพ เคคเคธเฅเคตเฅ€เคฐเคนเคฐเฅ‚เฅค" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "เคนเฅ‹เคฎเคฎเคพ เคชเคฟเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "เคนเฅ‹เคฎเคฎเคพ เคชเคฟเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "เคชเคฟเคจ เค—เคฐเคฟเคฏเฅ‹" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "เคคเคชเคพเคˆเค‚เค•เคพ เคซเคฟเคกเคนเคฐเฅ‚เคฎเคพ เคชเคฟเคจ เค—เคฐเคฟเคฏเฅ‹" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "เคšเคฒเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" @@ -9076,8 +9076,8 @@ msgstr "{0} เคšเคฒเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เคšเคฒเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "เค•เฅƒเคชเคฏเคพ เคคเคชเคพเคˆเค‚เค•เฅ‹ เคนเฅเคฏเคพเคจเฅเคกเคฒ เคšเคฏเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "เค•เฅƒเคชเคฏเคพ เคคเคชเคพเคˆเค‚เค•เฅ‹ เคชเคพเคธเคตเคฐเฅเคก เคšเคฏเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "เค•เฅƒเคชเคฏเคพ เคชเฅเคฐเคฎเคพเคฃเฅ€เค•เคฐเคฃ เค•เฅเคฏเคพเคชเฅเคšเคพ เคชเฅ‚เคฐเคพ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "เค•เฅƒเคชเคฏเคพ เคคเคชเคพเคˆเค‚เค•เฅ‹ เค‡เคฎเฅ‡เคฒ เคชเฅเคฐเคตเคฟเคทเฅเคŸ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "เคฐเคพเคœเคจเฅ€เคคเคฟ" @@ -9269,7 +9269,7 @@ msgstr "เคฐเคพเคœเคจเฅ€เคคเคฟ" msgid "Porn" msgstr "เคชเฅ‹เคฐเฅเคจ" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "เคชเฅ‹เคธเฅเคŸ" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "เคชเฅ‹เคธเฅเคŸ" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "เคธเคฌเฅˆ เคชเฅ‹เคธเฅเคŸ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} เคฆเฅเคตเคพเคฐเคพ เคชเฅ‹เคธเฅเคŸ" @@ -9340,7 +9340,7 @@ msgstr "เคคเคชเคพเคˆเค‚ เคฆเฅเคตเคพเคฐเคพ เคชเฅ‹เคธเฅเคŸ เคฒเฅเค•เคพเค‡เคเค• msgid "Post interaction settings" msgstr "เคชเฅ‹เคธเฅเคŸ เค…เคจเฅเคคเคฐเค•เฅเคฐเคฟเคฏเคพ เคธเฅ‡เคŸเคฟเค™เฅเคธ" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "เคชเฅ‹เคธเฅเคŸ เคชเคฟเคจ เค—เคฐเคฟเคฏเฅ‹" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "เคชเฅ‹เคธเฅเคŸ เค…เคจเคชเคฟเคจ เค—เคฐเคฟเคฏเฅ‹" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "เคชเฅ‹เคธเฅเคŸเคนเคฐเฅ‚" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "เคชเฅ‹เคธเฅเคŸเคนเคฐเฅ‚เคฒเคพเคˆ เคคเคฟเคจเฅ€เคนเคฐเฅ‚เค•เฅ‹ เคชเคพเค , เคŸเฅเคฏเคพเค—, เคตเคพ เคฆเฅเคตเฅˆเค•เฅ‹ เค†เคงเคพเคฐเคฎเคพ เคฎเฅเคฏเฅ‚เคŸ เค—เคฐเฅเคจ เคธเค•เคฟเคจเฅเค›เฅค เคงเฅ‡เคฐเฅˆ เคชเฅ‹เคธเฅเคŸเคฎเคพ เคฆเฅ‡เค–เคฟเคจเฅ‡ เคธเคพเคงเคพเคฐเคฃ เคถเคฌเฅเคฆเคนเคฐเฅ‚ เคชเฅเคฐเคฏเฅ‹เค— เค—เคฐเฅเคจ เคจเคชเคฐเฅเคจเฅ‡ เคธเฅเคเคพเคต เคฆเคฟเคจเฅเค›เฅŒเค‚, เค•เคฟเคจเค•เคฟ เคฏเคธเคฒเฅ‡ เค•เฅเคจเฅˆ เคชเฅ‹เคธเฅเคŸ เคชเคจเคฟ เคฆเฅ‡เค–เคพเค‰เคจ เคจเคธเค•เคฟเคจเฅ‡ เคธเฅเคฅเคฟเคคเคฟ เค‰เคคเฅเคชเคจเฅเคจ เค—เคฐเฅเคจ เคธเค•เฅเค›เฅค" @@ -9398,6 +9396,10 @@ msgstr "เคชเฅ‹เคธเฅเคŸเคนเคฐเฅ‚เคฒเคพเคˆ เคคเคฟเคจเฅ€เคนเคฐเฅ‚เค•เฅ‹ เคชเคพเค , msgid "Posts hidden" msgstr "เคชเฅ‹เคธเฅเคŸเคนเคฐเฅ‚ เคฒเฅเค•เคพเค‡เคฏเฅ‹เฅค" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "เค—เฅ‹เคชเคจเฅ€เคฏเคคเคพเฅค" msgid "Privacy and security" msgstr "เค—เฅ‹เคชเคจเฅ€เคฏเคคเคพ เคฐ เคธเฅเคฐเค•เฅเคทเคพ" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "เค—เฅ‹เคชเคจเฅ€เคฏเคคเคพ เคฐ เคธเฅเคฐเค•เฅเคทเคพ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "เค—เฅ‹เคชเคจเฅ€เคฏเคคเคพ เคจเฅ€เคคเคฟ" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เคชเฅเคฐเคถเฅ‹เคงเคจ เคนเฅเคเคฆเฅˆเค›เฅค" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "เค‰เคฆเฅเคงเคฐเคฃ เคชเฅ‹เคธเฅเคŸเคนเคฐเฅ‚ เค…เค•เฅเคทเคฎ เค—เคฐเคฟเค #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "เค‰เคฆเฅเคงเคฐเคฃเฅค" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "เคฏเคธ เคชเฅ‹เคธเฅเคŸเค•เคพ เค‰เคฆเฅเคงเคฐเคฃเฅค" @@ -9647,7 +9650,7 @@ msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เค–เคพเคคเคพ เคชเฅเคจ: เคธเค•เฅเคฐเคฟเคฏ เค—เคฐ msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "เคฌเฅเคฒเฅ‚เคธเฅเค•เคพเคˆ เค—เฅ‹เคชเคจเฅ€เคฏเคคเคพ เคจเฅ€เคคเคฟ เคชเคข msgid "Read the Bluesky Terms of Service" msgstr "เคฌเฅเคฒเฅ‚เคธเฅเค•เคพเคˆ เคธเฅ‡เคตเคพ เคธเคฐเฅเคคเคนเคฐเฅ‚ เคชเคขเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "เคชเฅเคจเคƒ เคœเคกเคพเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "เคตเคพเคฐเฅเคคเคพเคฒเคพเคช เคชเฅเคจเคƒ เคฒเฅ‹เคก เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -9766,7 +9765,7 @@ msgstr "เคตเคพเคฐเฅเคคเคพเคฒเคพเคช เคชเฅเคจเคƒ เคฒเฅ‹เคก เค—เคฐเฅเคจเฅเคนเฅ‹ #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "เคนเคŸเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "เค–เคพเคคเคพ เคนเคŸเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "เคฎเฅ‡เคฐเฅ‹ เคซเคฟเคกเคฌเคพเคŸ เคนเคŸเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "เค›เคฟเคŸเฅ‹ เคชเคนเฅเคเคšเคฌเคพเคŸ เคนเคŸเคพเค‰เคจเฅ‡?" @@ -9862,7 +9861,7 @@ msgstr "เค›เคฟเคŸเฅ‹ เคชเคนเฅเคเคšเคฌเคพเคŸ เคนเคŸเคพเค‰เคจเฅ‡?" msgid "Remove from saved feeds" msgstr "เคธเฅเคฐเค•เฅเคทเคฟเคค เคซเคฟเคกเคฌเคพเคŸ เคนเคŸเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "เคคเคธเฅเคฌเคฟเคฐ เคนเคŸเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "เคธเฅ‚เคšเฅ€เคฌเคพเคŸ เคนเคŸเคพเค‡เคฏเฅ‹" msgid "Removed from saved feeds" msgstr "เคธเฅเคฐเค•เฅเคทเคฟเคค เคซเคฟเคกเคนเคฐเฅ‚เคฌเคพเคŸ เคนเคŸเคพเค‡เคฏเฅ‹" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "เค‰เคคเฅเคคเคฐเคนเคฐเฅ‚" @@ -10037,7 +10037,7 @@ msgstr "เคฏเฅ‹ เคชเฅ‹เคธเฅเคŸเค•เคพ เค‰เคคเฅเคคเคฐเคนเคฐเฅ‚ เคจเคฟเคทเฅเค•เฅ msgid "Reply" msgstr "เค‰เคคเฅเคคเคฐ เคฆเคฟเคจเฅเคนเฅ‹เคธเฅ" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "เค‰เคคเฅเคคเคฐ เคฆเคฟเคจเฅเคนเฅ‹เคธเฅ" @@ -10098,8 +10098,8 @@ msgstr "เคตเคพเคฐเฅเคคเคพ เคฐเคฟเคชเฅ‹เคฐเฅเคŸ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" msgid "Report dialog" msgstr "เคฐเคฟเคชเฅ‹เคฐเฅเคŸ เคธเค‚เคตเคพเคฆ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "เคซเคฟเคก เคฐเคฟเคชเฅ‹เคฐเฅเคŸ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "เคคเคชเคพเคˆเคเคฆเฅเคตเคพเคฐเคพ เคชเฅเคจเคƒเคชเฅ‹เคธเฅเคŸ เค—เคฐเคฟเคฏเฅ‹" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "เคฏเคธ เคชเฅ‹เคธเฅเคŸเค•เคพ เคชเฅเคจเคƒเคชเฅ‹เคธเฅเคŸเคนเคฐเฅ‚" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "เค…เคจเฅเคคเคฟเคฎ เค•เคพเคฐเฅเคฏ เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐ #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "เค—เฅƒเคนเคชเฅƒเคทเฅเค เคฎเคพ เคซเคฐเฅเค•เคจเฅเคนเฅ‹เคธเฅ" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "เค…เค˜เคฟเคฒเฅเคฒเฅ‹ เคชเฅƒเคทเฅเค เคฎเคพ เคซเคฐเฅเค•เคจเฅเคนเฅ‹เคธเฅ" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "เคชเคฐเคฟเคตเคฐเฅเคคเคจเคนเคฐเฅ‚ เคธเฅเคฐเค•เฅเคทเคฟเคค เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR เค•เฅ‹เคก เคธเฅเคฐเค•เฅเคทเคฟเคค เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "เคฎเฅ‡เคฐเฅ‹ เคซเคฟเคกเคนเคฐเฅ‚เคฎเคพ เคธเฅเคฐเค•เฅเคทเคฟเคค เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "เคธเฅเคฐเค•เฅเคทเคฟเคค เคซเคฟเคกเคนเคฐเฅ‚" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เคซเคฟเคกเคนเคฐเฅ‚เคฎเคพ เคธเฅเคฐเค•เฅเคทเคฟเคค เค—เคฐเคฟเคฏเฅ‹" @@ -10520,8 +10520,8 @@ msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เคซเคฟเคกเคนเคฐเฅ‚เคฎเคพ เคธเฅเคฐเค•เฅเคทเคฟเคค msgid "Say hello!" msgstr "เคจเคฎเคธเฅเคคเฅ‡ เคญเคจเฅเคจเฅเคนเฅ‹เคธเฅ!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "เคตเคฟเคœเฅเคžเคพเคจ" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "เคฎเคพเคฅเคฟ เคธเฅเค•เฅเคฐเฅ‹เคฒ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "เค–เฅ‹เคœเฅเคจเฅเคนเฅ‹เคธเฅ" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "เค…เคฐเฅ‚เคฒเคพเคˆ เคธเคฟเคซเคพเคฐเคฟเคธ เค—เคฐเฅเคจ เคšเคพเคนเคฟเคจเฅ‡ เคซเคฟเคกเคนเคฐเฅ‚เค•เฅ‹ เคฒเคพเค—เคฟ เค–เฅ‹เคœเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIF เคนเคฐเฅ‚เค•เฅ‹ เคฒเคพเค—เคฟ เค–เฅ‹เคœเฅเคจเฅเคนเฅ‹เคธเฅเฅค" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Bluesky เคฎเคพ เคœเคพเค—เคฟเคฐเคนเคฐเฅ‚ เคนเฅ‡เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "เคธเฅเคฒเคพเค‡เคกเคฐ เค–เฅ‹เคœเฅเคจเฅเคนเฅ‹เคธเฅเฅค เค…เค—เคพเคกเคฟ เคฐ เคชเค›เคพเคกเคฟ เคœเคพเคจ เคคเฅ€เคฐ เค•เฅเคžเฅเคœเฅ€เคนเคฐเฅ‚ เคชเฅเคฐเคฏเฅ‹เค— เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ, เคฐ เคชเฅเคฒเฅ‡/เคชเคœ เค—เคฐเฅเคจ เคธเฅเคชเฅ‡เคธเคฌเคพเคฐ เคชเฅเคฐเคฏเฅ‹เค— เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "เคฐเค‚เค— เคšเคฏเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -10764,11 +10769,11 @@ msgstr "เค–เคพเคคเคพ เคšเคฏเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "เคเคญเคพเคŸเคพเคฐ เคšเคฏเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "เค‡เคฎเฅ‹เคœเฅ€ เคšเคฏเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "GIF เคšเคฏเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" msgid "Select GIF \"{0}\"" msgstr "GIF \"{0}\" เคšเคฏเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "{emojiName} เค‡เคฎเฅ‹เคœเฅ€เคฒเคพเคˆ เค†เคซเฅเคจเฅ‹ เค…เคตเคคเคพเคฐเค•เฅ‹ เคฐเฅ‚เคชเคฎเคพ เคšเคฏเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -10945,7 +10951,8 @@ msgstr "เคธเคจเฅเคฆเฅ‡เคถ เคชเค เคพเค‰เคจเฅเคนเฅ‹เคธเฅ" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "เคชเฅ‹เคทเฅเคŸ เคชเค เคพเค‰เคจเฅเคนเฅ‹เคธเฅ..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "เคธเคคเฅเคฏเคพเคชเคจ เค‡เคฎเฅ‡เคฒ เคชเค เคพเค‰เคจเฅเคนเฅ‹เคธเฅ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "เคชเฅเคฐเคคเฅเคฏเค•เฅเคท เคธเคจเฅเคฆเฅ‡เคถ เคฎเคพเคฐเฅเคซเคค เคชเค เคพเค‰เคจเฅเคนเฅ‹เคธเฅ" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "เคชเคพเคธเคตเคฐเฅเคก เคฐเฅ€เคธเฅ‡เคŸเค•เฅ‹ เคฒเคพเค—เคฟ เค‡เคฎเฅ‡เคฒ เคธเฅ‡เคŸ เค—เคฐเฅเคฆเค›" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "เคธเฅ‡เคŸเคฟเค™เฅเคธ" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "เคคเคฅเคพเคชเคฟ เคธเคพเคเคพ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "เคฒเคฟเค™เฅเค• เคธเคพเคเคพ เคธเค‚เคตเคพเคฆ" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "QR เค•เฅ‹เคก เคธเคพเคเคพ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "เคฏเคธ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค•เคฒเคพเคˆ เคธเคพเคเคพ msgid "Share this starter pack and help people join your community on Bluesky." msgstr "เคฏเคธ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค•เคฒเคพเคˆ เคธเคพเคเคพ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ เคฐ เคคเคชเคพเคˆเค‚เค•เฅ‹ เคธเคฎเฅเคฆเคพเคฏเคฎเคพ เคฎเคพเคจเคฟเคธเคนเคฐเฅ‚เคฒเคพเคˆ เคฌเฅเคฒเฅ‚เคธเฅเค•เคพเคˆเคฎเคพ เคธเคพเคฎเฅ‡เคฒ เคนเฅเคจ เคฎเคฆเฅเคฆเคค เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "เคธเคพเคเคพ เค—เคฐเคฟเคเค•เฅ‹ เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพ เคชเคฐเฅ€เค•เฅเคทเค•" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "เคฆเฅ‡เค–เคพเค‰เคจเฅเคนเฅ‹เคธเฅ" msgid "Show alt text" msgstr "เคตเคฟเค•เคฒเฅเคชเคพเคคเฅเคฎเค• เคชเคพเค  เคฆเฅ‡เค–เคพเค‰เคจเฅเคนเฅ‹เคธเฅ" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "เคคเคฅเคพเคชเคฟ เคฆเฅ‡เค–เคพเค‰เคจเฅเคนเฅ‹เคธเฅ" @@ -11274,9 +11281,9 @@ msgstr "เคธเฅ‚เคšเฅ€เคฒเคพเคˆ เคฏเคฅเคพเคธเฅเคฅเคฟเคคเคฟ เคฆเฅ‡เค–เคพเค‰เคจเฅ msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "เคฅเคช เคฆเฅ‡เค–เคพเค‰เคจเฅเคนเฅ‹เคธเฅ" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "เคšเฅ‡เคคเคพเคตเคจเฅ€ เคฆเฅ‡เค–เคพเค‰เคจเฅเคนเฅ‹เคธเฅ เคฐ เคซเฅ€เคกเคฌ msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "เคธเคพเค‡เคจ เค†เค‰เคŸ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "เคธเคพเค‡เคจ เค‡เคจ เค†เคตเคถเฅเคฏเค• เค›" @@ -11469,7 +11476,7 @@ msgstr "เค›เฅ‹เคกเฅเคจเฅเคนเฅ‹เคธเฅ" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "เคธเคพเคจเฅ‹" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "เคคเคชเคพเคˆเค‚เคฒเคพเคˆ เคฎเคจ เคชเคฐเฅเคจเฅ‡ เค…เคจเฅเคฏ เคซเฅ€เคกเคนเคฐเฅ‚" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "เค•เฅ‡เคนเคฟ เค—เคฒเคค เคญเคฏเฅ‹, เค•เฅƒเคชเคฏเคพ เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "เค–เฅ‡เคฒเค•เฅเคฆ" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "เคจเคฏเคพเค เคšเฅเคฏเคพเคŸ เคธเฅเคฐเฅ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "{displayName} เคธเคเค— เคšเฅเคฏเคพเคŸ เคธเฅเคฐเฅ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค•" @@ -11715,12 +11722,16 @@ msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เคฆเฅเคตเคพเคฐเคพ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅ msgid "Starter pack is invalid" msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค• เค…เคตเฅˆเคง เค›" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค•เคนเคฐเฅ‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค•เคนเคฐเฅ‚เคฒเฅ‡ เคคเคชเคพเคˆเค‚เคฒเคพเคˆ เคคเคชเคพเคˆเค‚เค•เคพ เคฎเคจเคชเคฐเฅเคจเฅ‡ เคซเฅ€เคกเคนเคฐเฅ‚ เคฐ เคฎเคพเคจเคฟเคธเคนเคฐเฅ‚ เคธเคœเคฟเคฒเฅˆเคธเคเค— เคคเคชเคพเคˆเค‚เค•เคพ เคธเคพเคฅเฅ€เคนเคฐเฅ‚เคธเคเค— เคธเคพเคเคพ เค—เคฐเฅเคจ เคฆเคฟเคจเฅเค›เฅค" @@ -11728,7 +11739,7 @@ msgstr "เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค•เคนเคฐเฅ‚เคฒเฅ‡ เคคเคชเคพเคˆเค‚ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "เคธเฅเคฅเคฟเคคเคฟ เคชเฅƒเคทเฅเค " #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "เคšเคฐเคฃ {0} เค•เฅ‹ {1}" @@ -11754,7 +11765,7 @@ msgstr "เคญเคฃเฅเคกเคพเคฐเคฃ เคฎเฅ‡เคŸเคฟเคเค•เฅ‹ เค›, เค…เคฌ เคคเคชเคพเคˆเค‚ msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "เคธเฅเคŸเฅ‹เคฐเฅ€เคฌเฅเค•" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "เคฏเฅ€ เคฒเฅ‡เคฌเคฒเคนเคฐเฅ‚ เคชเฅเคฐเคฏเฅ‹เค— เค—เคฐเฅเคจ @{0} เคฒเคพเคˆ เคธเคฆเคธเฅเคฏเคคเคพ เคฒเคฟเคจเฅเคนเฅ‹เคธเฅ:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "เคคเคชเคพเคˆเค‚เค•เคพ เคฒเคพเค—เคฟ เคธเฅเคเคพเคต เค—เคฐเคฟเคเค•เฅ‹" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "เคธเคฟเคธเฅเคŸเคฎ" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "เคนเคŸเคพเค‰เคจเค•เคพ เคฒเคพเค—เคฟ เคŸเฅเคฏเคพเคช เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "เค•เคพเคฐเฅเคฏ เคชเฅ‚เคฐเคพ เคญเคฏเฅ‹ - เฅงเฅฆ เคฒเคพเค‡เค•เฅเคธ!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "เคนเคพเคฎเฅเคฐเฅ‹ เคเคฒเฅเค—เฅ‹เคฐเคฟเคฆเคฎเคฒเคพเคˆ เคคเคชเคพเคˆเค‚ เค•เฅ‡ เคฎเคจเคชเคฐเฅเค› เคญเคจเฅ‡เคฐ เคธเคฟเค•เคพเค‰เคจเฅเคนเฅ‹เคธเฅ" @@ -12060,7 +12073,7 @@ msgstr "เคจเคฟเคฏเคฎเคนเคฐเฅ‚" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "เคคเฅเคฏเฅ‹ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค• เคซเฅ‡เคฒเคพ เคช msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "เคคเฅเคฏเคคเคฟ เคนเฅ‹, เคธเคพเคฅเฅ€เคนเคฐเฅ‚!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "เคธเคฐเฅเคญเคฐ เคธเคฎเคธเฅเคฏเคพเคฎเคพ เคฆเฅ‡เค–เคฟเคจเฅ เคญเคเค•เฅ‹ msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "เคคเคชเคพเคˆเค‚ เคœเคธเคฒเคพเคˆ เคนเฅ‡เคฐเฅเคจ เคšเคพเคนเคจเฅเคนเฅเคจเฅเค› เคคเฅเคฏเฅ‹ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค• เค…เคฎเคพเคจเฅเคฏ เค›เฅค เคคเคชเคพเคˆเค‚ เคฏเคธ เคธเฅเคŸเคพเคฐเฅเคŸเคฐ เคชเฅเคฏเคพเค•เคฒเคพเคˆ เคฎเฅ‡เคŸเฅเคจ เคธเค•เฅเคจเฅเคนเฅเคจเฅเค›เฅค" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "เคคเคชเคพเคˆเค‚เคฒเฅ‡ เคฆเคฟเคเค•เฅ‹ เคชเฅเคฐเคฎเคพเคฃเคฟเค•เคฐเคฃ เค• msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "เคฅเคฟเคฎ" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "เคธเคฐเฅเคญเคฐเคฒเคพเคˆ เคธเคฎเฅเคชเคฐเฅเค• เค—เคฐเฅเคจ เคธเคฎเคธเฅเคฏเคพ เค†เคฏเฅ‹เฅค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "เคธเคฐเฅเคญเคฐเคฒเคพเคˆ เคธเคฎเฅเคชเคฐเฅเค• เค—เคฐเฅเคจ เคธเคฎเคธเฅเคฏเคพ เค†เคฏเฅ‹, เค•เฅƒเคชเคฏเคพ เค†เคซเฅเคจเฅ‹ เค‡เคจเฅเคŸเคฐเคจเฅ‡เคŸ เคœเคกเคพเคจ เคœเคพเคเคš เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ เคฐ เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -12283,8 +12296,8 @@ msgstr "เคธเคฐเฅเคญเคฐเคฒเคพเคˆ เคธเคฎเฅเคชเคฐเฅเค• เค—เคฐเฅเคจ เคธเคฎเคธเฅ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "เคธเฅ‚เคšเคจเคพเคนเคฐเฅ‚ เคชเฅเคฐเคพเคชเฅเคค เค—เคฐเฅเคจ เคธเคฎเคธเฅเคฏเคพ เค†เคฏเฅ‹เฅค เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจ เคฏเคนเคพเค เคŸเฅเคฏเคพเคช เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "เคชเฅ‹เคธเฅเคŸเคนเคฐเฅ‚ เคชเฅเคฐเคพเคชเฅเคค เค—เคฐเฅเคจ เคธเคฎเคธเฅเคฏเคพ เค†เคฏเฅ‹เฅค เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจ เคฏเคนเคพเค เคŸเฅเคฏเคพเคช เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" @@ -12309,7 +12322,7 @@ msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เคธเฅ‡เคตเคพ เคœเคพเคจเค•เคพเคฐเฅ€ เคชเฅเคฐเคพเคช msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "เคฏเฅ‹ เคซเฅ€เคก เคฎเฅ‡เคŸเคพเค‰เคจ เคธเคฎเคธเฅเคฏเคพ เค†เคฏเฅ‹เฅค เค•เฅƒเคชเคฏเคพ เค†เคซเฅเคจเฅ‹ เค‡เคจเฅเคŸเคฐเคจเฅ‡เคŸ เคœเคกเคพเคจ เคœเคพเคเคš เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ เคฐ เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "เคฏเฅ€ เคธเฅ‡เคŸเคฟเค™เฅเคธ เค•เฅ‡เคตเคฒ เคซเคฒเฅ‹เค‡เค™ เคซเฅ€เคกเคฎ msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "เคฏเคธ {screenDescription} เคฒเคพเคˆ เคšเคฟเคนเฅเคจเคฟเคค เค—เคฐเคฟเคเค•เฅ‹ เค›:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "เคฏเคธ เค–เคพเคคเคพเคฒเฅ‡ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเคนเคฐเฅ‚เคฒเคพเคˆ เค†เคซเฅเคจเฅ‹ เคชเฅเคฐเฅ‹เคซเคพเค‡เคฒ เคนเฅ‡เคฐเฅเคจ เคธเคพเค‡เคจ เค‡เคจ เค—เคฐเฅเคจ เค…เคจเฅเคฐเฅ‹เคง เค—เคฐเฅ‡เค•เฅ‹ เค›เฅค" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "เคฏเฅ‹ เคซเคฟเคก เค–เคพเคฒเฅ€ เค›! เคคเคชเคพเคˆเค‚เคฒเคพเคˆ เค…เค เคงเฅ‡เคฐเฅˆ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเคนเคฐเฅ‚เคฒเคพเคˆ เค…เคจเฅเคธเคฐเคฃ เค—เคฐเฅเคจ เค†เคตเคถเฅเคฏเค• เคชเคฐเฅเคจ เคธเค•เฅเค› เคฏเคพ เค†เคซเฅเคจเฅ‹ เคญเคพเคทเคพ เคธเฅ‡เคŸเคฟเค™เคฒเคพเคˆ เค…เคจเฅเค•เฅ‚เคฒเคจ เค—เคฐเฅเคจเฅเคชเคฐเฅเค›เฅค" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "เคฏเฅ‹ เคซเคฟเคก เค–เคพเคฒเฅ€ เค›เฅค" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "เคฏเฅ‹ เคนเฅเคฏเคพเคจเฅเคกเคฒ เค†เคฐเค•เฅเคทเคฟเคค เค›เฅค เค•เฅƒเคชเคฏเคพ เค…เคฐเฅเค•เฅ‹ เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "เคฏเฅ‹ เคฒเฅ‡เคฌเคฒ เคคเคชเคพเคˆเค‚ เคฆเฅเคตเคพเคฐเคพ เคฒเคพเค—เฅ‚ เค— msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "เคฏเคธ เคฒเฅ‡เคฌเคฒเคฐเคฒเฅ‡ เค•เฅเคจ เคฒเฅ‡เคฌเคฒเคนเคฐเฅ‚ เคชเฅเคฐเค•เคพเคถเคฟเคค เค—เคฐเฅเค› เคญเคจเฅเคจเฅ‡ เค˜เฅ‹เคทเคฃเคพ เค—เคฐเฅ‡เค•เฅ‹ เค›เฅˆเคจ, เคฐ เคฏเฅ‹ เคธเค•เฅเคฐเคฟเคฏ เคจเคนเฅเคจ เคธเค•เฅเค›เฅค" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "เคฏเฅ‹ เคชเฅ‹เคธเฅเคŸ <0>{0} เคฎเคพ เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเคฟเคเค•เฅ‹ เคฆเคพเคตเฅ€ เค—เคฐเฅเคฆเค›, เคคเคฐ เคชเคนเคฟเคฒเฅ‹ เคชเคŸเค• Bluesky เคฆเฅเคตเคพเคฐเคพ <1>{1} เคฎเคพ เคฆเฅ‡เค–เคฟเคเค•เฅ‹ เคฅเคฟเคฏเฅ‹เฅค" @@ -12649,7 +12662,7 @@ msgstr "เคฏเฅ‹ เคชเฅ‹เคธเฅเคŸ <0>{0} เคฎเคพ เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเคฟ msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "เคฏเฅ‹ เคชเฅ‹เคธเฅเคŸ เคซเคฟเคก เคฐ เคฅเฅเคฐเฅ‡เคกเคนเคฐเฅ‚เคฌเคพเคŸ เคฒเฅเค•เฅ‡เค•เฅ‹ เคนเฅเคจเฅ‡เค›เฅค เคฏเคธเคฒเคพเคˆ เค‰เคฒเฅเคŸเคพเค‰เคจ เคธเค•เคฟเคเคฆเฅˆเคจเฅค" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "เคฏเคธ เคชเฅ‹เคธเฅเคŸเค•เฅ‹ เคฒเฅ‡เค–เค•เคฒเฅ‡ เค‰เคฆเฅเคงเคฐเคฃ เคชเฅ‹เคธเฅเคŸเคนเคฐเฅ‚ เคจเคฟเคทเฅเค•เฅเคฐเคฟเคฏ เค—เคฐเฅ‡เค•เฅ‹ เค›เฅค" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "เคฏเคธ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเคธเคเค— เค•เฅเคจเฅˆ เคซเคฒเฅ‹เค…เคฐ เค›เฅˆเคจเฅค" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "เคฏเคธ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเคฒเฅ‡ เคคเคชเคพเคˆเค‚เคฒเคพเคˆ เคฌเฅเคฒเค• เค—เคฐเฅ‡เค•เฅ‹ เค›เฅค เคคเคชเคพเคˆเค‚ เคคเคฟเคจเฅ€เคนเคฐเฅ‚เค•เฅ‹ เคธเคพเคฎเค—เฅเคฐเฅ€ เคนเฅ‡เคฐเฅเคจ เคธเค•เฅเคฆเฅˆเคจเฅค" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "เคฏเฅ‹ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ <0>{0} เคธเฅ‚เคšเฅ€เคฎเคพ msgid "This user is new here. Press for more info about when they joined." msgstr "เคฏเฅ‹ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เคฏเคนเคพเค เคจเคฏเคพเค เคนเฅ‹เฅค เค‰เคจเฅ€ เค•เคนเคฟเคฒเฅ‡ เคœเคกเคพเคจ เค—เคฐเฅเคจเฅเคญเคเค•เฅ‹ เคนเฅ‹ เคญเคจเฅเคจเฅ‡ เคฅเคช เคœเคพเคจเค•เคพเคฐเฅ€เค•เฅ‹ เคฒเคพเค—เคฟ เคฅเคฟเคšเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "เคฏเฅ‹ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพ เค•เคธเฅˆเคฒเคพเคˆ เคชเคจเคฟ เคซเคฒเฅ‹ เค—เคฐเฅเคฆเฅˆ เค›เฅˆเคจเฅค" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "เคฏเคธเคฒเฅ‡ @{0}เคฒเคพเคˆ เค•เฅเคตเคฟเค• เคเค•เฅเคธเฅ‡เคธ เคธเฅ‚เคšเฅ€เคฌเคพเคŸ เคนเคŸเคพเค‰เคจเฅ‡เค›เฅค" @@ -12786,7 +12801,7 @@ msgstr "เคฅเฅเคฐเฅ‡เคก เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพเคนเคฐเฅ‚" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "เคฅเฅเคฐเฅ‡เคก เคชเฅเคฐเคพเคฅเคฎเคฟเค•เคคเคพเคนเคฐเฅ‚" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "เคถเฅ€เคฐเฅเคท" @@ -12858,7 +12873,7 @@ msgstr "เคถเฅ€เคฐเฅเคท" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "เค–เคพเคคเคพ เคฌเฅเคฒเค• เคนเคŸเคพเค‰เคจ เคšเคพเคนเคพเคจเฅเคนเฅเคจเฅ msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "{0} เคฒเคพเคˆ เค…เคจเคซเฅ‹เคฒเฅ‹ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" msgid "Unfollow account" msgstr "เค–เคพเคคเคพ เค…เคจเคซเฅ‹เคฒเฅ‹ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "เคฅเฅเคฐเฅ‡เคก เคฎเฅเคฏเฅ‚เคŸ เคนเคŸเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เคฎเฅเคฏเฅ‚เคŸ เคนเคŸเคพเค‰เคจเฅเคนเฅ‹เคธเฅ" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "เค…เคจเคชเคฟเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "เคนเฅ‹เคฎเคฌเคพเคŸ เค…เคจเคชเคฟเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "เคฎเฅ‹เคกเคฐเฅ‡เคถเคจ เคธเฅ‚เคšเฅ€ เค…เคจเคชเคฟเคจ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "เคฏเคธ เคฒเฅ‡เคฌเคฒเคฐเคฌเคพเคŸ เคธเคฆเคธเฅเคฏเคคเคพ เคธเคฎเคพเคชเฅเคค msgid "Unsubscribed from list" msgstr "เคธเฅ‚เคšเฅ€เคฌเคพเคŸ เคธเคฆเคธเฅเคฏเคคเคพ เคธเคฎเคพเคชเฅเคค เค—เคฐเคฟเคเค•เฅ‹" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "เค‰เคคเฅเคคเคฐ เคฆเฅƒเคถเฅเคฏเคคเคพ เค…เคชเคกเฅ‡เคŸ เค—เคฐเฅเคจ เค…เคธเคซเคฒ" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "เคซเฅ‹เคŸเฅ‹ เค…เคชเคฒเฅ‹เคก เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -13355,7 +13376,7 @@ msgstr "เคซเคพเค‡เคฒ เคฌเคพเคŸ เค…เคชเคฒเฅ‹เคก เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" msgid "Upload from Library" msgstr "เคฒเคพเค‡เคฌเฅเคฐเฅ‡เคฐเฅ€ เคฌเคพเคŸ เค…เคชเคฒเฅ‹เคก เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "เคคเคธเฅเคตเคฟเคฐเคนเคฐเฅ‚ เค…เคชเคฒเฅ‹เคก เค—เคฐเฅเคฆเฅˆ..." msgid "Uploading link thumbnail..." msgstr "เคฒเคฟเค‚เค• เคฅเคฎเฅเคฌเคจเฅ‡เคฒ เค…เคชเคฒเฅ‹เคก เค—เคฐเฅเคฆเฅˆ..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคก เค—เคฐเฅเคฆเฅˆ..." @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "เคญเคฟเคกเคฟเคฏเฅ‹" msgid "Video failed to process" msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เคชเฅเคฐเฅ‹เคธเฅ‡เคธ เค—เคฐเฅเคจ เค…เคธเคซเคฒ" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เค–เฅ‡เคฒ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เคซเฅ‡เคฒเคพ เคชเคพเคฐเคฟเคเคจเฅค" @@ -13653,7 +13674,7 @@ msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เคซเฅ‡เคฒเคพ เคชเคพเคฐเคฟเคเคจเฅค" msgid "Video settings" msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เคธเฅ‡เคŸเคฟเค™เฅเค—เคนเคฐเฅ‚" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคก เค—เคฐเคฟเคฏเฅ‹" @@ -13662,17 +13683,17 @@ msgstr "เคญเคฟเคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคก เค—เคฐเคฟเคฏเฅ‹" msgid "Video: {0}" msgstr "เคญเคฟเคกเคฟเคฏเฅ‹: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "{0} เค•เฅ‹ เค…เคตเคคเคพเคฐ เคนเฅ‡เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "{0} เค•เฅ‹ เคชเฅเคฐเฅ‹เคซเคพเค‡เคฒ เคนเฅ‡เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -13724,13 +13745,13 @@ msgstr "เค…เคงเคฟเค• เคœเคพเคจเค•เคพเคฐเฅ€เค•เฅ‹ เคฒเคพเค—เคฟ เคฌเฅเคฒเค—เคชเฅ‹ msgid "View debug entry" msgstr "เคกเคฟเคฌเค— เคชเฅเคฐเคตเคฟเคทเฅเคŸเคฟ เคนเฅ‡เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "เคตเคฟเคตเคฐเคฃ เคนเฅ‡เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "เคชเฅ‚เคฐเคพ เคฅเฅเคฐเฅ‡เคก เคนเฅ‡เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "เคฏเฅ€ เคฒเฅ‡เคฌเคฒเคนเคฐเฅ‚เค•เฅ‹ เคœเคพเคจเค•เคพเคฐเฅ€ เคนเฅ‡เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "@{0} เคฆเฅเคตเคพเคฐเคพ เคชเฅเคฐเคฆเคพเคจ เค—เคฐเคฟเคเค•เฅ‹ เคฒเฅ‡เคฌเคฒเคฟเค™ เคธเฅ‡เคตเคพ เคนเฅ‡เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "เคฏเฅ‹ เคซเคฟเคก เคฎเคจ เคชเคฐเคพเค‰เคจเฅ‡ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเคนเคฐเฅ‚ เคนเฅ‡เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "เคคเคชเคพเคˆเค‚เค•เคพ เคฎเฅ‹เคกเคฐเฅ‡เคถเคจ เคธเฅ‚เคšเฅ€เคนเคฐเฅ‚ เคนเฅ‡ msgid "View your muted accounts" msgstr "เคคเคชเคพเคˆเค‚เค•เคพ เคฎเฅเคฏเฅเคŸ เค—เคฐเคฟเคเค•เฅ‹ เค–เคพเคคเคพ เคนเฅ‡เคฐเฅเคจเฅเคนเฅ‹เคธเฅ" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "เคนเคพเคฎเฅ€ เคจเฅ‡เคŸเคตเคฐเฅเค• เคธเคฎเคธเฅเคฏเคพ เคญเฅ‹เค—เคฟเคฐเคนเฅ‡เค•เคพ เค›เฅŒเค‚, เค•เฅƒเคชเคฏเคพ เคชเฅเคจเคƒ เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "เคนเคพเคฎเฅ€เคฒเคพเคˆ เค–เฅ‡เคฆ เค›, เคคเคฐ เคนเคพเคฎเฅ€ เคฏเฅ‹ เคธเฅ‚ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "เคนเคพเคฎเฅ€เคฒเคพเคˆ เค–เฅ‡เคฆ เค›, เคคเคฐ เคนเคพเคฎเฅ€ เคคเคชเคพเคˆเค‚เค•เคพ เคฎเฅเคฏเฅ‚เคŸ เค—เคฐเคฟเคเค•เคพ เคถเคฌเฅเคฆเคนเคฐเฅ‚ เคฒเฅ‹เคก เค—เคฐเฅเคจ เค…เคธเคฎเคฐเฅเคฅ เคญเคฏเฅŒเค‚เฅค เค•เฅƒเคชเคฏเคพ เคชเฅเคจ: เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "เคนเคพเคฎเฅ€เคฒเคพเคˆ เค–เฅ‡เคฆ เค›! เคคเคชเคพเคˆเค‚เคฒเฅ‡ เคœเคตเคพเคซ เคฆเคฟเค‡เคฐเคนเฅ‡เค•เฅ‹ เคชเฅ‹เคธเฅเคŸ เคฎเฅ‡เคŸเคพเค‡ เคธเค•เฅ‡เค•เฅ‹ เค›เฅค" @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "เค•เฅ‡ เคญเค‡เคฐเคนเฅ‡เค•เฅ‹ เค›?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "เคตเฅ‹เคชเฅเคธ!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "เคชเฅ‹เคธเฅเคŸ เคฒเฅ‡เค–เฅเคจเฅเคนเฅ‹เคธเฅ" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เคœเคตเคพเคซ เคฒเฅ‡เค–เฅเคจเฅเคนเฅ‹เคธเฅ" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "เคคเคชเคพเคˆเค‚เคฒเคพเคˆ เคญเคฟเคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคก เค—เคฐเฅเคจ เค…เคจเฅเคฎเคคเคฟ เค›เฅˆเคจเฅค" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "เคคเคชเคพเคˆเค‚ เค…เคฌ เคจเคฏเคพเค เคชเคพเคธเคตเคฐเฅเคกเคธเคเค— เคธเคพเค‡เคจ เค‡เคจ เค—เคฐเฅเคจ เคธเค•เฅเคจเฅเคนเฅเคจเฅเค›เฅค" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "เคคเคชเคพเคˆเค‚เคฒเฅ‡ เคญเคฟเคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคกเค•เฅ‹ เคฒเคพเค—เคฟ เค…เคธเฅเคฅเคพเคฏเฅ€ เคฐเฅ‚เคชเคฎเคพ เคธเฅ€เคฎเคพ เคชเคพเคฐ เค—เคฐเฅเคจเฅเคญเคฏเฅ‹เฅค เค•เฅƒเคชเคฏเคพ เคชเค›เคฟ เคชเฅเคจเคƒ เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "เคคเคชเคพเคˆเค‚เคฒเฅ‡ เค…เคเฅˆ starter pack เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅเคจเฅเคญเคเค•เฅ‹ เค›เฅˆเคจ!" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "เคคเคชเคพเคˆเค‚ เค•เฅ‡เคตเคฒ เฅฉ เคซเฅ€เคกเคนเคฐเฅ‚ เคฎเคพเคคเฅเคฐ เคฅเคชเฅเคจ เคธเค•เฅเคจเฅเคนเฅเคจเฅเค›เฅค" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "เคคเคชเคพเคˆเค‚เคฒเคพเคˆ เค•เคฎเฅเคคเคฟเคฎเคพ เคธเคพเคค เค…เคจเฅเคฏ เคตเฅเคฏเค•เฅเคคเคฟเคนเคฐเฅ‚เคฒเคพเคˆ เคซเคฒเฅ‹ เค—เคฐเฅเคจเฅเคชเคฐเฅเค› เคคเคพเค•เคฟ starter pack เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅเคจ เคธเค•เคฟเคจเฅเค›เฅค" @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "เคคเคชเคพเคˆเค‚เคฒเฅ‡ เค†เคซเฅเคจเฅ‹ เค–เคพเคคเคพ เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅ‡เคชเค›เคฟ เคธเคฒเฅเคฒเคพเคน เคฆเคฟเค‡เคเค•เคพ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเคนเคฐเฅ‚ เคฐ เคซเฅ€เคกเคนเคฐเฅ‚เคฒเคพเคˆ เคซเคฒเฅ‹ เค—เคฐเฅเคจเฅเคนเฅเคจเฅ‡เค›!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "เคคเคชเคพเคˆเค‚เคฒเฅ‡ เค†เคซเฅเคจเฅ‹ เค–เคพเคคเคพ เคธเคฟเคฐเฅเคœเคจเคพ เค—เคฐเฅ‡เคชเค›เคฟ เคธเคฒเฅเคฒเคพเคน เคฆเคฟเค‡เคเค•เคพ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเคนเคฐเฅ‚เคฒเคพเคˆ เคซเคฒเฅ‹ เค—เคฐเฅเคจเฅเคนเฅเคจเฅ‡เค›!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "เคคเคชเคพเคˆเค‚เคฒเฅ‡ เค†เคซเฅเคจเฅ‹ เคซเฅ€เคกเค•เฅ‹ เค…เคจเฅเคคเฅเคฏเคฎเคพ เคชเฅเค—เฅเคจเฅเคญเคฏเฅ‹! เคฅเคช เค–เคพเคคเคพ เคซเคฒเฅ‹ เค—เคฐเฅเคจเค•เฅ‹ เคฒเคพเค—เคฟ เค–เฅ‹เคœเฅ€ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "เคคเคชเคพเคˆเค‚เคฒเฅ‡ เคญเคฟเคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคกเค•เฅ‹ เคฒเคพเค— msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "เคคเคชเคพเคˆเค‚เคฒเฅ‡ เคญเคฟเคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคกเค•เฅ‹ เคฒเคพเค—เคฟ เค†เคซเฅเคจเฅ‹ เคฆเฅˆเคจเคฟเค• เคธเฅ€เคฎเคพ เคชเฅเค—เฅเคจเฅเคญเคฏเฅ‹ (เคงเฅ‡เคฐเฅˆ เคญเคฟเคกเคฟเคฏเฅ‹)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เค–เคพเคคเคพ" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เค–เคพเคคเคพ เค…เคเฅˆ เคญเคฟเคกเคฟเคฏเฅ‹ เค…เคชเคฒเฅ‹เคก เค—เคฐเฅเคจเค•เฅ‹ เคฒเคพเค—เคฟ เคชเคฐเฅเคฏเคพเคชเฅเคค เคชเฅเคฐเคพเคจเฅ‹ เค›เฅˆเคจเฅค เค•เฅƒเคชเคฏเคพ เคชเค›เคฟ เคชเฅเคจเคƒ เคชเฅเคฐเคฏเคพเคธ เค—เคฐเฅเคจเฅเคนเฅ‹เคธเฅเฅค" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เคˆเคฎเฅ‡เคฒ เค…เคฎเคพเคจเฅเคฏ เคฆเฅ‡เค–เคฟเคจเฅเค›เฅค" @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "เคคเคชเคพเคˆเค‚เค•เฅ‹ เคชเฅเคฐเฅ‹เคซเคพเค‡เคฒ, เคชเฅ‹เคทเฅเคŸเคนเคฐเฅ‚, เคซเฅ€เคกเคนเคฐเฅ‚, เคฐ เคธเฅ‚เคšเฅ€เคนเคฐเฅ‚ เค…เคฌ เค…เคจเฅเคฏ เคฌเฅเคฒเฅ‚เคธเฅเค•เฅ€ เคชเฅเคฐเคฏเฅ‹เค—เค•เคฐเฅเคคเคพเคนเคฐเฅ‚เคฒเคพเคˆ เคฆเฅ‡เค–เคพเค‡เคจเฅ‡ เค›เฅˆเคจเฅค เคคเคชเคพเคˆเค‚ เค•เฅเคจเฅˆ เคชเคจเคฟ เคธเคฎเคฏเคฎเคพ เค†เคซเฅเคจเฅ‹ เค–เคพเคคเคพ เคชเฅเคจเคƒ เคธเค•เฅเคฐเคฟเคฏ เค—เคฐเฅเคจเค•เฅ‹ เคฒเคพเค—เคฟ เคฒเค— เค‡เคจ เค—เคฐเฅเคจ เคธเค•เฅเคจเฅเคนเฅเคจเฅเค›เฅค" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/nl/messages.po b/src/locale/locales/nl/messages.po index 1a0e87c26a..1a7df9bea9 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(bevat ingesloten inhoud)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# uur} other {# uur}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# vind-ik-leuk} other {# vind-ik-leuks}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} van 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} heeft gereageerd met {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} heeft jou geverifieerd" msgid "{following} following" msgstr "{following} volgend" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} kan geen privรฉbericht ontvangen" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# ongelezen item} other {# ongelezen it msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}u geleden" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} is een vertrouwde verifieerder" @@ -842,13 +795,13 @@ msgstr "Verificaties van {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {volgend} other {volgend}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citaat} other {citaten}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {herplaatsing} other {herplaatsingen}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 dagen" msgid "7 days" msgstr "7 dagen" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "Een nieuwe vorm van verificatie" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Toegankelijkheid" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Toegankelijkheidsinstellingen" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Account genegeerd door lijst" msgid "Account options" msgstr "Accountopties" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Account verwijderd uit snelle toegang" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Accounts met een blauw vinkje <0><1/> kunnen anderen verifiรซren. Deze vertrouwde verifieerders worden geselecteerd door Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Optioneel alt-tekst toevoegen" msgid "Add another account" msgstr "Nog een account toevoegen" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Nog een bericht toevoegen" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Emoji-reactie toevoegen" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Deze feed toevoegen aan je feeds" msgid "Add to lists" msgstr "Toevoegen aan lijsten" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Volwassene" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@voorbeeld.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Alle" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Alle talen" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Alle feeds die je hebt opgeslagen, bij elkaar op รฉรฉn plek." @@ -1560,7 +1511,7 @@ msgstr "Staat toegang tot privรฉberichten toe" msgid "Already have a code?" msgstr "Heb je al een code?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "Er is een e-mail verzonden naar {0}. Deze bevat een bevestigingscode die msgid "An error has occurred" msgstr "Er is een fout opgetreden" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Er is een fout opgetreden" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "Er is een fout opgetreden tijdens het ophalen van de feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Er is een fout opgetreden bij het genereren van je startpakket. Wil je het opnieuw proberen?" @@ -1640,11 +1591,11 @@ msgstr "Er is een fout opgetreden bij het genereren van je startpakket. Wil je h msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Er is een fout opgetreden tijdens het laden van de video. Probeer het later opnieuw." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Er is een fout opgetreden tijdens het laden van de video. Probeer het opnieuw." @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Een probleem niet vermeld in deze opties" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Er is een probleem opgetreden bij het openen van de chat" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "App-wachtwoordnamen moeten minimaal 4 tekens lang zijn" msgid "App passwords" msgstr "App-wachtwoorden" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App-wachtwoorden" @@ -1891,8 +1838,8 @@ msgstr "Bezwaar maken tegen deze beslissing" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Gearchiveerd van {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Gearchiveerd bericht" @@ -1980,7 +1927,7 @@ msgstr "Weet je zeker dat je dit uit jouw feeds wilt verwijderen?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Weet je zeker dat je dit bericht wilt weggooien?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "Video's en GIF's automatisch afspelen" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Je moet eerst je e-mailadres bevestigen voordat je een bericht kunt plaatsen of beantwoorden." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Je moet eerst je e-mailadres bevestigen voordat je een startpakket maakt." @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "Verjaardag" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Geblokkeerd" msgid "Blocked accounts" msgstr "Geblokkeerde accounts" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Geblokkeerde accounts" @@ -2282,7 +2244,7 @@ msgstr "Geblokkeerde accounts kunnen niet reageren op jouw gesprekken, je niet v msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Geblokkeerde accounts kunnen niet reageren op jouw gesprekken, je niet vermelden en niet anderszins met je communiceren. Je ziet hun tekst niet en zij kunnen de jouwe niet zien." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokkeren voorkomt niet dat deze labeler labels op je account plaatst." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan de echtheid van de geclaimde datum niet bevestigen." @@ -2330,7 +2293,7 @@ msgstr "Bluesky is een open netwerk waar je jouw hostingprovider kunt kiezen. Al msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky is leuker met vrienden!" @@ -2358,7 +2321,7 @@ msgstr "Servicevoorwaarden van Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky kiest een aantal aanbevolen accounts van personen in je netwerk." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Blader door meer feeds op de pagina Verkennen" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Blader door meer suggesties" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Blader door meer suggesties op de pagina Verkennen" @@ -2425,24 +2388,25 @@ msgstr "Blader door meer suggesties op de pagina Verkennen" msgid "Browse other feeds" msgstr "Blader door andere feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Berichten over {displayName} bekijken" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Berichten gelabeld met {displayName} bekijken" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Startpakket {displayName} bekijken" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Onderwerp {0} bekijken" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Het onderwerp {displayName} bekijken" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Door {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Door <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Door een account aan te maken stem je in met de <0>ServicevoorwaardenTerms of Service." msgstr "Door een account aan te maken ga je akkoord met de <0>Servicevoorwaarden." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Door jou" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Camera" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Heractivering annuleren en afmelden" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Zoeken annuleren" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chat genegeerd" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Chatverzoeken" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chatinstellingen" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chat niet meer genegeerd" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2802,7 @@ msgstr "Kies domeinverificatiemethode" msgid "Choose Feeds" msgstr "Feeds kiezen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Voor mij kiezen" @@ -2854,7 +2819,7 @@ msgstr "Personen kiezen" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Deze kleur kiezen als je avatar" @@ -2879,7 +2844,7 @@ msgstr "Kies je eigen tijdlijn! Feeds gemaakt door de gemeenschap helpen je om i msgid "Choose your password" msgstr "Je wachtwoord kiezen" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Je gebruikershandle" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Klik om mislukt privรฉbericht opnieuw te proberen" @@ -3003,7 +2968,7 @@ msgstr "Klik om mislukt privรฉbericht opnieuw te proberen" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Klik om mislukt privรฉbericht opnieuw te proberen" msgid "Close" msgstr "Sluiten" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Actief dialoogvenster sluiten" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Menu sluiten" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "Dit dialoogvenster sluiten" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Sluit waarschuwing voor bijwerken wachtwoord" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Kleurmodus" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Strips" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Gemeenschapsrichtlijnen" @@ -3141,7 +3106,7 @@ msgstr "Gemeenschapsrichtlijnen" msgid "Complete onboarding and start using your account" msgstr "Voltooi de introductie en begin met het gebruiken van je account" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Voltooi de uitdaging" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Nieuw bericht opstellen" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Je kunt berichten opstellen met een lengte van maximaal {0, plural, other {# tekens}}" @@ -3160,11 +3125,11 @@ msgstr "Je kunt berichten opstellen met een lengte van maximaal {0, plural, othe msgid "Compose reply" msgstr "Reactie opstellen" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Video comprimeren..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contact opnemen met ondersteuning" @@ -3253,7 +3218,7 @@ msgstr "Inhoud & media" msgid "Content and media" msgstr "Inhoud en media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Inhoud en media" @@ -3265,10 +3230,6 @@ msgstr "Inhoud geblokkeerd" msgid "Content filters" msgstr "Inhoudsfilters" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Inhoudswaarschuwing" msgid "Content warnings" msgstr "Inhoudswaarschuwingen" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Contextmenu-achtergrond, klik om het menu te sluiten." @@ -3302,7 +3263,7 @@ msgstr "Contextmenu-achtergrond, klik om het menu te sluiten." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Verder lezen..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Buildversie gekopieerd naar klembord" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "App-wachtwoord kopiรซren" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "Link kopiรซren" msgid "Copy link to list" msgstr "Link naar lijst kopiรซren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Link naar bericht kopiรซren" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "Tekst privรฉbericht kopiรซren" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "TXT-recordwaarde kopiรซren" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Auteursrechtbeleid" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Kan chat niet verlaten" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Kan feed niet laden" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Kan chat niet negeren" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Aanmaken" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Maak een QR-code voor een startpakket" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Maak een startpakket" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Maak een startpakket voor mij" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Registreren" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Een account aanmaken" @@ -3666,15 +3627,15 @@ msgstr "Een account aanmaken" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "In plaats daarvan een avatar maken" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Nog een aanmaken" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "Cultuur" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Donker" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Donker" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Donker thema" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Standaard" @@ -3894,7 +3855,7 @@ msgstr "Mijn account verwijderen" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Bericht verwijderen" @@ -3988,7 +3949,7 @@ msgstr "Dialoog: aanpassen wie op dit bericht mag reageren" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Dimmen" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "Uitgeschakeld" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Weggooien" msgid "Discard changes?" msgstr "Wijzigingen weggooien?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Concept weggooien?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Bericht weggooien?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Ontmoedig aaps om mijn account te tonen aan afgemelde gebruikers" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Ontmoedig aaps om mijn account te tonen aan afgemelde gebruikers" msgid "Discover new custom feeds" msgstr "Ontdek nieuwe gepersonaliseerde feeds" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Ontdek nieuwe feeds" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Sluiten" @@ -4103,28 +4064,28 @@ msgstr "Sluiten" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Fout negeren" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Starthandleiding afsluiten" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Deze sectie sluiten" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "Grotere alt-tekstbadges tonen" msgid "Display name" msgstr "Weergavenaam" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "Gereed" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Dubbeltik om het dialoogvenster te sluiten" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Afbeelding bewerken" msgid "Edit interaction settings" msgstr "Interactie-instellingen bewerken" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Mijn feeds bewerken" @@ -4406,6 +4368,11 @@ msgstr "Mijn feeds bewerken" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Personen bewerken" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Bewerk wie kan reageren" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Je startpakket bewerken" @@ -4500,8 +4467,8 @@ msgstr "HTML-code insluiten" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Bericht insluiten" @@ -4509,7 +4476,7 @@ msgstr "Bericht insluiten" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Sluit dit bericht in op je website. Kopieer simpelweg het volgende fragment en plak het in de HTML-code van je website." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Geรฏntegreerde videospeler" @@ -4533,7 +4500,7 @@ msgstr "Inhoud voor volwassenen inschakelen" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "Externe media inschakelen" msgid "Enable media players for" msgstr "Mediaspelers inschakelen voor" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "Ingeschakeld" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Einde van feed" @@ -4608,7 +4576,7 @@ msgstr "Vul een woord of tag in" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Volledig scherm activeren" @@ -4650,11 +4618,11 @@ msgstr "Vul je gebruikersnaam en wachtwoord in" msgid "Enters full screen" msgstr "Opent volledig scherm" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Entertainment" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Fout" @@ -4684,7 +4652,7 @@ msgstr "Er is een fout opgetreden bij het opslaan van het bestand" msgid "Error receiving captcha response." msgstr "Fout bij ontvangen van captcha-antwoord." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Fout: {error}" @@ -4696,8 +4664,8 @@ msgstr "Iedereen kan reageren" msgid "Everybody can reply to this post." msgstr "Iedereen kan reageren op dit bericht." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Iedereen" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Iedereen" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "Gebruikers uitsluiten die je volgt" msgid "Excludes users you follow" msgstr "Gebruikers uitsluiten die je volgt" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Volledig scherm afsluiten" @@ -4755,11 +4723,11 @@ msgstr "Gebruikerslijst uitklappen" msgid "Expand or collapse the full post you are replying to" msgstr "Uitklappen of inklappen van het volledige bericht waar je op reageert" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Klapt berichttekst uit of in" @@ -4802,15 +4770,15 @@ msgstr "Expliciete of mogelijk aanstootgevende media." msgid "Explicit sexual images." msgstr "Expliciete seksuele afbeeldingen." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Verkennen" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "Externe media" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Externe media kunnen websites toestaan om informatie over jou en jouw apparaat te verzamelen. Er wordt geen informatie verzonden of gevraagd totdat je drukt op de knop \"afspelen\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Externe mediavoorkeuren" @@ -4886,7 +4854,7 @@ msgstr "Kon de handle niet wijzigen. Probeer het nog eens." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Het laden van feedvoorkeuren is mislukt" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Het laden van voorgestelde feeds is mislukt" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Het is niet gelukt om een lijst te laden met volgsuggesties" @@ -5027,12 +4996,12 @@ msgstr "Het is niet gelukt om een lijst te laden met volgsuggesties" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Feedmenu" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds bijgewerkt!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds die je misschien interessant vindt." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Update ophalen" @@ -5273,34 +5238,22 @@ msgstr "Update ophalen" msgid "File saved successfully!" msgstr "Bestand succesvol opgeslagen!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filteren op feeds" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "Zoek accounts om te volgen" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "{0} volgen" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle} volgen" @@ -5453,11 +5406,11 @@ msgstr "{handle} volgen" msgid "Follow 10 accounts" msgstr "Volg 10 accounts" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Volg 7 accounts" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Volgers van @{0} die je kent" @@ -5544,7 +5497,7 @@ msgstr "Volgers die je kent" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Volgt {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Je volgt {handle}" @@ -5578,21 +5531,21 @@ msgstr "Je volgt {handle}" msgid "Following feed preferences" msgstr "Volgfeedvoorkeuren" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Volgfeedvoorkeuren" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Volgt jou" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Lettertype" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Lettergrootte" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Om veiligheidsredenen kun je dit niet meer bekijken. Je moet een nieuw app-wachtwoord genereren als je dit app-wachtwoord kwijtraakt." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Voor de beste ervaring raden we je aan het themalettertype te gebruiken." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Voor jou" @@ -5628,7 +5581,7 @@ msgstr "Voor jou" msgid "Forever" msgstr "Voor altijd" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "Wachtwoord vergeten?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "Van <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Een startpakket genereren" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "Hulp krijgen" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "Aan de slag" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Geef je profiel een gezicht" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6052,7 @@ msgstr "Heb je een code? <0>Klik hier." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Heb je problemen?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "Hulp" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Laat mensen weten dat je geen bot bent door een foto te uploaden of een avatar te maken." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Verborgen" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Verborgen door je moderatie-instellingen." @@ -6148,9 +6102,10 @@ msgstr "Verborgen door je moderatie-instellingen." msgid "Hidden list" msgstr "Verborgen lijst" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Verborgen lijst" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Verbergen" @@ -6198,7 +6154,7 @@ msgstr "Reactie voor iedereen verbergen" msgid "Hide reply for me" msgstr "Reactie voor mij verbergen" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Deze kaart verbergen" @@ -6218,16 +6174,18 @@ msgstr "Deze reactie verbergen?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Populaire onderwerpen verbergen" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Populaire onderwerpen verbergen?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Populaire videoโ€™s verbergen?" @@ -6240,7 +6198,7 @@ msgstr "Gebruikerslijst verbergen" msgid "Hide verification badges" msgstr "Verificatiebadges verbergen" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Verbergt de inhoud" @@ -6293,8 +6251,8 @@ msgstr "Hmm, we kunnen die moderatieservice niet laden." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Wacht even! We geven geleidelijk toegang tot video en je staat nog steeds in de rij. Kom snel terug!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Populair" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "Als je je e-mailadres wijzigt, wordt 2FA via e-mail uitgeschakeld." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Als je jouw wachtwoord wilt wijzigen sturen we je een code om te verifiรซren dat dit jouw account is." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Ongeldige gebruikersnaam of wachtwoord" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "Uitnodigingscode" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Uitnodigingscode niet geaccepteerd. Controleer of je deze correct hebt ingevoerd en probeer het opnieuw." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Jij bent nu nog de enige! Voeg meer personen toe aan je startpakket door hierboven te zoeken." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Taak-ID: {0}" @@ -6816,8 +6766,8 @@ msgstr "Aan het gesprek deelnemen" msgid "Journalism" msgstr "Journalistiek" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Gelabeld door {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Gelabeld door de auteur." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Labels" @@ -6852,7 +6802,7 @@ msgstr "Labels toegevoegd" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Labels zijn aantekeningen over gebruikers en inhoud. Ze kunnen worden gebruikt om het te verbergen, te waarschuwen en het netwerk te categoriseren." @@ -6864,7 +6814,7 @@ msgstr "Labels op je account" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Taalinstellingen" @@ -6874,7 +6824,7 @@ msgstr "Taalinstellingen" msgid "Languages" msgstr "Talen" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Groter" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Nieuwste" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Leer meer" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Leer meer over het zelf hosten van je PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Meer informatie over de moderatie toegepast op deze inhoud" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Leer meer over deze waarschuwing" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Leer meer." @@ -6993,8 +6943,8 @@ msgstr "Verlaten" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Je verlaat Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "nog te gaan." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Laat me kiezen" @@ -7057,7 +7007,7 @@ msgstr "Laten we gaan!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Licht" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Licht" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Leuk" @@ -7076,7 +7026,7 @@ msgstr "Leuk" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Leuk ({0, plural, one {# vind-ik-leuk} other {# vind-ik-leuks}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Vind 10 berichten leuk" @@ -7085,7 +7035,7 @@ msgstr "Vind 10 berichten leuk" msgid "Like 10 posts to train the Discover feed" msgstr "Vind 10 berichten leuk om de Ontdekken-feed te trainen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Vind deze feed leuk" @@ -7093,8 +7043,8 @@ msgstr "Vind deze feed leuk" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Leuk gevonden door" @@ -7111,27 +7061,45 @@ msgstr "Leuk gevonden door" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Leuk gevonden door {0, plural, one {# gebruiker} other {# gebruikers}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Leuk gevonden door {likeCount, plural, one {# gebruiker} other {# gebruikers}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Vind-ik-leuks" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Vind-ik-leuks op dit bericht" @@ -7144,7 +7112,7 @@ msgstr "Lineair" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lijst" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lijst niet-genegeerd" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Meer laden" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Meer voorgestelde feeds laden" @@ -7292,8 +7260,8 @@ msgstr "Meer voorgestelde feeds laden" msgid "Load new notifications" msgstr "Nieuwe meldingen laden" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Logboek" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Maak er een voor mij" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Markeren als gelezen" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Media" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media die voor bepaalde doelgroepen aanstootgevend of ongepast kunnen zijn." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "vermelde gebruikers" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Vermeldingen" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Privรฉbericht verwijderd" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "Berichtopties" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Privรฉberichten" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderatie" @@ -7636,7 +7608,7 @@ msgstr "Moderatielijst bijgewerkt" msgid "Moderation lists" msgstr "Moderatielijsten" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderatielijsten" @@ -7645,7 +7617,7 @@ msgstr "Moderatielijsten" msgid "moderation settings" msgstr "moderatie-instellingen" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderatietoestanden" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "Genegeerde accounts" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Genegeerde accounts" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Maakt niet uit, maak een handle voor mij aan" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nieuw" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nieuwe chat" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "Nieuwe lijst" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Nieuw wachtwoord" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nieuw bericht" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Nieuwste antwoorden eerst" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Nieuws" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Volgende afbeelding" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "Nog geen app-wachtwoorden" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Geen feeds gevonden. Probeer naar iets anders te zoeken." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Nog geen vind-ik-leuks" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "Je volgt {0} niet meer" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "Nog geen privรฉberichten" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "Alleen de auteur mag dit bericht citeren." msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Nog geen citaten" @@ -8198,11 +8190,7 @@ msgstr "Nog geen citaten" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "Geen resultaat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Geen resultaten" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "Geen resultaten gevonden" msgid "No results found for \"{query}\"" msgstr "Geen resultaten gevonden voor \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "Nee, bedankt" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "Niemand" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Niemand heeft dit nog leuk gevonden. Misschien moet je de eerste zijn!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Niemand heeft dit nog geciteerd. Misschien moet jij de eerste zijn!" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Niet-seksuele naaktbeelden" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Niet gevonden" @@ -8333,7 +8325,7 @@ msgstr "Opmerking over delen" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Opmerking: Bluesky is een open en openbaar netwerk. Deze instelling beperkt alleen de zichtbaarheid van je inhoud op de Bluesky-app en -website. Andere apps respecteren deze instelling mogelijk niet. Je inhoud kan nog steeds worden getoond aan afgemelde gebruikers door andere apps en websites." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Meldinginstellingen" @@ -8353,11 +8345,12 @@ msgstr "Meldinginstellingen" msgid "Notification sounds" msgstr "Meldingsgeluiden" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "O nee!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Okรฉ" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Introductie opnieuw tonen" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Alt-tekst ontbreekt bij een of meer GIF's." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Bij een of meer afbeeldingen ontbreekt de alt-tekst." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Alt-tekst ontbreekt bij een of meer video's." @@ -8471,7 +8466,7 @@ msgstr "Alleen {0} kan reageren." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Alleen WebVTT (.vtt)-bestanden worden ondersteund" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Oeps!" @@ -8544,7 +8543,7 @@ msgstr "Oeps!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Avatar-maker openen" @@ -8570,21 +8569,22 @@ msgstr "Gespreksopties openen" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Menu openen" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Emoji-kiezer openen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Menu Feedopties openen" @@ -8627,7 +8627,7 @@ msgstr "Open moderatie debugpagina" msgid "Open muted words and tags settings" msgstr "Genegeerde woorden en tags-instellingen openen" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "Opent aanvullende details voor een debug-item" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Opent camera op apparaat" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Opent proces om een nieuw Bluesky-account aan te maken" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Opent het proces om je aan te melden bij je bestaande Bluesky-account" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Wachtwoord bijgewerkt!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pauzeren" @@ -8925,12 +8925,12 @@ msgstr "Pauzeren" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Video pauzeren" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personen" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personen gevolgd door @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personen die @{0} volgen" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Afbeeldingen bedoeld voor volwassenen." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "Vastzetten op startpagina" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Vastzetten op startpagina" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Vastgezet" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} vastgemaakt aan startpagina" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Vastgezet aan je feeds" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Afspelen" @@ -9076,8 +9076,8 @@ msgstr "{0} afspelen" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Video afspelen" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Je handle kiezen." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Kies je wachtwoord." @@ -9122,7 +9122,7 @@ msgstr "Kies je wachtwoord." msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." msgstr "" -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Vul de verificatie-captcha in." @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Vul je e-mailadres in." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politiek" @@ -9269,7 +9269,7 @@ msgstr "Politiek" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Plaatsen" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Bericht" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Alles plaatsen" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Bericht door @{0}" @@ -9340,7 +9340,7 @@ msgstr "Bericht verborgen door jou" msgid "Post interaction settings" msgstr "Instellingen voor berichtinteractie" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "Bericht vastgezet" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "Bericht losgemaakt" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Berichten" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Berichten kunnen worden genegeerd op basis van tekst, tags of beide. We msgid "Posts hidden" msgstr "Berichten verborgen" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "" msgid "Privacy and security" msgstr "Privacy en beveiliging" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacy en beveiliging" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Privacybeleid" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Video verwerken..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Citaatberichten uitgeschakeld" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citaten" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citaten van dit bericht" @@ -9647,7 +9650,7 @@ msgstr "Activeer je account opnieuw" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "Lees het Bluesky-privacybeleid" msgid "Read the Bluesky Terms of Service" msgstr "Lees de Bluesky-servicevoorwaarden" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Opnieuw verbinden" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Gesprekken opnieuw laden" @@ -9766,7 +9765,7 @@ msgstr "Gesprekken opnieuw laden" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Verwijderen" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Account verwijderen" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Verwijderen uit mijn feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Verwijderen uit snelle toegang?" @@ -9862,7 +9861,7 @@ msgstr "Verwijderen uit snelle toegang?" msgid "Remove from saved feeds" msgstr "Verwijderen uit opgeslagen feeds" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Afbeelding verwijderen" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Verwijderd uit lijst" msgid "Removed from saved feeds" msgstr "Verwijderd uit opgeslagen feeds" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Antwoorden" @@ -10037,7 +10037,7 @@ msgstr "Antwoorden op dit bericht zijn uitgeschakeld." msgid "Reply" msgstr "Reageren" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Reageren" @@ -10098,8 +10098,8 @@ msgstr "Gesprek melden" msgid "Report dialog" msgstr "Dialoogvenster Melden" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Feed melden" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Herplaatst door jou" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Herplaatsingen van dit bericht" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Probeert de laatste mislukte actie opnieuw" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Terug naar de startpagina" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Terug naar de vorige pagina" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Wijzigingen opslaan" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR-code opslaan" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "In mijn feeds opslaan" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Opgeslagen feeds" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Opgeslagen in je feeds" @@ -10520,8 +10520,8 @@ msgstr "Opgeslagen in je feeds" msgid "Say hello!" msgstr "Zeg hallo!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Wetenschap" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Naar boven scrollen" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Zoeken" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Zoek naar feeds die je aan anderen wilt voorstellen." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIF's zoeken" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "Vacatures bij Bluesky bekijken" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Zoekslider. Gebruik de pijltjestoetsen om vooruit en achteruit te zoeken en spatie om af te spelen/pauzeren" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecteer een kleur" @@ -10764,11 +10769,11 @@ msgstr "Account selecteren" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selecteer een avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selecteer een emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "GIF selecteren" msgid "Select GIF \"{0}\"" msgstr "GIF \"{0}\" selecteren" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Selecteer de {emojiName}-emoji als je avatar" @@ -10945,7 +10951,8 @@ msgstr "Privรฉbericht verzenden" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Bericht verzenden naar..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Verificatie-e-mail verzenden" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Verzenden als privรฉbericht" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Stelt e-mail in voor het opnieuw instellen van wachtwoorden" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Instellingen" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Toch delen" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialoogvenster Link delen" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "at://-URI van bericht delen" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "QR-code delen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Dit startpakket delen" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Deel dit startpakket en help mensen lid te worden van je gemeenschap op Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Gedeelde voorkeuren-tester" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Tonen" msgid "Show alt text" msgstr "Toon alt-tekst" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Toch laten zien" @@ -11274,9 +11281,9 @@ msgstr "Lijst toch tonen" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Meer tonen" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Waarschuwing en filter uit feeds tonen" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Afmelden?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Aanmelden vereist" @@ -11469,7 +11476,7 @@ msgstr "Overslaan" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Kleiner" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Enkele andere feeds die je wellicht leuk vindt" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Er is iets fout gegaan, probeer het opnieuw" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Een nieuwe chat starten" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Chat starten met {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpakket" @@ -11715,12 +11722,16 @@ msgstr "Startpakket door jou" msgid "Starter pack is invalid" msgstr "Startpakket is ongeldig" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startpakketten" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Met startpakketten kun je eenvoudig je favoriete feeds en personen delen met je vrienden." @@ -11728,7 +11739,7 @@ msgstr "Met startpakketten kun je eenvoudig je favoriete feeds en personen delen msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Statuspagina" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Stap {0} van {1}" @@ -11754,7 +11765,7 @@ msgstr "Opslag gewist, je moet de app nu opnieuw opstarten." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Verhalenboek" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonneer je op @{0} om deze labels te gebruiken:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Aanbevolen voor jou" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Systeem" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tik om te sluiten" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "Taak voltooid - 10 vind-ik-leuks!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Leer ons algoritme wat je leuk vindt" @@ -12060,7 +12073,7 @@ msgstr "Voorwaarden" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Dat startpakket kan niet worden gevonden." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Dat is alles, mensen!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "Het lijkt erop dat er problemen zijn met de server. Probeer het over enk msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Het startpakket dat je probeert te bekijken is ongeldig. Je kunt dit startpakket in plaats daarvan verwijderen." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "De verificatiecode die je hebt opgegeven is ongeldig. Controleer of je d msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Thema" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Er is een probleem opgetreden bij het verbinden met de server" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Er is een probleem opgetreden bij het verbinden met de server. Controleer je internetverbinding en probeer het opnieuw." @@ -12283,8 +12296,8 @@ msgstr "Er is een probleem opgetreden bij het verbinden met de server. Controlee msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Er is een probleem opgetreden bij het ophalen van meldingen. Tik hier om het opnieuw te proberen." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Er is een probleem opgetreden bij het ophalen van berichten. Tik hier om het opnieuw te proberen." @@ -12309,7 +12322,7 @@ msgstr "Er is een probleem opgetreden bij het ophalen van uw servicegegevens" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Er is een probleem opgetreden bij het verwijderen van deze feed. Controleer je internetverbinding en probeer het opnieuw." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Deze instellingen zijn alleen van toepassing op de volgende feed." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Deze {screenDescription} is gemarkeerd:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Dit account verzoekt gebruikers zich aan te melden vooraleer het profiel te bekijken." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Deze feed is leeg! Mogelijk moet je meer gebruikers volgen of je taalinstellingen aanpassen." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Deze feed is leeg." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Dit handle is gereserveerd. Probeer een ander." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Dit label is aangebracht door jou." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Deze labeler heeft niet aangegeven welke labels hij publiceert en is mogelijk niet actief." @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dit bericht beweert te zijn gemaakt op <0>{0}, maar werd voor het eerst gezien door Bluesky op <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Dit bericht beweert te zijn gemaakt op <0>{0}, maar werd voor het ee msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Dit bericht wordt verborgen voor feeds en gesprekken. Dit kan niet ongedaan worden gemaakt." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "De auteur van dit bericht heeft het plaatsen van citaten uitgeschakeld." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Deze gebruiker heeft geen volgers." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Deze gebruiker heeft je geblokkeerd. Je kunt de inhoud niet bekijken." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Deze gebruiker staat in de lijst <0>{0} die je negeert." msgid "This user is new here. Press for more info about when they joined." msgstr "Deze gebruiker is nieuw hier. Druk voor meer info over wanneer ze lid zijn geworden." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Deze gebruiker volgt niemand." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Hiermee wordt @{0} verwijderd uit de snelle toegangslijst." @@ -12786,7 +12801,7 @@ msgstr "Gespreksvoorkeuren" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Gespreksvoorkeuren" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Populair" @@ -12858,7 +12873,7 @@ msgstr "Populair" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Account deblokkeren?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "{0} ontvolgen" msgid "Unfollow account" msgstr "Account ontvolgen" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "Gesprek niet meer negeren" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Video niet meer negeren" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Losmaken" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Losmaken van startpagina" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Moderatielijst losmaken" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "Afmelden voor deze labeler" msgid "Unsubscribed from list" msgstr "Uitgeschreven voor lijst" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Bijwerken van zichtbaarheid van reactie is mislukt" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "In plaats daarvan een foto uploaden" @@ -13355,7 +13376,7 @@ msgstr "Uploaden vanuit bestanden" msgid "Upload from Library" msgstr "Uploaden vanuit bibliotheek" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "Afbeeldingen uploaden..." msgid "Uploading link thumbnail..." msgstr "Linkminiatuur uploaden..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Video uploaden..." @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "" msgid "Video failed to process" msgstr "Video kan niet worden verwerkt" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videogames" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video niet gevonden." @@ -13653,7 +13674,7 @@ msgstr "Video niet gevonden." msgid "Video settings" msgstr "Video-instellingen" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video geรผpload" @@ -13662,17 +13683,17 @@ msgstr "Video geรผpload" msgid "Video: {0}" msgstr "" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "Avatar van {0} bekijken" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Profiel van {0} bekijken" @@ -13724,13 +13745,13 @@ msgstr "Bekijk blogpost voor meer details" msgid "View debug entry" msgstr "Debug-item bekijken" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Details bekijken" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Volledig gesprek bekijken" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "Informatie over deze labels bekijken" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "De labelservice van @{0} bekijken" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Bekijk gebruikers die deze feed leuk vinden" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "Je moderatielijsten bekijken" msgid "View your muted accounts" msgstr "Je genegeerde accounts bekijken" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Er zijn netwerkproblemen, probeer het opnieuw." #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "Het spijt ons, maar we kunnen deze lijst niet ophalen. Neem contact op m msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Het spijt ons, maar we kunnen je genegeerde woorden op dit moment niet laden. Probeer het opnieuw." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Het spijt ons! Het bericht waarop je reageert is verwijderd." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Hoe gaat het?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Oeps!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Bericht schrijven" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Schrijf je reactie" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Het is niet toegestaan om video's te uploaden." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Je kunt je nu aanmelden met je nieuwe wachtwoord." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Je hebt tijdelijk de limiet voor video-uploads bereikt. Probeer het later opnieuw." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Je hebt nog geen startpakket gemaakt!" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Je mag maximaal 3 feeds toevoegen" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Je moet ten minste 7 andere personen volgen om een startpakket te genereren." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Je volgt de voorgestelde gebruikers en feeds zodra je klaar bent met het maken van je account!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Je volgt de voorgestelde gebruikers zodra je klaar bent met het aanmaken van je account!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Je hebt het einde van je feed bereikt! Zoek nog meer accounts om te volgen." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Je hebt je dagelijkse limiet voor video-uploads bereikt (te veel bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Je hebt je daglimiet voor het uploaden van video's bereikt (te veel video's)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Je account" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Je account is nog niet oud genoeg om video's te uploaden. Probeer het later nog eens." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Je e-mailadres lijkt ongeldig te zijn." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Jouw profiel, berichten, feeds en lijsten zijn niet langer zichtbaar voor andere Bluesky-gebruikers. Je kunt je account op elk moment opnieuw activeren door aan te melden." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/pl/messages.po b/src/locale/locales/pl/messages.po index 12013851af..8776dc1f7e 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Polish\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(zawiera zaล‚ฤ…cznik)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# godzinฤ™} few {# godziny} other {# godzin}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# polubienie} few {# polubienia} other {# polubieล„}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} obserwowanych" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Nie moลผesz wysล‚aฤ‡ wiadomoล›ci do {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {obserwowany} other {obserwowanych}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cytat} few {cytaty} other {cytatรณw}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} few {reposty} other {repostรณw}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {zakล‚adka} few {zakล‚adki} many {zakล‚adek} #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 dni" msgid "7 days" msgstr "7 dni" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Uล‚atwienia dostฤ™pu" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Ustawienia uล‚atwieล„ dostฤ™pu" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Konto zostaล‚o wyciszone za pomocฤ… listy" msgid "Account options" msgstr "Ustawienia konta" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Konto zostaล‚o usuniฤ™te z szybkiego dostฤ™pu" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Dodaj tekst alternatywny (opcjonalne)" msgid "Add another account" msgstr "Dodaj inne konto" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Dodaj inny wpis" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Dodaj do swoich kanaล‚รณw" msgid "Add to lists" msgstr "" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "Dla dorosล‚ych" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Wszystkie" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Wszystkie jฤ™zyki" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Wszystkie zapisane przez ciebie kanaล‚y sฤ… w tym miejscu." @@ -1560,7 +1511,7 @@ msgstr "Zezwala na dostฤ™p do wiadomoล›ci bezpoล›rednich" msgid "Already have a code?" msgstr "Masz juลผ kod?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "Email zostaล‚ wysล‚any do {0}. Zawiera on kod weryfikacyjny, ktรณry moลผ msgid "An error has occurred" msgstr "Wystฤ…piล‚ bล‚ฤ…d" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Wystฤ…piล‚ bล‚ฤ…d" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Wystฤ…piล‚ bล‚ฤ…d podczas generowania pakietu startowego. Czy chcesz sprรณbowaฤ‡ ponownie?" @@ -1640,11 +1591,11 @@ msgstr "Wystฤ…piล‚ bล‚ฤ…d podczas generowania pakietu startowego. Czy chcesz spr msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Wystฤ…piล‚ bล‚ฤ…d podczas wczytywania wideo. Sprรณbuj ponownie pรณลบniej." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Wystฤ…piล‚ bล‚ฤ…d podczas wczytywania wideo. Sprรณbuj ponownie." @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Inny problem" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Wystฤ…piล‚ bล‚ฤ…d podczas otwierania czatu" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Nazwy haseล‚ aplikacji muszฤ… skล‚adaฤ‡ siฤ™ z co najmniej 4 znakรณw" msgid "App passwords" msgstr "Hasล‚a aplikacji" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Hasล‚a aplikacji" @@ -1891,8 +1838,8 @@ msgstr "Odwoล‚aj siฤ™ od tej decyzji" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Archiwum z dnia {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Wpis zostaล‚ zarchiwizowany" @@ -1980,7 +1927,7 @@ msgstr "Czy na pewno chcesz to usunฤ…ฤ‡ ze swoich kanaล‚รณw?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Czy na pewno chcesz odrzuciฤ‡ ten wpis?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "Autoodtwarzanie filmรณw i GIF-รณw" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Potwierdลบ swรณj adres email przed utworzeniem pakietu startowego." @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "Data urodzenia" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Zablokowane" msgid "Blocked accounts" msgstr "Zablokowane konta" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Zablokowane konta" @@ -2282,7 +2244,7 @@ msgstr "Zablokowane konta nie mogฤ… komentowaฤ‡ twoich wpisรณw, wzmiankowaฤ‡ ci msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Zablokowane konta nie mogฤ… komentowaฤ‡ twoich wpisรณw, wzmiankowaฤ‡ ciฤ™ ani w inny sposรณb wchodziฤ‡ z tobฤ… w interakcje. Nie bฤ™dziesz widzieฤ‡ ich treล›ci, a oni nie bฤ™dฤ… widzieฤ‡ twoich." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blokowanie nie przeszkodzi moderacji w umieszczaniu ostrzeลผeล„ na twoim koncie." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nie moลผe potwierdziฤ‡ autentycznoล›ci podanej daty." @@ -2330,7 +2293,7 @@ msgstr "Bluesky to otwarta sieฤ‡, w ktรณrej moลผesz wybraฤ‡ swojego dostawcฤ™ ho msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky to otwarta sieฤ‡, w ktรณrej moลผesz wybraฤ‡ swojego dostawcฤ™ usล‚ug. Dla nowych uลผytkownikรณw zalecamy uลผycie domyล›lnej opcji โ€“ Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky jest lepszy ze znajomymi!" @@ -2358,7 +2321,7 @@ msgstr "Regulamin Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky wybierze zestaw polecanych kont spoล›rรณd osรณb w Twojej sieci." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Wyล›wietl wiฤ™cej kanaล‚รณw na stronie Eksploruj" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Wyล›wietl wiฤ™cej polecanych" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Wyล›wietl wiฤ™cej rekomendacji na stronie Eksploruj" @@ -2425,24 +2388,25 @@ msgstr "Wyล›wietl wiฤ™cej rekomendacji na stronie Eksploruj" msgid "Browse other feeds" msgstr "Wyล›wietl pozostaล‚e kanaล‚y" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Przeglฤ…daj wpisy o {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Przeglฤ…daj wpisy z tagiem {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Przeglฤ…daj pakiet startowy {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Przeglฤ…daj {displayName}" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Od {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Od <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Tworzฤ…c konto, akceptujesz <0>Regulamin i <1>Politykฤ™ prywatnoล›ci msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Tworzฤ…c konto, akceptujesz <0>Regulamin." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Aparat" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Anuluj reaktywacjฤ™ i wyloguj siฤ™" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Anuluj wyszukiwanie" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Czat zostaล‚ wyciszony" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Ustawienia czatu" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Cofniฤ™to wyciszenie czatu" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "Wybierz metodฤ™ weryfikacji domeny" msgid "Choose Feeds" msgstr "Wybierz kanaล‚y" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Wybierz dla mnie" @@ -2854,7 +2819,7 @@ msgstr "Wybierz osoby" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Wybierz ten kolor jako swoje zdjฤ™cie profilowe" @@ -2879,7 +2844,7 @@ msgstr "Wybierz wล‚asnฤ… oล› czasu! Kanaล‚y tworzone przez spoล‚ecznoล›ฤ‡ pomaga msgid "Choose your password" msgstr "Ustaw hasล‚o" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Twoja nazwa" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Kliknij, aby sprรณbowaฤ‡ wysล‚aฤ‡ wiadomoล›ฤ‡ ponownie" @@ -3003,7 +2968,7 @@ msgstr "Kliknij, aby sprรณbowaฤ‡ wysล‚aฤ‡ wiadomoล›ฤ‡ ponownie" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Kliknij, aby sprรณbowaฤ‡ wysล‚aฤ‡ wiadomoล›ฤ‡ ponownie" msgid "Close" msgstr "Zamknij" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Zamknij aktywne okno" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "Zamknij to okno" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "Zamyka ostrzeลผenie o aktualizacji hasล‚a" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Motyw" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Komiksy" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Wytyczne dla spoล‚ecznoล›ci" @@ -3141,7 +3106,7 @@ msgstr "Wytyczne dla spoล‚ecznoล›ci" msgid "Complete onboarding and start using your account" msgstr "Ukoล„cz wprowadzenie i zacznij korzystaฤ‡ ze swojego konta" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Ukoล„cz wyzwanie" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Utwรณrz nowy wpis" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "Skomentuj" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Kompresowanie wideo..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Skontaktuj siฤ™ z pomocฤ… technicznฤ…" @@ -3253,7 +3218,7 @@ msgstr "Treล›ci i multimedia" msgid "Content and media" msgstr "Treล›ci i multimedia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Treล›ci i multimedia" @@ -3265,10 +3230,6 @@ msgstr "Zawartoล›ฤ‡ zostaล‚a zablokowana" msgid "Content filters" msgstr "Filtrowanie" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Treล›ci z caล‚ej sieci, ktรณre naszym zdaniem mogฤ… ci siฤ™ spodobaฤ‡." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Ostrzeลผenie o zawartoล›ci" msgid "Content warnings" msgstr "Ostrzeลผenia o zawartoล›ci" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Kliknij, aby zamknฤ…ฤ‡ menu kontekstowe." @@ -3302,7 +3263,7 @@ msgstr "Kliknij, aby zamknฤ…ฤ‡ menu kontekstowe." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Kontynuuj wฤ…tek..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "Numer wersji zostaล‚ skopiowany do schowka" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Kopiuj hasล‚o aplikacji" msgid "Copy at:// URI" msgstr "Skopiuj:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Skopiuj DID" @@ -3449,10 +3410,10 @@ msgstr "Kopiuj link" msgid "Copy link to list" msgstr "Kopiuj link do listy" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopiuj link do wpisu" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "Kopiuj tekst wiadomoล›ci" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Skopiuj wpis:// URI" @@ -3490,7 +3451,7 @@ msgstr "Kopiuj rekord TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Polityka praw autorskich" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Nie udaล‚o siฤ™ opuล›ciฤ‡ czatu" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Nie udaล‚o siฤ™ wczytaฤ‡ kanaล‚u" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Nie udaล‚o siฤ™ wyciszyฤ‡ czatu" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Utwรณrz" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Utwรณrz kod QR dla pakietu startowego" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Utwรณrz pakiet startowy" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Utwรณrz dla mnie pakiet startowy" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Zarejestruj siฤ™" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Utwรณrz konto" @@ -3666,15 +3627,15 @@ msgstr "Utwรณrz konto" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Zamiast tego utwรณrz zdjฤ™cie profilowe" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Utwรณrz inne" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "Kultura" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Ciemny" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Ciemny" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Ciemny motyw" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Domyล›lny" @@ -3894,7 +3855,7 @@ msgstr "Usuล„ moje konto" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Usuล„ wpis" @@ -3988,7 +3949,7 @@ msgstr "Okno dialogowe: dostosuj, kto moลผe wchodziฤ‡ w interakcje z tym wpisem" msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Przyciemniony" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "Wyล‚ฤ…czono" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Odrzuฤ‡" msgid "Discard changes?" msgstr "Odrzuciฤ‡ zmiany?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Odrzuciฤ‡ szkic?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Odrzuciฤ‡ wpis?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Poproล› aplikacje o niepokazywanie mojego konta niezalogowanym osobom" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Poproล› aplikacje o niepokazywanie mojego konta niezalogowanym osobom" msgid "Discover new custom feeds" msgstr "Odkryj nowe kanaล‚y niestandardowe" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Odkryj nowe kanaล‚y" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Pomiล„" @@ -4103,28 +4064,28 @@ msgstr "Pomiล„" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Pomiล„ bล‚ฤ…d" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Pomiล„ wprowadzenie" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Pomiล„ tฤ™ sekcjฤ™" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "Wyล›wietlaj wiฤ™ksze znaczniki tekstu alternatywnego" msgid "Display name" msgstr "Wyล›wietlana nazwa" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "Gotowe" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Kliknij dwukrotnie, aby zamknฤ…ฤ‡ to okno" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Kliknij dwukrotnie, aby polubiฤ‡" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Edytuj obrazek" msgid "Edit interaction settings" msgstr "Edytuj ustawienia interakcji" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Edytuj moje kanaล‚y" @@ -4406,6 +4368,11 @@ msgstr "Edytuj moje kanaล‚y" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Edytuj osoby" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Wybierz, kto moลผe komentowaฤ‡" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Edytuj swรณj pakiet startowy" @@ -4500,8 +4467,8 @@ msgstr "Kod HTML do osadzenia" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Osadลบ wpis" @@ -4509,7 +4476,7 @@ msgstr "Osadลบ wpis" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Osadลบ ten wpis na swojej stronie internetowej. Po prostu skopiuj poniลผszy snippet i wklej go do kodu HTML swojej strony." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Wbudowany odtwarzacz wideo" @@ -4533,7 +4500,7 @@ msgstr "Pokazuj treล›ci dla dorosล‚ych" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "Pokazuj multimedia spoza aplikacji" msgid "Enable media players for" msgstr "Wล‚ฤ…cz odtwarzacze dla" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "Wล‚ฤ…cz popularne klipy wideo na kanale Discover" msgid "Enabled" msgstr "Wล‚ฤ…czono" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Koniec kanaล‚u" @@ -4608,7 +4576,7 @@ msgstr "Wprowadลบ sล‚owo lub tag" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Wล‚ฤ…cz tryb peล‚noekranowy" @@ -4650,11 +4618,11 @@ msgstr "Wprowadลบ swojฤ… nazwฤ™ i hasล‚o" msgid "Enters full screen" msgstr "Przechodzi do trybu peล‚noekranowego" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Bล‚ฤ…d" @@ -4684,7 +4652,7 @@ msgstr "Wystฤ…piล‚ bล‚ฤ…d podczas zapisywania pliku" msgid "Error receiving captcha response." msgstr "Bล‚ฤ…d podczas odbierania odpowiedzi captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "Kaลผdy moลผe komentowaฤ‡" msgid "Everybody can reply to this post." msgstr "Kaลผdy moลผe komentowaฤ‡ ten wpis." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Kaลผdy" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Kaลผdy" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "Wyklucz obserwowane osoby" msgid "Excludes users you follow" msgstr "Wyklucza obserwowane osoby" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Wyล‚ฤ…cz peล‚ny ekran" @@ -4755,11 +4723,11 @@ msgstr "Rozwiล„ listฤ™ osรณb" msgid "Expand or collapse the full post you are replying to" msgstr "Rozwiล„ lub zwiล„ caล‚y wpis, ktรณry komentujesz" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Rozwija lub zwija tekst wpisu" @@ -4802,15 +4770,15 @@ msgstr "Nieodpowiednia lub niepokojฤ…ca treล›ฤ‡." msgid "Explicit sexual images." msgstr "Obrazy o charakterze jednoznacznie seksualnym." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "Multimedia spoza aplikacji" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Multimedia spoza aplikacji mogฤ… umoลผliwiaฤ‡ witrynom gromadzenie informacji o tobie i twoim urzฤ…dzeniu. ลปadne informacje nie sฤ… wysyล‚ane ani udostฤ™pniane do momentu naciล›niฤ™cia przycisku odtwarzania." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferencje multimediรณw spoza aplikacji" @@ -4886,7 +4854,7 @@ msgstr "Nie udaล‚o siฤ™ zmieniฤ‡ nazwy. Sprรณbuj ponownie." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Nie udaล‚o siฤ™ wczytaฤ‡ preferencji kanaล‚รณw" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Nie udaล‚o siฤ™ wczytaฤ‡ polecanych kanaล‚รณw" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Nie udaล‚o siฤ™ wczytaฤ‡ polecanych osรณb" @@ -5027,12 +4996,12 @@ msgstr "Nie udaล‚o siฤ™ wczytaฤ‡ polecanych osรณb" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Kanaล‚" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu kanaล‚u" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Kanaล‚y zostaล‚y zaktualizowane!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Kanaล‚y, ktรณre mogฤ… Ci siฤ™ spodobaฤ‡." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "Plik zostaล‚ zapisany pomyล›lnie!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Odfiltruj z kanaล‚รณw" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtruj wyszukiwanie wedล‚ug jฤ™zyka" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtruj wyszukiwanie wedล‚ug jฤ™zyka (aktywny: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "Znajdลบ konta do obserwowania" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Obserwuj {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Obserwuj {handle}" @@ -5453,11 +5406,11 @@ msgstr "Obserwuj {handle}" msgid "Follow 10 accounts" msgstr "Zaobserwuj 10 kont" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Zaobserwuj 7 kont" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Obserwujฤ…cy @{0}, ktรณrych znasz" @@ -5544,7 +5497,7 @@ msgstr "Obserwujฤ…cy, ktรณrych znasz" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Obserwowani {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Obserwujesz {handle}" @@ -5578,21 +5531,21 @@ msgstr "Obserwujesz {handle}" msgid "Following feed preferences" msgstr "Preferencje kanaล‚u obserwowanych" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencje kanaล‚u obserwowanych" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Obserwuje ciฤ™" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Czcionka" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Rozmiar czcionki" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Ze wzglฤ™dรณw bezpieczeล„stwa nie bฤ™dzie moลผna wyล›wietliฤ‡ go ponownie. W przypadku utraty hasล‚a do aplikacji konieczne bฤ™dzie wygenerowanie nowego." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Aby uzyskaฤ‡ najlepsze wraลผenia, zalecamy korzystanie z czcionki motywu." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "Na zawsze" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "Nie pamiฤ™tasz hasล‚a?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "Od <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Wygeneruj pakiet startowy" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "Uzyskaj pomoc" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Zmieล„ wyglฤ…d swojego profilu" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Masz problem?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "Pomoc" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Daj znaฤ‡ innym, ลผe nie jesteล› botem, ustawiajฤ…c zdjฤ™cie profilowe." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Ukryte" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Ukryte ze wzglฤ™du na twoje ustawienia moderacji." @@ -6148,9 +6102,10 @@ msgstr "Ukryte ze wzglฤ™du na twoje ustawienia moderacji." msgid "Hidden list" msgstr "Ukryta lista" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Ukryta lista" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Ukryj" @@ -6198,7 +6154,7 @@ msgstr "Ukryj komentarz dla wszystkich" msgid "Hide reply for me" msgstr "Ukryj komentarz dla mnie" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "Ukryฤ‡ ten komentarz?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Ukryj popularne" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Ukryฤ‡ popularne?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Ukryฤ‡ popularne klipy wideo?" @@ -6240,7 +6198,7 @@ msgstr "Ukryj listฤ™ osรณb" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Ukrywa zawartoล›ฤ‡" @@ -6293,8 +6251,8 @@ msgstr "Nie mogliล›my wczytaฤ‡ tej usล‚ugi moderacji." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Poczekaj! Dostฤ™p do materiaล‚รณw wideo udostฤ™pniamy stopniowo, a ty wciฤ…ลผ czekasz na swojฤ… kolej. Sprawdลบ ponownie za jakiล› czas!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Jeล›li chcesz zmieniฤ‡ hasล‚o, wyล›lemy Ci kod, aby zweryfikowaฤ‡, ลผe to Twoje konto." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Nieprawidล‚owa nazwa lub hasล‚o" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "Kod zaproszenia" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Kod zaproszenia nie zostaล‚ zaakceptowany. Sprawdลบ, czy zostaล‚ wprowadzony poprawnie i sprรณbuj ponownie." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "W tej chwili jesteล› tylko ty! Dodaj wiฤ™cej osรณb do swojego pakietu startowego, wyszukujฤ…c powyลผej." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID: {0}" @@ -6816,8 +6766,8 @@ msgstr "Doล‚ฤ…cz do rozmowy" msgid "Journalism" msgstr "Dziennikarstwo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Oznaczone przez {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Oznaczone przez autora." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Ostrzeลผenia" @@ -6852,7 +6802,7 @@ msgstr "Ostrzeลผenia zostaล‚y dodane" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Ostrzeลผenia to adnotacje dotyczฤ…ce osรณb i treล›ci. Mogฤ… byฤ‡ uลผywane do ukrywania, ostrzegania i kategoryzowania sieci." @@ -6864,7 +6814,7 @@ msgstr "Ostrzeลผenia na twoim koncie" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Ustawienia jฤ™zyka" @@ -6874,7 +6824,7 @@ msgstr "Ustawienia jฤ™zyka" msgid "Languages" msgstr "Jฤ™zyki" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Wiฤ™kszy" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Najnowsze" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Dowiedz siฤ™ wiฤ™cej" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Dowiedz siฤ™ wiฤ™cej o samodzielnym hostingu PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Dowiedz siฤ™ wiฤ™cej na temat ostrzeลผenia naล‚oลผonego na tฤ™ zawartoล›ฤ‡" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Dowiedz siฤ™ wiฤ™cej o tym ostrzeลผeniu" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Dowiedz siฤ™ wiฤ™cej." @@ -6993,8 +6943,8 @@ msgstr "Opuล›ฤ‡" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Opuszczasz Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "pozostaล‚e." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Pozwรณl mi wybraฤ‡" @@ -7057,7 +7007,7 @@ msgstr "Do dzieล‚a!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Jasny" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Jasny" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Polub" @@ -7076,7 +7026,7 @@ msgstr "Polub" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Polub ({0, plural, one {# polubienie} few {# polubienia} other {# polubieล„}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Polub 10 wpisรณw" @@ -7085,7 +7035,7 @@ msgstr "Polub 10 wpisรณw" msgid "Like 10 posts to train the Discover feed" msgstr "Polub 10 wpisรณw, aby dostosowaฤ‡ kanaล‚ gล‚รณwny" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Polub ten kanaล‚" @@ -7093,8 +7043,8 @@ msgstr "Polub ten kanaล‚" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Polubione przez" @@ -7111,27 +7061,45 @@ msgstr "Polubione przez" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Polubione przez {0, plural, one {# osobฤ™} few {# osoby} other {# osรณb}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Polubione przez {likeCount, plural, one {# osobฤ™} few {# osoby} other {# osรณb}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Polubienia" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Polubienia tego wpisu" @@ -7144,7 +7112,7 @@ msgstr "W linii" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Cofniฤ™to wyciszenie listy" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Wczytaj wiฤ™cej" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Wczytaj wiฤ™cej polecanych kanaล‚รณw" @@ -7292,8 +7260,8 @@ msgstr "Wczytaj wiฤ™cej polecanych kanaล‚รณw" msgid "Load new notifications" msgstr "Wczytaj nowe powiadomienia" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Dziennik" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Utwรณrz go dla mnie" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Oznacz jako przeczytane" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimedia" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Materiaล‚y, ktรณre mogฤ… byฤ‡ niepokojฤ…ce lub nieodpowiednie dla niektรณrych odbiorcรณw." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "wzmianki" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Wzmianki" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Wiadomoล›ฤ‡ usuniฤ™ta" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Wiadomoล›ci" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderacja" @@ -7636,7 +7608,7 @@ msgstr "Zaktualizowano listฤ™ moderacji" msgid "Moderation lists" msgstr "Listy moderacji" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listy moderacji" @@ -7645,7 +7617,7 @@ msgstr "Listy moderacji" msgid "moderation settings" msgstr "ustawienia moderacji" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Status moderacji" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "Wyciszone konta" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Wyciszone konta" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Jednak utwรณrz nazwฤ™ dla mnie" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nowa" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nowy czat" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "Nowa lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Nowe hasล‚o" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nowy wpis" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Najpierw najnowsze komentarze" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Aktualnoล›ci" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Nastฤ™pne zdjฤ™cie" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "Brak haseล‚ aplikacji" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Nie znaleziono ลผadnych kanaล‚รณw. Sprรณbuj wyszukaฤ‡ coล› innego." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Brak polubieล„" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "Juลผ nie obserwujesz {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "Brak wiadomoล›ci" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "Nikt poza autorem nie moลผe cytowaฤ‡ tego wpisu." msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Brak cytatรณw" @@ -8198,11 +8190,7 @@ msgstr "Brak cytatรณw" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "Brak wynikรณw" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Brak wynikรณw" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "Nie znaleziono ลผadnych wynikรณw" msgid "No results found for \"{query}\"" msgstr "Nie znaleziono ลผadnych wynikรณw dla \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "Nie, dziฤ™kujฤ™" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "Nikt" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nikt jeszcze tego nie polubiล‚. Moลผesz byฤ‡ pierwszฤ… osobฤ…, ktรณra to zrobi!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Nikt jeszcze tego nie zacytowaล‚. Moลผesz byฤ‡ pierwszฤ… osobฤ…, ktรณra to zrobi!" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Nieseksualna nagoล›ฤ‡" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Nie znaleziono" @@ -8333,7 +8325,7 @@ msgstr "Uwaga o udostฤ™pnianiu" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Uwaga: Bluesky jest otwartฤ… i publicznฤ… spoล‚ecznoล›ciฤ…. To ustawienie ogranicza jedynie widocznoล›ฤ‡ twoich treล›ci w aplikacji i serwisie Bluesky, inne aplikacje mogฤ… tego nie respektowaฤ‡. Twoje treล›ci mogฤ… byฤ‡ nadal wyล›wietlane niezalogowanym osobom przez inne aplikacje i strony internetowe." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Ustawienia powiadomieล„" @@ -8353,11 +8345,12 @@ msgstr "Ustawienia powiadomieล„" msgid "Notification sounds" msgstr "Dลบwiฤ™ki powiadomieล„" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "O nie!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Okej" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Rozpocznij od nowa" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "W co najmniej jednym pliku GIF brakuje tekstu alternatywnego." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "W co najmniej jednym zdjฤ™ciu brakuje tekstu alternatywnego." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "W co najmniej jednym wideo brakuje tekstu alternatywnego." @@ -8471,7 +8466,7 @@ msgstr "Tylko {0} mogฤ… komentowaฤ‡." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Obsล‚ugiwane sฤ… tylko pliki WebVTT (.vtt)" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ups!" @@ -8544,7 +8543,7 @@ msgstr "Ups!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Otwรณrz kreator zdjฤ™cia profilowego" @@ -8570,21 +8569,22 @@ msgstr "Zmieล„ ustawienia rozmowy" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Otwรณrz menu" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Wybierz emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Otwรณrz informacje o kanale" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Zmieล„ ustawienia kanaล‚u" @@ -8627,7 +8627,7 @@ msgstr "Otwรณrz stronฤ™ debugowania moderacji" msgid "Open muted words and tags settings" msgstr "Zmieล„ ustawienia wyciszonych sล‚รณw i tagรณw" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "Otwiera dodatkowe szczegรณล‚y debugowania" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Otwiera aplikacjฤ™ aparatu" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Otwiera proces tworzenia nowego konta Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Otwiera proces logowania do istniejฤ…cego konta Bluesky" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Hasล‚o zostaล‚o zaktualizowane!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Zatrzymaj" @@ -8925,12 +8925,12 @@ msgstr "Zatrzymaj" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Zatrzymaj wideo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Osoby" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Osoby obserwowane przez @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Osoby obserwujฤ…ce @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Zdjฤ™cia przeznaczone dla dorosล‚ych." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Przypnij kanaล‚" @@ -9034,7 +9034,7 @@ msgstr "Przypnij kanaล‚" msgid "Pin to home" msgstr "Przypnij do gล‚รณwnej" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Przypnij do gล‚รณwnej" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Przypiฤ™te" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} przypiฤ™to do gล‚รณwnej" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Przypiฤ™to kanaล‚" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Odtwรณrz" @@ -9076,8 +9076,8 @@ msgstr "Odtwรณrz {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Odtwรณrz filmik" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Wybierz swojฤ… nazwฤ™." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Wybierz swoje hasล‚o." @@ -9122,7 +9122,7 @@ msgstr "Wybierz swoje hasล‚o." msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." msgstr "" -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Wypeล‚nij formularz captcha." @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Wprowadลบ swรณj adres email." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Polityka" @@ -9269,7 +9269,7 @@ msgstr "Polityka" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Opublikuj" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Opublikuj" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Opublikuj wszystko" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Wpis od @{0}" @@ -9340,7 +9340,7 @@ msgstr "Wpis zostaล‚ ukryty przez ciebie" msgid "Post interaction settings" msgstr "Ustawienia interakcji wpisu" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Ustawienia interakcji wpisu" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "Wpis zostaล‚ przypiฤ™ty" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "Wpis zostaล‚ odpiฤ™ty" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Wpisy" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Wpisy mogฤ… byฤ‡ wyciszane na podstawie zawartego w nich tekstu, tagรณw msgid "Posts hidden" msgstr "Wpisy zostaล‚y ukryte" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Prywatnoล›ฤ‡" msgid "Privacy and security" msgstr "Prywatnoล›ฤ‡ i bezpieczeล„stwo" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Prywatnoล›ฤ‡ i bezpieczeล„stwo" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Polityka prywatnoล›ci" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Przetwarzanie wideo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Publiczne listy osรณb do zbiorowego wyciszania lub blokowania." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "Cytowanie wpisรณw zostaล‚o wyล‚ฤ…czone" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Cytaty" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Cytowania tego wpisu" @@ -9647,7 +9650,7 @@ msgstr "Ponownie aktywuj swoje konto" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Czytaj mniej" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Czytaj wiฤ™cej" @@ -9687,11 +9690,11 @@ msgstr "Zapoznaj siฤ™ z Politykฤ… prywatnoล›ci Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Zapoznaj siฤ™ z Regulaminem Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Polecane" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Poล‚ฤ…cz ponownie" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Odล›wieลผ rozmowy" @@ -9766,7 +9765,7 @@ msgstr "Odล›wieลผ rozmowy" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Usuล„" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Usuล„ konto" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Usuล„ z moich kanaล‚รณw" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Usunฤ…ฤ‡ z szybkiego dostฤ™pu?" @@ -9862,7 +9861,7 @@ msgstr "Usunฤ…ฤ‡ z szybkiego dostฤ™pu?" msgid "Remove from saved feeds" msgstr "Usuล„ z zapisanych kanaล‚รณw" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Usuล„ zdjฤ™cie" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "Usuniฤ™to z listy" msgid "Removed from saved feeds" msgstr "Usuniฤ™to z zapisanych kanaล‚รณw" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Komentarze" @@ -10037,7 +10037,7 @@ msgstr "Komentarze do tego wpisu sฤ… wyล‚ฤ…czone." msgid "Reply" msgstr "Skomentuj" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Skomentuj" @@ -10098,8 +10098,8 @@ msgstr "Zgล‚oล› rozmowฤ™" msgid "Report dialog" msgstr "Okno zgล‚oszenia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Zgล‚oล› kanaล‚" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Repostowane przez ciebie" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Reposty tego wpisu" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Ponawia ostatniฤ… akcjฤ™, ktรณra zakoล„czyล‚a siฤ™ bล‚ฤ™dem" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Wraca do strony gล‚รณwnej" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Wraca do poprzedniej strony" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Zapisz zmiany" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Zapisz kod QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Dodaj do moich kanaล‚รณw" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Zapisane kanaล‚y" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Dodano do twoich kanaล‚รณw" @@ -10520,8 +10520,8 @@ msgstr "Dodano do twoich kanaล‚รณw" msgid "Say hello!" msgstr "Przywitaj siฤ™!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Nauka" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Przewiล„ na gรณrฤ™" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Szukaj" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Szukaj wpisรณw od @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Szukaj kanaล‚รณw, ktรณre chcesz polecaฤ‡ innym." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Szukaj GIF-รณw" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "Zobacz wpisy tej osoby o #{tag}" msgid "See jobs at Bluesky" msgstr "Zobacz oferty pracy w Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Klawisze strzaล‚ek sล‚uลผฤ… do wyszukiwania do przodu i do tyล‚u, a spacja do odtwarzania lub zatrzymywania" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Wybierz kolor" @@ -10764,11 +10769,11 @@ msgstr "Wybierz konto" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Wybierz zdjฤ™cie profilowe" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Wybierz emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Wybierz GIF" msgid "Select GIF \"{0}\"" msgstr "Wybierz GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Wybierz emoji {emojiName} jako zdjฤ™cie profilowe" @@ -10945,7 +10951,8 @@ msgstr "Wyล›lij wiadomoล›ฤ‡" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Wyล›lij wpis do..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Wyล›lij email weryfikacyjny" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Wyล›lij bezpoล›rednio" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Ustawia email do resetowania hasล‚a" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ustawienia" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Udostฤ™pnij mimo to" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Okno udostฤ™pniania linku" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Udostฤ™pnij kod QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Udostฤ™pnij ten kanaล‚" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Udostฤ™pnij pakiet startowy" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Udostฤ™pnij ten pakiet startowy i pomรณลผ innym doล‚ฤ…czyฤ‡ do twojej spoล‚ecznoล›ci na Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Tester wspรณล‚dzielonych preferencji" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Pokaลผ" msgid "Show alt text" msgstr "Pokaลผ tekst alternatywny" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Pokaลผ mimo to" @@ -11274,9 +11281,9 @@ msgstr "Pokaลผ listฤ™ mimo to" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Pokaลผ wiฤ™cej" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Pokaลผ ostrzeลผenie i odfiltruj z kanaล‚รณw" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Pokazuje informacje o momencie utworzenia tego wpisu" @@ -11341,15 +11348,15 @@ msgstr "Pokazuje informacje o momencie utworzenia tego wpisu" msgid "Shows other accounts you can switch to" msgstr "Pokazuje inne konta, na ktรณre moลผesz siฤ™ przeล‚ฤ…czyฤ‡" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Pokazuje zawartoล›ฤ‡" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Pokazuje zawartoล›ฤ‡" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Wylogowaฤ‡ siฤ™?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Rejestracja wymagana" @@ -11469,7 +11476,7 @@ msgstr "Pomiล„" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Mniejszy" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Inne kanaล‚y, ktรณre mogฤ… ci siฤ™ spodobaฤ‡" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Coล› poszล‚o nie tak, sprรณbuj ponownie" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Coล› poszล‚o nie tak? Daj nam znaฤ‡." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Zacznij nowy czat" @@ -11682,17 +11689,17 @@ msgstr "Zacznij dodawaฤ‡ osoby" msgid "Start adding people!" msgstr "Zacznij dodawaฤ‡ osoby!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Zacznij czat z {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pakiet startowy" @@ -11715,12 +11722,16 @@ msgstr "Twรณj pakiet startowy" msgid "Starter pack is invalid" msgstr "Pakiet startowy jest nieprawidล‚owy" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pakiety" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Pakiety startowe umoลผliwiajฤ… ล‚atwe udostฤ™pnianie ulubionych kanaล‚รณw i osรณb znajomym." @@ -11728,7 +11739,7 @@ msgstr "Pakiety startowe umoลผliwiajฤ… ล‚atwe udostฤ™pnianie ulubionych kanaล‚รณ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Status" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Krok {0} z {1}" @@ -11754,7 +11765,7 @@ msgstr "Pamiฤ™ฤ‡ zostaล‚a wyczyszczona, uruchom aplikacjฤ™ ponownie." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Historia aktywnoล›ci" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Subskrybuj @{0}, aby uลผyฤ‡ tych ostrzeลผeล„:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Proponowane dla ciebie" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Przeล‚ฤ…cz na {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Systemowe" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Kliknij, aby odrzuciฤ‡" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Zadanie wykonane โ€“ 10 obserwacji!" msgid "Task complete - 10 likes!" msgstr "Zadanie wykonane โ€“ 10 polubieล„!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Dostosuj nasz algorytm do tego, co lubisz" @@ -12060,7 +12073,7 @@ msgstr "Regulamin" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Ten pakiet startowy nie zostaล‚ odnaleziony." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "To juลผ wszystko!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "To wszystko!" @@ -12216,7 +12229,7 @@ msgstr "Wyglฤ…da na to, ลผe serwer napotyka problemy. Sprรณbuj ponownie za jaki msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Pakiet startowy, ktรณry prรณbujesz wyล›wietliฤ‡, jest nieprawidล‚owy. Moลผesz go usunฤ…ฤ‡." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "Podany kod weryfikacyjny jest nieprawidล‚owy. Sprawdลบ, czy zostaล‚ uลผy msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Motyw" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Wystฤ…piล‚ problem podczas ล‚ฤ…czenia z serwerem" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Wystฤ…piล‚ problem podczas ล‚ฤ…czenia z serwerem, sprawdลบ poล‚ฤ…czenie internetowe i sprรณbuj ponownie." @@ -12283,8 +12296,8 @@ msgstr "Wystฤ…piล‚ problem podczas ล‚ฤ…czenia z serwerem, sprawdลบ poล‚ฤ…czenie msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Wystฤ…piล‚ problem podczas wczytywania powiadomieล„. Kliknij tutaj, aby sprรณbowaฤ‡ ponownie." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Wystฤ…piล‚ problem podczas wczytywania wpisรณw. Kliknij tutaj, aby sprรณbowaฤ‡ ponownie." @@ -12309,7 +12322,7 @@ msgstr "Wystฤ…piล‚ problem podczas wczytywania informacji o usล‚udze" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Wystฤ…piล‚ problem podczas usuwania tego kanaล‚u. Sprawdลบ poล‚ฤ…czenie internetowe i sprรณbuj ponownie." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Ustawienia te dotyczฤ… tylko kanaล‚u obserwowanych." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Ten {screenDescription} zostaล‚ zgล‚oszony:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Zaloguj siฤ™, aby wyล›wietliฤ‡ profil tego konta." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Ten kanaล‚ jest pusty! Moลผesz zaobserwowaฤ‡ wiฤ™cej osรณb lub dostosowaฤ‡ ustawienia jฤ™zykowe." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Ten kanaล‚ jest pusty." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Ta nazwa jest zajฤ™ta. Wyprรณbuj innฤ…." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Ostrzeลผenie to zostaล‚o nadane przez ciebie." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Ta moderacja nie okreล›liล‚a, jakie ostrzeลผenia publikuje i moลผe nie byฤ‡ aktywna." @@ -12621,13 +12634,13 @@ msgstr "Ta lista jest pusta." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Ten wpis zostaล‚ utworzony <0>{0}, ale po raz pierwszy pojawiล‚ siฤ™ na Bluesky <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Ten wpis zostaล‚ utworzony <0>{0}, ale po raz pierwszy pojawiล‚ siฤ™ msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Ten wpis ma nieznany typ wฤ…tkรณw. Twoja aplikacja moลผe byฤ‡ nieaktualna." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Ten wpis zostanie ukryty w kanaล‚ach i wฤ…tkach. Nie moลผna tego cofnฤ…ฤ‡." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Autor tego wpisu wyล‚ฤ…czyล‚ moลผliwoล›ฤ‡ cytowania." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Ta osoba nie ma ลผadnych obserwujฤ…cych." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Ta osoba ciฤ™ zablokowaล‚a. Nie moลผesz wyล›wietlaฤ‡ jej treล›ci." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Ta osoba znajduje siฤ™ na liล›cie <0>{0}, ktรณra zostaล‚a wyciszona. msgid "This user is new here. Press for more info about when they joined." msgstr "Ta osoba jest tu nowa. Kliknij, aby uzyskaฤ‡ wiฤ™cej informacji o tym, kiedy doล‚ฤ…czyล‚a." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Ta osoba nikogo nie obserwuje." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Spowoduje to usuniฤ™cie @{0} z listy szybkiego dostฤ™pu." @@ -12786,7 +12801,7 @@ msgstr "Ustawienia wฤ…tkรณw" msgid "Threaded" msgstr "Tryb wฤ…tkowy" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Ustawienia wฤ…tkรณw" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Najlepsze" @@ -12858,7 +12873,7 @@ msgstr "Najlepsze" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Temat" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Popularne" @@ -12902,13 +12919,15 @@ msgstr "Popularne" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Popularne filmiki" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Odblokowaฤ‡ konto?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Nie obserwuj {0}" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Nie obserwuj" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Nie lubiฤ™" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "Anuluj wyciszenie" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Anuluj wyciszenie" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Odepnij" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Odepnij kanaล‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Odepnij od gล‚รณwnej" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Odepnij listฤ™ moderacji" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} odpiฤ™to od gล‚รณwnej" @@ -13258,11 +13279,11 @@ msgstr "Nie subskrybuj tej moderacji" msgid "Unsubscribed from list" msgstr "Nie subskrybujesz juลผ listy" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Nie udaล‚o siฤ™ zaktualizowaฤ‡ widocznoล›ci komentarzy" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Zamiast tego przeล›lij zdjฤ™cie" @@ -13355,7 +13376,7 @@ msgstr "Przeล›lij z plikรณw" msgid "Upload from Library" msgstr "Przeล›lij z biblioteki" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "Przesyล‚anie zdjฤ™ฤ‡..." msgid "Uploading link thumbnail..." msgstr "Przesyล‚anie miniatury..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Przesyล‚anie wideo..." @@ -13408,7 +13429,7 @@ msgstr "Uลผyj go razem ze swojฤ… nazwฤ…, aby zalogowaฤ‡ siฤ™ do innej aplikacji. msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "Wideo" msgid "Video failed to process" msgstr "Przetwarzanie wideo nie powiodล‚o siฤ™" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Kanaล‚ wideo" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Wideo od {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Gry" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Wideo jest wstrzymane" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Wideo jest odtwarzane" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Wideo nie zostaล‚o odnalezione." @@ -13653,7 +13674,7 @@ msgstr "Wideo nie zostaล‚o odnalezione." msgid "Video settings" msgstr "Ustawienia wideo" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Wideo zostaล‚o przesล‚ane" @@ -13662,17 +13683,17 @@ msgstr "Wideo zostaล‚o przesล‚ane" msgid "Video: {0}" msgstr "Wideo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Filmiki" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "Wyล›wietl zdjฤ™cie profilowe {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Wyล›wietl profil {0}" @@ -13724,13 +13745,13 @@ msgstr "Wiฤ™cej informacji moลผna znaleลบฤ‡ na blogu" msgid "View debug entry" msgstr "Wyล›wietl dziennik systemowy" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Wyล›wietl szczegรณล‚y" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Wyล›wietl caล‚y wฤ…tek" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "Wyล›wietl informacje o tych ostrzeลผeniach" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Pokaลผ wiฤ™cej" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Wyล›wietl usล‚ugฤ™ moderacji dostarczonฤ… przez @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Wyล›wietl osoby, ktรณre lubiฤ… ten kanaล‚" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Wyล›wietl filmik" @@ -13831,7 +13852,7 @@ msgstr "Wyล›wietl swoje listy moderacji" msgid "View your muted accounts" msgstr "Wyล›wietl wyciszone konta" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "Wyล›wietla caล‚e zdjฤ™cie" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Wyล›wietla wideo w trybie immersyjnym" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Mamy problemy z sieciฤ…, sprรณbuj ponownie" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "Przepraszamy, ale nie udaล‚o nam siฤ™ wczytaฤ‡ tej listy. Jeล›li problem msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Przepraszamy, ale w tej chwili nie mogliล›my wczytaฤ‡ wyciszonych przez ciebie sล‚รณw. Sprรณbuj ponownie." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Przepraszamy! Wpis, ktรณry komentujesz, zostaล‚ usuniฤ™ty." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Jak siฤ™ masz?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ups!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Utwรณrz wpis" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Skomentuj" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Nie moลผesz przesyล‚aฤ‡ filmikรณw." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Moลผesz teraz logowaฤ‡ siฤ™ przy uลผyciu nowego hasล‚a." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Moลผesz to pรณลบniej zmieniฤ‡ w ustawieniach." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Limit przesล‚anych filmikรณw zostaล‚ tymczasowo wyczerpany. Sprรณbuj ponownie pรณลบniej." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Nie utworzono jeszcze pakietu startowego!" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Moลผesz dodaฤ‡ maksymalnie 3 kanaล‚y" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Aby wygenerowaฤ‡ pakiet startowy, musisz obserwowaฤ‡ co najmniej siedem innych osรณb." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Po utworzeniu konta zaobserwujesz sugerowane osoby i kanaล‚y!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Po utworzeniu konta zaobserwujesz sugerowane osoby!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "To juลผ koniec! Znajdลบ wiฤ™cej kont do obserwowania." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Dzienny limit przesyล‚ania wideo zostaล‚ osiฤ…gniฤ™ty (zbyt duลผo danych msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Dzienny limit przesyล‚ania wideo zostaล‚ osiฤ…gniฤ™ty (zbyt duลผo plikรณw)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Nie mamy juลผ wiฤ™cej filmikรณw do oglฤ…dania. Moลผe to dobry czas na przerwฤ™?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Twoje konto" @@ -14835,11 +14861,11 @@ msgstr "Twoje konto zostaล‚o zawieszone" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Twoje konto jest jeszcze zbyt krรณtko aktywne, aby przesyล‚aฤ‡ filmiki. Sprรณbuj ponownie pรณลบniej." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Twรณj adres email jest nieprawidล‚owy." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Twรณj profil, wpisy, kanaล‚y i listy nie bฤ™dฤ… juลผ widoczne dla innych na Bluesky. Moลผesz ponownie aktywowaฤ‡ swoje konto w dowolnym momencie po zalogowaniu." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po index b9359dd52d..5a081e2362 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categoria \"{interestsDisplayName}\" (ativa)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(mensagem bloqueada oculta)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(possui conteรบdo incorporado)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(mensagem excluรญda)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(link de convite para conversa invรกlido)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(mensagem enviada antes de sua entrada)" @@ -103,14 +103,14 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# horas}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" -msgstr "" +msgstr "{0, plural, one {# rรณtulo aplicado na sua postagem} other {# rรณtulos aplicados na sua postagem}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" -msgstr "" +msgstr "{0, plural, one {# rรณtulo aplicado} other {# rรณtulos aplicados}}" #. placeholder {0}: likeCount ?? 0 #: src/screens/Post/PostLikedBy.tsx:34 @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# curtida} other {# curtidas}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membro} other {# membros}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# nova solicitaรงรฃo para entrar} other {# novas solici #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {# pessoa reagiu} other {# pessoas reagiram}} โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Conta)" @@ -251,36 +252,13 @@ msgstr "{0} adicionado ร  conversa" msgid "{0} and {1} added to chat" msgstr "{0} e {1} adicionados ร  conversa" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} seguindo" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} estรก bloqueando vocรช" @@ -324,14 +302,6 @@ msgstr "{0} saiu" msgid "{0} left the group" msgstr "{0} saiu do grupo" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reagiu com {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} e {memberCount, plural, one {mais #} other {mais #}} adicionados ร  conversa" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} verificou vocรช" msgid "{following} following" msgstr "{following} seguindo" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "Nรฃo foi possรญvel adicionar {handle}" @@ -698,7 +660,7 @@ msgstr "Nรฃo foi possรญvel adicionar {handle}" msgid "{handle} can't be messaged" msgstr "Nรฃo รฉ possรญvel enviar mensagens a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "{handle} nรฃo pode receber mensagens" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# item nรฃo lido} other {# itens nรฃo l msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contato encontrado} other {# contatos encontrados}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} se juntou ao Bluesky {timeAgoString} atrรกs" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} se juntou ao Bluesky atravรฉs de um pacote inicial {timeAgoString} atrรกs" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {# caractere restante} other {# caracteres restantes}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} respondeu" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} respondeu a {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} respondeu vocรช" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# solicitaรงรฃo} other {# solicitaรงรตes}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ solicitaรงรตes" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "hรก {type}h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} รฉ um verificador confiรกvel" @@ -842,13 +795,13 @@ msgstr "Verificaรงรตes de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -858,7 +811,7 @@ msgstr "+{computedTotal}" #: src/screens/StarterPack/Wizard/index.tsx:569 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" -msgstr "<0>{0}, <1>{1}, e {2, plural, one {# outro} other {outros #}} estรฃo inclusos no seu pacote inicial" +msgstr "<0>{0}, <1>{1} e {2, plural, one {# outro} other {outros #}} foram incluรญdos em seu pacote inicial" #. placeholder {0}: getName(items[1] /* [0] is self, skip it */) #. placeholder {1}: getName(items[2]) @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {seguindo} other {seguindo}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citaรงรฃo} other {citaรงรตes}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repostagem} other {repostagens}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, one {salvo} other {salvos}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, one {curtida} other {curtidas}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> adicionou vocรช" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Entre<1> ou <2>crie uma conta<3> <4>para procurar notรญcias, esportes, polรญtica e tudo o mais que acontece no Bluesky." @@ -971,7 +924,7 @@ msgstr "30 dias" msgid "7 days" msgstr "7 dias" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Uma coleรงรฃo de feeds populares que vocรช pode encontrar no Bluesky, incluindo Notรญcias, Booksky, Desenvolvimento de Jogos, Blacksky e Canetas Tinteiro" @@ -988,9 +941,11 @@ msgstr "Ocorreu um erro de rede. Verifique sua conexรฃo com a internet" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Um novo cรณdigo foi enviado" msgid "A new form of verification" msgstr "Uma nova forma de verificaรงรฃo" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Uma resposta a uma mensagem enviada antes de sua entrada" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Uma captura de tela do editor de postagens com um novo botรฃo ao lado do botรฃo de postagens que diz \"Rascunhos\", com um efeito de fogo de artifรญcio de arco-รญris. Abaixo, o texto no editor diz \"Ei, vocรช soube da novidade? O Bluesky possui rascunhos agora\"." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Um destinatรกrio selecionado nรฃo รฉ seguido pelo remetente." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Acesso solicitado! O dono do grupo irรก revisar sua solicitaรงรฃo." msgid "Accessibility" msgstr "Acessibilidade" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Acessibilidade" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Conta silenciada pela lista" msgid "Account options" msgstr "Opรงรตes da conta" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Conta removida do acesso rรกpido" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Contas com um ponto de verificaรงรฃo azul ondulado <0><1/> podem verificar outras contas. Esses verificadores confiรกveis sรฃo selecionados pelo Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Atividade de terceiros" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Adicionar texto alternativo (opcional)" msgid "Add another account" msgstr "Adicionar outra conta" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Adicionar outra postagem" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Adicionar outra postagem ao tรณpico" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Adicionar outro filtro de busca" @@ -1253,7 +1213,7 @@ msgstr "Adicionar rรณtulo de automaรงรฃo ร  conta" msgid "Add emoji reaction" msgstr "Adicionar reaรงรฃo de emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Adicionar filtro" @@ -1338,7 +1298,7 @@ msgstr "Adicione este feed aos seus feeds" msgid "Add to lists" msgstr "Adicionar ร s listas" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Adicionar ร s postagens salvas" @@ -1400,7 +1360,7 @@ msgstr "Adulto" msgid "Adult content" msgstr "Conteรบdo adulto" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@exemplo.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Tudo" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Todos os amigos foram seguidos!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Todos os idiomas" @@ -1491,11 +1447,6 @@ msgstr "Todos os idiomas serรฃo mostrados em seus feeds." msgid "All of these words" msgstr "Todas estas palavras" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "Todas as postagens" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Todos os feeds que vocรช salvou, em um รบnico lugar." @@ -1560,7 +1511,7 @@ msgstr "Permite acesso a mensagens diretas" msgid "Already have a code?" msgstr "Jรก tem um cรณdigo?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Jรก tem uma conta?" @@ -1614,7 +1565,7 @@ msgstr "Um e-mail foi enviado para {0}. Nele possui um cรณdigo de confirmaรงรฃo msgid "An error has occurred" msgstr "Ocorreu um erro" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Ocorreu um erro" @@ -1631,7 +1582,7 @@ msgstr "Ocorreu um erro ao obter as contas sugeridas." msgid "An error occurred while fetching the feed." msgstr "Ocorreu um erro ao recuperar o feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Ocorreu um erro ao gerar seu pacote inicial. Tentar novamente?" @@ -1640,11 +1591,11 @@ msgstr "Ocorreu um erro ao gerar seu pacote inicial. Tentar novamente?" msgid "An error occurred while hiding suggestion. {0}" msgstr "Ocorreu um erro ao ocultar a sugestรฃo. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Ocorreu um erro ao carregar o vรญdeo. Tente novamente mais tarde." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Ocorreu um erro ao carregar o vรญdeo. Tente novamente." @@ -1684,7 +1635,7 @@ msgstr "Ocorreu um erro. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Uma ilustraรงรฃo retratando avatares de usuรกrio fluindo de um livro de contatos para o aplicativo Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Uma ilustraรงรฃo de vรกrias postagens do Bluesky junto dos รญcones de repostar, curtir e comentar" @@ -1705,17 +1656,15 @@ msgstr "Um link de convite permite que pessoas entrem nesta conversa em grupo se msgid "An issue not included in these options" msgstr "Outro problema" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Ocorreu um problema ao criar a conversa em grupo. Por favor, tente novamente." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Ocorreu um problema ao iniciar a conversa. Por favor, tente novamente." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Ocorreu um problema ao tentar abrir a conversa" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "Qualquer data" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Todos" @@ -1802,7 +1749,7 @@ msgstr "Qualquer um que me segue" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Qualquer pessoa que o tenha nรฃo poderรก mais entrar ou solicitar entrada. Vocรช sempre pode criar um novo." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1829,7 +1776,7 @@ msgstr "A senha do app deve ser รบnica" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" -msgstr "" +msgstr "Senhas de app sรณ podem conter letras, nรบmeros, espaรงos, hรญfen e underline" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 msgid "App password names must be at least 4 characters long" @@ -1840,7 +1787,7 @@ msgstr "A senha do app deve conter no mรญnimo 4 caracteres" msgid "App passwords" msgstr "Senhas de aplicativo" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Senhas de Aplicativo" @@ -1858,7 +1805,7 @@ msgstr "Contestar rรณtulo \"{0}\"" #: src/components/moderation/ModerationDetailsDialog.tsx:159 msgid "Appeal label" -msgstr "" +msgstr "Contestar rรณtulo" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 msgid "Appeal livestream suspension" @@ -1889,10 +1836,10 @@ msgstr "Recorrer desta decisรฃo" #: src/components/moderation/ModerationDetailsDialog.tsx:219 msgid "Appeal this label" -msgstr "" +msgstr "Contestar este rรณtulo" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Aplicar Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arquivado desde {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Postagem arquivada" @@ -1980,7 +1927,7 @@ msgstr "Deseja mesmo remover isso de seus feeds?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Tem certeza de que deseja cancelar sua solicitaรงรฃo para entrar em {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Tem certeza de que deseja descartar esta postagem?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Conta automatizada" @@ -2033,7 +1985,7 @@ msgstr "Automรกtico" msgid "Automation label" msgstr "Rรณtulo de automaรงรฃo" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Rรณtulo de Automaรงรฃo" @@ -2050,12 +2002,16 @@ msgstr "Reproduzir vรญdeos e GIFs automaticamente" msgid "Available" msgstr "Disponรญvel" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Para criar ou responder uma postagem, vocรช deve primeiro verificar o seu email." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Para criar um pacote inicial, vocรช precisa verificar seu email." @@ -2135,10 +2091,10 @@ msgstr "Para que possa receber notificaรงรตes das postagens de {name}, vocรช dev #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2116,28 @@ msgstr "Comece o processo de verificaรงรฃo de idade preenchendo os campos abaixo msgid "Beta Feature" msgstr "Recurso em Teste" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" +msgstr "Recursos em teste" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" msgstr "" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Recursos em teste podem ser instรกveis. Algumas alteraรงรตes podem exigir recarregar o aplicativo." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "Recursos em teste podem ser instรกveis. Algumas alteraรงรตes podem exigir reiniciar o aplicativo." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2147,9 @@ msgstr "Data de nascimento" msgid "Birthday" msgstr "Aniversรกrio" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Contas bloqueadas" @@ -2282,7 +2244,7 @@ msgstr "Contas bloqueadas nรฃo podem te responder, mencionar ou interagir." msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Contas bloqueadas nรฃo podem responder aos seus tรณpicos, te mencionar, ou interagir com vocรช. Vocรช nรฃo verรก seus conteรบdos e eles nรฃo conseguirรฃo ver os seus." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Bloquear o rotulador nรฃo impede que ele adicione rรณtulos a sua conta." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "O Bluesky nรฃo pode confirmar que a data mostrada รฉ legรญtima." @@ -2330,7 +2293,7 @@ msgstr "O Bluesky รฉ uma rede aberta onde vocรช pode escolher seu fornecedor de msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "O Bluesky รฉ uma rede aberta em que vocรช pode escolher seu prรณprio provedor. Se vocรช รฉ novo aqui, recomendamos que continue usando a opรงรฃo Bluesky Social padrรฃo." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "O Bluesky รฉ bem melhor com amigos!" @@ -2358,7 +2321,7 @@ msgstr "Termos de Serviรงo do Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "O Bluesky armazena seus contatos como dados codificados. Remover seus contatos irรก excluir esses dados imediatamente." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "O Bluesky selecionarรก um grupo de contas recomendadas da sua rede." @@ -2403,20 +2366,20 @@ msgstr "Reรบna atรฉ 50 amigos em uma sรณ conversa." msgid "Browse custom feeds" msgstr "Navegar por feeds personalizados" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Pesquisar mais contas" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Navegue por mais feeds na pรกgina Explorar" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Navegar por mais sugestรตes" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Navegue por mais sugestรตes na pรกgina Explorar" @@ -2425,24 +2388,25 @@ msgstr "Navegue por mais sugestรตes na pรกgina Explorar" msgid "Browse other feeds" msgstr "Navegar por mais feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Navegar por mais postagens sobre {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Navegar por mais postagens marcadas com {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Buscar pacote inicial {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Navegar pelo assunto {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Navegar tรณpico {displayName}" @@ -2461,8 +2425,8 @@ msgstr "Botรฃo para voltar ร  linha do tempo inicial" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Por {0}" @@ -2473,9 +2437,9 @@ msgstr "por @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Por <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Ao criar uma conta vocรช concorda com os <0>Termos de Serviรงo e a < msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Ao criar uma conta vocรช concorda com os <0>Termos de Serviรงo." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Por vocรช" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Cรขmera" @@ -2534,7 +2498,7 @@ msgstr "Acesso ร  cรขmera necessรกrio" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Acesso ร  cรขmera necessรกrio" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,13 +2549,13 @@ msgstr "Cancelar reativaรงรฃo e desconectar" msgid "Cancel reply" msgstr "Cancelar resposta" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancelar pesquisa" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 msgid "Cancels signing in so you can check your username" -msgstr "" +msgstr "Cancela o login para poder verificar seu nome de usuรกrio" #: src/components/PostControls/index.tsx:108 #: src/components/PostControls/index.tsx:138 @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Alteraรงรตes no pacote inicial nรฃo serรฃo aplicadas ร  lista apรณs a criaรงรฃo. A lista serรก uma cรณpia independente." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Conversa silenciada" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Conversa nรฃo encontrada." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Opรงรตes de conversa" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Donos de conversas nรฃo podem sair da conversa em grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "O destinatรกrio da conversa nรฃo รฉ seguido pelo remetente." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Caixa de entrada de pedidos de conversa" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Pedidos de conversa" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Configuraรงรตes de conversa" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Conversa dessilenciada" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Conversas" @@ -2810,7 +2775,7 @@ msgstr "Acesse <0>{currentEmail} e procure um email com o cรณdigo de confirm #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Volte mais tarde!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2802,7 @@ msgstr "Selecionar mรฉtodo de verificaรงรฃo de domรญnio" msgid "Choose Feeds" msgstr "Escolher feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Escolha para mim" @@ -2854,7 +2819,7 @@ msgstr "Escolher pessoas" msgid "Choose post languages" msgstr "Escolher idiomas da postagem" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Selecionar esta cor como sua foto de perfil" @@ -2879,7 +2844,7 @@ msgstr "Escolha sua prรณpria linha do tempo! Feeds feitos pela comunidade ajudam msgid "Choose your password" msgstr "Escolha sua senha" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Seu nome de usuรกrio" @@ -2966,7 +2931,7 @@ msgstr "Clique aqui para ver o link de convite para esta conversa em grupo" msgid "Click to open tag menu for {0}" msgstr "Clique para abrir o menu de tag para {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Clique para tentar enviar novamente a mensagem" @@ -3003,7 +2968,7 @@ msgstr "Clique para tentar enviar novamente a mensagem" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Clique para tentar enviar novamente a mensagem" msgid "Close" msgstr "Fechar" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Fechar janela ativa" @@ -3047,7 +3012,7 @@ msgstr "Fechar banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Fechar visualizador de imagens" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Fechar menu" @@ -3090,7 +3055,7 @@ msgstr "Fechar o banner de solicitaรงรตes recebidas" msgid "Close this dialog" msgstr "Fechar esta janela" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Fechar janela de boas-vindas" @@ -3098,7 +3063,7 @@ msgstr "Fechar janela de boas-vindas" msgid "Closes password update alert" msgstr "Fecha o alerta de alteraรงรฃo de senha" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Fecha a janela de nova postagem e descarta o rascunho" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Cor" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Esquema de cor" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Quadrinhos" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Diretrizes da Comunidade" @@ -3141,7 +3106,7 @@ msgstr "Diretrizes da Comunidade" msgid "Complete onboarding and start using your account" msgstr "Complete e comece a utilizar sua conta" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Complete o captcha" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Escrever nova postagem" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Escreva postagens de atรฉ {0, plural, other {# caracteres}}" @@ -3160,11 +3125,11 @@ msgstr "Escreva postagens de atรฉ {0, plural, other {# caracteres}}" msgid "Compose reply" msgstr "Escrever resposta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Comprimindo GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Comprimindo vรญdeo..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Contatar nossa equipe de apoio" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Entrar em contato com o suporte" @@ -3253,7 +3218,7 @@ msgstr "Conteรบdo e mรญdia" msgid "Content and media" msgstr "Conteรบdo e mรญdia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Conteรบdo e mรญdia" @@ -3265,10 +3230,6 @@ msgstr "Conteรบdo bloqueado" msgid "Content filters" msgstr "Filtros de conteรบdo" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Conteรบdo da rede que acreditamos que talvez vocรช curta." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Idiomas do conteรบdo" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Conteรบdo promovendo ou representando auto-mutilaรงรฃo" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Aviso de conteรบdo" msgid "Content warnings" msgstr "Avisos de conteรบdo" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fundo do menu, clique para fechรก-lo." @@ -3302,7 +3263,7 @@ msgstr "Fundo do menu, clique para fechรก-lo." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3315,7 +3276,7 @@ msgstr "Continuar como {0} (jรก conectado)" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 msgid "Continue signing in" -msgstr "" +msgstr "Continuar registrando" #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 msgid "Continue thread" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Continuar tรณpico..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Prosseguir para o nome do grupo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "Conversa nรฃo encontrada." msgid "Copied build version to clipboard" msgstr "Nรบmero de versรฃo do app copiada" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Link copiado para รกrea de transferรชncia" @@ -3376,7 +3337,7 @@ msgstr "Link copiado para รกrea de transferรชncia" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Copiar senha do app" msgid "Copy at:// URI" msgstr "Copiar URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copiar DID do autor" @@ -3449,10 +3410,10 @@ msgstr "Copiar link" msgid "Copy link to list" msgstr "Copiar link da lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar link da postagem" @@ -3470,8 +3431,8 @@ msgstr "Copiar link para o pacote inicial" msgid "Copy message text" msgstr "Copiar texto da mensagem" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copiar URI at:// da postagem" @@ -3490,7 +3451,7 @@ msgstr "Copiar valor do registro TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Polรญtica de direitos autorais" @@ -3540,11 +3501,11 @@ msgstr "Nรฃo foi possรญvel seguir todas as correspondรชncias. {0}" msgid "Could not leave chat" msgstr "Nรฃo foi possรญvel sair desta conversa" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Nรฃo foi possรญvel sair da conversa." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Nรฃo foi possรญvel carregar o feed" @@ -3562,7 +3523,7 @@ msgstr "Nรฃo foi possรญvel carregar o perfil" msgid "Could not mute chat" msgstr "Nรฃo foi possรญvel silenciar esta conversa" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Nรฃo foi possรญvel remover o membro." @@ -3606,8 +3567,8 @@ msgstr "vacas porcos" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Criar" @@ -3624,26 +3585,26 @@ msgstr "Criar uma lista a partir deste pacote inicial" msgid "Create a QR code for a starter pack" msgstr "Criar um QR code para o pacote inicial" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Criar um pacote inicial" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Criar um pacote inicial" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Crie um pacote inicial para mim" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Criar conta" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Criar uma conta" @@ -3666,15 +3627,15 @@ msgstr "Criar uma conta" msgid "Create an account without using this starter pack" msgstr "Criar uma conta sem usar este pacote inicial" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Adicionar uma foto de perfil" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Criar outro" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Criar conversa em grupo" @@ -3741,9 +3702,9 @@ msgstr "Cultura" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Recursos em teste atuais" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Conversa atual" @@ -3770,8 +3731,8 @@ msgstr "Substรขncias perigosas ou abuso de drogas" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Escuro" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Escuro" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema escuro" @@ -3814,7 +3775,7 @@ msgstr "Recusar esta sugestรฃo de idioma" msgid "Deepfake adult content" msgstr "Conteรบdo adulto com deepfake" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Padrรฃo" @@ -3894,7 +3855,7 @@ msgstr "Excluir minha conta" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Excluir postagem" @@ -3988,7 +3949,7 @@ msgstr "Ajuste quem pode interagir com esta postagem" msgid "Dialog: Set search filters" msgstr "Diรกlogo: Definir filtros de busca" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Menos escuro" @@ -4002,7 +3963,7 @@ msgstr "Desativar" msgid "Disable 2FA" msgstr "Desabilitar 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Desativar legendas" @@ -4045,9 +4006,9 @@ msgstr "Desativado" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "Descartar alteraรงรตes?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Descartar rascunho?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Descartar postagem?" @@ -4079,6 +4040,10 @@ msgstr "Desconectar Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Impedir que apps exibam minha conta para usuรกrios nรฃo registrados" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Impedir que apps exibam minha conta para usuรกrios nรฃo registrados" msgid "Discover new custom feeds" msgstr "Descobrir novos feeds personalizados" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Descobrir novos feeds" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descobrir novos feeds" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Dispensar" @@ -4103,28 +4064,28 @@ msgstr "Dispensar" msgid "Dismiss banner" msgstr "Dispensar banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Dispensar erro" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Ignorar guia de primeiros passos" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Dispensar interesses" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Dispensar banner de evento ao vivo" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Dispensar esta seรงรฃo" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Dispensar esta sugestรฃo" @@ -4142,7 +4103,7 @@ msgstr "Exibir รญcones maiores de texto alternativo" msgid "Display name" msgstr "Nome de exibiรงรฃo" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Largue os trolls e o clickbait. Encontre pessoas reais e conversas que importam para vocรช." @@ -4205,8 +4166,8 @@ msgstr "Nรฃo se preocupe! Todas as mensagens e configuraรงรตes existentes estรฃo #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Nรฃo se preocupe! Todas as mensagens e configuraรงรตes existentes estรฃo msgid "Done" msgstr "Concluรญdo" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Toque duas vezes ou pressione longamente a mensagem para adicionar uma reaรงรฃo" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Toque duas vezes para fechar diรกlogo" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Toque duas vezes para curtir" @@ -4328,6 +4289,7 @@ msgstr "Transtornos alimentares" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Editar imagem" msgid "Edit interaction settings" msgstr "Editar opรงรตes de interaรงรฃo" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Editar interesses" @@ -4397,7 +4359,7 @@ msgstr "Editar status ao vivo" msgid "Edit moderation list" msgstr "Editar lista de moderaรงรฃo" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar meus feeds" @@ -4406,6 +4368,11 @@ msgstr "Editar meus feeds" msgid "Edit name" msgstr "Editar nome" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar Pessoas" @@ -4444,7 +4411,7 @@ msgstr "Editar lista de usuรกrios" msgid "Edit who can reply" msgstr "Editar quem pode responder" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Editar pacote inicial" @@ -4500,8 +4467,8 @@ msgstr "Cรณdigo HTML para incorporaรงรฃo" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incorporar postagem" @@ -4509,7 +4476,7 @@ msgstr "Incorporar postagem" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incorpore esta postagem no seu site. ร‰ sรณ copiar o trecho seguinte e colar no cรณdigo HTML do seu site." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Reprodutor interno de vรญdeo" @@ -4531,9 +4498,9 @@ msgstr "Habilitar conteรบdo adulto" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Ativar recursos em teste" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Ativar legendas" @@ -4550,12 +4517,13 @@ msgstr "Ativar mรญdia externa" msgid "Enable media players for" msgstr "Ativar reprodutores de mรญdia para" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Ative as notificaรงรตes de uma conta ao visitar seu perfil e pressionar no <0>รญcone de sino <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Ativar notificaรงรตes no dispositivo" @@ -4581,7 +4549,7 @@ msgstr "Ativar vรญdeos em alta no feed Descobrir" msgid "Enabled" msgstr "Ativado" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fim do feed" @@ -4608,7 +4576,7 @@ msgstr "Digite uma palavra ou tag" msgid "Enter code" msgstr "Inserir cรณdigo" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Entrar em tela cheia" @@ -4650,11 +4618,11 @@ msgstr "Insira seu nome de usuรกrio e senha" msgid "Enters full screen" msgstr "Entra em tela cheia" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Entretenimento" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Erro" @@ -4684,7 +4652,7 @@ msgstr "Nรฃo foi possรญvel salvar o arquivo" msgid "Error receiving captcha response." msgstr "Nรฃo foi possรญvel processar o captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Erro: {error}" @@ -4696,8 +4664,8 @@ msgstr "Todos podem responder" msgid "Everybody can reply to this post." msgstr "Todos podem responder esta postagem." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Todos" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Todos" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Demais itens" @@ -4738,7 +4706,7 @@ msgstr "Excluir usuรกrio que vocรช segue" msgid "Excludes users you follow" msgstr "Exclui usuรกrios que vocรช segue" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Sair da tela cheia" @@ -4755,11 +4723,11 @@ msgstr "Expandir lista de usuรกrio" msgid "Expand or collapse the full post you are replying to" msgstr "Expandir ou esconder a postagem que vocรช estรก respondendo" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Expandir texto da postagem" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Expande ou esconde o texto da postagem" @@ -4802,15 +4770,15 @@ msgstr "Mรญdia explรญcita ou pertubadora" msgid "Explicit sexual images." msgstr "Imagens sexualmente explรญcitas." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorar" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Explorar o aplicativo" @@ -4844,7 +4812,7 @@ msgstr "Mรญdia externa" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Mรญdias externas podem permitir que sites coletem informaรงรตes sobre vocรช e seu dispositivo. Nenhuma informaรงรฃo รฉ enviada ou solicitada atรฉ que vocรช pressione o botรฃo de \"play\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferรชncias de Mรญdia Externa" @@ -4886,7 +4854,7 @@ msgstr "Nรฃo foi possรญvel alterar o nome de usuรกrio. Por favor tente novamente #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Falha ao copiar link" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Falha ao sair da conversa em grupo" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Falha ao carregar conversas" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Nรฃo foi possรญvel carregar os feeds" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Falha ao carregar preferรชncias de feeds" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Falha ao carregar configuraรงรตes de notificaรงรฃo." @@ -5012,14 +4981,14 @@ msgstr "Falha ao carregar preferรชncias." msgid "Failed to load profiles" msgstr "Falha ao carregar perfis" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Falha ao carregar feeds sugeridos" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Falha ao carregar sugestรตes a seguir" @@ -5027,12 +4996,12 @@ msgstr "Falha ao carregar sugestรตes a seguir" msgid "Failed to lock group chat" msgstr "Falha ao trancar conversa em grupo" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Falhou ao marcar todas as conversas como lidas" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "Falha ao cancelar sua solicitaรงรฃo. Por favor, tente novamente." msgid "Failed to resolve location. Please try again." msgstr "Falha ao determinar localizaรงรฃo. Por favor, tente novamente." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Nรฃo foi possรญvel salvar o rascunho" @@ -5191,7 +5160,7 @@ msgstr "Conta falsa ou bot" msgid "False information about elections" msgstr "Informaรงรตes falsas sobre eleiรงรตes" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5181,7 @@ msgstr "Criador do feed" msgid "Feed identifier" msgstr "Identificador do feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu do feed" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Comentรกrios enviados para o operador do feed" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds atualizados!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds que talvez vocรช goste." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Buscar atualizaรงรฃo" @@ -5273,34 +5238,22 @@ msgstr "Buscar atualizaรงรฃo" msgid "File saved successfully!" msgstr "Arquivo salvo com sucesso!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Filtrar por autor" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtrar por autor (atual: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Filtrar por mรญdia" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Filtrar por mรญdia (atual: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtrar dos feeds" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtrar pesquisa por idioma" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrar pesquisa por idioma (atual: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "Filtrar esta busca por {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtre quem pode optar por receber notificaรงรตes da sua atividade" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtre de quem vocรช receberรก notificaรงรตes" @@ -5352,8 +5305,8 @@ msgstr "Encontre contas para seguir" msgid "Find and invite friends" msgstr "Encontrar e convidar amigos" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Encontrar Contatos" @@ -5387,7 +5340,7 @@ msgstr "Encontrar seus amigos" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Encontre seus amigos no Bluesky verificando o seu nรบmero de telefone e combinando com os seus contatos. Nรณs protegemos suas informaรงรตes e vocรช controla o que acontece a seguir. <0>Saiba mais" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Encontre a sua turma" @@ -5429,7 +5382,7 @@ msgstr "Focar o campo de busca" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Seguir {0}" msgid "Follow {displayName}" msgstr "Seguir {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Seguir {handle}" @@ -5453,11 +5406,11 @@ msgstr "Seguir {handle}" msgid "Follow 10 accounts" msgstr "Seguir 10 contas" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Siga 10 pessoas para comeรงar" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Seguir 7 contas" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Seguidores podem entrar" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que vocรช conhece" @@ -5544,7 +5497,7 @@ msgstr "Seguidores que vocรช conhece" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Seguindo {0}" msgid "Following {displayName}" msgstr "Seguindo {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Seguindo {handle}" @@ -5578,21 +5531,21 @@ msgstr "Seguindo {handle}" msgid "Following feed preferences" msgstr "Preferรชncias do feed principal" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferรชncias do feed principal" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Segue vocรช" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Fonte" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tamanho da fonte" @@ -5612,13 +5565,13 @@ msgstr "Por motivos de seguranรงa, precisamos enviar um cรณdigo de confirmaรงรฃo msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por motivos de seguranรงa, vocรช nรฃo poderรก ver esta tela novamente. Se vocรช perder esta senha de aplicativo, precisarรก criar uma nova." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Para a melhor experiรชncia, nรณs recomendamos usar a fonte padrรฃo." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Para Vocรช" @@ -5628,7 +5581,7 @@ msgstr "Para Vocรช" msgid "Forever" msgstr "Para sempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Esqueรงa o ruรญdo" @@ -5647,11 +5600,11 @@ msgstr "Esqueceu a senha?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Quatro balรตes de mensagem representando uma conversa em grupo. Primeira mensagem: \"Vocรช soube a novidade? O Bluesky agora tem conversas em grupo!\" Segunda mensagem: \"nossa, sem chance\" Terceira mensagem: \"Uau, 50 pessoas em uma รบnica conversa!\" Quarta mensagem: \"Vocรช tambรฉm pode enviar links de convite!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Libere o seu feed" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De" @@ -5674,7 +5627,7 @@ msgstr "Por <0/>" msgid "From these people" msgstr "Dessas pessoas" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Gere um pacote inicial" @@ -5712,45 +5665,45 @@ msgstr "Germ DM reconectado" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features weโ€™re testing." -msgstr "" +msgstr "Obtenha acesso antecipado a recursos experimentais que estamos testando." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Obter ajuda" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Receba notificaรงรตes sobre adesรตes a pacotes iniciais, verificaรงรตes e outras atividades." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Seja notificado quando pessoas comeรงam a te seguir." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Seja notificado quando pessoas curtem suas postagens." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Receba notificaรงรตes quando pessoas curtirem suas repostagens." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Seja notificado quando pessoas te mencionarem." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Seja notificado quando pessoas citarem suas postagens." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Seja notificado quando pessoas responderem suas postagens." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Seja notificado quando pessoas repostam suas postagens." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Receba notificaรงรตes quando pessoas repostarem suas repostagens." @@ -5762,15 +5715,15 @@ msgstr "Receba notificaรงรตes quando as pessoas enviarem solicitaรงรตes de conve msgid "Get notifications when people send you messages." msgstr "Receba notificaรงรตes quando as pessoas enviarem mensagens para vocรช." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Receba notificaรงรตes quando houver atividade em postagens que vocรช estรก acompanhando." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Seja notificado sobre novas postagens" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Seja notificado de novas postagens de {name}" @@ -5799,11 +5752,11 @@ msgstr "Vamos comeรงar" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF enviado" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Dรช uma cara nova pro seu perfil" @@ -5813,20 +5766,20 @@ msgstr "Glorificaรงรฃo da violรชncia" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,9 +5829,9 @@ msgid "Go live for" msgstr "Entrar ao vivo por" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" -msgstr "" +msgstr "Ir para o perfil de {0}" #: src/view/com/notifications/NotificationFeedItem.tsx:256 msgid "Go to {firstAuthorName}'s profile" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Nome da conversa em grupo atualizado" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Configuraรงรตes da conversa em grupo" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Conversas em grupo podem ter no mรกximo {0, plural, other {# pessoas}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "O grupo estรก bloqueado" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Nome do grupo" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "O nome do grupo รฉ muito longo. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {O nรบmero mรกximo de caracteres รฉ #.}}" @@ -6077,7 +6031,7 @@ msgstr "Atividades nocivas ou de alto risco" msgid "Harming or endangering minors" msgstr "Prejudicar ou colocar menores em perigo" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6052,7 @@ msgstr "Tem um cรณdigo? <0>Clique aqui." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Sua localizaรงรฃo estรก errada? <0>Toque aqui para atualizar sua localizaรงรฃo com GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Precisa de ajuda?" @@ -6114,7 +6068,7 @@ msgstr "Mantido pelo Bluesky por 7 dias para evitar abusos, e depois excluรญdo" msgid "Help" msgstr "Ajuda" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "As pessoas nรฃo vรฃo achar que vocรช รฉ um bot se vocรช criar um avatar ou fazer upload de uma imagem." @@ -6135,12 +6089,12 @@ msgstr "Olรก!" msgid "Hi there!" msgstr "Olรก!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Oculto" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Oculto por suas opรงรตes de moderaรงรฃo." @@ -6148,9 +6102,10 @@ msgstr "Oculto por suas opรงรตes de moderaรงรฃo." msgid "Hidden list" msgstr "Lista oculta" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Lista oculta" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Ocultar" @@ -6198,7 +6154,7 @@ msgstr "Ocultar resposta para todos" msgid "Hide reply for me" msgstr "Ocultar resposta para mim" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Ocultar este cartรฃo" @@ -6218,16 +6174,18 @@ msgstr "Ocultar esta resposta?" msgid "Hide translation" msgstr "Ocultar traduรงรฃo" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Ocultar assuntos em alta" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Ocultar assuntos em alta?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Ocultar vรญdeos em alta?" @@ -6240,7 +6198,7 @@ msgstr "Ocultar lista de usuรกrios" msgid "Hide verification badges" msgstr "Ocultar insรญgnias de verificaรงรฃo" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Oculta o conteรบdo" @@ -6293,8 +6251,8 @@ msgstr "Hmmmm, nรฃo foi possรญvel carregar este serviรงo de moderaรงรฃo." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Espere! Estamos gradualmente dando acesso ao vรญdeo, e vocรช ainda estรก esperando na fila. Volte em breve!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "Provedor de hospedagem: {0}" msgid "Hosting provider: Bluesky" msgstr "Provedor de hospedagem: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Em alta" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Como funciona:" @@ -6409,6 +6363,7 @@ msgstr "Se vocรช atualizar seu endereรงo de email, o 2FA via email serรก desativ msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se vocรช quiser alterar sua senha, enviaremos um cรณdigo para verificar sua identidade." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Se vocรช deseja restringir quem pode receber notificaรงรตes da atividade da sua conta, vocรช pode alterar isto em <0>Configuraรงรตes โ†’ Privacidade e Seguranรงa." @@ -6548,7 +6503,7 @@ msgstr "No app, no dispositivo, todos" msgid "In-app, push, people you follow" msgstr "No app, no dispositivo, pessoas que vocรช segue" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Caixa de entrada vazia" @@ -6564,7 +6519,6 @@ msgstr "Caixa de entrada vazia!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "Incluir" @@ -6573,7 +6527,7 @@ msgstr "Incluir" msgid "Include or exclude matching posts (currently: {0})" msgstr "Incluir ou excluir postagens correspondentes (atual: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Incluir postagens e/ou respostas (atual: {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "Incluir postagens feitas desde esta data" msgid "Include posts made until this date" msgstr "Incluir postagens feitas atรฉ esta data" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Incluir estes resultados" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Credenciais incorretas" @@ -6683,7 +6633,7 @@ msgstr "Convidar {name} para se juntar ao Bluesky" msgid "Invite code" msgstr "Convite" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Convite invรกlido. Verifique se vocรช o inseriu corretamente e tente novamente." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "ร‰ sรณ vocรช por enquanto! Adicione mais pessoas ao seu pacote inicial pesquisando acima." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID da requisiรงรฃo: {0}" @@ -6816,8 +6766,8 @@ msgstr "Participar da conversa" msgid "Journalism" msgstr "Jornalismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continuar editando" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "Pรกgina web do KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Rotulado por {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Rotulado pelo autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Rรณtulos" @@ -6850,9 +6800,9 @@ msgstr "Rรณtulos adicionados" #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "Labels applied to this post" -msgstr "" +msgstr "Rรณtulos aplicados nesta postagem" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Rรณtulos sรฃo identificaรงรตes aplicadas sobre perfis e conteรบdos. Eles sรฃo utilizados para esconder, avisar e categorizar o conteรบdo da rede." @@ -6864,7 +6814,7 @@ msgstr "Rรณtulos sobre sua conta" msgid "Language" msgstr "Idioma" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Configuraรงรตes de Idiomas" @@ -6874,7 +6824,7 @@ msgstr "Configuraรงรตes de Idiomas" msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Maior" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Iniciado pela รบltima vez agora mesmo" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Mais recentes" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Saiba mais (em inglรชs)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Saiba Mais" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Saiba mais sobre <0>como usar a busca avanรงada." @@ -6937,8 +6887,8 @@ msgstr "Saiba mais sobre a importaรงรฃo de contatos" msgid "Learn more about self hosting your PDS." msgstr "Saiba mais sobre a auto-hospedagem do seu Servidor de Dados Pessoais." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Saber mais sobre o aviso colocado no conteรบdo" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Saiba mais sobre essas mudanรงas e como compartilhar suas ideias conosco lendo nossa postagem no blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Saiba mais sobre este aviso" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Saiba mais nas suas <0>configuraรงรตes da conta." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Saiba mais." @@ -6993,8 +6943,8 @@ msgstr "Sair" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Saindo do Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Sair desta conversa irรก bloqueรก-la permanentemente e vocรช nรฃo poderรก entrar novamente." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Vocรช saiu da conversa em grupo." @@ -7042,7 +6992,7 @@ msgstr "Vocรช saiu da conversa em grupo." msgid "left to go." msgstr "na sua frente." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Deixe-me escolher" @@ -7057,7 +7007,7 @@ msgstr "Vamos lรก!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Claro" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Curtir" @@ -7076,7 +7026,7 @@ msgstr "Curtir" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Curtidas ({0, plural, one {# curtida} other {# curtidas}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Curtir 10 postagens" @@ -7085,7 +7035,7 @@ msgstr "Curtir 10 postagens" msgid "Like 10 posts to train the Discover feed" msgstr "Curta 10 postagens para treinar o feed de Descobertas" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Curtir este feed" @@ -7093,8 +7043,8 @@ msgstr "Curtir este feed" msgid "Like this labeler" msgstr "Curtir este rotulador" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Curtido por" @@ -7111,27 +7061,45 @@ msgstr "Curtido Por" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Curtido por {0, plural, one {# usuรกrio} other {# usuรกrios}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Curtido por {likeCount, plural, one {# usuรกrio} other {# usuรกrios}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Curtidas" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Curtidas das suas repostagens" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Curtidas nesta postagem" @@ -7144,7 +7112,7 @@ msgstr "Linear" msgid "Link copied to clipboard" msgstr "Link copiado para a รกrea de transferรชncia" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista dessilenciada" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "AO VIVO" msgid "Live event happening now: {0}" msgstr "Evento ao vivo acontecendo agora: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Evento ao vivo ocultado" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Ocultaรงรฃo de evento ao vivo removida" @@ -7279,12 +7247,12 @@ msgstr "O recurso Ao Vivo estรก em fase de testes" msgid "Live link" msgstr "Link ao vivo" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Carregar mais" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Carregar mais sugestรตes de feeds" @@ -7292,8 +7260,8 @@ msgstr "Carregar mais sugestรตes de feeds" msgid "Load new notifications" msgstr "Carregar novas notificaรงรตes" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Trancar esta conversa em grupo" msgid "Locked" msgstr "Trancado" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Registros" @@ -7387,7 +7355,7 @@ msgstr "GIFs amorosos" msgid "Make adjustments to email settings for your account" msgstr "Faรงa ajustes nas configuraรงรตes de email para sua conta" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Faรงa um para mim" @@ -7418,15 +7386,15 @@ msgstr "Manual" msgid "Mark all as read" msgstr "Marcar todas como lidas" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marcar todas as conversas como lidas" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,23 +7409,27 @@ msgstr "Marcar como lida" msgid "Marked all as read" msgstr "Todas foram marcadas como lidas" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Todas as conversas foram marcadas como lidas" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" -msgstr "" +msgstr "Todos os pedidos foram marcados como lidos" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Talvez mais tarde" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Mรญdia" @@ -7475,7 +7447,7 @@ msgstr "Mรญdia armazenada em outro dispositivo" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Mรญdia que pode ser perturbadora ou inapropriada para algumas pessoas." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Membro removido da conversa em grupo." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "usuรกrios mencionados" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menรงรตes" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mensagem excluรญda" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Falha ao enviar mensagem." @@ -7563,15 +7535,15 @@ msgstr "A mensagem รฉ muito longa ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Opรงรตes de mensagem" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mensagens" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Mensagens dessa pessoa sรฃo ocultas enquanto ela estรก bloqueando vocรช." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Mensagens dessa pessoa sรฃo ocultas enquanto ela estรก bloqueando vocรช." @@ -7592,7 +7564,7 @@ msgstr "Enganoso" msgid "Missing media" msgstr "Mรญdia ausente" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderaรงรฃo" @@ -7636,7 +7608,7 @@ msgstr "Lista de moderaรงรฃo atualizada" msgid "Moderation lists" msgstr "Listas de moderaรงรฃo" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de Moderaรงรฃo" @@ -7645,7 +7617,7 @@ msgstr "Listas de Moderaรงรฃo" msgid "moderation settings" msgstr "configuraรงรตes de Moderaรงรฃo" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderaรงรฃo" @@ -7786,7 +7758,7 @@ msgstr "Silenciado" msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -7867,7 +7839,6 @@ msgstr "Precisa relatar uma violaรงรฃo de direitos autorais, uma solicitaรงรฃo l msgid "Nevermind, create a handle for me" msgstr "Deixa pra lรก, crie um nome de usuรกrio pra mim" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Novo" @@ -7893,11 +7864,11 @@ msgstr "{postsCount, plural, one {Nova postagem} other {Novas postagens}} de {fi #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nova conversa" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Novo Recurso" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Novos seguidores" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nova conversa em grupo" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nova conversa em grupo" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nova conversa em grupo com:" @@ -7966,13 +7937,13 @@ msgstr "Nova lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Novas solicitaรงรตes de mensagem" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Novas mensagens" @@ -7982,12 +7953,12 @@ msgstr "Novas mensagens" msgid "New password" msgstr "Nova senha" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Postar" @@ -8011,7 +7982,7 @@ msgstr "Novo pacote inicial" #: src/screens/Login/LoginForm.tsx:569 msgid "New to Bluesky? <0>Sign up" -msgstr "" +msgstr "Chegando agora no Bluesky? <0>Cadastre-se" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Respostas mais recentes primeiro" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Notรญcias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Prรณxima imagem" msgid "Night" msgstr "Noite" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Sem anรบncios, sem rastreamento invasivo, sem armadilhas de engajamento. O Bluesky respeita seu tempo e atenรงรฃo." @@ -8065,9 +8036,14 @@ msgstr "Sem anรบncios, sem rastreamento invasivo, sem armadilhas de engajamento. msgid "No app passwords yet" msgstr "Sem senhas de aplicativo no momento" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "Nenhum recurso em teste no momento." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8074,7 @@ msgstr "Sem expiraรงรฃo definida" msgid "No feeds found. Try searching for something else." msgstr "Nenhum feed encontrado. Tente pesquisar por outra coisa." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Ainda nรฃo hรก seguidores" @@ -8116,9 +8092,15 @@ msgstr "Sem GIFs para mostrar agora. Tente novamente mais tarde." msgid "No image" msgstr "Sem imagem" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Sem curtidas ainda" @@ -8135,7 +8117,12 @@ msgstr "Sem listas" msgid "No longer following {0}" msgstr "Vocรช nรฃo estรก mais seguindo {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Ainda nรฃo hรก mรญdia" @@ -8143,7 +8130,7 @@ msgstr "Ainda nรฃo hรก mรญdia" msgid "No messages yet" msgstr "Nenhuma mensagem ainda" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Chega de algoritmos de rolagem eterna cheios de lixo. Encontre feeds que trabalham para vocรช, nรฃo contra vocรช." @@ -8180,16 +8167,21 @@ msgstr "Ninguรฉm alรฉm do autor pode citar esta postagem." msgid "No one can send messages" msgstr "Ninguรฉm pode enviar mensagens" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Nรฃo hรก postagens aqui" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Ainda nรฃo hรก postagens" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Sem citaรงรตes ainda" @@ -8198,11 +8190,7 @@ msgstr "Sem citaรงรตes ainda" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Ainda nรฃo hรก GIFs recentes. Escolha um para vรช-lo aqui." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "Sem respostas" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Ainda nรฃo hรก respostas" @@ -8217,13 +8205,13 @@ msgstr "Nenhum resultado" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Nenhum resultados" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Sem resultados para \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "Nenhum resultado encontrado" msgid "No results found for \"{query}\"" msgstr "Nenhum resultado encontrado para \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." -msgstr "" +msgstr "Nenhum resultado encontrado para โ€œ<0>{query}โ€ com os filtros de busca avanรงada." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "Nenhum resultado encontrado para \"<0>{query}โ€." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Nenhum resultado encontrado para sua busca com filtros de busca avanรงada." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Sem resultados." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Ainda nรฃo hรก Pacotes Iniciais" @@ -8265,7 +8253,7 @@ msgstr "Nรฃo, obrigado" msgid "No translation received from your device." msgstr "Nenhuma traduรงรฃo recebida do seu dispositivo." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Ainda nรฃo hรก postagens de vรญdeo" @@ -8278,7 +8266,7 @@ msgstr "Ninguรฉm" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ninguรฉm curtiu isso ainda. Vocรช pode se tornar o primeiro!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ninguรฉm citou isso ainda. Vocรช pode se tornar o primeiro!" @@ -8298,6 +8286,10 @@ msgstr "Imagens รญntimas nรฃo consensuais" msgid "Non-sexual Nudity" msgstr "Nudez nรฃo-erรณtica" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Indisponรญvel nesta plataforma." msgid "Not followed by anyone youโ€™re following" msgstr "Nรฃo รฉ seguido por ninguรฉm que vocรช segue" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Nรฃo encontrado" @@ -8333,7 +8325,7 @@ msgstr "Nota sobre compartilhamento" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: o Bluesky รฉ uma rede aberta e pรบblica. Esta configuraรงรฃo limita somente a visibilidade do seu conteรบdo no site e aplicativo do Bluesky, e outros aplicativos podem nรฃo respeitar esta configuraรงรฃo. Seu conteรบdo ainda poderรก ser exibido para usuรกrios nรฃo autenticados por outros aplicativos e sites." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Nota: Esta postagem sรณ รฉ visรญvel para usuรกrios conectados." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Nada foi salvo ainda" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Configuraรงรตes de notificaรงรฃo" @@ -8353,11 +8345,12 @@ msgstr "Configuraรงรตes de notificaรงรฃo" msgid "Notification sounds" msgstr "Sons de notificaรงรฃo" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Ah, nรฃo!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Ok" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Resetar tutoriais" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Um dos destinatรกrios selecionados nรฃo permite chats em grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Um dos destinatรกrios selecionados bloqueou vocรช e nรฃo pode ser enviado." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Um ou mais GIFs estรฃo sem texto alternativo." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Uma ou mais imagens estรฃo sem texto alternativo." @@ -8454,11 +8449,11 @@ msgstr "Um ou mais arquivos selecionados nรฃo sรฃo suportados." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "Um ou mais arquivos selecionados sรฃo muito grandes. O tamanho mรกximo รฉ {VIDEO_MAX_SIZE_MB} MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Uma ou mais postagens sรฃo muito longas para salvar como um rascunho. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {O nรบmero mรกximo de caracteres รฉ # caractere.} other {O nรบmero mรกximo de caracteres รฉ # caracteres.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Um ou mais vรญdeos estรฃo sem texto alternativo." @@ -8471,7 +8466,7 @@ msgstr "Apenas {0} pode responder." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Apenas {0} de {1} {2, plural, one {imagem adicionada} other {imagens adicionadas}}; o limite รฉ {MAX_GALLERY_IMAGES}" @@ -8507,6 +8502,10 @@ msgstr "Apenas pessoas que {0} segue podem entrar." msgid "Only people the chat owner follows can join" msgstr "Apenas pessoas que o dono da conversa segue podem entrar" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "Apenas postagens com mรญdia" @@ -8519,7 +8518,7 @@ msgstr "Apenas postagens com vรญdeos" msgid "Only replies" msgstr "Apenas respostas" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Somente arquivos WebVTT (.vtt) sรฃo suportados" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ops, este perfil nรฃo existe. Tente escanear outro." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ops!" @@ -8544,7 +8543,7 @@ msgstr "Ops!" msgid "Open advanced search options" msgstr "Abrir opรงรตes de busca avanรงada" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Abrir criador de avatar" @@ -8570,21 +8569,22 @@ msgstr "Abrir opรงรตes de conversa" msgid "Open draft" msgstr "Abrir rascunho" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Abrir menu" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Abrir seletor de emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Abri tela de informaรงรตes do feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Abrir opรงรตes do feed" @@ -8627,7 +8627,7 @@ msgstr "Abrir pรกgina de debug da moderaรงรฃo" msgid "Open muted words and tags settings" msgstr "Abrir opรงรตes de palavras/tags silenciadas" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Abrir pacote" @@ -8681,7 +8681,7 @@ msgstr "Abre uma janela para adicionar um aviso de conteรบdo para a sua postagem #: src/screens/Login/LoginForm.tsx:645 msgid "Opens a dialog to change the hosting provider you sign in to" -msgstr "" +msgstr "Abre uma janela para alterar o provedor de hospedagem em que vocรช registrarรก" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 msgid "Opens a dialog to choose who can interact with this post" @@ -8699,7 +8699,7 @@ msgstr "Abre detalhes adicionais para um registro de depuraรงรฃo" msgid "Opens alt text dialog" msgstr "Abrir janela de texto alternativo" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Abre a cรขmera do dispositivo" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Abre o fluxo de criaรงรฃo de conta do Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Abre a tela para entrar com uma conta Bluesky existente" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Senha atualizada!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausar" @@ -8925,12 +8925,12 @@ msgstr "Pausar" msgid "Pause GIF" msgstr "Pausar GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausar vรญdeo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Pessoas" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Pessoas que {ownerName} segue podem pedir para entrar" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Pessoas seguidas por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Pessoas seguindo @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Pessoas que eu sigo" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Pessoas que eu sigo podem solicitar entrada" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Pessoas que vocรช segue" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Imagens destinadas a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixar feed" @@ -9034,7 +9034,7 @@ msgstr "Fixar feed" msgid "Pin to home" msgstr "Fixar na tela inicial" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fixar na Tela Inicial" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Fixado" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} fixado na Tela Inicial" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Fixado em seus feeds" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Tocar" @@ -9076,8 +9076,8 @@ msgstr "Reproduzir {0}" msgid "Play GIF" msgstr "Reproduzir GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reproduzir vรญdeo" @@ -9109,11 +9109,11 @@ msgstr "Por favor, adicione os rรณtulos de aviso de conteรบdo que sejam aplicรกv 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Por favor, escolha seu nome de usuรกrio." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Por favor, escolha sua senha." @@ -9122,7 +9122,7 @@ msgstr "Por favor, escolha sua senha." 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 "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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Por favor, complete o captcha de verificaรงรฃo." @@ -9179,7 +9179,7 @@ msgstr "Por favor insira o cรณdigo que vocรช recebeu e a nova senha que gostaria msgid "Please enter the security code we sent to your previous email address." msgstr "Digite o cรณdigo de seguranรงa que enviamos para o seu endereรงo de email anterior." -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Por favor, digite o seu e-mail." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Escreva sua mensagem abaixo:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Polรญtica" @@ -9269,7 +9269,7 @@ msgstr "Polรญtica" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Postar" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Postagem" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Postar uma foto" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Postar um vรญdeo" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Postar Tudo" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Postar mesmo assim" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Postagem bloqueada" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Postagem por @{0}" @@ -9340,7 +9340,7 @@ msgstr "Postagem Escondida por Vocรช" msgid "Post interaction settings" msgstr "Configuraรงรตes de interaรงรฃo de postagem" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Opรงรตes de interaรงรฃo em postagens" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Postagem fixada" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Postagem salva" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Postagem desafixada" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Postagens" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "Postagens e respostas" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "As postagens podem ser silenciadas com base em seu texto, suas tags ou a msgid "Posts hidden" msgstr "Postagens ocultadas" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Link potencialmente enganoso" @@ -9449,20 +9451,21 @@ msgstr "Privacidade" msgid "Privacy and security" msgstr "Privacidade e seguranรงa" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidade e Seguranรงa" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Configuraรงรตes de Privacidade e Seguranรงa" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Polรญtica de Privacidade" msgid "Privacy violation of a minor" msgstr "Violaรงรฃo da privacidade de um menor" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Processando GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Processando vรญdeo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Listas pรบblicas e compartilhรกveis de usuรกrios para silenciar ou bloquear em massa." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publicar postagem" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publicar postagens" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publicar respostas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publicar resposta" @@ -9599,12 +9602,12 @@ msgstr "Citaรงรตes desabilitadas" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citaรงรตes" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citaรงรตes desta postagem" @@ -9647,7 +9650,7 @@ msgstr "Reative sua conta" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Ler {0, plural, one {mais # resposta} other {mais # respostas}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Leia sobre como usar filtros de busca avanรงada" @@ -9657,11 +9660,11 @@ msgstr "Leia sobre como usar filtros de busca avanรงada" msgid "Read blog post" msgstr "Ler postagem do blog (em inglรชs)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Ver menos" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Ver mais" @@ -9687,11 +9690,11 @@ msgstr "Leia a Polรญtica de Privacidade do Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Leia os Termos de Serviรงo do Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Conversas reais." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Pessoas reais." @@ -9721,10 +9724,6 @@ msgstr "Pesquisas recentes" msgid "Recently used" msgstr "Usados recentemente" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomendado" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconectar" @@ -9748,7 +9747,7 @@ msgstr "Recusar pedido de conversa" msgid "Reject join request" msgstr "Recusar solicitaรงรฃo para entrar" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Recarregar conversas" @@ -9766,7 +9765,7 @@ msgstr "Recarregar conversas" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Remover" @@ -9792,8 +9791,8 @@ msgstr "Remover {displayName}?" msgid "Remove {q}" msgstr "Remover {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Remover conta" @@ -9845,15 +9844,15 @@ msgstr "Remover filtro" msgid "Remove from chat" msgstr "Remover da conversa" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Remover dos meus feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Remover do acesso rรกpido?" @@ -9862,7 +9861,7 @@ msgstr "Remover do acesso rรกpido?" msgid "Remove from saved feeds" msgstr "Remover dos feeds salvos" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Remover das postagens salvas" @@ -9880,8 +9879,8 @@ msgstr "Remover imagem" msgid "Remove live status" msgstr "Remover status ao vivo" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Remover membro" @@ -9943,7 +9942,7 @@ msgstr "Removido da lista" msgid "Removed from saved feeds" msgstr "Removido dos feeds salvos" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Removido das postagens salvas" @@ -9952,7 +9951,7 @@ msgstr "Removido das postagens salvas" msgid "Removed from starter pack" msgstr "Removido do pacote inicial" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Respondeu a vocรช" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Mensagem respondida de {senderName}, toque para rolar atรฉ ela" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "A mensagem respondida foi enviada antes de sua entrada" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Mensagem respondida, toque para rolar atรฉ ela" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respostas" @@ -10037,7 +10037,7 @@ msgstr "Respostas para esta postagem estรฃo desativadas." msgid "Reply" msgstr "Responder" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -10098,8 +10098,8 @@ msgstr "Denunciar conversa" msgid "Report dialog" msgstr "Janela de denรบncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Denunciar feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Repostado por vocรช" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Repostagens" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Repostagens" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Repostagens das suas repostagens" @@ -10253,7 +10253,7 @@ msgstr "Solicitado" msgid "Requests" msgstr "Solicitaรงรตes" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10266,7 +10266,7 @@ msgstr "Exigir texto alternativo antes de postar" #: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." -msgstr "Requer um cรณdigo de e-mail para entrar em sua conta." +msgstr "Requer um cรณdigo de email para entrar em sua conta." #: src/screens/Signup/StepInfo/index.tsx:207 msgid "Required for this provider" @@ -10358,10 +10358,10 @@ msgstr "Tenta a รบltima aรงรฃo, que deu erro" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Voltar para a tela inicial" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Voltar para pรกgina anterior" @@ -10446,27 +10446,27 @@ msgstr "Salvar data de nascimento" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Salvar alteraรงรตes" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Salvar alteraรงรตes?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Salvar rascunho" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Salvar rascunho?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Salvar QR code" msgid "Save these options for next time" msgstr "Salvar estas opรงรตes para a prรณxima vez" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Salvar nos meus feeds" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feeds Salvos" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Postagens Salvas" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Adicionado aos seus feeds" @@ -10520,8 +10520,8 @@ msgstr "Adicionado aos seus feeds" msgid "Say hello!" msgstr "Diga olรก!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Diga olรก para alguรฉm" @@ -10535,7 +10535,7 @@ msgstr "Escanear" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Escanear cรณdigo QR" @@ -10543,15 +10543,15 @@ msgstr "Escanear cรณdigo QR" msgid "Science" msgstr "Ciรชncia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Rolar ร  esquerda" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Rolar ร  direita" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Rolar atรฉ a mensagem respondida" @@ -10564,8 +10564,8 @@ msgstr "Ir para o topo" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Pesquisar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Pesquisar postagens de @{0}" @@ -10606,17 +10606,17 @@ msgstr "Buscar por โ€œ{searchText}โ€" #: src/screens/Search/components/SearchHistory.tsx:136 msgid "Search for {q}" -msgstr "" +msgstr "Buscar por {q}" #: src/screens/StarterPack/Wizard/index.tsx:541 msgid "Search for feeds that you want to suggest to others." msgstr "Procure por feeds que vocรช queira sugerir para outros." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Pesquisar por mais contas" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Pesquisar por mais feeds" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Pesquisar por GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "A pesquisa estรก indisponรญvel quando desconectado" @@ -10661,7 +10661,7 @@ msgstr "Pesquisar por usuรกrios" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 msgid "Search query" -msgstr "" +msgstr "Busca" #: src/screens/Profile/ProfileSearch.tsx:38 msgid "Search..." @@ -10707,17 +10707,22 @@ msgstr "Ver postagens com #{tag} deste usuรกrio" msgid "See jobs at Bluesky" msgstr "Veja empregos na Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Ver mais" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Ver mais perfis sugeridos" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Ver contas sugeridas" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Controle deslizante de busca. Use os botรตes de seta para avanรงar e retroceder, e espaรงo para pausar/continuar" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Selecionar categoria \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Selecionar {0}" msgid "Select {langName}" msgstr "Selecionar {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecione uma cor" @@ -10764,11 +10769,11 @@ msgstr "Selecione uma conta" msgid "Select an app language" msgstr "Selecionar um idioma para o app" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selecione um avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selecione um emoji" @@ -10780,12 +10785,13 @@ msgstr "Selecionar opรงรฃo" msgid "Select app language" msgstr "Selecionar idioma do app" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Selecione o arquivo de legenda (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Selecione o chat \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Selecionar GIF" msgid "Select GIF \"{0}\"" msgstr "Selecionar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Selecionar membros do grupo" @@ -10864,7 +10870,7 @@ msgstr "Selecionar idioma principal" msgid "Select telephone code" msgstr "Selecionar cรณdigo de telefone" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Selecione o emoji {emojiName} como avatar" @@ -10945,7 +10951,8 @@ msgstr "Enviar mensagem" msgid "Send post to {name}" msgstr "Enviar postagem para {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Enviar postagem para..." @@ -10963,12 +10970,12 @@ msgstr "Envie a mensagem do seu telefone" msgid "Send verification email" msgstr "Enviar e-mail de verificaรงรฃo" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Enviar por mensagem direta" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Defina seu provedor de hospedagem manualmente" msgid "Sets email for password reset" msgstr "Configura o e-mail para recuperaรงรฃo de senha" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Configuraรงรตes" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Configuraรงรตes para atividade de terceiros" @@ -11036,49 +11043,49 @@ msgstr "Configuraรงรตes para atividade de terceiros" msgid "Settings for allowing others to be notified of your posts" msgstr "Configuraรงรตes para permitir que outros sejam notificados das suas postagens" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Configuraรงรตes para notificaรงรตes de curtidas" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Configuraรงรตes para notificaรงรตes de menรงรตes" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Configuraรงรตes para notificaรงรตes de novo seguidor" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Configuraรงรตes para as demais notificaรงรตes" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Configuraรงรตes para notificaรงรตes de curtidas das suas repostagens" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Opรงรตes para notificaรงรตes de novas solicitaรงรตes de mensagem" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Opรงรตes para notificaรงรตes de novas mensagens" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Configuraรงรตes para notificaรงรตes de repostagens das suas repostagens" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Configuraรงรตes para notificaรงรตes de citaรงรฃo" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Configuraรงรตes para notificaรงรตes de resposta" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Configuraรงรตes para notificaรงรตes de repostagem" @@ -11115,8 +11122,8 @@ msgstr "Compartilhar faixa etรกria" msgid "Share anyway" msgstr "Compartilhar mesmo assim" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Compartilhar DID do autor" @@ -11125,9 +11132,9 @@ msgstr "Compartilhar DID do autor" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Compartilhar comentรกrio" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Compartilhar Link de diรกlogo" msgid "Share my profile" msgstr "Compartilhar meu perfil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Compartilhar URI at:// da postagem" @@ -11169,12 +11176,12 @@ msgstr "Compartilhar Perfil" msgid "Share QR code" msgstr "Compartilhar QR code" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Compartilhar este feed" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Compartilhar esta busca" @@ -11186,8 +11193,8 @@ msgstr "Compartilhar este pacote inicial" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Compartilhe este pacote inicial e ajude as pessoas a se juntarem ร  sua comunidade no Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,9 +11210,9 @@ msgstr "Compartilhe os seus contatos para encontrar amigos" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughtsโ€ฆ" -msgstr "" +msgstr "Compartilhe seus pensamentosโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Testador de Preferรชncias Compartilhadas" @@ -11219,7 +11226,7 @@ msgstr "Compartilhar sua faixa etรกria revela somente a faixa associada ร  sua c msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Compartilhar sua faixa etรกria revela somente a faixa associada ร  sua conta do Google. โ€“ por exemplo, se vocรช tiver pelo menos 18 anos. <0>Sua idade exata e aniversรกrio nunca sรฃo compartilhadas, e estes dados nunca saem do dispositivo. Portanto, ele sรณ permite acesso a este dispositivo. Alternativamente <1>vocรช pode usar nosso parceiro confiรกvel, KWS, para concluir sua verificaรงรฃo e habilitar acesso em todas as plataformas." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Mostrar" msgid "Show alt text" msgstr "Mostrar texto alternativo" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Mostrar mesmo assim" @@ -11274,9 +11281,9 @@ msgstr "Mostrar lista de qualquer maneira" msgid "Show lists of users to select from" msgstr "Mostrar listas de usuรกrios para selecionar" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Mostrar Mais" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "Ver mais" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Mostrar aviso e filtrar dos feeds" msgid "Show when youโ€™re live" msgstr "Mostrar quando vocรช estiver ao vivo" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Mostra informaรงรตes sobre quando esta postagem foi criada" @@ -11341,15 +11348,15 @@ msgstr "Mostra informaรงรตes sobre quando esta postagem foi criada" msgid "Shows other accounts you can switch to" msgstr "Exibe suas outras contas que vocรช pode acessar" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Exibe o conteรบdo" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Exibe o conteรบdo" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11434,9 +11441,9 @@ msgstr "Sair?" #: src/screens/Login/LoginForm.tsx:572 msgid "Sign up" -msgstr "" +msgstr "Cadastrar-se" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "ร‰ Necessรกrio Fazer Login" @@ -11469,7 +11476,7 @@ msgstr "Pular" msgid "Skip contact sharing and continue to the app" msgstr "Pular compartilhamento de contatos e continuar para o app" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Pular publicaรงรตes vazias?" @@ -11487,7 +11494,7 @@ msgstr "Pular para a prรณxima etapa" msgid "slide" msgstr "slide" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Menor" @@ -11499,7 +11506,7 @@ msgstr "Adiar o lembrete" msgid "So many thoughts, you should post one" msgstr "Tantos pensamentos, vocรช deveria postar um deles" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "A rede social que vocรช controla." @@ -11520,7 +11527,7 @@ msgstr "Alguns serviรงos de moderaรงรฃo na sua lista nรฃo estรฃo mais disponรญve msgid "Some of your verifications are invalid." msgstr "Algumas de suas verificaรงรตes sรฃo invรกlidas." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Alguns outros feeds que vocรช pode gostar" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Alguรฉm saiu do grupo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Alguรฉm reagiu com {0}" @@ -11554,7 +11561,7 @@ msgstr "Alguรฉm reagiu com {0}" msgid "Someone reacted {0} to {target}" msgstr "Alguรฉm reagiu com {0} a {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Alguรฉm respondeu" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Algo deu errado, tente novamente" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Algo deu errado. Por favor, tente novamente mais tarde." msgid "Something went wrong. Please try again." msgstr "Algo deu errado. Por favor, tente novamente." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Algo de errado? Nos avise." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam ou outros comportamentos inautรชnticos ou enganosos" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Esportes" @@ -11668,7 +11675,7 @@ msgstr "Inicie uma conversa e ela aparecerรก aqui." msgid "Start a group chat" msgstr "Iniciar uma conversa em grupo" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Comeรงar uma nova conversa" @@ -11682,17 +11689,17 @@ msgstr "Comece a adicionar pessoas" msgid "Start adding people!" msgstr "Comece a adicionar pessoas!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Iniciar conversa" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Comece a conversar com {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacote Inicial" @@ -11715,12 +11722,16 @@ msgstr "Seu pacote inicial" msgid "Starter pack is invalid" msgstr "Pacote inicial รฉ invรกlido" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pacotes Iniciais" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Pacotes iniciais permitem que vocรช compartilhe facilmente seus feeds e pessoas favoritas com seus amigos." @@ -11728,7 +11739,7 @@ msgstr "Pacotes iniciais permitem que vocรช compartilhe facilmente seus feeds e msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Pacotes iniciais permitem que vocรช compartilhe facilmente seus feeds e pessoas favoritas com seus amigos." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Pacotes Iniciais permitem que vocรช compartilhe facilmente seus feeds e pessoas favoritas com seus amigos." @@ -11742,7 +11753,7 @@ msgstr "Pรกgina de status" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Etapa {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "Armazenamento limpo, vocรช precisa reiniciar o aplicativo agora." msgid "Stored as part of a secure code for matching with others" msgstr "Armazenado como parte de um cรณdigo seguro para correspondรชncia com outros" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11787,7 +11798,7 @@ msgstr "Enviar Recurso" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Enviar comentรกrio" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Inscrever-se para {publicationTitle} em {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Inscreva-se em @{0} para utilizar estes rรณtulos:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Verificado com sucesso" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Sugestรตes" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Contas sugeridas" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Sugeridos para vocรช" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Entardecer" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "O suporte para este recurso no seu paรญs ainda nรฃo foi habilitado! Por favor, volte mais tarde." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Contas suspensas nรฃo podem participar de um chat em grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Contas suspensas nรฃo podem participar de um chat em grupo." @@ -11921,8 +11934,8 @@ msgstr "Alterar para {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Leve a conversa para o particular." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Toque abaixo para permitir o acesso ร  sua localizaรงรฃo GPS. Usaremos esses dados para determinar com mais precisรฃo o conteรบdo e os recursos disponรญveis em sua regiรฃo." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Toque para mais detalhes" @@ -11976,7 +11989,7 @@ msgstr "Toque para fechar o menu de contexto" msgid "Tap to copy this invite link" msgstr "Toque para copiar este link de convite" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Toque para dispensar" @@ -12003,7 +12016,7 @@ msgstr "Toque para remover sua reaรงรฃo {0}" msgid "Tap to request access to join this group chat" msgstr "Toque para solicitar acesso para entrar nesta conversa em grupo" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Toque para tentar novamente" @@ -12016,7 +12029,7 @@ msgstr "Toque para mostrar reaรงรตes {0}" msgid "Tap to show all reactions" msgstr "Toque para mostrar todas as reaรงรตes" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Toque para ver as reaรงรตes" @@ -12032,7 +12045,7 @@ msgstr "Tarefa completa - seguir 10 pessoas!" msgid "Task complete - 10 likes!" msgstr "Tarefa concluรญda - 10 curtidas!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Ensine ao nosso algoritmo o que vocรช curte" @@ -12060,7 +12073,7 @@ msgstr "Termos" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Obrigado por seu comentรกrio! Ele foi enviado ao operador." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Obrigado pelo seu comentรกrio!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "Este pacote inicial nรฃo pรดde ser encontrado." msgid "That username is already taken" msgstr "Este nome de usuรกrio jรก estรก em uso" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Isso รฉ tudo, pessoal!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Isso รฉ tudo!" @@ -12171,7 +12184,7 @@ msgstr "Este feed foi substituรญdo pelo Discover." #: src/components/moderation/LabelsOnMeDialog.tsx:64 msgid "The following labels were applied to this post." -msgstr "" +msgstr "Os seguintes rรณtulos foram aplicados nesta postagem." #: src/components/moderation/LabelsOnMeDialog.tsx:63 msgid "The following labels were applied to your account." @@ -12216,7 +12229,7 @@ msgstr "O servidor parece estar passando por instabilidade. Por favor tente nova msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "O pacote inicial que vocรช estรก tentando visualizar รฉ invรกlido. Vocรช pode excluir este pacote inicial em vez disso." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "O assunto do menu de contexto" @@ -12238,7 +12251,7 @@ msgstr "O cรณdigo de verificaรงรฃo que vocรช forneceu รฉ invรกlido. Certifique-s msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "O provedor de verificaรงรฃo nรฃo conseguiu enviar um cรณdigo para o seu nรบmero de telefone. Por favor, verifique o seu nรบmero de telefone e tente novamente." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "Houve um problema ao carregar GIFs. Verifique sua conexรฃo e tente novam msgid "There was a problem with your internet connection, please try again" msgstr "Houve um problema com a sua conexรฃo de internet, por favor tente novamente" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Houve um problema com a sua conexรฃo de internet, por favor tente novame msgid "There was an issue contacting the server" msgstr "Tivemos um problema ao contatar o servidor deste feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Houve um problema ao comunicar com o servidor, por favor verifique sua conexรฃo de internet e tente novamente." @@ -12283,8 +12296,8 @@ msgstr "Houve um problema ao comunicar com o servidor, por favor verifique sua c msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Tivemos um problema ao carregar notificaรงรตes. Toque aqui para tentar de novo." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Tivemos um problema ao carregar as postagens. Toque aqui para tentar de novo." @@ -12309,7 +12322,7 @@ msgstr "Houve um problema ao recuperar suas informaรงรตes de serviรงo" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Houve um problema ao remover este feed. Por favor verifique sua conexรฃo de internet e tente novamente." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Estas configuraรงรตes sรณ se aplicam ao feed principal (Following)." msgid "These URLs" msgstr "Estas URLs" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Eles sรฃo donos desta conversa" @@ -12392,7 +12405,7 @@ msgstr "Eles sรฃo donos desta conversa" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "Eles nรฃo poderรฃo voltar a entrar a menos que vocรช os convide novamente." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Este {screenDescription} foi reportado:" @@ -12408,7 +12421,7 @@ msgstr "Esta conta foi marcada como automatizada pelo seu proprietรกrio." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Esta conta tem uma ou mais tentativas de verificaรงรฃo, mas nรฃo estรก verificada no momento." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Esta conta solicitou que os usuรกrios fizessem login para visualizar seu perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Este feed estรก vazio! Talvez vocรช precise seguir mais usuรกrios ou configurar os idiomas filtrados." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Este feed estรก vazio." @@ -12554,7 +12567,7 @@ msgstr "Este grupo estรก trancado por uma aรงรฃo de moderaรงรฃo sobre o dono" msgid "This handle is reserved. Please try a different one." msgstr "Este nome de usuรกrio estรก reservado. Por favor tente um nome de usuรกrio diferente." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Nรฃo foi possรญvel usar essa imagem. Tente um formato diferente como .jpg ou .png." @@ -12594,9 +12607,9 @@ msgstr "Este rรณtulo foi aplicado por vocรช." #: src/components/moderation/LabelsOnMeDialog.tsx:156 #: src/components/moderation/ModerationDetailsDialog.tsx:231 msgid "This label was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "Este rรณtulo foi aplicado para a conta inteira do usuรกrio e aparecerรก em todas as postagens." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este rotulador nรฃo declarou quais rรณtulos utiliza e pode nรฃo estar funcionando ainda." @@ -12621,13 +12634,13 @@ msgstr "Esta lista estรก vazia." msgid "This message is hidden" msgstr "Esta mensagem estรก oculta" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Esta mensagem estรก oculta porque este usuรกrio estรก bloqueando vocรช." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Esta mensagem estรก oculta porque vocรช estรก bloqueando este usuรกrio." @@ -12641,7 +12654,7 @@ msgstr "Esta pessoa estรก bloqueando vocรช" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta postagem alega ter sido criada em <0>{0}, mas ela apareceu no Bluesky em <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Esta postagem alega ter sido criada em <0>{0}, mas ela apareceu no B msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Essa postagem possui uma configuraรงรฃo desconhecida de interaรงรตes permitidas. O app talvez esteja desatualizado." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Esta postagem sรณ รฉ visรญvel para usuรกrios conectados." @@ -12661,7 +12674,7 @@ msgstr "Esta postagem foi excluรญda pelo autor" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta postagem serรก ocultada dos feeds e tรณpicos. Isso nรฃo pode ser desfeito." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "O autor desta postagem desabilitou as postagens de citaรงรฃo." @@ -12698,11 +12711,12 @@ msgstr "Isto deve demorar apenas alguns minutos." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Este usuรกrio nรฃo possui um nome de exibiรงรฃo e por isso nรฃo pode ser verificado." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Este usuรกrio nรฃo รฉ seguido por ninguรฉm ainda." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Este usuรกrio bloqueou vocรช e nรฃo pode receber mensagens." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Este usuรกrio te bloqueou. Vocรช nรฃo pode ver este conteรบdo." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Este usuรกrio desativou conversas e nรฃo pode receber mensagens." @@ -12733,11 +12748,11 @@ msgstr "Este usuรกrio estรก incluรญdo na lista <0>{0}, que vocรช silenciou." msgid "This user is new here. Press for more info about when they joined." msgstr "Este usuรกrio รฉ novo aqui. Toque para mais informaรงรตes sobre quando ele entrou." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Este usuรกrio nรฃo segue ninguรฉm ainda." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Este vรญdeo nรฃo pode ser reproduzido no seu dispositivo. Seu navegador ou sistema pode estar sem os codecs de vรญdeo necessรกrios (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Isso irรก excluir irreversivelmente sua conta Bluesky <0>{currentHandle} e todos os dados associados. Note que isto afetarรก qualquer outro serviรงo do <1>Protocolo AT que vocรช usa com esta conta." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Isso removerรก @{0} da lista de acesso rรกpido." @@ -12786,7 +12801,7 @@ msgstr "Preferรชncias dos Tรณpicos" msgid "Threaded" msgstr "Aninhado" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferรชncias dos Tรณpicos" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Muitos contatos - vocรช excedeu o nรบmero de contatos que vocรช pode importar para encontrar seus amigos" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Principais" @@ -12858,7 +12873,7 @@ msgstr "Principais" msgid "Top replies first" msgstr "Respostas populares primeiro" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Assunto" @@ -12893,7 +12908,9 @@ msgstr "Traduรงรฃo para o mesmo idioma nรฃo estรก disponรญvel no seu dispositivo msgid "Tree view" msgstr "Visualizaรงรฃo em รกrvore" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Em alta" @@ -12902,13 +12919,15 @@ msgstr "Em alta" msgid "Trending GIFs" msgstr "GIFs em alta" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opรงรตes dos assuntos em alta" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Vรญdeos em alta" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Trollagem" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "A confianรงa emerge de relacionamentos, comunidades e contexto compartilhado, por isso tambรฉm estamos permitindo <0>verificadores confiรกveis: organizaรงรตes que podem conceder verificaรงรฃo diretamente." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Tente um termo de busca diferente ou remova alguns filtros." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Tente um termo de busca diferente." @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Nรฃo foi possรญvel carregar as solicitaรงรตes para entrar." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Nรฃo foi possรญvel encontrar um destinatรกrio selecionado." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Nรฃo foi possรญvel encontrar o destinatรกrio selecionado." @@ -13024,12 +13045,12 @@ msgstr "Indisponรญvel" msgid "Unavailable feed information" msgstr "Informaรงรฃo do feed indisponรญvel" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Desbloquear Conta?" msgid "Unblock list" msgstr "Desbloquear lista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Deixar de seguir {0}" msgid "Unfollow account" msgstr "Parar de seguir conta" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Para de seguir o usuรกrio" @@ -13132,7 +13153,7 @@ msgstr "Conteรบdo adulto nรฃo sinalizado" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Conteรบdo adulto nรฃo sinalizado, abusivo ou nรฃo consensual" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Descurtir" @@ -13192,7 +13213,7 @@ msgstr "Dessilenciar esta conversa em grupo" msgid "Unmute thread" msgstr "Dessilenciar tรณpico" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Ativar o รกudio do vรญdeo" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Desafixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desafixar feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Desafixar da tela inicial" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Desafixar lista de moderaรงรฃo" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} desafixado da Tela Inicial" @@ -13258,11 +13279,11 @@ msgstr "Cancelar inscriรงรฃo deste rotulador" msgid "Unsubscribed from list" msgstr "Cancelada inscriรงรฃo na lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Conteรบdo da รกrea de transferรชncia nรฃo suportado" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Formato de vรญdeo nรฃo suportado: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Falha na atualizaรงรฃo da visibilidade da resposta" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Enviar uma foto" @@ -13355,7 +13376,7 @@ msgstr "Carregar um arquivo" msgid "Upload from Library" msgstr "Carregar da galeria" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Enviando GIF..." @@ -13369,7 +13390,7 @@ msgstr "Enviando imagens..." msgid "Uploading link thumbnail..." msgstr "Enviando prรฉvia de link..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Enviando vรญdeo..." @@ -13408,7 +13429,7 @@ msgstr "Use isso para registrar-se no outro app junto ao seu nome de usuรกrio." msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Use o endereรงo de email da sua conta ou outro email que vocรช tenha acesso para caso o KWS ou o Bluesky precisem entrar em contato." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "usuรกrio" @@ -13510,7 +13531,7 @@ msgstr "Falha na verificaรงรฃo, por favor tente novamente." msgid "Verification settings" msgstr "Configuraรงรตes de verificaรงรฃo" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Configuraรงรตes de Verificaรงรฃo" @@ -13618,34 +13639,34 @@ msgstr "Vรญdeo" msgid "Video failed to process" msgstr "Falha no processamento do vรญdeo" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Feed de vรญdeos" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Vรญdeo de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Vรญdeo de {0}. Toque para reproduzir ou pausar o vรญdeo" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videogames" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "O vรญdeo estรก pausado" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "O vรญdeo estรก reproduzindo" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Vรญdeo nรฃo encontrado." @@ -13653,7 +13674,7 @@ msgstr "Vรญdeo nรฃo encontrado." msgid "Video settings" msgstr "Configuraรงรตes de vรญdeo" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Vรญdeo enviado" @@ -13662,17 +13683,17 @@ msgstr "Vรญdeo enviado" msgid "Video: {0}" msgstr "Vรญdeo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Vรญdeos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Vรญdeos devem ter menos de 3 minutos de duraรงรฃo." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Visualizar" @@ -13691,9 +13712,9 @@ msgstr "Ver o avatar de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Ver perfil de {0}" @@ -13724,13 +13745,13 @@ msgstr "Veja a postagem no blog para mais detalhes" msgid "View debug entry" msgstr "Ver depuraรงรฃo" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ver detalhes" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Ver tรณpico completo" @@ -13750,18 +13771,18 @@ msgstr "Ver solicitaรงรตes recebidas para entrar nesta conversa em grupo" msgid "View information about these labels" msgstr "Ver informaรงรตes sobre estes rรณtulos" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Ver mais" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Ver mais vรญdeos em alta" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Visualizar postagem" @@ -13798,15 +13819,15 @@ msgstr "Ver o link de convite para esta conversa em grupo" msgid "View the labeling service provided by @{0}" msgstr "Ver este rotulador fornecido por @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Ver as verificaรงรตes deste usuรกrio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Ver usuรกrios que curtiram este feed" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Ver vรญdeo" @@ -13831,7 +13852,7 @@ msgstr "Veja suas listas de moderaรงรฃo" msgid "View your muted accounts" msgstr "Veja suas contas silenciadas" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Ver suas verificaรงรตes" @@ -13840,7 +13861,7 @@ msgstr "Ver suas verificaรงรตes" msgid "Views full image" msgstr "Ver imagem completa" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Abre o vรญdeo no modo paisagem" @@ -14001,7 +14022,7 @@ msgstr "Nรณs lhe notificaremos quando encontrarmos seus amigos." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "Weโ€™d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Adorarรญamos ouvir sobre sua experiรชncia usando os recursos em teste!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Estamos com problemas de rede, tente novamente" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Estamos com problemas de rede, tente novamente" @@ -14043,7 +14064,7 @@ msgstr "Estamos com problemas de rede, tente novamente" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Estamos introduzindo uma nova camada de verificaรงรฃo no Bluesky โ€” uma marca de verificaรงรฃo fรกcil de ver." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Estamos muito contentes em receber vocรช!" @@ -14064,13 +14085,15 @@ msgstr "Tivemos um problema ao exibir esta lista. Se continuar acontecendo, cont msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Nรฃo foi possรญvel carregar sua lista de palavras silenciadas. Por favor, tente novamente." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." -msgstr "" +msgstr "Desculpe, mas sua busca nรฃo pรดde ser concluรญda." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Lamentamos, mas sua pesquisa nรฃo pรดde ser concluรญda. Por favor, tente novamente em alguns minutos." @@ -14078,7 +14101,7 @@ msgstr "Lamentamos, mas sua pesquisa nรฃo pรดde ser concluรญda. Por favor, tente msgid "We're sorry, you cannot access this screen at this time." msgstr "Desculpe, vocรช nรฃo pode acessar esta tela no momento." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sentimos muito! A postagem que vocรช estรก respondendo foi excluรญda." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "e aรญ" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "E aรญ, qual รฉ a boa?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Quem pode verificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ops!" @@ -14220,21 +14243,21 @@ msgstr "Gostaria de bloquear este usuรกrio e/ou sair desta conversa?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Gostaria de salvar isto como um rascunho antes de visualizar os seus rascunhos?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Gostaria de salvar isto como um rascunho para editar mais tarde?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Escrever uma postagem" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Escrever postagem" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Escreva sua resposta" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Vocรช estรก acessando o Bluesky de uma regiรฃo que exige legalmente a verificaรงรฃo da sua idade antes de permitir o acesso ao app." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Vocรช estรก bloqueando {0}" @@ -14342,7 +14365,7 @@ msgstr "Vocรช nรฃo estรก mais ao vivo" msgid "You are not allowed to upload videos." msgstr "Vocรช nรฃo tem permissรฃo para enviar vรญdeos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Vocรช ainda nรฃo estรก seguindo ninguรฉm" @@ -14362,7 +14385,7 @@ msgstr "Vocรช foi verificado. Vocรช perderรก seu estado de verificaรงรฃo se muda msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Vocรช foi verificado. Vocรช perderรก seu estado de verificaรงรฃo se mudar seu nome de usuรกrio. <0>Saiba mais." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Vocรช pode ajustar seus interesses a qualquer momento nas configuraรงรตes de \"Conteรบdo e mรญdia\"." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Agora vocรช pode entrar com a sua nova senha." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Vocรช pode adicionar no mรกximo {MAX_GALLERY_IMAGES, plural, other {# imagens}} por postagem" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Vocรช sรณ pode salvar rascunhos com atรฉ 1000 caracteres." @@ -14439,9 +14462,11 @@ msgstr "Vocรช pode ler o histรณrico da conversa, mas nรฃo pode enviar novas mens msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Vocรช pode selecionar atรฉ {MAX_GALLERY_IMAGES, plural, other {# imagens}} no total." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Vocรช pode alterar esta opรงรฃo depois nas suas configuraรงรตes." @@ -14451,13 +14476,14 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Vocรช nรฃo pode adicionar mais que {EMOJI_REACTION_LIMIT, plural, one {# reaรงรฃo com emoji} other {# reaรงรตes com emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Vocรช ainda nรฃo pode criar uma conversa em grupo." #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:27 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." -msgstr "Vocรช nรฃo pode atualizar sua data de nascimento ao usar uma senha de aplicativo. Por favor, entre com sua senha principal para atualizar sua data de nascimento." +msgstr "Vocรช nรฃo pode atualizar sua data de nascimento enquanto usa uma senha de aplicativo. Por favor, entre com sua senha principal para atualizar sua data de nascimento." #: src/screens/Profile/KnownFollowers.tsx:103 msgid "You don't follow any users who follow @{name}." @@ -14555,7 +14581,7 @@ msgstr "Vocรช verificou com sucesso o seu endereรงo de e-mail. Vocรช pode fechar msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Vocรช atingiu temporariamente o limite de envios de vรญdeo. Tente novamente mais tarde." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Vocรช tem alteraรงรตes nรฃo salvas neste rascunho, gostaria de salvรก-las?" @@ -14563,7 +14589,7 @@ msgstr "Vocรช tem alteraรงรตes nรฃo salvas neste rascunho, gostaria de salvรก-la msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Vocรช tem alteraรงรตes nรฃo salvas. Gostaria de salvรก-las antes de visualizar os seus rascunhos?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Vocรช ainda nรฃo criou um pacote inicial!" @@ -14614,7 +14640,7 @@ msgstr "Vocรช pode adicionar no mรกximo {STARTER_PACK_MAX_SIZE, plural, other {{ msgid "You may only add up to 3 feeds" msgstr "Vocรช pode adicionar no mรกximo 3 feeds" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Vocรช precisa ser dono da conversa para remover um membro." @@ -14622,7 +14648,7 @@ msgstr "Vocรช precisa ser dono da conversa para remover um membro." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Vocรช deve ter pelo menos 13 anos para usar o Bluesky. Leia os nossos <0>Termos de Serviรงo para obter mais informaรงรตes." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Vocรช deve estar seguindo pelo menos sete outras pessoas para gerar um pacote inicial." @@ -14639,7 +14665,7 @@ msgstr "Vocรช precisa permitir acesso ร  sua biblioteca de mรญdia." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Vocรช precisa verificar seu endereรงo de e-mail antes de poder habilitar 2FA via e-mail." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Vocรช รฉ dono desta conversa" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Talvez vocรช queira reiniciar o app agora." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Vocรช reagiu com {0}" @@ -14667,15 +14693,15 @@ msgstr "Vocรช reagiu com {0} a {target}" msgid "You recently changed your birthdate" msgstr "Vocรช alterou sua data de nascimento recentemente" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Vocรช respondeu" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Vocรช respondeu a {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Vocรช respondeu a si mesmo" @@ -14715,11 +14741,11 @@ msgstr "Vocรช nรฃo poderรก voltar a entrar a menos que seja convidado." msgid "You: {message}" msgstr "Vocรช: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Vocรช seguirรก os usuรกrios e feeds sugeridos apรณs terminar de criar sua conta!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Vocรช seguirรก os usuรกrios sugeridos apรณs terminar de criar sua conta!" @@ -14791,7 +14817,7 @@ msgstr "Vocรช chegou ao fim do conteรบdo ativo." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Vocรช chegou ao fim do seu feed! Encontre novas contas para seguir." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Vocรช atingiu o nรบmero mรกximo de rascunhos" @@ -14799,7 +14825,7 @@ msgstr "Vocรช atingiu o nรบmero mรกximo de rascunhos" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Vocรช atingiu o nรบmero mรกximo de solicitaรงรตes permitidas. Tente novamente mais tarde." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Vocรช alcanรงou o limite mรกximo de {MAX_FILTERS, plural, one {# filtro} other {# filtros}}. Adicione mais valores a um filtro existente em vez de criar novos." @@ -14815,11 +14841,11 @@ msgstr "Vocรช atingiu seu limite diรกrio de uploads de vรญdeo (muitos bytes)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Vocรช atingiu seu limite diรกrio de uploads de vรญdeos (muitos vรญdeos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Vocรช esgotou os vรญdeos disponรญveis para assistir. Que tal descansar um pouco?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Sua conta" @@ -14835,11 +14861,11 @@ msgstr "Sua conta foi suspensa" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Sua conta ainda nรฃo tem idade suficiente para enviar vรญdeos. Por favor, tente novamente mais tarde." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Sua conta รฉ muito nova" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Sua conta deve ter pelo menos 7 dias para criar uma nova conversa em grupo." @@ -14896,7 +14922,7 @@ msgstr "Seu email" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Seu e-mail parece ser invรกlido." @@ -14930,8 +14956,8 @@ msgstr "Seu provedor de hospedagem nรฃo pode ser detectado a partir de um endere msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Seu provedor de hospedagem รฉ detectado automaticamente pelo nome de usuรกrio que vocรช inserir." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Seus interesses foram atualizados!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Seus interesses nos ajudam a encontrar o que vocรช gosta!" @@ -14967,11 +14993,11 @@ msgstr "Sua senha foi alterada com sucesso! Use a sua nova senha quando entrar n msgid "Your password must be at least 8 characters long." msgstr "Sua senha deve ter no mรญnimo 8 caracteres." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Sua postagem foi enviada" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Suas postagens foram enviadas" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Seu idioma de preferรชncia" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Sua foto de perfil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Sua foto de perfil cercada por cรญrculos concรชntricos das fotos de perfil de outros usuรกrios" @@ -14992,7 +15018,7 @@ msgstr "Sua foto de perfil cercada por cรญrculos concรชntricos das fotos de perf msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Seu perfil, postagens, feeds e listas nรฃo serรฃo mais visรญveis para outros usuรกrios do Bluesky. Vocรช pode reativar sua conta a qualquer momento fazendo login." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Sua resposta foi enviada" @@ -15005,7 +15031,7 @@ msgstr "Sua denรบncia serรก enviada para <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Seus interesses escolhidos nos ajudam a entregar o conteรบdo que interessa a vocรช." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Seu tรณpico tem postagens vazias que serรฃo ignoradas. As postagens restantes serรฃo publicadas como um tรณpico." diff --git a/src/locale/locales/pt-PT/messages.po b/src/locale/locales/pt-PT/messages.po index f06fb6da6d..5bf8521401 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categoria \"{interestsDisplayName}\" (ativo)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(mensagem bloqueada oculta)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(contรฉm conteรบdo incorporado)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(mensagem eliminada)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(link de convite da conversa invรกlido)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(mensagem enviada antes de ter entrado)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# hora} other {# horas}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# rรณtulo aplicado ร  sua publicaรงรฃo} other {# rรณtulos aplicados ร  sua publicaรงรฃo}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# rรณtulo aplicado} other {# rรณtulos aplicados}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# gosto} other {# gostos}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membro} other {# membros}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# novo pedido de adesรฃo} other {# novos pedidos de ade #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {# pessoa} other {# pessoas}} reagiu โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Conta)" @@ -251,36 +252,13 @@ msgstr "{0} foi adicionado/a ร  conversa" msgid "{0} and {1} added to chat" msgstr "{0} e {1} adicionados ร  conversa" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} e {1} gostaram disto" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} e {others, plural, one {{1} outro} other {{2} outros}} gostaram disto" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} e {othersLabel} gostaram disto" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} a seguir" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "Estรก bloqueado por {0}" @@ -324,14 +302,6 @@ msgstr "{0} saiu" msgid "{0} left the group" msgstr "{0} saiu do grupo" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} gostou disto" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reagiu com {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} e {memberCount, plural, one {# outro} other {# outros}} adicionados ร  conversa" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1}, e {others, plural, one {{2} outro} other {{3} outros}} gostaram disto" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1} e {othersLabel} gostaram disto" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} verificou-te" msgid "{following} following" msgstr "{following} a seguir" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, one {publicaรงรฃo} other {publicaรงรตes}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} nรฃo pode ser adicionado/a" @@ -698,7 +660,7 @@ msgstr "{handle} nรฃo pode ser adicionado/a" msgid "{handle} can't be messaged" msgstr "Nรฃo pode enviar mensagens a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "Nรฃo รฉ possรญvel enviar mensagens a {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# item nรฃo lido} other {# itens nรฃo l msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contacto encontrado} other {# contactos encontrados}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} outro} other {{1} outros}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} aderiu ao Bluesky hรก {timeAgoString}" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} aderiu ao Bluesky utilizando um pacote de iniciante hรก {timeAgoString}" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, one {# caracter restante} other {# caracteres restantes}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} respondeu" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} respondeu a {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} respondeu-te" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# pedido} other {# pedidos}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ pedidos" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "Hรก {type}h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} รฉ um verificador confiรกvel" @@ -842,13 +795,13 @@ msgstr "Verificaรงรตes de {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {a seguir} other {a seguir}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citaรงรฃo} other {citaรงรตes}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicaรงรฃo} other {republicaรงรตes}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {guardado} other {guardados}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {gosto} other {gostos}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> adicionou-te" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Inicie sessรฃo<1> ou <2>crie uma conta<3> <4>para procurar por notรญcias, desporto, polรญtica e tudo resto que acontece no Bluesky." @@ -971,7 +924,7 @@ msgstr "30 dias" msgid "7 days" msgstr "7 dias" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Uma coleรงรฃo de feeds populares que pode encontrar no Bluesky, incluindo News, Booksky, Game Dev, Blacksky, e Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Ocorreu um erro de rede. Por favor, verifique a sua conexรฃo ร  internet #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Um novo cรณdigo foi enviado" msgid "A new form of verification" msgstr "Uma nova forma de verificaรงรฃo" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Uma resposta a uma mensagem enviada antes de ter entrado" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Uma captura de ecrรฃ do compositor de publicaรงรตes com um novo botรฃo ao lado do botรฃo post que diz \"Rascunhos\", com um efeito de fogo de artifรญcio de arco-รญris. Abaixo, o texto no compositor diz \"Oi, ouviu a notรญcia? O Bluesky agora tem rascunhos!!!\"." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Um destinatรกrio selecionado nรฃo รฉ seguido pelo remetente." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Acesso solicitado! O proprietรกrio do grupo irรก rever o seu pedido." msgid "Accessibility" msgstr "Acessibilidade" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Definiรงรตes de acessibilidade" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Conta silenciada pela Lista" msgid "Account options" msgstr "Definiรงรตes da conta" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Conta removida do acesso rรกpido" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Contas com um selo de verificaรงรฃo azul recortado <0><1/> podem verificar outras. Estes verificadores confiรกveis sรฃo selecionados pelo Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Atividade de outros" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Notificaรงรตes de atividade" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Adicionar texto alternativo (opcional)" msgid "Add another account" msgstr "Adicionar outra conta" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Adicionar outra publicaรงรฃo" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Adicionar outra publicaรงรฃo ao fio" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Adicionar outro filtro de pesquisa" @@ -1253,7 +1213,7 @@ msgstr "Adicionar rรณtulo de automaรงรฃo ร  conta" msgid "Add emoji reaction" msgstr "Adicionar reaรงรฃo de emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Adicionar filtro" @@ -1338,7 +1298,7 @@ msgstr "Adicionar este feed aos seus feeds" msgid "Add to lists" msgstr "Adicionar a Listas" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Adicionar a publicaรงรตes guardadas" @@ -1400,7 +1360,7 @@ msgstr "Adulto" msgid "Adult content" msgstr "Conteรบdo adulto" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@exemplo.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Tudo" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Todos os amigos foram seguidos!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Todos os idiomas" @@ -1491,11 +1447,6 @@ msgstr "Todos os idiomas serรฃo exibidos nos seus feeds." msgid "All of these words" msgstr "Todas estas palavras" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "Todas as publicaรงรตes" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Todos os feeds que guardou, num รบnico lugar." @@ -1560,7 +1511,7 @@ msgstr "Permite acesso ร s mensagens em direto" msgid "Already have a code?" msgstr "Jรก tem um cรณdigo?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Jรก possui uma conta?" @@ -1614,7 +1565,7 @@ msgstr "Um e-mail foi enviado para {0}. Ele inclui um cรณdigo de confirmaรงรฃo q msgid "An error has occurred" msgstr "Ocorreu um erro" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Ocorreu um erro" @@ -1631,7 +1582,7 @@ msgstr "Ocorreu um erro ao obter as contas sugeridas." msgid "An error occurred while fetching the feed." msgstr "Ocorreu um erro ao obter o feed." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Ocorreu um erro enquanto gerava o seu pacote de iniciante. Deseja tentar novamente?" @@ -1640,11 +1591,11 @@ msgstr "Ocorreu um erro enquanto gerava o seu pacote de iniciante. Deseja tentar msgid "An error occurred while hiding suggestion. {0}" msgstr "Ocorreu um erro ao ocultar a sugestรฃo. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Ocorreu um erro enquanto carregava o vรญdeo. Tente novamente mais tarde." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Ocorreu um erro enquanto carregava o vรญdeo. Tente novamente." @@ -1684,7 +1635,7 @@ msgstr "Ocorreu um erro. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Uma ilustraรงรฃo que retrata avatares de utilizadores a fluir de um livro de contactos para a aplicaรงรฃo do Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Uma ilustraรงรฃo de vรกrias publicaรงรตes do Bluesky ao lado dos รญcones de republicar, gostar e comentar" @@ -1705,17 +1656,15 @@ msgstr "Um link de convite permite que pessoas entrem nesta conversa de grupo se msgid "An issue not included in these options" msgstr "Um problema nรฃo incluรญdo nestas opรงรตes" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Ocorreu um problema ao criar a conversa de grupo. Por favor, tente novamente." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Ocorreu um problema ao iniciar a conversa. Por favor, tente novamente." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Ocorreu um problema ao tentar abrir a conversa" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "Ocorreu um problema ao iniciar a conversa de grupo. Por favor, tente novamente." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "Qualquer data" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Todos" @@ -1802,7 +1749,7 @@ msgstr "Qualquer um que me segue" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Qualquer pessoa que o tenha deixarรก de poder entrar ou pedir para entrar. Pode sempre criar um novo." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "A palavra-passe da aplicaรงรฃo deve conter pelo menos 4 caracteres" msgid "App passwords" msgstr "Palavras-passe da Aplicaรงรฃo" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Palavras-passe da Aplicaรงรฃo" @@ -1891,8 +1838,8 @@ msgstr "Recorrer desta decisรฃo" msgid "Appeal this label" msgstr "Recorrer deste rรณtulo" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Aplicar Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arquivado desde {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Publicaรงรฃo arquivada" @@ -1980,7 +1927,7 @@ msgstr "Tem a certeza que deseja eliminar isto dos seus feeds?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Tem a certeza de que quer cancelar o seu pedido para aderir a {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Tem a certeza que deseja descartar esta publicaรงรฃo?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "Autor" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Conta automatizada" @@ -2033,7 +1985,7 @@ msgstr "Automรกtico" msgid "Automation label" msgstr "Rรณtulo de automaรงรฃo" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Rรณtulo de Automaรงรฃo" @@ -2050,12 +2002,16 @@ msgstr "Reproduzir vรญdeos e GIFs automaticamente" msgid "Available" msgstr "Disponรญvel" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "Criador de foto de perfil" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Antes de criar uma publicaรงรฃo ou responder, deve verificar o seu e-mail." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Antes de criar um pacote de iniciante, deve verificar o seu e-mail." @@ -2135,10 +2091,10 @@ msgstr "Antes de poder receber notificaรงรตes de publicaรงรตes de {name}, primei #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2116,28 @@ msgstr "Comece o processo de verificaรงรฃo de idade, preenchendo os campos abaix msgid "Beta Feature" msgstr "Funcionalidade Beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" -msgstr "" +msgstr "Funcionalidades beta" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Funcionalidades beta ativadas" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "Funcionalidades beta podem ser instรกveis. Algumas alteraรงรตes podem precisar que a aplicaรงรฃo seja recarregada." #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "As funcionalidades beta podem ser instรกveis. Algumas alteraรงรตes podem precisar que a aplicaรงรฃo seja reiniciada." #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2147,9 @@ msgstr "Data de nascimento" msgid "Birthday" msgstr "Aniversรกrio" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Contas Bloqueadas" @@ -2282,7 +2244,7 @@ msgstr "Contas bloqueadas nรฃo conseguem responder aos seus fios, mencionar ou i msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Contas bloqueadas nรฃo conseguem responder aos seus fios, mencionar ou interagir de qualquer outra forma consigo. Nรฃo irรก ver o conteรบdo delas e elas serรฃo impedidas de verem o seu." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Bloquear nรฃo impede o rotulador de aplicar rรณtulos na sua conta." @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "O Bluesky nรฃo pode confirmar a veracidade da data aplicada." @@ -2330,7 +2293,7 @@ msgstr "O Bluesky รฉ uma rede aberta em que pode escolher o seu fornecedor de ho msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky รฉ uma rede aberta em que pode escolher o seu provedor de hospedagem. Se รฉ novo aqui, recomendamos que continue com a configuraรงรฃo padrรฃo do Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky รฉ melhor com amigos!" @@ -2358,7 +2321,7 @@ msgstr "Termos de Serviรงo de Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "O Bluesky guarda os seus contactos como dados codificados. Ao remover os seus contactos, esses dados sรฃo eliminados imediatamente." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "O Bluesky escolherรก um conjunto de contas recomendadas de pessoas na sua rede." @@ -2403,20 +2366,20 @@ msgstr "Junte atรฉ 50 amigos numa sรณ conversa." msgid "Browse custom feeds" msgstr "Procurar feeds personalizados" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Procurar mais contas" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Procure mais feeds na pรกgina Explorar" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Procurar mais sugestรตes" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Procure mais sugestรตes na pรกgina Explorar" @@ -2425,24 +2388,25 @@ msgstr "Procure mais sugestรตes na pรกgina Explorar" msgid "Browse other feeds" msgstr "Procurar outros feeds" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Procurar por publicaรงรตes sobre {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Procurar por publicaรงรตes marcadas com {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Procurar pacote de iniciante {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Navegar tรณpico {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Procurar tรณpico {displayName}" @@ -2461,8 +2425,8 @@ msgstr "Botรฃo para voltar ร  cronologia do inรญcio" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "Por {0}" @@ -2473,9 +2437,9 @@ msgstr "por @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "Por <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Ao criar uma conta, concorda com os <0>Termos de Aplicaรงรฃo e a <1> msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Ao criar uma conta, concorda com os <0>Termos de Aplicaรงรฃo." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Por si" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Cรขmara" @@ -2534,7 +2498,7 @@ msgstr "Acesso ร  cรขmara necessรกrio" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Acesso ร  cรขmara necessรกrio" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Cancelar reativaรงรฃo e terminar sessรฃo" msgid "Cancel reply" msgstr "Cancelar resposta" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Cancelar pesquisa" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Alteraรงรตes ao pacote de iniciante nรฃo se irรฃo refletir na lista apรณs a sua criaรงรฃo. A lista serรก uma cรณpia independente." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Conversa silenciada" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Conversa nรฃo encontrada." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Opรงรตes de conversa" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Os proprietรกrios da conversa nรฃo podem sair de uma conversa de grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "O destinatรกrio da conversa nรฃo รฉ seguido pelo remetente." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Caixa de pedidos de conversa" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Pedidos de conversa" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Definiรงรตes das conversas" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Removeu o silenciamento da conversa" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Conversas" @@ -2810,7 +2775,7 @@ msgstr "Procure em <0>{currentEmail} por um e-mail com o cรณdigo de confirma #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "Volte mais tarde!" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2802,7 @@ msgstr "Escolher mรฉtodo de verificaรงรฃo de domรญnio" msgid "Choose Feeds" msgstr "Escolher feeds" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Escolha por mim" @@ -2854,7 +2819,7 @@ msgstr "Escolher pessoas" msgid "Choose post languages" msgstr "Escolher idiomas da publicaรงรฃo" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Escolher esta cor como a sua foto de perfil" @@ -2879,7 +2844,7 @@ msgstr "Escolha a sua prรณpria cronologia! Feeds construรญdos pela comunidade pe msgid "Choose your password" msgstr "Escolha a sua palavra-passe" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Escolha o seu nome de utilizador" @@ -2966,7 +2931,7 @@ msgstr "Clique aqui para ver o link de convite para esta conversa de grupo" msgid "Click to open tag menu for {0}" msgstr "Clique para abrir o menu de tags para {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Clique para reenviar a mensagem falha" @@ -3003,7 +2968,7 @@ msgstr "Clique para reenviar a mensagem falha" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Clique para reenviar a mensagem falha" msgid "Close" msgstr "Fechar" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Fechar janela de diรกlogo em execuรงรฃo" @@ -3047,7 +3012,7 @@ msgstr "Fechar banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Fechar visualizador de imagens" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Fechar menu" @@ -3090,7 +3055,7 @@ msgstr "Fechar o banner de pedidos de adesรฃo" msgid "Close this dialog" msgstr "Fechar esta janela de diรกlogo" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Fechar modal de boas-vindas" @@ -3098,7 +3063,7 @@ msgstr "Fechar modal de boas-vindas" msgid "Closes password update alert" msgstr "Fecha o aviso de atualizaรงรฃo de palavra-passe" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Fecha o compositor de publicaรงรฃo e descarta o rascunho de publicaรงรฃo" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Cor" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Modo de cor" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Banda Desenhada" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Diretrizes da Comunidade" @@ -3141,7 +3106,7 @@ msgstr "Diretrizes da Comunidade" msgid "Complete onboarding and start using your account" msgstr "Complete e comece a utilizar a sua conta" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Conclua o desafio" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Escrever nova publicaรงรฃo" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Compor publicaรงรตes com atรฉ {0, plural, other {# caracteres}} de comprimento" @@ -3160,11 +3125,11 @@ msgstr "Compor publicaรงรตes com atรฉ {0, plural, other {# caracteres}} de compr msgid "Compose reply" msgstr "Escrever resposta" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "A comprimir GIF..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "A comprimir vรญdeo..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Contacte a nossa equipa de suporte" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contactar suporte" @@ -3253,7 +3218,7 @@ msgstr "Conteรบdo e Multimรฉdia" msgid "Content and media" msgstr "Conteรบdo e multimรฉdia" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Conteรบdo e Multimรฉdia" @@ -3265,10 +3230,6 @@ msgstr "Conteรบdo Bloqueado" msgid "Content filters" msgstr "Filtros de conteรบdo" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Conteรบdo de toda a rede que acreditamos que possa gostar." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Idiomas de conteรบdo" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Conteรบdo promovendo ou representando automutilaรงรฃo" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Alerta de Conteรบdo" msgid "Content warnings" msgstr "Alertas de conteรบdo" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Backdrop do menu de contexto, toque para fechar o ecrรฃ." @@ -3302,7 +3263,7 @@ msgstr "Backdrop do menu de contexto, toque para fechar o ecrรฃ." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Continuar fio..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continuar para o nome do grupo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "Conversa nรฃo encontrada." msgid "Copied build version to clipboard" msgstr "Versรฃo de compilaรงรฃo copiada para a รกrea de transferรชncia" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Link copiado para a รกrea de transferรชncia" @@ -3376,7 +3337,7 @@ msgstr "Link copiado para a รกrea de transferรชncia" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Copiar Palavra-passe da Aplicaรงรฃo" msgid "Copy at:// URI" msgstr "Copiar at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copiar DID do autor" @@ -3449,10 +3410,10 @@ msgstr "Copiar Link" msgid "Copy link to list" msgstr "Copiar Link para a Lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiar Link para a Publicaรงรฃo" @@ -3470,8 +3431,8 @@ msgstr "Copiar link para pacote de iniciante" msgid "Copy message text" msgstr "Copiar texto da mensagem" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copiar at:// URI da publicaรงรฃo" @@ -3490,7 +3451,7 @@ msgstr "Copiar valor de registo TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Polรญtica de Direitos de Autor" @@ -3540,11 +3501,11 @@ msgstr "Nรฃo foi possรญvel seguir todas as correspondรชncias. {0}" msgid "Could not leave chat" msgstr "Nรฃo foi possรญvel sair da conversa" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Nรฃo foi possรญvel sair da conversa." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Nรฃo foi possรญvel carregar o feed" @@ -3562,7 +3523,7 @@ msgstr "Nรฃo foi possรญvel carregar o perfil" msgid "Could not mute chat" msgstr "Nรฃo foi possรญvel silenciar a conversa" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Nรฃo foi possรญvel remover o membro." @@ -3606,8 +3567,8 @@ msgstr "vacas porcos" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Criar" @@ -3624,26 +3585,26 @@ msgstr "Criar uma lista a partir deste pacote de iniciante" msgid "Create a QR code for a starter pack" msgstr "Criar um cรณdigo QR para um pacote de iniciante" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Criar um pacote de iniciante" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Criar um Pacote de Iniciante" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Criar um pacote de iniciante para mim" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Criar conta" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Criar uma conta" @@ -3666,15 +3627,15 @@ msgstr "Criar uma conta" msgid "Create an account without using this starter pack" msgstr "Criar uma conta sem usar este pacote de iniciante" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Criar uma foto de perfil" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Criar outra" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Criar conversa de grupo" @@ -3741,9 +3702,9 @@ msgstr "Cultura" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "Funcionalidades beta atuais" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Conversa atual" @@ -3770,8 +3731,8 @@ msgstr "Substรขncias perigosas ou abuso de drogas" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Escuro" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Escuro" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Tema escuro" @@ -3814,7 +3775,7 @@ msgstr "Recusar esta sugestรฃo de idioma" msgid "Deepfake adult content" msgstr "Conteรบdo adulto Deepfake" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Padrรฃo" @@ -3894,7 +3855,7 @@ msgstr "Eliminar a minha conta" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Eliminar publicaรงรฃo" @@ -3988,7 +3949,7 @@ msgstr "Janela de diรกlogo: ajustar quem pode interagir com esta publicaรงรฃo" msgid "Dialog: Set search filters" msgstr "Diรกlogo: Definir filtros de pesquisa" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Escuro" @@ -4002,7 +3963,7 @@ msgstr "Desativar" msgid "Disable 2FA" msgstr "Desativar 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Desativar legendas" @@ -4045,9 +4006,9 @@ msgstr "Desativado" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "Descartar alteraรงรตes?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Descartar rascunho?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Descartar publicaรงรฃo?" @@ -4079,6 +4040,10 @@ msgstr "Desconectar Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Impedir que aplicaรงรตes exibam o meu perfil para utilizadores sem sessรฃo iniciada" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Descobrir feeds" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Impedir que aplicaรงรตes exibam o meu perfil para utilizadores sem sess msgid "Discover new custom feeds" msgstr "Descobrir novos feeds personalizados" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Descobrir novos feeds" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descobrir Feeds Novos" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ignorar" @@ -4103,28 +4064,28 @@ msgstr "Ignorar" msgid "Dismiss banner" msgstr "Ignorar banner" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Ignorar falha" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Ignorar guia de introduรงรฃo" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Descartar interesses" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Ignorar banner de evento ao vivo" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Ignorar esta secรงรฃo" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Ignorar esta sugestรฃo" @@ -4142,7 +4103,7 @@ msgstr "Exibir insรญgnias de texto alternativo maiores" msgid "Display name" msgstr "Nome de exibiรงรฃo" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Abandone os trolls e o clickbait. Encontre pessoas reais e conversas que sรฃo importantes para si." @@ -4205,8 +4166,8 @@ msgstr "Nรฃo se preocupe! Todas as mensagens e configuraรงรตes existentes serรฃo #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Nรฃo se preocupe! Todas as mensagens e configuraรงรตes existentes serรฃo msgid "Done" msgstr "Concluรญdo" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Toque duplo ou toque prolongadamente a mensagem para adicionar uma reaรงรฃo" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Toque duplo para fechar janela de diรกlogo" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Toque duplo para dar um gosto" @@ -4328,6 +4289,7 @@ msgstr "Desordens alimentares" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Editar imagem" msgid "Edit interaction settings" msgstr "Editar definiรงรตes de interaรงรฃo" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Editar interesses" @@ -4397,7 +4359,7 @@ msgstr "Editar estado \"em direto\"" msgid "Edit moderation list" msgstr "Editar lista de moderaรงรฃo" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar os Meus Feeds" @@ -4406,6 +4368,11 @@ msgstr "Editar os Meus Feeds" msgid "Edit name" msgstr "Editar nome" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Editar notificaรงรตes de {0}" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar Pessoas" @@ -4444,7 +4411,7 @@ msgstr "Editar lista de utilizadores" msgid "Edit who can reply" msgstr "Editar quem pode responder" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Editar o seu pacote de iniciante" @@ -4500,8 +4467,8 @@ msgstr "Cรณdigo HTML incorporado" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Incorporar publicaรงรฃo" @@ -4509,7 +4476,7 @@ msgstr "Incorporar publicaรงรฃo" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Incorpore esta publicaรงรฃo no seu site. Simplesmente copie o seguinte excerto e cole-o no cรณdigo HTML do seu site." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Reprodutor de vรญdeos incorporado" @@ -4531,9 +4498,9 @@ msgstr "Permitir conteรบdo adulto" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "Ativar funcionalidades beta" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Ativar legendas" @@ -4550,12 +4517,13 @@ msgstr "Permitir conteรบdo multimรฉdia externo" msgid "Enable media players for" msgstr "Permitir reprodutores de multimรฉdia para" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Ative as notificaรงรตes de uma conta visitando o perfil desta e pressionando o <0>รญcone de sino <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Ativar notificaรงรตes push" @@ -4581,7 +4549,7 @@ msgstr "Permitir vรญdeos do momento no seu feed Descobrir" msgid "Enabled" msgstr "Permitido" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Fim do feed" @@ -4608,7 +4576,7 @@ msgstr "Insira uma palavra ou tag" msgid "Enter code" msgstr "Insira o cรณdigo" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Entrar em ecrรฃ cheio" @@ -4650,11 +4618,11 @@ msgstr "Insira o seu nome de utilizador e palavra-passe" msgid "Enters full screen" msgstr "Entra em ecrรฃ cheio" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Entretenimento" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Erro" @@ -4684,7 +4652,7 @@ msgstr "Ocorreu um erro ao guardar o ficheiro" msgid "Error receiving captcha response." msgstr "Ocorreu um erro ao obter a resposta do captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Erro: {error}" @@ -4696,8 +4664,8 @@ msgstr "Todos podem responder" msgid "Everybody can reply to this post." msgstr "Todos podem responder a esta publicaรงรฃo." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Todos" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Todos" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Tudo o resto" @@ -4738,7 +4706,7 @@ msgstr "Excluir utilizadores que eu sigo" msgid "Excludes users you follow" msgstr "Exclui utilizadores que sigo" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Sair do ecrรฃ cheio" @@ -4755,11 +4723,11 @@ msgstr "Expandir lista de utilizadores" msgid "Expand or collapse the full post you are replying to" msgstr "Expandir ou colapsar a publicaรงรฃo completa a que estรก a responder" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Expandir texto da publicaรงรฃo" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Expande ou colapsa o texto da publicaรงรฃo" @@ -4802,15 +4770,15 @@ msgstr "Conteรบdo multimรฉdia explรญcito ou perturbador." msgid "Explicit sexual images." msgstr "Imagens sexuais explรญcitas." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorar" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Explorar a aplicaรงรฃo" @@ -4844,7 +4812,7 @@ msgstr "Conteรบdo Multimรฉdia Externo" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "O conteรบdo multimรฉdia externo pode permitir que sites recolham informaรงรตes sobre si ou o seu dispositivo. Nenhuma informaรงรฃo รฉ enviada ou solicitada atรฉ pressionar o botรฃo \"Reproduzir\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferรชncias de Conteรบdo Multimรฉdia Externo" @@ -4886,7 +4854,7 @@ msgstr "Falha ao tentar alterar nome de utilizador. Tente novamente." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Falha ao copiar o link" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Falha ao sair da conversa de grupo" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Falha ao carregar as conversas" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Falha ao carregar feeds" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Falha ao carregar preferรชncias de feeds" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Falha ao carregar definiรงรตes de notificaรงรตes." @@ -5012,14 +4981,14 @@ msgstr "Falha ao carregar preferรชncia." msgid "Failed to load profiles" msgstr "Falha ao carregar perfis" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Falha ao carregar feeds sugeridos" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Falha ao carregar contas sugeridas" @@ -5027,12 +4996,12 @@ msgstr "Falha ao carregar contas sugeridas" msgid "Failed to lock group chat" msgstr "Falha ao trancar a conversa de grupo" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Falha ao marcar todas as conversas como lidas" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "Falha ao rescindir o seu pedido. Por favor, tente novamente." msgid "Failed to resolve location. Please try again." msgstr "Falha ao determinar localizaรงรฃo. Por favor, tente novamente." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Falha ao guardar rascunho" @@ -5191,7 +5160,7 @@ msgstr "Conta falsa ou bot" msgid "False information about elections" msgstr "Informaรงรฃo falsa sobre eleiรงรตes" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Feed" @@ -5212,7 +5181,7 @@ msgstr "Criador do feed" msgid "Feed identifier" msgstr "Identificador do feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu de feed" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback enviado ao operador do feed" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Feeds atualizados!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Feeds que pensamos que poderรก gostar." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Obter atualizaรงรฃo" @@ -5273,34 +5238,22 @@ msgstr "Obter atualizaรงรฃo" msgid "File saved successfully!" msgstr "Ficheiro guardado com sucesso!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Filtrar por autor" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtrar por autor (atualmente: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Filtrar por multimรฉdia" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Filtrar por multimรฉdia (atualmente: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtrar de feeds" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtrar pesquisa por idioma" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrar pesquisa por idioma (atualmente: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "Filtrar pesquisa por multimรฉdia (atualmente: {currentLabel})" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "Filtrar esta pesquisa por {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtrar quem pode optar por receber notificaรงรตes da sua atividade" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtrar de quem vocรช recebe notificaรงรตes" @@ -5352,8 +5305,8 @@ msgstr "Encontrar contas para seguir" msgid "Find and invite friends" msgstr "Encontrar e convidar amigos" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Encontrar Contactos" @@ -5387,7 +5340,7 @@ msgstr "Encontre os seus amigos" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Encontre os seus amigos no Bluesky verificando o seu nรบmero de telefone e estabelecendo correspondรชncias com o dos seus contactos. Nรณs protegemos a sua informaรงรฃo e o que acontece a seguir รฉ controlado por si. <0>Saiba mais" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Encontre o seu povo" @@ -5429,7 +5382,7 @@ msgstr "Focar o campo de pesquisa" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Seguir {0}" msgid "Follow {displayName}" msgstr "Seguir {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Seguir {handle}" @@ -5453,11 +5406,11 @@ msgstr "Seguir {handle}" msgid "Follow 10 accounts" msgstr "Siga 10 contas" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Siga 10 pessoas para comeรงar" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Siga 7 contas" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Seguidores podem aderir" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que conhece" @@ -5544,7 +5497,7 @@ msgstr "Seguidores que conhece" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "A seguir {0}" msgid "Following {displayName}" msgstr "A seguir {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "A seguir {handle}" @@ -5578,21 +5531,21 @@ msgstr "A seguir {handle}" msgid "Following feed preferences" msgstr "Preferรชncias do feed A seguir" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferรชncias do feed A seguir" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Segue-te" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Tipo de letra" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Tamanho de letra" @@ -5612,13 +5565,13 @@ msgstr "Por motivos de seguranรงa, precisamos de enviar um cรณdigo de confirmaรง msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Por motivos de seguranรงa, nรฃo poderรก ver isto novamente. Se vocรช perder esta palavra-passe da aplicaรงรฃo, precisarรก de gerar uma nova." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Para a melhor experiรชncia, recomendamos o uso do tipo de letra do tema." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Para si" @@ -5628,7 +5581,7 @@ msgstr "Para si" msgid "Forever" msgstr "Para sempre" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Esqueรงa o ruรญdo" @@ -5647,11 +5600,11 @@ msgstr "Esqueceu-se da palavra-passe?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Quatro balรตes de mensagem a representar uma conversa de grupo. Primeira mensagem: \"Soubeste da novidade? O Bluesky agora tem conversas de grupo!\" Segunda mensagem: \"omg, nรฃo acredito\" Terceira mensagem: \"Uau, 50 pessoas numa sรณ conversa!\" Quarta mensagem: \"Tambรฉm podes enviar links de convite!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Liberte o seu feed" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De" @@ -5674,7 +5627,7 @@ msgstr "De <0/>" msgid "From these people" msgstr "Destas pessoas" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Gerar um pacote de iniciante" @@ -5712,45 +5665,45 @@ msgstr "Germ DM reconectada" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features weโ€™re testing." -msgstr "" +msgstr "Receba acesso antecipado a funcionalidades experimentais que estamos a testar." #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Obter ajuda" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Receber notificaรงรตes de adesรตes atravรฉs de pacotes de iniciante, verificaรงรฃo e outra atividade." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Receber notificaรงรตes quando pessoas te seguirem." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Receber notificaรงรตes quando pessoas gostarem das suas publicaรงรตes." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Receber notificaรงรตes quando as pessoas gostarem das suas republicaรงรตes." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Receber notificaรงรตes quando pessoas te mencionarem." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Receber notificaรงรตes quando pessoas citarem suas publicaรงรตes." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Receber notificaรงรตes quando pessoas responderem ร s suas publicaรงรตes." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Receber notificaรงรตes quando pessoas republicarem as suas publicaรงรตes." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Receber notificaรงรตes quando as pessoas republicarem as suas republicaรงรตes." @@ -5762,15 +5715,15 @@ msgstr "Receba notificaรงรตes quando alguรฉm lhe enviar pedidos de mensagem." msgid "Get notifications when people send you messages." msgstr "Receba notificaรงรตes quando as pessoas lhe enviarem mensagens." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Receber notificaรงรตes quando houver atividade em publicaรงรตes subscrevidas por si." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Receber notificaรงรตes de novas publicaรงรตes" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Receba notificaรงรตes sobre publicaรงรตes e respostas de contas que escolher." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Receber notificaรงรตes de novas publicaรงรตes de {name}" @@ -5799,11 +5752,11 @@ msgstr "Vamos comeรงar" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF carregado" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Dรช um rosto ao seu perfil" @@ -5813,20 +5766,20 @@ msgstr "Glorificaรงรฃo de violรชncia" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Entrar em direto por" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Ir para o perfil de {0}" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Nome da conversa de grupo atualizado" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Definiรงรตes de conversa de grupo" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "As conversas de grupo podem ter no mรกximo {0, plural, one {}other {# pessoas}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "O grupo estรก trancado" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Nome do grupo" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "O nome do grupo รฉ demasiado longo {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {}other {O nรบmero mรกximo de caracteres รฉ #.}}" @@ -6077,7 +6031,7 @@ msgstr "Atividades perigosas ou de alto risco" msgid "Harming or endangering minors" msgstr "Prejudicar ou colocar menores em perigo" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6052,7 @@ msgstr "Tem um cรณdigo? <0>Clique aqui." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "A sua localizaรงรฃo estรก errada? <0>Toque aqui para atualizar a sua localizaรงรฃo com o GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Estรก com problemas?" @@ -6114,7 +6068,7 @@ msgstr "Retido pelo Bluesky por 7 dias para evitar abusos, e depois eliminado" msgid "Help" msgstr "Ajuda" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Carregue uma foto de perfil para ajudar as pessoas a saber que nรฃo รฉ um bot." @@ -6135,12 +6089,12 @@ msgstr "Olรก!" msgid "Hi there!" msgstr "Olรก!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Oculto" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Oculto pelas suas definiรงรตes de moderaรงรฃo." @@ -6148,9 +6102,10 @@ msgstr "Oculto pelas suas definiรงรตes de moderaรงรฃo." msgid "Hidden list" msgstr "Lista oculta" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Lista oculta" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Ocultar" @@ -6198,7 +6154,7 @@ msgstr "Ocultar resposta para todos" msgid "Hide reply for me" msgstr "Ocultar resposta para mim" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Ocultar este cartรฃo" @@ -6218,16 +6174,18 @@ msgstr "Ocultar essa resposta?" msgid "Hide translation" msgstr "Ocultar traduรงรฃo" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Ocultar tendรชncias" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Ocultar tendรชncias?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Ocultar vรญdeos do momento?" @@ -6240,7 +6198,7 @@ msgstr "Ocultar lista de utilizadores" msgid "Hide verification badges" msgstr "Ocultar selos de verificaรงรฃo" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Oculta o conteรบdo" @@ -6293,8 +6251,8 @@ msgstr "Hmmmm, nรฃo foi possรญvel carregar esse serviรงo de moderaรงรฃo." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Aguarde! Estamos a dar acesso a vรญdeo gradualmente e ainda estรก em fila de espera. Volte mais tarde!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "Fornecedor de hospedagem: {0}" msgid "Hosting provider: Bluesky" msgstr "Fornecedor de hospedagem: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Popular" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Como funciona:" @@ -6409,6 +6363,7 @@ msgstr "Se atualizar o seu endereรงo de e-mail, a 2FA por e-mail serรก desativad msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Se pretende alterar a sua palavra-passe, vamos enviar-lhe um cรณdigo para verificar que esta รฉ a sua conta." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Se quer restringir quem pode receber notificaรงรตes da atividade da sua conta, pode alterar isso em <0>Definiรงรตes โ†’ Privacidade e Seguranรงa." @@ -6548,7 +6503,7 @@ msgstr "Na aplicaรงรฃo, push, de todos" msgid "In-app, push, people you follow" msgstr "Na aplicaรงรฃo, push, de pessoas que sigo" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Caixa de entrada vazia" @@ -6564,7 +6519,6 @@ msgstr "Caixa de entrada vazia!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "Incluir" @@ -6573,7 +6527,7 @@ msgstr "Incluir" msgid "Include or exclude matching posts (currently: {0})" msgstr "Incluir ou excluir publicaรงรตes correspondentes (atualmente: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Incluir publicaรงรตes e/ou respostas (atualmente: {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "Incluir publicaรงรตes feitas a partir desta data" msgid "Include posts made until this date" msgstr "Incluir publicaรงรตes feitas atรฉ esta data" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Incluir estes resultados" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Nome de utilizador ou palavra-passe incorretos" @@ -6683,7 +6633,7 @@ msgstr "Convidar {name} para aderir ao Bluesky" msgid "Invite code" msgstr "Cรณdigo de convite" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "O cรณdigo de convite nรฃo foi aceite. Verifique se o inseriu corretamente e tente novamente." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "De momento รฉ sรณ vocรช! Adicione mais pessoas ao seu pacote de iniciante pesquisando acima." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID do trabalho: {0}" @@ -6816,8 +6766,8 @@ msgstr "Junte-se ร  conversa" msgid "Journalism" msgstr "Jornalismo" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continuar a editar" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "Website da KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Rotulado por {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Rotulado pelo autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Rรณtulos" @@ -6852,7 +6802,7 @@ msgstr "Rรณtulos adicionados" msgid "Labels applied to this post" msgstr "Rรณtulos aplicados a esta publicaรงรฃo" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Rรณtulos sรฃo anotaรงรตes em utilizadores e conteรบdo. Eles podem ser usados para ocultar, avisar e categorizar a rede." @@ -6864,7 +6814,7 @@ msgstr "Rรณtulos na sua conta" msgid "Language" msgstr "Idioma" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Definiรงรตes de Idioma" @@ -6874,7 +6824,7 @@ msgstr "Definiรงรตes de Idioma" msgid "Languages" msgstr "Idiomas" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Maior" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Iniciado pela รบltima vez agora mesmo" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Mais recentes" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Saber mais (em inglรชs)" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Saber mais" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Saiba mais sobre <0>como utilizar a pesquisa avanรงada." @@ -6937,8 +6887,8 @@ msgstr "Saiba mais sobre importar contactos" msgid "Learn more about self hosting your PDS." msgstr "Saiba mais sobre como hospedar o seu PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Saiba mais sobre a moderaรงรฃo aplicada a este conteรบdo" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Saiba mais sobre estas alteraรงรตes e como partilhar as suas ideias connosco, lendo a nossa publicaรงรฃo no blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Saiba mais sobre este aviso" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Saiba mais nas suas <0>definiรงรตes de conta." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Saber mais." @@ -6993,8 +6943,8 @@ msgstr "Sair" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Sair do Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Sair desta conversa irรก trancรก-la permanentemente e nรฃo poderรก voltar a entrar." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Saiu da conversa de grupo." @@ -7042,7 +6992,7 @@ msgstr "Saiu da conversa de grupo." msgid "left to go." msgstr "ร  sua frente na fila." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Deixe-me escolher" @@ -7057,7 +7007,7 @@ msgstr "Vamos lรก!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Claro" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Gostar" @@ -7076,7 +7026,7 @@ msgstr "Gostar" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gosto ({0, plural, one {# gosto} other {# gostos}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Deixe um \"gosto\" em 10 publicaรงรตes" @@ -7085,7 +7035,7 @@ msgstr "Deixe um \"gosto\" em 10 publicaรงรตes" msgid "Like 10 posts to train the Discover feed" msgstr "Deixe um \"gosto\" em 10 publicaรงรตes para ajudar a treinar o seu feed \"Descobrir\"" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Gostar deste feed" @@ -7093,8 +7043,8 @@ msgstr "Gostar deste feed" msgid "Like this labeler" msgstr "Gostar deste rotulador" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Gostado por" @@ -7111,27 +7061,45 @@ msgstr "Gostado por" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Gostado por {0, plural, one {# utilizador} other {# utilizadores}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Gostado por {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Gostado por {0} e {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Gostado por {likeCount, plural, one {# utilizador} other {# utilizadores}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Gostos" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Gostos das suas republicaรงรตes" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Gostos nesta publicaรงรฃo" @@ -7144,7 +7112,7 @@ msgstr "Linear" msgid "Link copied to clipboard" msgstr "Link copiado para รกrea de transferรชncia" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Silenciamento da lista removido " -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "EM DIRETO" msgid "Live event happening now: {0}" msgstr "Evento ao vivo a acontecer agora: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Evento ao vivo ocultado" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Evento ao vivo a ser exibido" @@ -7279,12 +7247,12 @@ msgstr "A funcionalidade \"Entrar em direto\" estรก em beta" msgid "Live link" msgstr "Link de transmissรฃo em direto" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Carregar mais" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Carregar mais feeds sugeridos" @@ -7292,8 +7260,8 @@ msgstr "Carregar mais feeds sugeridos" msgid "Load new notifications" msgstr "Carregar novas notificaรงรตes" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Trancar esta conversa de grupo" msgid "Locked" msgstr "Trancada" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Registo" @@ -7387,7 +7355,7 @@ msgstr "GIFs de amor" msgid "Make adjustments to email settings for your account" msgstr "Ajustar as definiรงรตes de e-mail para a sua conta" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Faรงa um para mim" @@ -7418,15 +7386,15 @@ msgstr "Manual" msgid "Mark all as read" msgstr "Marcar tudo como lido" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marcar todas as conversas como lidas" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Marcar como lido" msgid "Marked all as read" msgstr "Tudo marcado como lido" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Todas as conversas foram marcadas como lidas" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Todos os pedidos foram marcados como lidos" @@ -7456,8 +7424,12 @@ msgstr "Todos os pedidos foram marcados como lidos" msgid "Maybe later" msgstr "Talvez mais tarde" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Eu" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Multimรฉdia" @@ -7475,7 +7447,7 @@ msgstr "Conteรบdo multimรฉdia armazenado noutro dispositivo" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Conteรบdo multimรฉdia que pode ser perturbador ou inapropriado para algumas audiรชncias." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Membro removido da conversa de grupo." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "utilizadores mencionados" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menรงรตes" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mensagem eliminada" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Falha ao enviar mensagem." @@ -7563,15 +7535,15 @@ msgstr "A mensagem รฉ demasiado longa ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH}) msgid "Message options" msgstr "Opรงรตes de mensagem" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mensagens" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "As mensagens desta pessoa estรฃo ocultas enquanto estiver bloqueado por ela." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "As mensagens desta pessoa estรฃo ocultas enquanto a estiver a bloquear." @@ -7592,7 +7564,7 @@ msgstr "Enganador" msgid "Missing media" msgstr "Conteรบdo multimรฉdia em falta" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderaรงรฃo" @@ -7636,7 +7608,7 @@ msgstr "Lista de moderaรงรฃo atualizada" msgid "Moderation lists" msgstr "Listas de moderaรงรฃo" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de Moderaรงรฃo" @@ -7645,7 +7617,7 @@ msgstr "Listas de Moderaรงรฃo" msgid "moderation settings" msgstr "definiรงรตes de moderaรงรฃo" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Estados de moderaรงรฃo" @@ -7786,7 +7758,7 @@ msgstr "Silenciado" msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -7867,7 +7839,6 @@ msgstr "Precisa de denunciar uma violaรงรฃo de direitos de autor, uma solicitaรง msgid "Nevermind, create a handle for me" msgstr "Deixe estar, crie um nome de utilizador para mim" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Novo" @@ -7893,11 +7864,11 @@ msgstr "{postsCount, plural, one {Nova publicaรงรฃo} other {Novas publicaรงรตes} #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Nova conversa" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Nova Funcionalidade" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Novos seguidores" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Nova conversa de grupo" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Nova conversa de grupo" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Nova conversa de grupo com:" @@ -7966,13 +7937,13 @@ msgstr "Nova lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Novos pedidos de mensagem" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Novas mensagens" @@ -7982,12 +7953,12 @@ msgstr "Novas mensagens" msgid "New password" msgstr "Nova palavra-passe" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nova publicaรงรฃo" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Respostas mais recentes primeiro" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Notรญcias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Imagem seguinte" msgid "Night" msgstr "Noite" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Sem anรบncios, sem rastreamento invasivo, sem armadilhas de engajamento. O Bluesky respeita o seu tempo e atenรงรฃo." @@ -8065,9 +8036,14 @@ msgstr "Sem anรบncios, sem rastreamento invasivo, sem armadilhas de engajamento. msgid "No app passwords yet" msgstr "Sem palavras-passe de aplicaรงรฃo ainda" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "Sem filtro de autor" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "Nenhuma funcionalidade beta de momento." #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8074,7 @@ msgstr "Sem expiraรงรฃo definida" msgid "No feeds found. Try searching for something else." msgstr "Nรฃo foram encontrados feeds. Tente procurar por algo diferente." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Sem seguidores ainda" @@ -8116,9 +8092,15 @@ msgstr "Sem GIFs para mostrar de momento. Tente novamente daqui a pouco." msgid "No image" msgstr "Sem imagem" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "Sem filtro de idioma" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Sem gostos ainda" @@ -8135,7 +8117,12 @@ msgstr "Nenhuma lista" msgid "No longer following {0}" msgstr "Jรก nรฃo segue {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "Sem filtro de conteรบdo multimรฉdia" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Sem conteรบdo multimรฉdia ainda" @@ -8143,7 +8130,7 @@ msgstr "Sem conteรบdo multimรฉdia ainda" msgid "No messages yet" msgstr "Sem mensagens ainda" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Chega de \"doomscrolling\" em algoritmos cheios de lixo. Encontre feeds que funcionam para si, nรฃo contra si." @@ -8180,16 +8167,21 @@ msgstr "Ninguรฉm, para alรฉm do autor, pode citar esta publicaรงรฃo." msgid "No one can send messages" msgstr "Ninguรฉm pode enviar mensagens" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "Sem filtro de publicaรงรตes" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Sem publicaรงรตes aqui" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Sem publicaรงรตes ainda" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Ainda sem citaรงรตes" @@ -8198,11 +8190,7 @@ msgstr "Ainda sem citaรงรตes" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Sem GIFs recentes ainda. Escolha um para vรช-lo aqui." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "Sem respostas" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Sem respostas ainda" @@ -8217,13 +8205,13 @@ msgstr "Nenhum resultado" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sem resultados" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Sem resultados para \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "Nenhum resultado encontrado" msgid "No results found for \"{query}\"" msgstr "Nรฃo foram encontrados resultados para \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "Nenhum resultado encontrado para \"<0>{query}\" com os filtros de pesquisa avanรงada aplicados." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "Nenhum resultado encontrado para โ€œ<0>{query}โ€." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Nenhum resultado encontrado para a sua pesquisa com os filtros de pesquisa avanรงada aplicados." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Sem resultados." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Nenhum Pacote de Iniciante ainda" @@ -8265,7 +8253,7 @@ msgstr "Nรฃo, obrigado" msgid "No translation received from your device." msgstr "Nenhuma traduรงรฃo recebida do seu dispositivo." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Sem vรญdeos ainda" @@ -8278,7 +8266,7 @@ msgstr "Ninguรฉm" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ainda ninguรฉm gostou disto. Talvez deva ser o primeiro!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ainda ninguรฉm citou isto. Talvez deva ser o primeiro!" @@ -8298,6 +8286,10 @@ msgstr "Imagens รญntimas nรฃo consensuais" msgid "Non-sexual Nudity" msgstr "Nudez nรฃo sexual" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Nenhuma" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Indisponรญvel nesta plataforma." msgid "Not followed by anyone youโ€™re following" msgstr "Nรฃo รฉ seguido por ninguรฉm seguido por si" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Nรฃo Encontrado" @@ -8333,7 +8325,7 @@ msgstr "Nota sobre partilhar" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: o Bluesky รฉ uma rede aberta e pรบblica. Esta definiรงรฃo limita somente a visibilidade do seu conteรบdo no site e aplicaรงรฃo do Bluesky, e outras aplicaรงรตes podem nรฃo respeitar essa definiรงรฃo. O seu conteรบdo pode ainda ser exibido para utilizadores sem sessรฃo iniciada atravรฉs de outras aplicaรงรตes e sites." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Nota: Esta publicaรงรฃo รฉ apenas visรญvel para utilizadores com sessรฃo iniciada." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Nada foi guardado ainda" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Definiรงรตes de notificaรงรตes" @@ -8353,11 +8345,12 @@ msgstr "Definiรงรตes de notificaรงรตes" msgid "Notification sounds" msgstr "Sons de notificaรงรตes" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Oh nรฃo!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "OK" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Reiniciar a introduรงรฃo" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Um dos destinatรกrios selecionados nรฃo permite conversas de grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Foi bloqueado por um dos destinatรกrios selecionados e nรฃo o pode contactar." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Um ou mais GIFs sem texto alternativo." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Uma ou mais imagens sem texto alternativo." @@ -8454,11 +8449,11 @@ msgstr "Um ou mais dos seus ficheiros selecionados nรฃo sรฃo suportados." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "Um ou mais dos ficheiros selecionados sรฃo demasiado grandes. O tamanho mรกximo รฉ {VIDEO_MAX_SIZE_MB}ย ย MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Uma ou mais publicaรงรตes sรฃo demasiado longas para guardar como um rascunho {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {O nรบmero mรกximo de caracteres รฉ # caracter.} other {O nรบmero mรกximo de caracteres รฉ # caracteres.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Um ou mais vรญdeos sem texto alternativo." @@ -8471,7 +8466,7 @@ msgstr "Apenas {0} pode responder." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Somente {0} de {1} {2, plural, one {imagem} other {imagens}} foram adicionadas; o limite รฉ {MAX_GALLERY_IMAGES}" @@ -8507,6 +8502,10 @@ msgstr "Apenas pessoas seguidas por {0} podem aderir." msgid "Only people the chat owner follows can join" msgstr "Apenas pessoas seguidas pelo proprietรกrio da conversa podem aderir" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "Apenas publicaรงรตes" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "Apenas publicaรงรตes com conteรบdo multimรฉdia" @@ -8519,7 +8518,7 @@ msgstr "Apenas publicaรงรตes com vรญdeos" msgid "Only replies" msgstr "Apenas respostas" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Apenas ficheiros WebVTT (.vtt) sรฃo suportados" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ups, este perfil nรฃo existe. Tente ler outro." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Ups!" @@ -8544,7 +8543,7 @@ msgstr "Ups!" msgid "Open advanced search options" msgstr "Abrir opรงรตes de pesquisa avanรงada" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Abrir criador de foto de perfil" @@ -8570,21 +8569,22 @@ msgstr "Abrir opรงรตes de conversa" msgid "Open draft" msgstr "Abrir rascunho" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Abrir menu lateral" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Abrir selecionador de emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Abrir ecrรฃ de informaรงรฃo do feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Abrir menu de opรงรตes de feed" @@ -8627,7 +8627,7 @@ msgstr "Abrir pรกgina de debug da moderaรงรฃo" msgid "Open muted words and tags settings" msgstr "Abrir definiรงรตes de palavras e tags silenciadas" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Abrir pacote" @@ -8699,7 +8699,7 @@ msgstr "Abre detalhes adicionais para uma entrada de debug" msgid "Opens alt text dialog" msgstr "Abre janela de diรกlogo de texto alternativo" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Abre cรขmara no dispositivo" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Abre processo para criar uma nova conta no Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Abre o processo para iniciar sessรฃo com a sua conta Bluesky existente" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Palavra-passe atualizada!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausa" @@ -8925,12 +8925,12 @@ msgstr "Pausa" msgid "Pause GIF" msgstr "Meter GIF em pausa" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausar vรญdeo" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Pessoas" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Pessoas seguidas por {ownerName} podem pedir para se juntar" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Pessoas seguidas por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Pessoas a seguir @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Pessoas que eu sigo" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Pessoas que eu sigo podem pedir para se juntar" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Pessoas que segue" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Imagens destinadas a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Afixar feed" @@ -9034,7 +9034,7 @@ msgstr "Afixar feed" msgid "Pin to home" msgstr "Afixar a inรญcio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Afixar a Inรญcio" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Afixado" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} afixado a Inรญcio" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Afixado aos seus feeds" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Reproduzir" @@ -9076,8 +9076,8 @@ msgstr "Reproduzir {0}" msgid "Play GIF" msgstr "Reproduzir GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Reproduzir vรญdeo" @@ -9109,11 +9109,11 @@ msgstr "Por favor, adicione qualquer rรณtulo de aviso de conteรบdo que seja apli 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Por favor, escolha o seu nome de utilizador." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Por favor, escolha a sua palavra-passe." @@ -9122,7 +9122,7 @@ msgstr "Por favor, escolha a sua palavra-passe." 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 "Por favor, clique no link contido no e-mail que lhe acabamos de enviar para verificar o seu novo endereรงo de e-mail. Este รฉ um passo importante para permitir que possa continuar a desfrutar de todas as funcionalidades do Bluesky." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Por favor complete o captcha de verificaรงรฃo." @@ -9179,7 +9179,7 @@ msgstr "Por favor, introduza o cรณdigo que recebeu e a nova palavra-passe que go 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:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Por favor, introduza o seu e-mail." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Por favor, escreva a sua mensagem abaixo:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Polรญtica" @@ -9269,7 +9269,7 @@ msgstr "Polรญtica" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publicaรงรฃo" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Publicaรงรฃo" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Publicar uma foto" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Publicar um vรญdeo" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicar tudo" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Publicar mesmo assim" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Publicaรงรฃo bloqueada" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Publicaรงรฃo por @{0}" @@ -9340,7 +9340,7 @@ msgstr "Publicaรงรฃo ocultada por si" msgid "Post interaction settings" msgstr "Definiรงรตes de interaรงรฃo com publicaรงรฃo" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Definiรงรตes de Interaรงรฃo com Publicaรงรฃo" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Publicaรงรฃo afixada" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Publicaรงรฃo guardada" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "Tipo de publicaรงรฃo" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Publicaรงรฃo desafixada" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Publicaรงรตes" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "Publicaรงรตes e respostas" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "As publicaรงรตes podem ser silenciadas com base no seu texto, nas suas t msgid "Posts hidden" msgstr "Publicaรงรตes ocultas" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Publicaรงรตes, Respostas" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Link potencialmente enganador" @@ -9449,20 +9451,21 @@ msgstr "Privacidade" msgid "Privacy and security" msgstr "Privacidade e seguranรงa" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Privacidade e Seguranรงa" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Definiรงรตes de privacidade e seguranรงa" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Polรญtica de Privacidade" msgid "Privacy violation of a minor" msgstr "Violaรงรฃo da privacidade de um menor" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "A processar GIF..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "A processar o vรญdeo..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Listas pรบblicas e partilhรกveis de utilizadores para silenciar ou bloquear em massa." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publicar publicaรงรฃo" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publicar publicaรงรตes" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publicar respostas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publicar resposta" @@ -9599,12 +9602,12 @@ msgstr "Citaรงรตes desativadas" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citaรงรตes" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citaรงรตes desta publicaรงรฃo" @@ -9647,7 +9650,7 @@ msgstr "Reative a sua conta" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Ler mais {0, plural, one {# resposta} other {# respostas}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Leia sobre como usar os filtros de pesquisa avanรงada" @@ -9657,11 +9660,11 @@ msgstr "Leia sobre como usar os filtros de pesquisa avanรงada" msgid "Read blog post" msgstr "Ler a publicaรงรฃo do blog (em inglรชs)" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Ler menos" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Ler mais" @@ -9687,11 +9690,11 @@ msgstr "Leia a Polรญtica de Privacidade do Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Leia os Termos de Serviรงo do Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Conversas reais." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Pessoas reais." @@ -9721,10 +9724,6 @@ msgstr "Pesquisas recentes" msgid "Recently used" msgstr "Usados recentemente" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomendados" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconectar" @@ -9748,7 +9747,7 @@ msgstr "Rejeitar solicitaรงรฃo de conversa" msgid "Reject join request" msgstr "Rejeitar pedido de adesรฃo" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Recarregar conversas" @@ -9766,7 +9765,7 @@ msgstr "Recarregar conversas" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Remover" @@ -9792,8 +9791,8 @@ msgstr "Remover {displayName}?" msgid "Remove {q}" msgstr "Remover {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Remover conta" @@ -9845,15 +9844,15 @@ msgstr "Remover filtro" msgid "Remove from chat" msgstr "Remover da conversa" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Remover dos meus feeds" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Remover de acesso rรกpido?" @@ -9862,7 +9861,7 @@ msgstr "Remover de acesso rรกpido?" msgid "Remove from saved feeds" msgstr "Remover dos feeds guardados" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Remover das publicaรงรตes salvas" @@ -9880,8 +9879,8 @@ msgstr "Remover imagem" msgid "Remove live status" msgstr "Remover estado \"em direto\"" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Remover membro" @@ -9943,7 +9942,7 @@ msgstr "Removido da lista" msgid "Removed from saved feeds" msgstr "Removido dos feeds guardados" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Removida das publicaรงรตes salvas" @@ -9952,7 +9951,7 @@ msgstr "Removida das publicaรงรตes salvas" msgid "Removed from starter pack" msgstr "Removido do pacote de iniciante" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Respondeu-te" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Mensagem de {senderName} a que respondeu, toque para ir atรฉ ela" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "A mensagem respondida foi enviada antes de ter entrado" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Mensagem a que respondeu, toque para ir atรฉ ela" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Respostas" @@ -10037,7 +10037,7 @@ msgstr "As respostas a esta publicaรงรฃo estรฃo desativadas." msgid "Reply" msgstr "Responder" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Responder" @@ -10098,8 +10098,8 @@ msgstr "Denunciar conversa" msgid "Report dialog" msgstr "Janela de denรบncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Denunciar feed" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Republicado por si" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Republicaรงรตes" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Republicaรงรตes desta publicaรงรฃo" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Republicaรงรตes das suas republicaรงรตes" @@ -10253,7 +10253,7 @@ msgstr "Solicitado" msgid "Requests" msgstr "Pedidos" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Repete a รบltima aรงรฃo, que resultou em erro" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Voltar ร  pรกgina de inรญcio" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Volta ร  pรกgina anterior" @@ -10446,27 +10446,27 @@ msgstr "Guardar data de nascimento" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Guardar alteraรงรตes" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Guardar alteraรงรตes?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Guardar rascunho" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Guardar rascunho?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Guardar cรณdigo QR" msgid "Save these options for next time" msgstr "Guardar estas opรงรตes para a prรณxima vez" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Guardar nos meus feeds" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Feeds Guardados" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Publicaรงรตes Guardadas" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Guardado nos seus feeds" @@ -10520,8 +10520,8 @@ msgstr "Guardado nos seus feeds" msgid "Say hello!" msgstr "Diga olรก!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Diga olรก a alguรฉm" @@ -10535,7 +10535,7 @@ msgstr "Ler" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Ler cรณdigo QR" @@ -10543,15 +10543,15 @@ msgstr "Ler cรณdigo QR" msgid "Science" msgstr "Ciรชncia" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Scroll para a esquerda" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Scroll para a direita" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Ir atรฉ ร  mensagem a que esta resposta se refere" @@ -10564,8 +10564,8 @@ msgstr "Voltar ao topo" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Procurar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Pesquisar nas publicaรงรตes de @{0}" @@ -10612,11 +10612,11 @@ msgstr "Pesquisar por {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Procurar por feeds que deseja sugerir para outros." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Procurar por mais contas" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Procurar mais feeds" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Procurar GIFs" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "A pesquisa estรก indisponรญvel quando nรฃo tiver sessรฃo iniciada" @@ -10707,17 +10707,22 @@ msgstr "Ver publicaรงรตes em #{tag} por utilizador" msgid "See jobs at Bluesky" msgstr "Ver empregos no Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Ver mais" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Ver mais perfis sugeridos" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "Ver mais assuntos do momento" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Ver contas sugeridas" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Controlo deslizante. Use as setas do teclado para avanรงar ou retroceder e a barra de espaรงo para reproduzir/colocar em pausa" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Selecionar categoria \"{interestsDisplayName}\"" @@ -10748,7 +10753,7 @@ msgstr "Selecionar {0}" msgid "Select {langName}" msgstr "Selecionar {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selecionar uma cor" @@ -10764,11 +10769,11 @@ msgstr "Selecionar conta" msgid "Select an app language" msgstr "Selecionar um idioma da aplicaรงรฃo" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selecionar uma foto de perfil" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selecionar um emoji" @@ -10780,12 +10785,13 @@ msgstr "Selecione uma opรงรฃo" msgid "Select app language" msgstr "Selecione o idioma da aplicaรงรฃo" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Selecionar ficheiro de legendas (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Selecionar conversa \"{name}\"" @@ -10826,7 +10832,7 @@ msgstr "Selecionar GIF" msgid "Select GIF \"{0}\"" msgstr "Selecionar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Selecionar membros da conversa de grupo" @@ -10864,7 +10870,7 @@ msgstr "Selecionar idioma principal" msgid "Select telephone code" msgstr "Selecionar cรณdigo de telefone" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Selecione o emoji {emojiName} como foto de perfil" @@ -10945,7 +10951,8 @@ msgstr "Enviar mensagem" msgid "Send post to {name}" msgstr "Enviar publicaรงรฃo para {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Enviar publicaรงรฃo para..." @@ -10963,12 +10970,12 @@ msgstr "Enviar mensagem a partir do seu telefone" msgid "Send verification email" msgstr "Enviar e-mail de verificaรงรฃo" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Enviar atravรฉs de mensagem direta" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Enviar via chat" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Definir o seu provedor de hospedagem manualmente" msgid "Sets email for password reset" msgstr "Define o e-mail para recuperaรงรฃo de senha" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Definiรงรตes" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Definiรงรตes de atividade de outros" @@ -11036,49 +11043,49 @@ msgstr "Definiรงรตes de atividade de outros" msgid "Settings for allowing others to be notified of your posts" msgstr "Definiรงรตes para permitir que outros sejam notificados sobre as suas publicaรงรตes" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Definiรงรตes para notificaรงรตes de gostos" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Definiรงรตes para notificaรงรตes de menรงรตes" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Definiรงรตes para notificaรงรตes de novo seguidor" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Definiรงรตes para notificaรงรตes de tudo o resto" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Definiรงรตes para notificaรงรตes de gostos nas suas republicaรงรตes" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Definiรงรตes para notificaรงรตes de novos pedidos de mensagem" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Definiรงรตes para notificaรงรตes de novas mensagens" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Definiรงรตes para notificaรงรตes de republicaรงรตes das suas republicaรงรตes" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Definiรงรตes para notificaรงรตes de citaรงรตes" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Definiรงรตes para notificaรงรตes de respostas" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Definiรงรตes para notificaรงรตes de republicaรงรตes" @@ -11115,8 +11122,8 @@ msgstr "Partilhar intervalo etรกrio" msgid "Share anyway" msgstr "Partilhar mesmo assim" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Partilhar DID do autor" @@ -11125,9 +11132,9 @@ msgstr "Partilhar DID do autor" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "Partilhar feedback" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Janela de diรกlogo para partilha de link" msgid "Share my profile" msgstr "Partilhar o meu perfil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Partilhar publicaรงรฃo em:// URI" @@ -11169,12 +11176,12 @@ msgstr "Partilhar perfil" msgid "Share QR code" msgstr "Partilhar cรณdigo QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Partilhar este feed" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Partilhar esta pesquisa" @@ -11186,8 +11193,8 @@ msgstr "Partilhar este pacote de iniciante" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Partilhe este pacote de iniciante e ajude pessoas a juntarem-se ร  sua comunidade no Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,9 +11210,9 @@ msgstr "Partilhe os seus contactos para encontrar amigos" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughtsโ€ฆ" -msgstr "" +msgstr "Partilhe o que achouโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Testador de Preferรชncias Partilhadas" @@ -11219,7 +11226,7 @@ msgstr "Partilhar o seu intervalo etรกrio revela apenas o intervalo associado ร  msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Partilhar o seu intervalo etรกrio revela apenas o intervalo associado ร  sua Conta Google โ€“ por exemplo, que tem pelo menos 18 anos. <0>A sua idade exata e a sua data de nascimento nunca sรฃo partilhadas, e estes dados nunca saem deste dispositivo. Por isso, apenas permitem o acesso neste dispositivo. Em alternativa, <1>pode utilizar o nosso parceiro de confianรงa, o KWS, para concluir a verificaรงรฃo e ativar o acesso em todas as plataformas." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Mostrar" msgid "Show alt text" msgstr "Mostrar texto alternativo" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Mostrar mesmo assim" @@ -11274,9 +11281,9 @@ msgstr "Mostrar lista mesmo assim" msgid "Show lists of users to select from" msgstr "Mostrar listas de utilizadores de onde escolher" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Mostrar Mais" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "Ver mais" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Mostrar aviso e filtrar de feeds" msgid "Show when youโ€™re live" msgstr "Mostre quando vocรช estiver ao vivo" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Mostra informaรงรฃo sobre quando esta publicaรงรฃo foi criada" @@ -11341,15 +11348,15 @@ msgstr "Mostra informaรงรฃo sobre quando esta publicaรงรฃo foi criada" msgid "Shows other accounts you can switch to" msgstr "Mostra outras contas para as quais pode mudar" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Mostra o conteรบdo" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Mostra o conteรบdo" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Terminar sessรฃo?" msgid "Sign up" msgstr "Criar conta" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Requer inรญcio de sessรฃo" @@ -11469,7 +11476,7 @@ msgstr "Saltar" msgid "Skip contact sharing and continue to the app" msgstr "Ignorar partilha de contactos e continuar para a aplicaรงรฃo" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Ignorar publicaรงรตes vazias?" @@ -11487,7 +11494,7 @@ msgstr "Saltar para o prรณximo passo" msgid "slide" msgstr "slide" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Menor" @@ -11499,14 +11506,14 @@ msgstr "Adia o lembrete" msgid "So many thoughts, you should post one" msgstr "Tantos pensamentos, deveria publicar um" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "A rede social que vocรช controla." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Provas sociais nas publicaรงรตes" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11520,7 +11527,7 @@ msgstr "Alguns serviรงos de moderaรงรฃo na sua lista jรก nรฃo estรฃo disponรญvei msgid "Some of your verifications are invalid." msgstr "Algumas das suas verificaรงรตes sรฃo invรกlidas." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Outros feeds que talvez possa gostar" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Alguรฉm saiu do grupo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Alguรฉm reagiu {0}" @@ -11554,7 +11561,7 @@ msgstr "Alguรฉm reagiu {0}" msgid "Someone reacted {0} to {target}" msgstr "Alguรฉm reagiu {0} a {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Alguรฉm respondeu" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Aconteceu algo de errado, por favor tente novamente" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Aconteceu algo de errado. Por favor, tente novamente dentro de um moment msgid "Something went wrong. Please try again." msgstr "Aconteceu algo de errado. Por favor, tente novamente." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Aconteceu algo de errado? Informe-nos." @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam ou outros comportamentos inautรชnticos ou enganadores" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Desportos" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "Destaque publicaรงรตes que os seus amigos e pessoas que segue gostaram." #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "Inicie uma conversa, e ela aparecerรก aqui." msgid "Start a group chat" msgstr "Iniciar uma conversa de grupo" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Iniciar uma nova conversa" @@ -11682,17 +11689,17 @@ msgstr "Comece a adicionar pessoas" msgid "Start adding people!" msgstr "Comece a adicionar pessoas!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Iniciar conversa" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Iniciar conversa com {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacote de Iniciante" @@ -11715,12 +11722,16 @@ msgstr "Pacote de iniciante por si" msgid "Starter pack is invalid" msgstr "Pacote de iniciante รฉ invรกlido" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Pacotes de iniciante" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pacotes de Iniciante" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Pacotes de iniciante permitem-lhe compartilhar facilmente os seus feeds e pessoas favoritos com os seus amigos." @@ -11728,7 +11739,7 @@ msgstr "Pacotes de iniciante permitem-lhe compartilhar facilmente os seus feeds msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Pacotes de iniciante permitem-lhe partilhar os seus feeds e pessoas favoritos com os seus amigos." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Pacotes de Iniciante permitem-lhe partilhar os seus feeds e utilizadores preferidos com os seus amigos." @@ -11742,7 +11753,7 @@ msgstr "Pรกgina de estado" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Passo {0} de {1}" @@ -11754,7 +11765,7 @@ msgstr "Armazenamento limpo, precisa de reiniciar a aplicaรงรฃo agora." msgid "Stored as part of a secure code for matching with others" msgstr "Armazenado como parte de um cรณdigo seguro para correspondรชncia com outros" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11787,7 +11798,7 @@ msgstr "Submeter Recurso" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "Enviar feedback" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Subscrever a {publicationTitle} no {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Subscrever @{0} para usar estes rรณtulos:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Verificado com sucesso" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Sugeridos" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Contas sugeridas" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Sugerido para si" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Pรดr do sol" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Esta funcionalidade ainda nรฃo estรก disponรญvel no seu paรญs! Por favor, volte mais tarde." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Contas suspensas nรฃo podem participar na conversa de grupo." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Contas suspensas nรฃo podem participar na conversa." @@ -11921,8 +11934,8 @@ msgstr "Trocar para {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistema" @@ -11945,7 +11958,7 @@ msgstr "Torne a conversa privada." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Toque abaixo para permitir que o Bluesky aceda ร  sua localizaรงรฃo GPS. Em seguida, usaremos esses dados para determinar com maior precisรฃo o conteรบdo e as funcionalidades disponรญveis na sua regiรฃo." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Toque para mais detalhes" @@ -11976,7 +11989,7 @@ msgstr "Toque para fechar menu de contexto" msgid "Tap to copy this invite link" msgstr "Toque para copiar este link de convite" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Toque para ignorar" @@ -12003,7 +12016,7 @@ msgstr "Toque para remover a sua reaรงรฃo {0}" msgid "Tap to request access to join this group chat" msgstr "Toque para pedir para aderir a esta conversa de grupo" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Toque para tentar novamente" @@ -12016,7 +12029,7 @@ msgstr "Toque para mostrar reaรงรตes {0}" msgid "Tap to show all reactions" msgstr "Toque para mostrar todas as reaรงรตes" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Toque para ver as reaรงรตes" @@ -12032,7 +12045,7 @@ msgstr "Tarefa concluรญda - seguiu 10 contas!" msgid "Task complete - 10 likes!" msgstr "Tarefa concluรญda - 10 gostos!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Ensine ao nosso algoritmo aquilo de que gosta" @@ -12060,7 +12073,7 @@ msgstr "Termos" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "Obrigado pelo seu feedback! Ele foi enviado para o operador do feed." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "Obrigado pelo seu feedback!" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "Nรฃo foi possรญvel encontrar esse pacote de iniciante." msgid "That username is already taken" msgstr "Este nome de utilizador jรก estรก em uso" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "ร‰ tudo!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "ร‰ tudo!" @@ -12216,7 +12229,7 @@ msgstr "O servidor parece estar a passar por problemas. Por favor, tente novamen msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "O pacote de iniciante que estรก a tentar visualizar รฉ invรกlido. Em vez disso, pode eliminar este pacote de iniciante." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "O assunto do menu de contexto" @@ -12238,7 +12251,7 @@ msgstr "O cรณdigo de verificaรงรฃo que forneceu รฉ invรกlido. Certifique-se de q msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "O fornecedor de verificaรงรฃo nรฃo conseguiu enviar um cรณdigo para o seu nรบmero de telefone. Por favor, verifique o seu nรบmero de telefone e tente novamente." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "Houve um problema ao carregar os GIFs. Verifique a sua conexรฃo ร  inter msgid "There was a problem with your internet connection, please try again" msgstr "Houve um problema com a sua conexรฃo ร  internet. Por favor, tente novamente" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Houve um problema com a sua conexรฃo ร  internet. Por favor, tente novam msgid "There was an issue contacting the server" msgstr "Ocorreu um problema ao contactar o servidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Ocorreu um problema ao contactar o servidor. Por favor, verifique a sua conexรฃo de internet e tente novamente." @@ -12283,8 +12296,8 @@ msgstr "Ocorreu um problema ao contactar o servidor. Por favor, verifique a sua msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Houve um problema ao obter as notificaรงรตes. Toque aqui para tentar novamente." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Houve um problema ao obter as publicaรงรตes. Toque aqui para tentar novamente." @@ -12309,7 +12322,7 @@ msgstr "Houve um problema ao obter a sua informaรงรฃo de serviรงo" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Ocorreu um problema ao remover este feed. Por favor, verifique a sua conexรฃo de internet e tente novamente." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Estas definiรงรตes sรณ se aplicam ao feed \"A seguir\"." msgid "These URLs" msgstr "Estes URLs" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Sรฃo proprietรกrios desta conversa" @@ -12392,7 +12405,7 @@ msgstr "Sรฃo proprietรกrios desta conversa" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "Nรฃo poderรฃo voltar a entrar a nรฃo ser que os convide novamente." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Este {screenDescription} foi sinalizado:" @@ -12408,7 +12421,7 @@ msgstr "Esta conta foi marcada como sendo automatizada pelo seu proprietรกrio." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Esta conta tem uma ou mais tentativas de verificaรงรฃo, mas nรฃo รฉ atualmente verificada." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Esta conta solicitou que utilizadores iniciem sessรฃo para ver o seu perfil." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Este feed estรก vazio! Talvez precise de seguir mais utilizadores ou ajustar as definiรงรตes de idioma." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Este feed estรก vazio." @@ -12554,7 +12567,7 @@ msgstr "Este grupo estรก bloqueado por uma aรงรฃo de moderaรงรฃo sobre o proprie msgid "This handle is reserved. Please try a different one." msgstr "Este nome de utilizador รฉ reservado. Por favor, tente um diferente." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Esta imagem nรฃo pรดde ser usada. Tente um formato diferente como .jpg ou .png." @@ -12596,7 +12609,7 @@ msgstr "Este rรณtulo foi aplicado por si." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Este rรณtulo foi aplicado a toda a conta do utilizador e aparecerรก em todas as publicaรงรตes da mesma." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Este rotulador nรฃo declarou que rรณtulos utiliza e pode nรฃo estar ativo." @@ -12621,13 +12634,13 @@ msgstr "Esta lista estรก vazia." msgid "This message is hidden" msgstr "Esta mensagem estรก oculta" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Esta mensagem estรก oculta porque estรก bloqueado por este utilizador." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Esta mensagem estรก oculta porque tem este utilizador bloqueado." @@ -12641,7 +12654,7 @@ msgstr "Estรก bloqueado por esta pessoa" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Este post afirma ter sido criado em <0>{0}, mas foi primeiro visto por Bluesky em <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Este post afirma ter sido criado em <0>{0}, mas foi primeiro visto p msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Esta publicaรงรฃo tem um tipo de \"threadgate\" desconhecido. ร‰ possรญvel que a sua aplicaรงรฃo esteja desatualizada." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Esta publicaรงรฃo รฉ apenas visรญvel para utilizadores com sessรฃo iniciada." @@ -12661,7 +12674,7 @@ msgstr "Esta publicaรงรฃo foi eliminada pelo seu autor" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Esta publicaรงรฃo serรก ocultada de feeds e fios. Isto nรฃo pode ser revertido." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "O autor desta publicaรงรฃo desativou as citaรงรตes." @@ -12698,11 +12711,12 @@ msgstr "Isto deve demorar apenas alguns minutos." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Este utilizador nรฃo possui um nome de exibiรงรฃo, e como tal nรฃo pode ser verificado." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Este utilizador nรฃo tem seguidores." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Foi bloqueado por este utilizador e nรฃo o pode contactar." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Foi bloqueado por este utilizador. Nรฃo pode ver o conteรบdo dele." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Este utilizador desativou as conversas e nรฃo o pode contactar." @@ -12733,11 +12748,11 @@ msgstr "Este utilizador estรก incluรญdo na lista <0>{0} que tem silenciada." msgid "This user is new here. Press for more info about when they joined." msgstr "Este utilizador รฉ novo aqui. Toque para mais informaรงรตes acerca do momento da sua adesรฃo." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Este utilizador nรฃo segue ninguรฉm." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Este vรญdeo nรฃo pode ser reproduzido no seu dispositivo. O seu navegador ou sistema podem estar sem os codecs de vรญdeo necessรกrios (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Isto irรก eliminar de forma irreversรญvel a sua conta no Bluesky <0>{currentHandle} e todos os dados associados. Isto afetarรก qualquer outro serviรงo <1>AT Protocol que use com esta conta." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Isto irรก remover @{0} da lista de acesso rรกpido." @@ -12786,7 +12801,7 @@ msgstr "Preferรชncias de Resposta" msgid "Threaded" msgstr "Em fio" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferรชncias de Fios" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Demasiados contactos - excedeu o nรบmero de contactos que pode importar para encontrar os seus amigos" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Melhor" @@ -12858,7 +12873,7 @@ msgstr "Melhor" msgid "Top replies first" msgstr "Respostas principais primeiro" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Tรณpico" @@ -12893,7 +12908,9 @@ msgstr "A traduรงรฃo para o mesmo idioma nรฃo estรก disponรญvel no seu dispositi msgid "Tree view" msgstr "Vista em รกrvore" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Tendรชncias" @@ -12902,13 +12919,15 @@ msgstr "Tendรชncias" msgid "Trending GIFs" msgstr "GIFs nas tendรชncias" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opรงรตes de assuntos do momento" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Vรญdeos do Momento" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "A confianรงa surge de relaรงรตes, comunidades e contexto compartilhado, por isso tambรฉm estamos a permitir <0>verificadores de confianรงa: organizaรงรตes que podem fornecer verificaรงรตes diretamente." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Tente um termo de pesquisa diferente ou remova alguns filtros." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Tente um termo de pesquisa diferente." @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Nรฃo foi possรญvel obter pedidos de adesรฃo." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Nรฃo foi possรญvel encontrar um destinatรกrio selecionado." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Nรฃo foi possรญvel encontrar o destinatรกrio selecionado." @@ -13024,12 +13045,12 @@ msgstr "Indisponรญvel" msgid "Unavailable feed information" msgstr "Informaรงรฃo do feed indisponรญvel" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Desbloquear conta?" msgid "Unblock list" msgstr "Desbloquear lista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Deixar de seguir {0}" msgid "Unfollow account" msgstr "Deixar de seguir conta" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Deixa de seguir o utilizador" @@ -13132,7 +13153,7 @@ msgstr "Conteรบdo adulto nรฃo rotulado" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Conteรบdo adulto nรฃo rotulado, abusivo ou nรฃo consensual" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Remover gosto" @@ -13192,7 +13213,7 @@ msgstr "Remover silenciamento desta conversa de grupo" msgid "Unmute thread" msgstr "Deixar de silenciar fio" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Remover silenciamento do vรญdeo" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Desafixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desafixar feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Desafixar de inรญcio" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Desafixar lista de moderaรงรฃo" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} desafixado de inรญcio" @@ -13258,11 +13279,11 @@ msgstr "Deixar de subscrever este rotulador" msgid "Unsubscribed from list" msgstr "Removeu subscriรงรฃo da lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Conteรบdo da รกrea de transferรชncia nรฃo suportado" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Tipo de vรญdeo nรฃo suportado: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Falha ao atualizar a visibilidade da resposta" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Carregar uma foto em vez disso" @@ -13355,7 +13376,7 @@ msgstr "Carregar de Ficheiros" msgid "Upload from Library" msgstr "Carregar da Biblioteca" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "A carregar GIF..." @@ -13369,7 +13390,7 @@ msgstr "A carregar imagens..." msgid "Uploading link thumbnail..." msgstr "A carregar miniatura do link..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "A carregar vรญdeo..." @@ -13408,7 +13429,7 @@ msgstr "Use isto para iniciar sessรฃo na outra aplicaรงรฃo em conjunto com o seu msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Use o seu endereรงo de e-mail ou outro endereรงo de e-mail real que controle, caso a KWS ou o Bluesky precisem de entrar em contacto consigo." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "utilizador" @@ -13510,7 +13531,7 @@ msgstr "Falha na verificaรงรฃo. Por favor, tente novamente." msgid "Verification settings" msgstr "Definiรงรตes de verificaรงรฃo" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Definiรงรตes de Verificaรงรฃo" @@ -13618,34 +13639,34 @@ msgstr "Vรญdeo" msgid "Video failed to process" msgstr "Falha ao processar o vรญdeo" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Feed de Vรญdeo" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Vรญdeo de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Vรญdeo de {0}. Toque para reproduzir ou meter em pausa o vรญdeo" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Videojogos" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Vรญdeo em pausa" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Vรญdeo em reproduรงรฃo" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Vรญdeo nรฃo encontrado." @@ -13653,7 +13674,7 @@ msgstr "Vรญdeo nรฃo encontrado." msgid "Video settings" msgstr "Definiรงรตes de vรญdeo" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Vรญdeo carregado" @@ -13662,17 +13683,17 @@ msgstr "Vรญdeo carregado" msgid "Video: {0}" msgstr "Vรญdeo: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Vรญdeos" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Os vรญdeos devem ter menos de 3 minutos." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Visualizar" @@ -13691,9 +13712,9 @@ msgstr "Ver foto de perfil de {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Ver perfil de {0}" @@ -13724,13 +13745,13 @@ msgstr "Veja a publicaรงรฃo no blog para mais detalhes" msgid "View debug entry" msgstr "Ver entrada de debug" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ver detalhes" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Ver fio completo" @@ -13750,18 +13771,18 @@ msgstr "Ver pedidos de adesรฃo para participar nesta conversa de grupo" msgid "View information about these labels" msgstr "Ver informaรงรฃo acerca destes rรณtulos" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Ver mais" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Ver mais vรญdeos do momento" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Visualizar publicaรงรฃo" @@ -13798,15 +13819,15 @@ msgstr "Ver o link de convite para esta conversa de grupo" msgid "View the labeling service provided by @{0}" msgstr "Ver o serviรงo de rotulaรงรฃo fornecido por @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Ver as verificaรงรตes deste utilizador" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Ver utilizadores que gostaram deste feed" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Ver vรญdeo" @@ -13831,7 +13852,7 @@ msgstr "Ver as suas listas de moderaรงรฃo" msgid "View your muted accounts" msgstr "Ver as contas que silenciou" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Ver as suas verificaรงรตes" @@ -13840,7 +13861,7 @@ msgstr "Ver as suas verificaรงรตes" msgid "Views full image" msgstr "Mostra a imagem em tamanho completo" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Visualiza vรญdeo no modo imersivo" @@ -14001,7 +14022,7 @@ msgstr "Serรก notificado quando encontrarmos os seus amigos." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "Weโ€™d love to hear about your experience testing beta features!" -msgstr "" +msgstr "Adorarรญamos saber como estรก a ser a sua experiรชncia a testar as funcionalidades beta!" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Estamos com problemas de rede, tente novamente" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Estamos a ter problemas de rede, tente novamente" @@ -14043,7 +14064,7 @@ msgstr "Estamos a ter problemas de rede, tente novamente" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Estamos a introduzir uma nova camada de verificaรงรฃo no Bluesky โ€” um selo de verificaรงรฃo fรกcil de ver." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Estamos muito contentes por se ter juntado a nรณs!" @@ -14064,13 +14085,15 @@ msgstr "Lamentamos, mas nรฃo conseguimos resolver esta lista. Se isto persistir, msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Pedimos desculpa, mas nรฃo conseguimos carregar as suas palavras silenciadas neste momento. Por favor, tente novamente." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." -msgstr "" +msgstr "Lamentamos, mas a sua pesquisa nรฃo pรดde ser concluรญda." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Lamentamos, mas nรฃo foi possรญvel concluir a sua pesquisa. Por favor, tente novamente dentro de alguns minutos." @@ -14078,7 +14101,7 @@ msgstr "Lamentamos, mas nรฃo foi possรญvel concluir a sua pesquisa. Por favor, t msgid "We're sorry, you cannot access this screen at this time." msgstr "Pedimos desculpa, nรฃo pode aceder de momento a esta janela." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Pedimos desculpa! A publicaรงรฃo ร  qual estรก a responder foi eliminada." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "tudo bem?" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Como estรก?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Quem pode verificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ups!" @@ -14220,21 +14243,21 @@ msgstr "Gostaria de bloquear este utilizador e/ou deixar esta conversa?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Gostaria de guardar isto como rascunho antes de ver os seus rascunhos?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Gostaria de guardar isto como rascunho para editar mais tarde?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Escrever uma publicaรงรฃo" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Escrever publicaรงรฃo" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Escreva a sua resposta" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Estรก a aceder ao Bluesky a partir de uma regiรฃo cuja lei nos obriga a verificar a sua idade antes de permitir que aceda ร  aplicaรงรฃo." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "{0} estรก bloqueado por si" @@ -14342,7 +14365,7 @@ msgstr "Jรก nรฃo estรก em direto" msgid "You are not allowed to upload videos." msgstr "Nรฃo tem permissรฃo para carregar vรญdeos." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Ainda nรฃo segue ninguรฉm" @@ -14362,7 +14385,7 @@ msgstr "ร‰ verificado. Irรก perder a sua verificaรงรฃo se alterar o seu nome de msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "A sua conta รฉ verificada. Perderรก a sua verificaรงรฃo se alterar o seu nome de utilizador. <0>Saiba mais." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Pode ajustar os seus interesses a qualquer momento nas definiรงรตes de \"Conteรบdo e mรฉdia\"." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Agora pode iniciar sessรฃo com a sua nova palavra-passe." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Sรณ pode adicionar atรฉ {MAX_GALLERY_IMAGES, plural, one {}other {# imagens}} por publicaรงรฃo" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Sรณ pode guardar rascunhos com um mรกximo de 1000 caracteres." @@ -14439,9 +14462,11 @@ msgstr "Pode ler o histรณrico da conversa, mas nรฃo pode enviar novas mensagens. msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Pode selecionar {MAX_GALLERY_IMAGES, plural, one {# imagem}other {# imagens}} no total." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Pode atualizar isto mais tarde a partir das suas definiรงรตes." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Nรฃo pode adicionar mais de {EMOJI_REACTION_LIMIT, plural, one {# reaรงรฃo de emoji} other {# reaรงรตes de emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Ainda nรฃo pode criar uma conversa de grupo." @@ -14555,7 +14581,7 @@ msgstr "Verificou o seu endereรงo de e-mail com sucesso. Pode fechar esta janela msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Atingiu temporariamente o limite para carregamento de vรญdeos. Por favor, tente novamente mais tarde." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Tem alteraรงรตes nรฃo guardadas a este rascunho. Gostaria de guardรก-las?" @@ -14563,7 +14589,7 @@ msgstr "Tem alteraรงรตes nรฃo guardadas a este rascunho. Gostaria de guardรก-las msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Tem alteraรงรตes nรฃo guardadas. Gostaria de guardรก-las antes de ver os seus rascunhos?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Ainda nรฃo criou um pacote de iniciante!" @@ -14614,7 +14640,7 @@ msgstr "Pode adicionar atรฉ {STARTER_PACK_MAX_SIZE, plural, one {}other {{STARTE msgid "You may only add up to 3 feeds" msgstr "Pode adicionar um mรกximo de 3 feeds" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Tem de ser proprietรกrio da conversa para remover um membro." @@ -14622,7 +14648,7 @@ msgstr "Tem de ser proprietรกrio da conversa para remover um membro." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Tem de ter pelo menos 13 anos para usar o Bluesky. Leia os nossos <0>Termos de Serviรงo para mais informaรงรฃo." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Deve seguir pelo menos sete outras pessoas para gerar um pacote de iniciante." @@ -14639,7 +14665,7 @@ msgstr "Precisa de conceder acesso ร  sua biblioteca de conteรบdo multimรฉdia." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Precisa de verificar o seu endereรงo de e-mail antes de poder ativar a 2FA por e-mail." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Vocรช รฉ o proprietรกrio desta conversa" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Provavelmente quer reiniciar a aplicaรงรฃo agora." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Reagiu {0}" @@ -14667,15 +14693,15 @@ msgstr "Reagiu {0} a {target}" msgid "You recently changed your birthdate" msgstr "Alterou recentemente a sua data de nascimento" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Respondeu" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Respondeu a {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Respondeu a si mesmo" @@ -14715,11 +14741,11 @@ msgstr "Nรฃo poderรก voltar a entrar sem ser convidado." msgid "You: {message}" msgstr "Vocรช: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguirรก os utilizadores sugeridos e feeds assim que terminar a criaรงรฃo da sua conta!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguirรก os utilizadores sugeridos assim que terminar a criaรงรฃo da sua conta!" @@ -14791,7 +14817,7 @@ msgstr "Chegou ao fim do conteรบdo ativo." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Chegou ao fim do seu feed! Encontre mais algumas contas para seguir." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Alcanรงou o nรบmero mรกximo de rascunhos" @@ -14799,7 +14825,7 @@ msgstr "Alcanรงou o nรบmero mรกximo de rascunhos" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Atingiu o nรบmero mรกximo de solicitaรงรตes permitidas. Tente novamente mais tarde." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Atingiu o mรกximo de {MAX_FILTERS, plural, one {# filtro} other {# filtros}}. Adicione mais valores a um filtro existente em vez de criar novos." @@ -14815,11 +14841,11 @@ msgstr "Atingiu o seu limite diรกrio de carregamento de vรญdeos (demasiados byte msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Atingiu o seu limite diรกrio de carregamento de vรญdeos (demasiados vรญdeos)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Esgotou os vรญdeos disponรญveis para assistir. Que tal uma pausa?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "A sua conta" @@ -14835,11 +14861,11 @@ msgstr "A sua conta foi suspensa" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "A sua conta nรฃo tem antiguidade suficiente para carregar vรญdeos. Por favor, tente novamente mais tarde." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "A sua conta รฉ demasiado recente" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "A sua conta precisa de ter pelo menos 7 dias antes de poder criar uma nova conversa de grupo." @@ -14896,7 +14922,7 @@ msgstr "O seu e-mail" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "O seu e-mail parece ser invรกlido." @@ -14930,8 +14956,8 @@ msgstr "O seu fornecedor de hospedagem nรฃo pode ser detetado a partir de um end msgid "Your hosting provider is detected automatically from the username you enter." msgstr "O seu fornecedor de hospedagem รฉ detetado automaticamente a partir do nome de utilizador que inserir." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Os seus interesses foram atualizados!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Os seus interesses ajudam-nos a encontrar aquilo que gosta!" @@ -14967,11 +14993,11 @@ msgstr "A sua palavra-passe foi alterada com sucesso! Por favor, use a sua nova msgid "Your password must be at least 8 characters long." msgstr "A sua palavra-passe deve ter pelo menos 8 caracteres." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "A sua publicaรงรฃo foi enviada" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "As suas publicaรงรตes foram enviadas" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "O seu idioma preferido" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "A sua foto de perfil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "A sua foto de perfil cercada por cรญrculos concรชntricos com as fotos de perfil de outros utilizadores" @@ -14992,7 +15018,7 @@ msgstr "A sua foto de perfil cercada por cรญrculos concรชntricos com as fotos de msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "O seu perfil, publicaรงรตes, feeds e listas nรฃo serรฃo mais visรญveis para outros utilizadores do Bluesky. Pode reativar a sua conta a qualquer momento ao fazer login novamente." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "A sua resposta foi enviada" @@ -15005,7 +15031,7 @@ msgstr "A sua denรบncia serรก enviada para <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Os seus interesses selecionados ajudam-nos a servir-lhe conteรบdo com o qual se importa." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "O seu fio tem publicaรงรตes vazias que serรฃo ignoradas. As restantes publicaรงรตes serรฃo publicadas como um fio." diff --git a/src/locale/locales/ro/messages.po b/src/locale/locales/ro/messages.po index 711986b8aa..d073da96fa 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categoria โ€ž{interestsDisplayName}โ€ (activฤƒ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(mesaj blocat ascuns)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(conศ›ine conศ›inut รฎncorporat)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(mesaj ศ™ters)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(link de invitaศ›ie pentru conversaศ›ie invalid)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(mesaj trimis รฎnainte de a vฤƒ fi alฤƒturat)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {o orฤƒ} few {# ore} other {# de ore}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {o etichetฤƒ aplicatฤƒ postฤƒrii dvs.} few {# etichete aplicate postฤƒrii dvs.} other {# de etichete aplicate postฤƒrii dvs.}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {o etichetฤƒ aplicatฤƒ} few {# etichete aplicate} other {# de etichete aplicate}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {O apreciere} few {# aprecieri} other {# de aprecieri}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {un membru} few {# membrii} other {# de membrii}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {o cerere nouฤƒ de alฤƒturare} few {# cereri noi de alฤƒ #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {o persoanฤƒ a} few {# persoane au} other {# de persoane au}} reacศ›ionat โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Cont)" @@ -251,36 +252,13 @@ msgstr "{0} a fost adฤƒugat la conversaศ›ie" msgid "{0} and {1} added to chat" msgstr "{0} ศ™i {1} au fost adฤƒugaศ›i la conversaศ›ie" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} ศ™i {1} au apreciat asta" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} ศ™i {others, plural, one {un alt utilizator} few {alศ›i {2} utilizatori} other {alศ›i {2} de utilizatori}} au apreciat asta" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} ศ™i {othersLabel} au apreciat asta" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} urmฤƒriศ›i" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} vฤƒ blocheazฤƒ" @@ -324,14 +302,6 @@ msgstr "{0} a pฤƒrฤƒsit conversaศ›ia" msgid "{0} left the group" msgstr "{0} a pฤƒrฤƒsit grupul" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} a apreciat acest lucru" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} din 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} a reacศ›ionat {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} ศ™i {memberCount, plural, one {un alt utilizator} few {alศ›i # utilizatori} other {alศ›i # de utilizatori}} au fost adฤƒugaศ›i la conversaศ›ie" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1}, ศ™i {others, plural, one {un alt utilizator} few {alศ›i {3} utilizatori} other {alศ›i {3} de utilizatori}} au apreciat asta" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1}, ศ™i {othersLabel} au apreciat asta" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} v-a verificat" msgid "{following} following" msgstr "{following} urmฤƒriศ›i" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, one {postare} few {postฤƒri} other {de postฤƒri}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} nu poate fi adฤƒugat(ฤƒ)" @@ -698,7 +660,7 @@ msgstr "{handle} nu poate fi adฤƒugat(ฤƒ)" msgid "{handle} can't be messaged" msgstr "Nu se pot trimite mesaje cฤƒtre {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "Nu se pot trimite mesaje cฤƒtre {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {Un element necitit} few {# elemente nec msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {un contact gฤƒsit} few {# contacte gฤƒsite} other {# de contacte gฤƒsite}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {un utilizator} few {alศ›i {1} utilizatori} other {alศ›i {1} de utilizatori}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} s-a alฤƒturat la Bluesky cu {timeAgoString} รฎn urmฤƒ" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} s-a alฤƒturat la Bluesky folosind un pachet de pornire cu {timeAgoString} รฎn urmฤƒ" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, one {un caracter rฤƒmas} few {# caractere rฤƒmase} other {# de caractere rฤƒmase}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} a rฤƒspuns" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} a rฤƒspuns cฤƒtre {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} v-a rฤƒspuns" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {o cerere} few {# cereri} other {# de cereri} msgid "{requestCount}+ requests" msgstr "รŽncฤƒ {requestCount} de cereri" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "acum {type}h" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} este un verificator de รฎncredere" @@ -842,13 +795,13 @@ msgstr "Verificฤƒrile utilizatorului {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {urmฤƒrit} few {urmฤƒriศ›i} other {de urmฤƒri #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citat} few {citate} other {de citate}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repostare} few {repostฤƒri} other {de repostฤƒri}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {salvare} few {salvฤƒri} other {de salvฤƒri}} #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {apreciere} few {aprecieri} other {de aprecieri}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> v-a adฤƒugat" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Conectaศ›i-vฤƒ<1> sau <2>creaศ›i un cont<3> <4>pentru a cฤƒuta ศ™tiri, sport, politicฤƒ ศ™i tot ce se รฎntรขmplฤƒ pe Bluesky." @@ -971,7 +924,7 @@ msgstr "30 de zile" msgid "7 days" msgstr "7 zile" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "O colecศ›ie de fluxuri populare pe care le puteศ›i gฤƒsi pe Bluesky, inclusiv News, Booksky, Game Dev, Blacksky ศ™i Fountain Pens" @@ -988,9 +941,11 @@ msgstr "A apฤƒrut o eroare de reศ›ea. Vฤƒ rugฤƒm sฤƒ verificaศ›i conexiunea la i #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "A fost trimis un nou cod" msgid "A new form of verification" msgstr "O nouฤƒ formฤƒ de verificare" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Un rฤƒspuns la un mesaj trimis รฎnainte de a vฤƒ fi alฤƒturat" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "O capturฤƒ de ecran a unui compozitor de postฤƒri cu un buton nou lรขngฤƒ cel de postare care spune โ€žSchiศ›eโ€, cu un efect de artificii รฎn formฤƒ de curcubeu. Mai jos, textul din editor spune โ€žHei, ai auzit ศ™tirile? Bluesky are schiศ›e acum!!!โ€." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "Un destinatar selectat nu este urmฤƒrit de expeditor." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Acces solicitat! Proprietarul grupului va analiza cererea dvs." msgid "Accessibility" msgstr "Accesibilitate" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Setฤƒri de accesibilitate" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Cont amuศ›it de listฤƒ" msgid "Account options" msgstr "Opศ›iuni cont" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Cont eliminat din acces rapid" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Conturile cu bifa albastrฤƒ รฎn formฤƒ de feston <0><1/> pot verifica alte persoane. Aceศ™ti verificatori de รฎncredere sunt selectaศ›i de Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Activitate de la alศ›ii" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Notificฤƒri de activitate" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Adฤƒugaศ›i text alternativ (opศ›ional)" msgid "Add another account" msgstr "Adฤƒugaศ›i un alt cont" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Adฤƒugaศ›i o altฤƒ postare" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Adฤƒugaศ›i o altฤƒ postare firului" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Adฤƒugaศ›i un alt filtru de cฤƒutare" @@ -1253,7 +1213,7 @@ msgstr "Adฤƒugaศ›i o etichetฤƒ de automatizare contului" msgid "Add emoji reaction" msgstr "Adฤƒugaศ›i reacศ›ie emoji" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Adฤƒugare filtru" @@ -1338,7 +1298,7 @@ msgstr "Adฤƒugaศ›i acest flux la fluxurile dvs." msgid "Add to lists" msgstr "Adฤƒugare la liste" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Adฤƒugare la postฤƒrile salvate" @@ -1400,7 +1360,7 @@ msgstr "Adulศ›i" msgid "Adult content" msgstr "Conศ›inut pentru adulศ›i" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "andreea@exemplu.ro" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Toate" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Toศ›i prietenii au fost urmฤƒriศ›i!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Toate limbile" @@ -1491,11 +1447,6 @@ msgstr "Toate limbile vor fi afiศ™ate รฎn fluxurile dvs." msgid "All of these words" msgstr "Toate aceste cuvinte" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "Toate postฤƒrile" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Toate fluxurile pe care le-aศ›i salvat, รฎntr-un singur loc." @@ -1560,7 +1511,7 @@ msgstr "Permiteศ›i accesul la mesajele directe" msgid "Already have a code?" msgstr "Aveศ›i deja un cod?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Aveศ›i deja un cont?" @@ -1614,7 +1565,7 @@ msgstr "Un e-mail a fost trimis la {0}. Acesta include un cod de confirmare pe c msgid "An error has occurred" msgstr "A apฤƒrut o eroare" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "A apฤƒrut o eroare" @@ -1631,7 +1582,7 @@ msgstr "A apฤƒrut o eroare la preluarea conturilor sugerate." msgid "An error occurred while fetching the feed." msgstr "A apฤƒrut o eroare รฎn timpul preluฤƒrii fluxului." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "A apฤƒrut o eroare la generarea pachetului de pornire. Doriศ›i sฤƒ รฎncercaศ›i din nou?" @@ -1640,11 +1591,11 @@ msgstr "A apฤƒrut o eroare la generarea pachetului de pornire. Doriศ›i sฤƒ รฎnce msgid "An error occurred while hiding suggestion. {0}" msgstr "A apฤƒrut o eroare la ascunderea sugestiei. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "A apฤƒrut o eroare la รฎncฤƒrcarea videoclipului. Vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou mai tรขrziu." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "A apฤƒrut o eroare la รฎncฤƒrcarea videoclipului. Vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou." @@ -1684,7 +1635,7 @@ msgstr "A apฤƒrut o eroare. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "O ilustraศ›ie care prezintฤƒ avataruri de utilizator care se transferฤƒ dintr-o agendฤƒ de contacte รฎn aplicaศ›ia Bluesky" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "O ilustraศ›ie a mai multor postฤƒri Bluesky alฤƒturi de pictograme de repostare, apreciere ศ™i comentare" @@ -1705,17 +1656,15 @@ msgstr "Un link de invitaศ›ie permite utilizatorilor sฤƒ se alฤƒture acestei con msgid "An issue not included in these options" msgstr "O problemฤƒ care nu este inclusฤƒ รฎn aceste opศ›iuni" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "A apฤƒrut o problemฤƒ la crearea conversaศ›iei de grup, vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "A apฤƒrut o problemฤƒ la รฎnceperea conversaศ›iei, vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "A apฤƒrut o problemฤƒ รฎn timp ce se รฎncerca deschiderea conversaศ›iei" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "A apฤƒrut o problemฤƒ la pornirea conversaศ›iei de grup, vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "Orice datฤƒ" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Oricine" @@ -1802,7 +1749,7 @@ msgstr "Oricine mฤƒ urmฤƒreศ™te" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Oricine รฎl are nu va mai putea sฤƒ se alฤƒture sau sฤƒ solicite sฤƒ se alฤƒture. Puteศ›i oricรขnd sฤƒ creaศ›i unul nou." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Numele parolelor de aplicaศ›ie trebuie sฤƒ aibฤƒ cel puศ›in 4 caractere" msgid "App passwords" msgstr "Parole de aplicaศ›ii" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Parole de aplicaศ›ie" @@ -1891,8 +1838,8 @@ msgstr "Contestaศ›i aceastฤƒ decizie" msgid "Appeal this label" msgstr "Contestaศ›i aceastฤƒ etichetฤƒ" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Aplicaศ›i solicitarea de tragere" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arhivat de la {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Postare arhivatฤƒ" @@ -1980,7 +1927,7 @@ msgstr "Sunteศ›i sigur cฤƒ doriศ›i sฤƒ eliminaศ›i asta din fluxurile dvs.?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "Sunteศ›i sigur cฤƒ doriศ›i sฤƒ anulaศ›i cererea dvs. de a vฤƒ alฤƒtura la {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Sunteศ›i sigur cฤƒ doriศ›i sฤƒ renunศ›aศ›i la aceastฤƒ postare?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "Autor" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Cont automatizat" @@ -2033,7 +1985,7 @@ msgstr "Automat" msgid "Automation label" msgstr "Etichetฤƒ cont automatizat" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Etichetฤƒ cont automatizat" @@ -2050,12 +2002,16 @@ msgstr "Redare automatฤƒ videoclipuri ศ™i GIF-uri" msgid "Available" msgstr "Disponibil" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "Creator de avatar" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "รŽnainte de a crea o postare sau un rฤƒspuns, trebuie sฤƒ vฤƒ verificaศ›i mai รฎntรขi e-mailul." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "รŽnainte de a crea un pachet de pornire, trebuie sฤƒ vฤƒ verificaศ›i mai รฎntรขi e-mailul." @@ -2135,10 +2091,10 @@ msgstr "รŽnainte de a primi notificฤƒri despre postฤƒrile noi de la {name}, treb #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "รŽncepeศ›i procesul de verificare a vรขrstei completรขnd cรขmpurile de m msgid "Beta Feature" msgstr "Caracteristicฤƒ beta" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "Caracteristici beta" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Caracteristici beta activate" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "Data naศ™terii" msgid "Birthday" msgstr "Zi de naศ™tere" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Blocat" msgid "Blocked accounts" msgstr "Conturi blocate" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Conturi blocate" @@ -2282,7 +2244,7 @@ msgstr "Conturile blocate nu pot rฤƒspunde รฎn firele dvs., sฤƒ vฤƒ menศ›ioneze, msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Conturile blocate nu pot rฤƒspunde รฎn firele dvs., sฤƒ vฤƒ menศ›ioneze, sau sฤƒ interacศ›ioneze รฎntr-un fel cu dvs. Nu le veศ›i putea vedea conศ›inutul ศ™i ei nu vor putea sฤƒ-l vadฤƒ pe al dvs." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blocarea nu รฎmpiedicฤƒ acest etichetator sฤƒ plaseze etichete pe contul dvs." @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nu poate confirma autenticitatea datei revendicate." @@ -2330,7 +2293,7 @@ msgstr "Bluesky este o reศ›ea deschisฤƒ unde vฤƒ puteศ›i alege furnizorul de gฤƒ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky este o reศ›ea deschisฤƒ รฎn care vฤƒ puteศ›i alege propriul furnizor. Dacฤƒ sunteศ›i nou aici, vฤƒ recomandฤƒm sฤƒ rฤƒmรขneศ›i cu opศ›iunea Bluesky Social implicitฤƒ." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky este mai bun cu prietenii!" @@ -2358,7 +2321,7 @@ msgstr "Termenii de Serviciu a Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky stocheazฤƒ contactele dvs. sub formฤƒ de date codificate. Eliminarea contactelor va duce la ศ™tergerea imediatฤƒ a acestor date." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky va alege un set de conturi recomandate de la persoanele din reศ›eaua dvs." @@ -2403,20 +2366,20 @@ msgstr "Aduceศ›i รฎmpreunฤƒ pรขnฤƒ la 50 de prieteni รฎntr-o conversaศ›ie." msgid "Browse custom feeds" msgstr "Rฤƒsfoiศ›i fluxuri personalizate" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Rฤƒsfoiศ›i mai multe conturi" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Rฤƒsfoiศ›i mai multe fluxuri pe pagina Explorare" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Rฤƒsfoiศ›i mai multe sugestii" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Rฤƒsfoiศ›i mai multe sugestii pe pagina Explorare" @@ -2425,24 +2388,25 @@ msgstr "Rฤƒsfoiศ›i mai multe sugestii pe pagina Explorare" msgid "Browse other feeds" msgstr "Rฤƒsfoiศ›i alte fluxuri" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Rฤƒsfoiศ›i postฤƒri despre {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Rฤƒsfoiศ›i postฤƒri etichetate cu {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Rฤƒsfoiศ›i pachetul de pornire {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Rฤƒsfoiศ›i subiectul {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Rฤƒsfoiศ›i subiectul {displayName}" @@ -2461,8 +2425,8 @@ msgstr "Buton pentru a reveni la cronologia principalฤƒ" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "De {0}" @@ -2473,9 +2437,9 @@ msgstr "de @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "de <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Prin crearea unui cont sunteศ›i de acord cu <0>Termenii de Serviciu msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Prin crearea unui cont sunteศ›i de acord cu <0>Termenii de Serviciu." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "De dvs." -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Camerฤƒ" @@ -2534,7 +2498,7 @@ msgstr "Este necesar accesul la camerฤƒ" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Este necesar accesul la camerฤƒ" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Anulaศ›i reactivarea ศ™i deconectaศ›i-vฤƒ" msgid "Cancel reply" msgstr "Anulare rฤƒspuns" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Anulare cฤƒutare" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "Modificฤƒrile la pachetul de pornire nu se vor reflecta รฎn listฤƒ dupฤƒ creare. Lista va fi o copie independentฤƒ." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Conversaศ›ie amuศ›itฤƒ" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Conversaศ›ia nu a fost gฤƒsitฤƒ." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Opศ›iuni conversaศ›ie" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Proprietarii conversaศ›iilor nu pot pฤƒrฤƒsi o conversaศ›ie de grup." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Destinatarul conversaศ›iei nu este urmฤƒrit de expeditor." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Inbox cerere de conversaศ›ie" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Cereri de conversaศ›ie" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Setฤƒri conversaศ›ie" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Conversaศ›ie dezamuศ›itฤƒ" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Conversaศ›ii" @@ -2837,7 +2802,7 @@ msgstr "Alegeศ›i metoda de verificare a domeniului" msgid "Choose Feeds" msgstr "Alegeศ›i fluxuri" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Alegeศ›i pentru mine" @@ -2854,7 +2819,7 @@ msgstr "Alegeศ›i persoane" msgid "Choose post languages" msgstr "Selectaศ›i limbile postฤƒrii" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Alegeศ›i aceastฤƒ culoare ca avatar" @@ -2879,7 +2844,7 @@ msgstr "Alegeศ›i propria cronologie! Fluxurile create de comunitate vฤƒ ajutฤƒ s msgid "Choose your password" msgstr "Alegeศ›i-vฤƒ parola" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Alegeศ›i-vฤƒ numele de utilizator" @@ -2966,7 +2931,7 @@ msgstr "Faceศ›i clic aici pentru a vizualiza linkul de invitaศ›ie pentru aceast msgid "Click to open tag menu for {0}" msgstr "Faceศ›i clic pentru a deschide meniul de etichete pentru {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Faceศ›i clic pentru a reรฎncerca mesajul eศ™uat" @@ -3003,7 +2968,7 @@ msgstr "Faceศ›i clic pentru a reรฎncerca mesajul eศ™uat" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Faceศ›i clic pentru a reรฎncerca mesajul eศ™uat" msgid "Close" msgstr "รŽnchidere" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "รŽnchideศ›i dialogul activ" @@ -3047,7 +3012,7 @@ msgstr "รŽnchidere banner" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "รŽnchideศ›i vizualizatorul de imagini" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "รŽnchideศ›i meniul" @@ -3090,7 +3055,7 @@ msgstr "รŽnchideศ›i bannerul cu cereri primite" msgid "Close this dialog" msgstr "รŽnchideศ›i acest dialog" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "รŽnchideศ›i fereastra de bun venit" @@ -3098,7 +3063,7 @@ msgstr "รŽnchideศ›i fereastra de bun venit" msgid "Closes password update alert" msgstr "รŽnchideศ›i alerta pentru actualizarea parolei" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "รŽnchide compozitorul de postฤƒri ศ™i eliminฤƒ ciorna" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Culoare" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Mod culoare" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Benzi Desenate" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Regulile Comunitฤƒศ›ii" @@ -3141,7 +3106,7 @@ msgstr "Regulile Comunitฤƒศ›ii" msgid "Complete onboarding and start using your account" msgstr "Finalizaศ›i รฎnregistrarea ศ™i รฎncepeศ›i sฤƒ vฤƒ folosiศ›i contul" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Finalizaศ›i provocarea" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Compuneศ›i o nouฤƒ postare" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Compuneศ›i postฤƒri de pรขnฤƒ la {0, plural, one {} few {# caractere}other {# de caractere}} lungime" @@ -3160,11 +3125,11 @@ msgstr "Compuneศ›i postฤƒri de pรขnฤƒ la {0, plural, one {} few {# caractere}oth msgid "Compose reply" msgstr "Compunere rฤƒspuns" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Se comprimฤƒ GIF-ul..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Se comprimฤƒ videoclipul..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Contactaศ›i echipa noastrฤƒ de asistenศ›ฤƒ" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Contactaศ›i asistenศ›a" @@ -3253,7 +3218,7 @@ msgstr "Conศ›inut & media" msgid "Content and media" msgstr "Conศ›inut ศ™i media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Conศ›inut ศ™i media" @@ -3265,10 +3230,6 @@ msgstr "Conศ›inut blocat" msgid "Content filters" msgstr "Filtre de conศ›inut" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Conศ›inut din รฎntreaga reศ›ea care credem cฤƒ v-ar plฤƒcea." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Limbi pentru conศ›inut" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Conศ›inut care promoveazฤƒ sau prezintฤƒ autovฤƒtฤƒmarea" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Avertisment privind conศ›inutul" msgid "Content warnings" msgstr "Avertismente privind conศ›inutul" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Fundal meniu contextual, faceศ›i clic pentru a รฎnchide meniul." @@ -3302,7 +3263,7 @@ msgstr "Fundal meniu contextual, faceศ›i clic pentru a รฎnchide meniul." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Continuaศ›i firul..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Continuaศ›i la numele grupului" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "Conversaศ›ia nu a fost gฤƒsitฤƒ." msgid "Copied build version to clipboard" msgstr "Versiunea de compilare a fost copiatฤƒ รฎn clipboard" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Link copiat รฎn clipboard" @@ -3376,7 +3337,7 @@ msgstr "Link copiat รฎn clipboard" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Copiere parolฤƒ de aplicaศ›ie" msgid "Copy at:// URI" msgstr "Copiere at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Copiere DID autor" @@ -3449,10 +3410,10 @@ msgstr "Copiere Link" msgid "Copy link to list" msgstr "Copiere link listฤƒ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Copiere link postare" @@ -3470,8 +3431,8 @@ msgstr "Copiere link pachet de pornire" msgid "Copy message text" msgstr "Copiere mesaj text" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Copiere at:// URI postare" @@ -3490,7 +3451,7 @@ msgstr "Copiaศ›i valoarea รฎnregistrฤƒrii TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politica Privind Drepturile de Autor" @@ -3540,11 +3501,11 @@ msgstr "Nu s-au putut urmฤƒri toate potrivirile. {0}" msgid "Could not leave chat" msgstr "Nu s-a putut pฤƒrฤƒsi conversaศ›ia" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Nu s-a putut pฤƒrฤƒsi conversaศ›ia." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Nu s-a putut รฎncฤƒrca fluxul" @@ -3562,7 +3523,7 @@ msgstr "Nu s-a putut รฎncฤƒrca profilul" msgid "Could not mute chat" msgstr "Nu s-a putut amuศ›ii conversaศ›ia" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Nu s-a putut elimina membrul." @@ -3606,8 +3567,8 @@ msgstr "vaci porci" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Creare" @@ -3624,26 +3585,26 @@ msgstr "Creaศ›i o listฤƒ din acest pachet de pornire" msgid "Create a QR code for a starter pack" msgstr "Creaศ›i un cod QR pentru un pachet de pornire" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Creaศ›i un pachet de pornire" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Creaศ›i un pachet de pornire" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Creaศ›i un pachet de pornire pentru mine" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Creare cont" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Creaศ›i un cont" @@ -3666,15 +3627,15 @@ msgstr "Creaศ›i un cont" msgid "Create an account without using this starter pack" msgstr "Creaศ›i un cont fฤƒrฤƒ a utiliza acest pachet de pornire" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Creaศ›i un avatar รฎn schimb" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Creaศ›i altul" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Creare conversaศ›ie de grup" @@ -3743,7 +3704,7 @@ msgstr "Culturฤƒ" msgid "Current beta features" msgstr "Caracteristici beta curente" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Conversaศ›ia curentฤƒ" @@ -3770,8 +3731,8 @@ msgstr "Substanศ›e periculoase sau abuz de droguri" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "รŽntunecatฤƒ" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "รŽntunecatฤƒ" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Temฤƒ รฎntunecatฤƒ" @@ -3814,7 +3775,7 @@ msgstr "Refuzaศ›i aceastฤƒ sugestie de limbฤƒ" msgid "Deepfake adult content" msgstr "Conศ›inut pentru adulศ›i Deepfake" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Implicit" @@ -3894,7 +3855,7 @@ msgstr "ศ˜terge-mi contul" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "ศ˜tergere postare" @@ -3988,7 +3949,7 @@ msgstr "Dialog: ajustaศ›i cine poate interacศ›iona cu aceastฤƒ postare" msgid "Dialog: Set search filters" msgstr "Dialog: Setare filtre de cฤƒutare" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Luminozitate redusฤƒ" @@ -4002,7 +3963,7 @@ msgstr "Dezactivare" msgid "Disable 2FA" msgstr "Dezactivaศ›i A2F" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Dezactivare subtitrฤƒri" @@ -4045,9 +4006,9 @@ msgstr "Dezactivat" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Renunศ›are" msgid "Discard changes?" msgstr "Renunศ›aศ›i la modificฤƒri?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Renunศ›aศ›i la schiศ›ฤƒ?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Renunศ›aศ›i la postare?" @@ -4079,6 +4040,10 @@ msgstr "Deconectare conversaศ›ie Germ" msgid "Discourage apps from showing my account to logged-out users" msgstr "Descurajaศ›i aplicaศ›iile sฤƒ-mi arate contul utilizatorilor deconectaศ›i" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Descoperiศ›i fluxuri" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Descurajaศ›i aplicaศ›iile sฤƒ-mi arate contul utilizatorilor deconectaศ› msgid "Discover new custom feeds" msgstr "Descoperiศ›i fluxuri personalizate noi" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Descoperiศ›i fluxuri noi" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descoperiศ›i fluxuri noi" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "รŽnchidere" @@ -4103,28 +4064,28 @@ msgstr "รŽnchidere" msgid "Dismiss banner" msgstr "รŽnchideศ›i bannerul" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "รŽnchidere eroare" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "รŽnchideศ›i ghidul introductiv" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "รŽndepฤƒrtaศ›i interesele" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Respingere banner eveniment รฎn direct" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "รŽnchideศ›i aceastฤƒ secศ›iune" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Respingeศ›i aceastฤƒ sugestie" @@ -4142,7 +4103,7 @@ msgstr "Afiศ™aศ›i mai mare insignele de text alternativ" msgid "Display name" msgstr "Nume afiศ™at" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Renunศ›aศ›i la troli ศ™i la titluri senzaศ›ionale. Gฤƒsiศ›i oameni autentici ศ™i conversaศ›ii care conteazฤƒ pentru dvs." @@ -4205,8 +4166,8 @@ msgstr "Nu vฤƒ faceศ›i griji! Toate mesajele existente ศ™i setฤƒrile sunt salvat #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Nu vฤƒ faceศ›i griji! Toate mesajele existente ศ™i setฤƒrile sunt salvat msgid "Done" msgstr "Finalizare" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Atingeศ›i de douฤƒ ori sau apฤƒsaศ›i lung mesajul pentru a adฤƒuga o reacศ›ie" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Atingeศ›i de douฤƒ ori pentru a รฎnchide dialogul" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Atingeศ›i de douฤƒ ori pentru a aprecia" @@ -4328,6 +4289,7 @@ msgstr "Tulburฤƒri de alimentaศ›ie" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Editare imagine" msgid "Edit interaction settings" msgstr "Editare setฤƒri de interacศ›iune" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Editare interese" @@ -4397,7 +4359,7 @@ msgstr "Editare stare รฎn direct" msgid "Edit moderation list" msgstr "Editare listฤƒ de moderare" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editaศ›i fluxurile mele" @@ -4406,6 +4368,11 @@ msgstr "Editaศ›i fluxurile mele" msgid "Edit name" msgstr "Editare nume" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Editaศ›i notificฤƒrile de la {0}" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editare persoane" @@ -4444,7 +4411,7 @@ msgstr "Editare listฤƒ de utilizatori" msgid "Edit who can reply" msgstr "Editaศ›i cine poate rฤƒspunde" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Editaศ›i-vฤƒ pachetul de pornire" @@ -4500,8 +4467,8 @@ msgstr "รŽncorporare cod HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "รŽncorporare postare" @@ -4509,7 +4476,7 @@ msgstr "รŽncorporare postare" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "รŽncorporaศ›i aceastฤƒ postare รฎn website-ul dvs. Pur ศ™i simplu copiaศ›i urmฤƒtorul fragment ศ™i lipiศ›i-l รฎn codul HTML al website-ului dvs." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Cititor video รฎncorporat" @@ -4533,7 +4500,7 @@ msgstr "Activare conศ›inut pentru adulศ›i" msgid "Enable beta features" msgstr "Activare caracteristici beta" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Activare subtitrฤƒri" @@ -4550,12 +4517,13 @@ msgstr "Activare conศ›inut media extern" msgid "Enable media players for" msgstr "Activare cititor media pentru" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activaศ›i notificฤƒrile pentru un cont accesรขnd profilul acestuia ศ™i apฤƒsรขnd pe <0>pictograma clopoศ›el <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Activare notificฤƒri push" @@ -4581,7 +4549,7 @@ msgstr "Activare videoclipuri รฎn tendinศ›e รฎn fluxul dvs. Descoperฤƒ" msgid "Enabled" msgstr "Activat" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Sfรขrศ™itul fluxului" @@ -4608,7 +4576,7 @@ msgstr "Introduceศ›i un cuvรขnt sau o etichetฤƒ" msgid "Enter code" msgstr "Introduceศ›i codul" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Intraศ›i รฎn modul Ecran complet" @@ -4650,11 +4618,11 @@ msgstr "Introduceศ›i-vฤƒ numele de utilizator ศ™i parola" msgid "Enters full screen" msgstr "Intraศ›i รฎn modul Ecran complet" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Divertisment" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Eroare" @@ -4684,7 +4652,7 @@ msgstr "A apฤƒrut o eroare la salvarea fiศ™ierului" msgid "Error receiving captcha response." msgstr "Eroare la primirea rฤƒspunsului captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Eroare: {error}" @@ -4696,23 +4664,23 @@ msgstr "Toatฤƒ lumea poate rฤƒspunde" msgid "Everybody can reply to this post." msgstr "Toatฤƒ lumea poate rฤƒspunde la aceastฤƒ postare." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Toศ›i" #: src/screens/Messages/Settings.tsx:93 msgctxt "allow group chat invites from" msgid "Everyone" -msgstr "Toศ›i" +msgstr "Toatฤƒ lumea" #: src/screens/Messages/Settings.tsx:78 msgctxt "allow messages from" msgid "Everyone" -msgstr "Toศ›i" +msgstr "Toatฤƒ lumea" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Toate celelalte" @@ -4738,7 +4706,7 @@ msgstr "Excludeศ›i utilizatorii pe care รฎi urmฤƒriศ›i" msgid "Excludes users you follow" msgstr "Exclude utilizatorii pe care รฎi urmฤƒriศ›i" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Ieศ™ire ecran complet" @@ -4755,11 +4723,11 @@ msgstr "Extindeศ›i lista de utilizatori" msgid "Expand or collapse the full post you are replying to" msgstr "Extindeศ›i sau restrรขngeศ›i postarea completฤƒ la care rฤƒspundeศ›i" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Extindeศ›i textul postฤƒrii" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Extinde sau restrรขnge text postare" @@ -4802,15 +4770,15 @@ msgstr "Conศ›inut media explicit sau potenศ›ial deranjant." msgid "Explicit sexual images." msgstr "Imagini sexuale explicite." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorare" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Exploraศ›i aplicaศ›ia" @@ -4844,7 +4812,7 @@ msgstr "Conศ›inut media extern" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Conศ›inut media extern poate permite website-urilor sฤƒ colecteze informaศ›ii despre dvs. ศ™i dispozitivul dvs. Nicio informaศ›ie nu este trimisฤƒ sau solicitatฤƒ pรขnฤƒ nu apฤƒsaศ›i butonul โ€žredareโ€." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferinศ›e conศ›inut media extern" @@ -4886,7 +4854,7 @@ msgstr "Nu s-a putut modifica identificatorul. Vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din no #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Copierea link-ului a eศ™uat" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Nu s-a reuศ™it pฤƒrฤƒsirea conversaศ›iei de grup" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "รŽncฤƒrcarea conversaศ›iilor a eศ™uat" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "รŽncฤƒrcarea fluxurilor a eศ™uat" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "รŽncฤƒrcarea preferinศ›elor fluxurilor a eศ™uat" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Setฤƒrile de notificare nu au putut fi รฎncฤƒrcate." @@ -5012,14 +4981,14 @@ msgstr "Nu s-a putut รฎncฤƒrca preferinศ›a." msgid "Failed to load profiles" msgstr "รŽncฤƒrcarea profilurilor a eศ™uat" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "รŽncฤƒrcarea fluxurilor sugerate a eศ™uat" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "รŽncฤƒrcarea sugestiilor de urmฤƒrire a eศ™uat" @@ -5027,12 +4996,12 @@ msgstr "รŽncฤƒrcarea sugestiilor de urmฤƒrire a eศ™uat" msgid "Failed to lock group chat" msgstr "Blocarea conversaศ›iei de grup a eศ™uat" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Nu s-a reuศ™it marcarea tuturor conversaศ›iilor ca fiind citite" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "Nu s-a putut anula solicitarea. Vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou." msgid "Failed to resolve location. Please try again." msgstr "Nu s-a putut determina locaศ›ia. Vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Nu s-a putut salva schiศ›a" @@ -5191,7 +5160,7 @@ msgstr "Cont fals sau bot" msgid "False information about elections" msgstr "Informaศ›ii false despre alegeri" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Flux" @@ -5212,7 +5181,7 @@ msgstr "Creator flux" msgid "Feed identifier" msgstr "Identificator flux" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Meniu flux" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback trimis operatorului fluxului" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Fluxuri actualizate!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Fluxuri care credem cฤƒ v-ar putea plฤƒcea." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Preluare actualizare" @@ -5273,34 +5238,22 @@ msgstr "Preluare actualizare" msgid "File saved successfully!" msgstr "Fiศ™ier salvat cu succes!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Filtrare dupฤƒ autor" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtrare dupฤƒ autor (รฎn prezent: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Filtrare dupฤƒ conศ›inutul media" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Filtrare dupฤƒ conศ›inutul media (รฎn prezent: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtrare din fluxuri" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtraศ›i cฤƒutarea dupฤƒ limbฤƒ" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtraศ›i cฤƒutarea dupฤƒ limbฤƒ (รฎn prezent: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "Filtrare cฤƒutare dupฤƒ conศ›inutul media (รฎn prezent: {currentLabel})" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "Filtraศ›i aceastฤƒ cฤƒutare dupฤƒ {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtraศ›i cine poate opta sฤƒ primeascฤƒ notificฤƒri pentru activitatea dvs." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtraศ›i de la cine primiศ›i notificฤƒri" @@ -5352,8 +5305,8 @@ msgstr "Gฤƒsiศ›i conturi de urmฤƒrit" msgid "Find and invite friends" msgstr "Gฤƒsire ศ™i invitare prieteni" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Gฤƒsire contacte" @@ -5387,7 +5340,7 @@ msgstr "Gฤƒsiศ›i-vฤƒ prietenii" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Gฤƒsiศ›i-vฤƒ prietenii pe Bluesky verificรขndu-vฤƒ numฤƒrul de telefon ศ™i potrivindu-vฤƒ cu contactele. Noi vฤƒ protejฤƒm informaศ›iile, iar dvs. controlaศ›i ce se รฎntรขmplฤƒ รฎn continuare. <0>Aflaศ›i mai multe" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Gฤƒsiศ›i-vฤƒ oamenii" @@ -5429,7 +5382,7 @@ msgstr "Focalizaศ›i cรขmpul de cฤƒutare" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Urmฤƒriศ›i pe {0}" msgid "Follow {displayName}" msgstr "Urmฤƒrire pe {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Urmฤƒriศ›i pe {handle}" @@ -5453,11 +5406,11 @@ msgstr "Urmฤƒriศ›i pe {handle}" msgid "Follow 10 accounts" msgstr "Urmฤƒriศ›i 10 conturi" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Urmฤƒriศ›i 10 persoane pentru a รฎncepe" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Urmฤƒriศ›i 7 conturi" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Urmฤƒritorii se pot alฤƒtura" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Urmฤƒritori ai lui @{0} pe care รฎi ศ™tiศ›i" @@ -5544,7 +5497,7 @@ msgstr "Urmฤƒritori pe care รฎi ศ™tiศ›i" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Urmฤƒriศ›i pe {0}" msgid "Following {displayName}" msgstr "Urmฤƒriศ›i pe {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Urmฤƒriศ›i pe {handle}" @@ -5578,21 +5531,21 @@ msgstr "Urmฤƒriศ›i pe {handle}" msgid "Following feed preferences" msgstr "Preferinศ›e flux Urmฤƒriศ›i" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferinศ›e flux urmฤƒriศ›i" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Vฤƒ urmฤƒreศ™te" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Font" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Dimensiune font" @@ -5612,13 +5565,13 @@ msgstr "Din motive de securitate, va trebui sฤƒ trimitem un cod de confirmare la msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Din motive de securitate, nu veศ›i mai putea vizualiza acest lucru din nou. Dacฤƒ pierdeศ›i aceastฤƒ parolฤƒ de aplicaศ›ie, va trebui sฤƒ generaศ›i una nouฤƒ." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Pentru cea mai bunฤƒ experienศ›ฤƒ, vฤƒ recomandฤƒm sฤƒ utilizaศ›i fontul temฤƒ." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Pentru Dvs." @@ -5628,7 +5581,7 @@ msgstr "Pentru Dvs." msgid "Forever" msgstr "Permanent" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Uitaศ›i de zgomot" @@ -5647,11 +5600,11 @@ msgstr "Aศ›i uitat parola?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Patru bule de mesaj care reprezintฤƒ o conversaศ›ie de grup. Primul mesaj: โ€žAi auzit noutatea? Bluesky are acum conversaศ›ii de grup!โ€ Al doilea mesaj: โ€žDoamne, nu se poateโ€ Al treilea mesaj: โ€žUau, 50 de persoane รฎntr-o singurฤƒ conversaศ›ie!โ€ Al patrulea mesaj: โ€žPoศ›i trimite ศ™i linkuri de invitaศ›ie!โ€" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Eliberaศ›i-vฤƒ fluxul" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "De la" @@ -5674,7 +5627,7 @@ msgstr "De la <0/>" msgid "From these people" msgstr "De la aceste persoane" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generaศ›i un pachet de pornire" @@ -5718,39 +5671,39 @@ msgstr "Obศ›ineศ›i acces timpuriu la caracteristicile experimentale pe care le t msgid "Get help" msgstr "Obศ›ineศ›i ajutor" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Primiศ›i notificฤƒri pentru รฎnscrieri cu pachetele de pornire, verificฤƒri ศ™i alte activitฤƒศ›i." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Primiศ›i notificฤƒri cรขnd oamenii vฤƒ urmฤƒresc." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Primiศ›i notificฤƒri cรขnd oamenii apreciazฤƒ postฤƒrile dvs." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Primiศ›i notificฤƒri cรขnd oamenii vฤƒ apreciazฤƒ repostฤƒrile." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Primiศ›i notificฤƒri cรขnd oamenii vฤƒ menศ›ioneazฤƒ." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Primiศ›i notificฤƒri cรขnd oamenii citeazฤƒ postฤƒrile dvs." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Primiศ›i notificฤƒri cรขnd oamenii rฤƒspund la postฤƒrile dvs." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Primiศ›i notificฤƒri cรขnd oamenii reposteazฤƒ postฤƒrile dvs." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Primiศ›i notificฤƒri cรขnd oamenii vฤƒ reposteazฤƒ repostฤƒrile." @@ -5762,15 +5715,15 @@ msgstr "Primiศ›i notificฤƒri cรขnd oamenii vฤƒ trimit cereri de mesaj." msgid "Get notifications when people send you messages." msgstr "Primiศ›i notificฤƒri cรขnd oamenii vฤƒ trimit mesaje." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Primiศ›i notificฤƒri cรขnd existฤƒ activitate la postฤƒrile la care sunteศ›i abonat." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Primiศ›i notificฤƒri despre postฤƒri noi" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Primiศ›i notificฤƒri despre postฤƒrile ศ™i rฤƒspunsurile de la conturile pe care le alegeศ›i." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Primiศ›i notificฤƒri despre postฤƒrile noi de la {name}" @@ -5799,11 +5752,11 @@ msgstr "รŽncepeศ›i" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF รฎncฤƒrcat" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Oferiศ›i profilului dvs. o faศ›ฤƒ" @@ -5813,20 +5766,20 @@ msgstr "Glorificarea violenศ›ei" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Intraศ›i รฎn direct pentru" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Mergeศ›i la profilul lui {0}" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Numele conversaศ›iei de grup a fost actualizat" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Setฤƒri conversaศ›ie รฎn grup" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Conversaศ›iile de grup pot avea maximum {0, plural, one {} few {# persoane}other {# de persoane}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Grupul este blocat" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Numele grupului" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Numele grupului este prea lung. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, one {} few {Numฤƒrul maxim de caractere este #.}other {Numฤƒrul maxim de caractere este #.}}" @@ -6077,7 +6031,7 @@ msgstr "Activitฤƒศ›i dฤƒunฤƒtoare sau cu risc ridicat" msgid "Harming or endangering minors" msgstr "Exploatarea minorilor sau punerea lor รฎn pericol" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6052,7 @@ msgstr "Aveศ›i un cod? <0>Faceศ›i clic aici." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Am greศ™it locaศ›ia dvs.? <0>Atingeศ›i aici pentru a vฤƒ actualiza locaศ›ia cu GPS-ul." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Aveศ›i dificultฤƒศ›i?" @@ -6114,7 +6068,7 @@ msgstr "Pฤƒstrat de Bluesky timp de 7 zile pentru a preveni abuzurile, apoi ศ™te msgid "Help" msgstr "Ajutor" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Ajutaศ›i oamenii sฤƒ ศ™tie cฤƒ nu sunteศ›i un robot รฎncฤƒrcรขnd o imagine sau creรขnd un avatar." @@ -6135,12 +6089,12 @@ msgstr "Salut!" msgid "Hi there!" msgstr "Salut!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Ascuns" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Ascuns de setฤƒrile dvs. de moderare." @@ -6148,9 +6102,10 @@ msgstr "Ascuns de setฤƒrile dvs. de moderare." msgid "Hidden list" msgstr "Listฤƒ ascunsฤƒ" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Listฤƒ ascunsฤƒ" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Ascundere" @@ -6198,7 +6154,7 @@ msgstr "Ascundere rฤƒspuns pentru toatฤƒ lumea" msgid "Hide reply for me" msgstr "Ascundere rฤƒspuns pentru mine" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Ascundeศ›i acest card" @@ -6218,16 +6174,18 @@ msgstr "Ascundeศ›i acest rฤƒspuns?" msgid "Hide translation" msgstr "Ascundere traducere" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Ascundeศ›i subiectele รฎn tendinศ›e" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Ascundeศ›i subiectele รฎn tendinศ›e?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Ascundeศ›i videoclipurile รฎn tendinศ›e?" @@ -6240,7 +6198,7 @@ msgstr "Ascundere listฤƒ de utilizatori" msgid "Hide verification badges" msgstr "Ascundere insigne de verificare" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Ascundere conศ›inut" @@ -6293,8 +6251,8 @@ msgstr "Hmmmm, nu am putut รฎncฤƒrca acest serviciu de moderare." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Staศ›i aศ™a! Oferim acces la videoclipuri treptat ศ™i รฎncฤƒ sunteศ›i pe lista de aศ™teptare. Verificaศ›i din nou รฎn curรขnd!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "Furnizor de gฤƒzduire: {0}" msgid "Hosting provider: Bluesky" msgstr "Furnizor de gฤƒzduire: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Fierbinศ›i" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Cum funcศ›ioneazฤƒ:" @@ -6409,6 +6363,7 @@ msgstr "Dacฤƒ vฤƒ actualizaศ›i adresa de e-mail, e-mailul A2F va fi dezactivat." msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Dacฤƒ doriศ›i sฤƒ vฤƒ modificaศ›i parola, vฤƒ vom trimite un cod pentru a verifica dacฤƒ acesta este contul dvs." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Dacฤƒ doriศ›i sฤƒ restricศ›ionaศ›i cine poate primi notificฤƒri pentru activitatea contului dvs., puteศ›i modifica acest lucru รฎn <0>Setฤƒri โ†’ Confidenศ›ialitate ศ™i securitate." @@ -6548,7 +6503,7 @@ msgstr "รŽn aplicaศ›ie, Push, Toatฤƒ lumea" msgid "In-app, push, people you follow" msgstr "รŽn aplicaศ›ie, Push, Persoane pe care le urmฤƒriศ›i" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Inbox gol" @@ -6564,7 +6519,6 @@ msgstr "Inbox zero!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "Includere" @@ -6573,7 +6527,7 @@ msgstr "Includere" msgid "Include or exclude matching posts (currently: {0})" msgstr "Includeศ›i sau excludeศ›i postฤƒrile care se potrivesc (รฎn prezent: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Includeศ›i postฤƒri ศ™i/sau rฤƒspunsuri (รฎn prezent: {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "Includeศ›i postฤƒrile create รฎncepรขnd cu aceastฤƒ datฤƒ" msgid "Include posts made until this date" msgstr "Includeศ›i postฤƒrile create pรขnฤƒ la aceastฤƒ datฤƒ" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Include aceste rezultate" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Nume de utilizator sau parolฤƒ incorecte" @@ -6683,7 +6633,7 @@ msgstr "Invitaศ›i pe {name} sฤƒ se alฤƒture la Bluesky" msgid "Invite code" msgstr "Cod de invitaศ›ie" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Codul de invitaศ›ie nu este acceptat. Verificaศ›i dacฤƒ l-aศ›i introdus corect ศ™i รฎncercaศ›i din nou." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Sunteศ›i doar dvs. acum! Adฤƒugaศ›i mai multe persoane la pachetul dvs. de pornire cฤƒutรขnd mai sus." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID loc de muncฤƒ: {0}" @@ -6816,8 +6766,8 @@ msgstr "Alฤƒturaศ›i-vฤƒ conversaศ›iei" msgid "Journalism" msgstr "Jurnalism" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continuaศ›i editarea" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "Website-ul KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Etichetat de {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Etichetat de autor." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etichete" @@ -6852,7 +6802,7 @@ msgstr "Etichete adฤƒugate" msgid "Labels applied to this post" msgstr "Etichete aplicate pe aceastฤƒ postare" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Etichetele sunt adnotฤƒri pentru utilizatori ศ™i conศ›inut. Ele pot fi utilizate pentru a ascunde, avertiza ศ™i categoriza reศ›eaua." @@ -6864,7 +6814,7 @@ msgstr "Etichete de pe contul dvs." msgid "Language" msgstr "Limbฤƒ" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Setฤƒri limbฤƒ" @@ -6874,7 +6824,7 @@ msgstr "Setฤƒri limbฤƒ" msgid "Languages" msgstr "Limbi" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Mai mare" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Ultima iniศ›iere chiar acum" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Cele mai recente" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Aflaศ›i mai multe" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Aflaศ›i mai multe" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Aflaศ›i mai multe despre <0>cum sฤƒ folosiศ›i cฤƒutarea avansatฤƒ." @@ -6937,8 +6887,8 @@ msgstr "Aflaศ›i mai multe despre importarea contactelor" msgid "Learn more about self hosting your PDS." msgstr "Aflaศ›i mai multe despre gฤƒzduirea automatฤƒ a SDP-ului dvs." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Aflaศ›i mai multe despre moderarea aplicatฤƒ acestui conศ›inut" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Aflaศ›i mai multe despre aceste modificฤƒri ศ™i cum sฤƒ vฤƒ รฎmpฤƒrtฤƒศ™iศ›i gรขndurile cu noi citind postarea noastrฤƒ pe blog." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Aflaศ›i mai multe despre acest avertisment" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Aflaศ›i mai multe รฎn <0>setฤƒrile contului." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Aflaศ›i mai multe." @@ -6993,8 +6943,8 @@ msgstr "Pฤƒrฤƒsire" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Pฤƒrฤƒsiศ›i Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Pฤƒrฤƒsirea acestei conversaศ›ii o va bloca permanent ศ™i nu vฤƒ veศ›i mai putea alฤƒtura din nou." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Aศ›i pฤƒrฤƒsit conversaศ›ia de grup." @@ -7042,7 +6992,7 @@ msgstr "Aศ›i pฤƒrฤƒsit conversaศ›ia de grup." msgid "left to go." msgstr "rฤƒmas de fฤƒcut." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Doresc sฤƒ aleg" @@ -7057,7 +7007,7 @@ msgstr "Sฤƒ รฎncepem!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Luminoasฤƒ" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Luminoasฤƒ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Apreciere" @@ -7076,7 +7026,7 @@ msgstr "Apreciere" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Apreciere ({0, plural, one {o apreciere} few {# aprecieri} other {# de aprecieri}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Apreciaศ›i 10 postฤƒri" @@ -7085,7 +7035,7 @@ msgstr "Apreciaศ›i 10 postฤƒri" msgid "Like 10 posts to train the Discover feed" msgstr "Apreciaศ›i 10 postฤƒri pentru a instrui fluxul Descoperฤƒ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Apreciaศ›i acest flux" @@ -7093,8 +7043,8 @@ msgstr "Apreciaศ›i acest flux" msgid "Like this labeler" msgstr "Apreciaศ›i acest etichetator" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Apreciat de" @@ -7111,27 +7061,45 @@ msgstr "Apreciat De" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Apreciat de {0, plural, one {un utilizator} few {# utilizatori} other {# de utilizatori}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Apreciat de {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Apreciat de {0} ศ™i {1}" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Apreciat de {likeCount, plural, one {un utilizator} few {# utilizatori} other {# de utilizatori}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Aprecieri" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Aprecieri pentru repostฤƒrile dvs." -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Aprecieri la aceastฤƒ postare" @@ -7144,7 +7112,7 @@ msgstr "Liniar" msgid "Link copied to clipboard" msgstr "Link copiat รฎn clipboard" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Listฤƒ" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Listฤƒ dezamuศ›itฤƒ" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "รŽN DIRECT" msgid "Live event happening now: {0}" msgstr "Eveniment รฎn direct care se รฎntรขmplฤƒ acum: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Eveniment รฎn direct ascuns" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Eveniment รฎn direct afiศ™at" @@ -7279,12 +7247,12 @@ msgstr "Caracteristica โ€žรฎn directโ€ este รฎn beta" msgid "Live link" msgstr "Link transmisiune รฎn direct" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "รŽncฤƒrcaศ›i mai multe" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "รŽncฤƒrcaศ›i mai multe fluxuri sugerate" @@ -7292,8 +7260,8 @@ msgstr "รŽncฤƒrcaศ›i mai multe fluxuri sugerate" msgid "Load new notifications" msgstr "รŽncฤƒrcaศ›i notificฤƒri noi" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Blocaศ›i aceastฤƒ conversaศ›ie de grup" msgid "Locked" msgstr "Blocat" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Jurnal" @@ -7387,7 +7355,7 @@ msgstr "GIF-uri dragoste" msgid "Make adjustments to email settings for your account" msgstr "Ajustaศ›i setฤƒrile de e-mail pentru contul dvs." -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Faceศ›i unul pentru mine" @@ -7418,15 +7386,15 @@ msgstr "Manual" msgid "Mark all as read" msgstr "Marcaศ›i toate ca citite" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Marcaศ›i toate conversaศ›iile ca citite" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Marcare ca citit" msgid "Marked all as read" msgstr "Marcate toate ca citite" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Toate conversaศ›iile au fost marcate ca citite" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Toate cererile au fost marcate ca citite" @@ -7456,8 +7424,12 @@ msgstr "Toate cererile au fost marcate ca citite" msgid "Maybe later" msgstr "Poate mai tรขrziu" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Eu" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Conศ›inut media" @@ -7475,7 +7447,7 @@ msgstr "Conศ›inut media stocat pe un alt dispozitiv" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Conศ›inut media care poate fi deranjant sau neadecvat pentru anumite audienศ›e." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Membru eliminat din conversaศ›ia de grup." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "utilizatori menศ›ionaศ›i" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menศ›iuni" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mesaj ศ™ters" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Mesajul nu a putut fi trimis." @@ -7563,15 +7535,15 @@ msgstr "Mesajul este prea lung ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Opศ›iuni mesaj" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mesaje" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Mesajele de la aceastฤƒ persoanฤƒ sunt ascunse cรขt timp ea vฤƒ blocheazฤƒ." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Mesajele de la aceastฤƒ persoanฤƒ sunt ascunse cรขt timp o blocaศ›i." @@ -7592,7 +7564,7 @@ msgstr "Conศ›inut รฎnศ™elฤƒtor" msgid "Missing media" msgstr "Conศ›inut media lipsฤƒ" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderare" @@ -7636,7 +7608,7 @@ msgstr "Listฤƒ de moderare actualizatฤƒ" msgid "Moderation lists" msgstr "Liste de moderare" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liste de moderare" @@ -7645,7 +7617,7 @@ msgstr "Liste de moderare" msgid "moderation settings" msgstr "setฤƒri de moderare" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Stฤƒri moderare" @@ -7693,7 +7665,7 @@ msgstr "Muzicฤƒ" #: src/screens/Messages/ConversationSettings/index.tsx:536 msgid "Mute" -msgstr "Dezactivare sunet" +msgstr "Amuศ›ire" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:184 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:97 @@ -7786,7 +7758,7 @@ msgstr "Amuศ›itฤƒ" msgid "Muted accounts" msgstr "Conturi amuศ›ite" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Conturi Amuศ›ite" @@ -7867,7 +7839,6 @@ msgstr "Doriศ›i sฤƒ raportaศ›i o รฎncฤƒlcare a drepturilor de autor, o solicitar msgid "Nevermind, create a handle for me" msgstr "Nu mai conteazฤƒ, creeazฤƒ-mi un nume de utilizator" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Noi" @@ -7893,11 +7864,11 @@ msgstr "{postsCount, plural, one {Postare nouฤƒ} few {Postฤƒri noi} other {Post #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Conversaศ›ie nouฤƒ" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Caracteristicฤƒ nouฤƒ" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Urmฤƒritori noi" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Conversaศ›ie de grup nouฤƒ" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Conversaศ›ie de grup nouฤƒ" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Conversaศ›ie de grup nouฤƒ cu:" @@ -7966,13 +7937,13 @@ msgstr "Listฤƒ nouฤƒ" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Cereri de mesaje noi" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Mesaje noi" @@ -7982,12 +7953,12 @@ msgstr "Mesaje noi" msgid "New password" msgstr "Parolฤƒ nouฤƒ" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Postare nouฤƒ" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Cele mai noi rฤƒspunsuri primele" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "ศ˜tiri" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Imaginea urmฤƒtoare" msgid "Night" msgstr "Noapte" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Fฤƒrฤƒ reclame, fฤƒrฤƒ urmฤƒrire invazivฤƒ, fฤƒrฤƒ capcane de implicare. Bluesky vฤƒ respectฤƒ timpul ศ™i atenศ›ia." @@ -8065,6 +8036,11 @@ msgstr "Fฤƒrฤƒ reclame, fฤƒrฤƒ urmฤƒrire invazivฤƒ, fฤƒrฤƒ capcane de implicare. msgid "No app passwords yet" msgstr "รŽncฤƒ nu existฤƒ parole de aplicaศ›ie" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "Niciun filtru de autor" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "Nu existฤƒ caracteristici beta รฎn acest moment." @@ -8098,7 +8074,7 @@ msgstr "Fฤƒrฤƒ expirare setatฤƒ" msgid "No feeds found. Try searching for something else." msgstr "Nu s-au gฤƒsit fluxuri. รŽncercaศ›i sฤƒ cฤƒutaศ›i altceva." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Niciun urmฤƒritor รฎncฤƒ" @@ -8116,9 +8092,15 @@ msgstr "Nu existฤƒ GIF-uri de afiศ™at momentan. รŽncercaศ›i din nou imediat." msgid "No image" msgstr "Nici o imagine" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "Niciun filtru de limbฤƒ" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "รŽncฤƒ nu existฤƒ aprecieri" @@ -8135,7 +8117,12 @@ msgstr "Nicio listฤƒ" msgid "No longer following {0}" msgstr "Nu mai urmฤƒriศ›i pe {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "Niciun filtru de conศ›inut media" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Niciun conศ›inut media รฎncฤƒ" @@ -8143,7 +8130,7 @@ msgstr "Niciun conศ›inut media รฎncฤƒ" msgid "No messages yet" msgstr "Niciun mesaj รฎncฤƒ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Gata cu algoritmii plini cu informaศ›ii inutile. Gฤƒsiศ›i fluxuri care funcศ›ioneazฤƒ pentru dvs., nu รฎmpotriva dvs." @@ -8180,16 +8167,21 @@ msgstr "Nimeni รฎn afarฤƒ de autor nu poate cita aceastฤƒ postare." msgid "No one can send messages" msgstr "Nimeni nu poate trimite mesaje" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "Niciun filtru de postare" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Nici o postare aici" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Nicio postare รฎncฤƒ" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "รŽncฤƒ nu existฤƒ citate" @@ -8198,11 +8190,7 @@ msgstr "รŽncฤƒ nu existฤƒ citate" msgid "No recent GIFs yet. Pick one to see it here." msgstr "รŽncฤƒ nu existฤƒ GIF-uri recente. Alegeศ›i unul pentru a-l vedea aici." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "Fฤƒrฤƒ rฤƒspunsuri" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Niciun rฤƒspuns รฎncฤƒ" @@ -8217,13 +8205,13 @@ msgstr "Niciun rezultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Niciun rezultat" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Niciun rezultat pentru โ€ž{0}โ€." @@ -8236,23 +8224,23 @@ msgstr "Nu s-au gฤƒsit rezultate" msgid "No results found for \"{query}\"" msgstr "Niciun rezultat gฤƒsit pentru โ€ž{query}โ€" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "Nu s-au gฤƒsit rezultate pentru โ€ž<0>{query}โ€ cu filtrele de cฤƒutare avansatฤƒ aplicate." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "Niciun rezultat gฤƒsit pentru โ€ž<0>{query}โ€." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Nu s-au gฤƒsit rezultate pentru interogarea dvs. cu filtrele de cฤƒutare avansatฤƒ aplicate." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Niciun rezultat." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Niciun pachet de pornire รฎncฤƒ" @@ -8265,7 +8253,7 @@ msgstr "Nu, mulศ›umesc" msgid "No translation received from your device." msgstr "Nicio traducere primitฤƒ de la dispozitivul dvs." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Niciun videoclip รฎncฤƒ" @@ -8278,7 +8266,7 @@ msgstr "Nimeni" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nimeni nu a apreciat asta รฎncฤƒ. Poate ar trebui sฤƒ fiศ›i primul!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Nimeni nu a citat asta รฎncฤƒ. Poate ar trebui sฤƒ fiศ›i primul!" @@ -8298,6 +8286,10 @@ msgstr "Imagini intime neconsensuale" msgid "Non-sexual Nudity" msgstr "Nuditate non-sexualฤƒ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Nimic" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Indisponibil pe aceastฤƒ platformฤƒ." msgid "Not followed by anyone youโ€™re following" msgstr "Nu este urmฤƒrit de cineva pe care urmฤƒriศ›i" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Nu a fost gฤƒsit" @@ -8333,7 +8325,7 @@ msgstr "Notฤƒ despre partajare" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Notฤƒ: Bluesky este o reศ›ea deschisฤƒ ศ™i publicฤƒ. Aceastฤƒ setare limiteazฤƒ doar vizibilitatea conศ›inutului dvs. pe aplicaศ›ia ศ™i pe site-ul Bluesky, iar alte aplicaศ›ii ar putea sฤƒ nu respecte aceastฤƒ setare. Conศ›inutul dvs. poate fi afiศ™at รฎn continuare utilizatorilor deconectaศ›i de alte aplicaศ›ii ศ™i site-uri web." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Notฤƒ: Aceastฤƒ postare este vizibilฤƒ numai pentru utilizatorii conectaศ›i." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Nimic salvat รฎncฤƒ" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Setฤƒri pentru notificฤƒri" @@ -8353,11 +8345,12 @@ msgstr "Setฤƒri pentru notificฤƒri" msgid "Notification sounds" msgstr "Sunete notificare" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Oh, nu!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Ok" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Resetare รฎnregistrare" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "Unul dintre destinatarii selectaศ›i nu permite conversaศ›ii de grup." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "Unul dintre destinatarii selectaศ›i v-a blocat ศ™i nu-i se pot scrie mesaje." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Unei sau mai multor GIF-uri le lipseศ™te textul alternativ." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Unei sau mai multor imagini le lipseศ™te textul alternativ." @@ -8454,11 +8449,11 @@ msgstr "Unul sau mai multe dintre fiศ™ierele selectate nu sunt acceptate." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "Unul sau mai multe dintre fiศ™ierele selectate sunt prea mari. Dimensiunea maximฤƒ este de {VIDEO_MAX_SIZE_MB}ย MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Una sau mai multe postฤƒri sunt prea lungi pentru a fi salvate ca o schiศ›ฤƒ. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {Numฤƒrul maxim de caractere este de un caracter.} few {Numฤƒrul maxim de caractere este de # caractere.} other {Numฤƒrul maxim de caractere este de # de caractere.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Unei sau mai multor videoclipuri le lipseศ™te textul alternativ." @@ -8471,7 +8466,7 @@ msgstr "Doar {0} poate rฤƒspunde." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Doar {0} din {1} {2, plural, one {imagine a fost adฤƒugatฤƒ} few {imagini au fost adฤƒugate} other {de imagini au fost adฤƒugate}}; limita este {MAX_GALLERY_IMAGES}" @@ -8507,6 +8502,10 @@ msgstr "Doar persoanele urmฤƒrite de {0} se pot alฤƒtura." msgid "Only people the chat owner follows can join" msgstr "Doar persoanele pe care proprietarul conversaศ›iei le urmฤƒreศ™te se pot alฤƒtura" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "Doar postฤƒri" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "Doar postฤƒri cu conศ›inut media" @@ -8519,7 +8518,7 @@ msgstr "Doar postฤƒri cu videoclipuri" msgid "Only replies" msgstr "Doar rฤƒspunsuri" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Doar fiศ™ierele WebVTT (.vtt) sunt acceptate" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Ups, acest profil nu existฤƒ. รŽncercaศ›i sฤƒ scanaศ›i altul." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Hopa!" @@ -8544,7 +8543,7 @@ msgstr "Hopa!" msgid "Open advanced search options" msgstr "Deschidere opศ›iuni de cฤƒutare avansatฤƒ" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Deschideศ›i creatorul de avatar" @@ -8570,21 +8569,22 @@ msgstr "Deschideศ›i opศ›iunile conversaศ›iei" msgid "Open draft" msgstr "Deschideศ›i schiศ›a" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "Deschideศ›i meniul sertar" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Deschideศ›i selectorul de emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "Deschideศ›i ecranul cu informaศ›ii despre flux" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "Deschideศ›i meniul de opศ›iuni flux" @@ -8627,7 +8627,7 @@ msgstr "Deschideศ›i pagina de depanare pentru moderare" msgid "Open muted words and tags settings" msgstr "Deschideศ›i cuvinte amuศ›ite ศ™i setฤƒri etichete" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Deschidere pachet" @@ -8699,7 +8699,7 @@ msgstr "Deschide detalii suplimentare pentru o intrare de depanare" msgid "Opens alt text dialog" msgstr "Deschide dialogul de text alternativ" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Deschide camera pe dispozitiv" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Deschide interfaศ›a pentru a crea un nou cont Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Deschide procesul pentru a vฤƒ conecta la contul dvs. Bluesky existent" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Parolฤƒ actualizatฤƒ!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pauzฤƒ" @@ -8925,12 +8925,12 @@ msgstr "Pauzฤƒ" msgid "Pause GIF" msgstr "Puneศ›i รฎn pauzฤƒ GIF-ul" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pauzฤƒ videoclip" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Persoane" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Persoanele urmฤƒrite de {ownerName} pot solicita sฤƒ se alฤƒture" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Persoane urmฤƒrite de @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Persoane care urmฤƒresc @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Persoane pe care le urmฤƒriศ›i" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Persoanele pe care le urmฤƒresc pot solicita sฤƒ se alฤƒture" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Persoane pe care le urmฤƒriศ›i" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Imagini destinate adulศ›ilor." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixaศ›i fluxul" @@ -9034,7 +9034,7 @@ msgstr "Fixaศ›i fluxul" msgid "Pin to home" msgstr "Fixare la acasฤƒ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fixare la Acasฤƒ" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Fixat" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Fixat {0} la pagina acasฤƒ" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Fixat la fluxurile dvs." #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Redare" @@ -9076,8 +9076,8 @@ msgstr "Redaศ›i {0}" msgid "Play GIF" msgstr "Redare GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Redaศ›i videoclipul" @@ -9109,11 +9109,11 @@ msgstr "Vฤƒ rugฤƒm sฤƒ adฤƒugaศ›i orice etichete de avertizare de conศ›inut care 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Vฤƒ rugฤƒm sฤƒ vฤƒ alegeศ›i identificatorul." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Vฤƒ rugฤƒm sฤƒ vฤƒ alegeศ›i parola." @@ -9122,7 +9122,7 @@ msgstr "Vฤƒ rugฤƒm sฤƒ vฤƒ alegeศ›i parola." 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 "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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Vฤƒ rugฤƒm sฤƒ completaศ›i verificarea captcha." @@ -9179,7 +9179,7 @@ msgstr "Vฤƒ rugฤƒm sฤƒ introduceศ›i codul primit ศ™i noua parolฤƒ pe care doriศ› msgid "Please enter the security code we sent to your previous email address." 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:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Vฤƒ rugฤƒm sฤƒ introduceศ›i adresa dvs. de e-mail." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Vฤƒ rugฤƒm sฤƒ vฤƒ scrieศ›i mesajul mai jos:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politicฤƒ" @@ -9269,7 +9269,7 @@ msgstr "Politicฤƒ" msgid "Porn" msgstr "Pornografie" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Postare" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Postare" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Postaศ›i o fotografie" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Postaศ›i un videoclip" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Postaศ›i-le pe toate" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Postaศ›i oricum" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Postare blocatฤƒ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Postare de @{0}" @@ -9340,7 +9340,7 @@ msgstr "Postare ascunsฤƒ de dvs." msgid "Post interaction settings" msgstr "Setฤƒri interacศ›iune postare" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Setฤƒri de interacศ›iune postare" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Postare fixatฤƒ" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Postare salvatฤƒ" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "Tip de postare" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Fixarea postฤƒrii a fost anulatฤƒ" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Postฤƒri" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "Postฤƒri ศ™i rฤƒspunsuri" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Postฤƒrile pot fi amuศ›ite รฎn funcศ›ie de text, etichete sau ambele. V msgid "Posts hidden" msgstr "Postฤƒri ascunse" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Postฤƒri, Rฤƒspunsuri" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Link potenศ›ial รฎnศ™elฤƒtor" @@ -9449,20 +9451,21 @@ msgstr "Confidenศ›ialitate" msgid "Privacy and security" msgstr "Confidenศ›ialitate ศ™i securitate" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Confidenศ›ialitate ศ™i securitate" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Setฤƒri de confidenศ›ialitate ศ™i securitate" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Politica de Confidenศ›ialitate" msgid "Privacy violation of a minor" msgstr "รŽncฤƒlcarea confidenศ›ialitฤƒศ›ii unui minor" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Se proceseazฤƒ GIF-ul..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Se proceseazฤƒ videoclipul..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Liste publice, care pot fi partajate, cu utilizatori de amuศ›it sau blocat รฎn bloc." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publicaศ›i postarea" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publicaศ›i postฤƒrile" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publicaศ›i rฤƒspunsurile" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publicaศ›i rฤƒspunsul" @@ -9599,12 +9602,12 @@ msgstr "Postฤƒri citat dezactivate" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citate" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citatele acestei postฤƒri" @@ -9647,7 +9650,7 @@ msgstr "Reactivaศ›i-vฤƒ contul" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Citiศ›i รฎncฤƒ {0, plural, one {un rฤƒspuns} few {# rฤƒspunsuri} other {# de rฤƒspunsuri}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Citiศ›i despre cum sฤƒ utilizaศ›i filtrele de cฤƒutare avansatฤƒ" @@ -9657,11 +9660,11 @@ msgstr "Citiศ›i despre cum sฤƒ utilizaศ›i filtrele de cฤƒutare avansatฤƒ" msgid "Read blog post" msgstr "Citiศ›i postarea de pe blog" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Citiศ›i mai puศ›in" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Citiศ›i mai multe" @@ -9687,11 +9690,11 @@ msgstr "Citiศ›i Politica de Confidenศ›ialitate Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "Citiศ›i Termenii de Serviciu Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Conversaศ›ii reale." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Oameni reali." @@ -9721,10 +9724,6 @@ msgstr "Cฤƒutฤƒri recente" msgid "Recently used" msgstr "Utilizate recent" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Recomandat" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Reconectare" @@ -9748,7 +9747,7 @@ msgstr "Respingere cerere de conversaศ›ie" msgid "Reject join request" msgstr "Respingere cerere de alฤƒturare" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Reรฎncฤƒrcaศ›i conversaศ›iile" @@ -9766,7 +9765,7 @@ msgstr "Reรฎncฤƒrcaศ›i conversaศ›iile" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Eliminare" @@ -9792,8 +9791,8 @@ msgstr "Eliminaศ›i pe {displayName}?" msgid "Remove {q}" msgstr "Eliminare {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Eliminare cont" @@ -9845,15 +9844,15 @@ msgstr "Eliminare filtru" msgid "Remove from chat" msgstr "Eliminare din conversaศ›ie" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Eliminaศ›i din fluxurile mele" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Eliminaศ›i din acces rapid?" @@ -9862,7 +9861,7 @@ msgstr "Eliminaศ›i din acces rapid?" msgid "Remove from saved feeds" msgstr "Eliminaศ›i din fluxurile salvate" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Eliminare din postฤƒri salvate" @@ -9880,8 +9879,8 @@ msgstr "Eliminare imagine" msgid "Remove live status" msgstr "Eliminare stare รฎn direct" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Eliminare membru" @@ -9943,7 +9942,7 @@ msgstr "Eliminat din listฤƒ" msgid "Removed from saved feeds" msgstr "Eliminat din fluxurile salvate" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Eliminat din postฤƒri salvate" @@ -9952,7 +9951,7 @@ msgstr "Eliminat din postฤƒri salvate" msgid "Removed from starter pack" msgstr "Eliminat din pachetul de pornire" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Rฤƒspuns la dvs." -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Mesaj la care a rฤƒspuns {senderName}, atingeศ›i pentru a derula la el" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Mesajul la care s-a rฤƒspuns a fost trimis รฎnainte de a vฤƒ fi alฤƒturat" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Mesaj la care s-a rฤƒspuns, atingeศ›i pentru a derula la el" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Rฤƒspunsuri" @@ -10037,7 +10037,7 @@ msgstr "Rฤƒspunsurile la aceastฤƒ postare sunt dezactivate." msgid "Reply" msgstr "Rฤƒspundeศ›i" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Rฤƒspundeศ›i" @@ -10098,8 +10098,8 @@ msgstr "Raportaศ›i conversaศ›ia" msgid "Report dialog" msgstr "Dialog raportare" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Raportaศ›i fluxul" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Repostat de dvs." #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Repostฤƒri" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Repostฤƒri ale acestei postฤƒri" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Repostฤƒri ale repostฤƒrilor dvs." @@ -10253,7 +10253,7 @@ msgstr "Solicitat" msgid "Requests" msgstr "Cereri" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Reรฎncearcฤƒ ultima acศ›iune, care a eศ™uat" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Revine la acasฤƒ" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Revine la pagina anterioarฤƒ" @@ -10446,27 +10446,27 @@ msgstr "Salvaศ›i ziua de naศ™tere" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Salvare modificฤƒri" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Salvaศ›i modificฤƒrile?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Salvare schiศ›ฤƒ" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Salvaศ›i schiศ›a?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Salvaศ›i codul QR" msgid "Save these options for next time" msgstr "Salvaศ›i aceste opศ›iuni pentru data viitoare" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Salvare รฎn fluxurile mele" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Fluxuri salvate" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Postฤƒri salvate" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Salvat รฎn fluxurile dvs." @@ -10520,8 +10520,8 @@ msgstr "Salvat รฎn fluxurile dvs." msgid "Say hello!" msgstr "Spuneศ›i salut!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Spuneศ›i salut cuiva" @@ -10535,7 +10535,7 @@ msgstr "Scanare" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Scanare cod QR" @@ -10543,15 +10543,15 @@ msgstr "Scanare cod QR" msgid "Science" msgstr "ศ˜tiinศ›ฤƒ" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Derulaศ›i spre stรขnga" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Derulaศ›i spre dreapta" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Derulaศ›i la mesajul la care s-a rฤƒspuns" @@ -10564,8 +10564,8 @@ msgstr "Derulaศ›i pรขnฤƒ sus" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Cฤƒutare" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cฤƒutaศ›i รฎn postฤƒrile lui @{0}" @@ -10612,11 +10612,11 @@ msgstr "Cฤƒutaศ›i {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Cฤƒutaศ›i fluxuri pe care doriศ›i sฤƒ le sugeraศ›i altora." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Cฤƒutaศ›i mai multe conturi" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Cฤƒutaศ›i mai multe fluxuri" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Cฤƒutaศ›i GIF-uri" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Cฤƒutarea nu este disponibilฤƒ รฎn prezent cรขnd sunteศ›i deconectat" @@ -10707,17 +10707,22 @@ msgstr "Vedeศ›i postฤƒrile #{tag} de la utilizator" msgid "See jobs at Bluesky" msgstr "Vedeศ›i locuri de muncฤƒ la Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Vedeศ›i mai multe" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Vedeศ›i mai multe profiluri sugerate" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "Vizualizaศ›i mai multe subiecte รฎn tendinศ›e" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Vedeศ›i conturile sugerate" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Glisor cฤƒutare. Folosiศ›i tastele sฤƒgeศ›i pentru a cฤƒuta รฎnainte ศ™i รฎnapoi ศ™i spaศ›iu pentru redare/pauzฤƒ" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Selectaศ›i categoria โ€ž{interestsDisplayName}โ€" @@ -10748,7 +10753,7 @@ msgstr "Selectare {0}" msgid "Select {langName}" msgstr "Selectaศ›i {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Selectaศ›i o culoare" @@ -10764,11 +10769,11 @@ msgstr "Selectare cont" msgid "Select an app language" msgstr "Selectaศ›i o limbฤƒ pentru aplicaศ›ie" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Selectaศ›i un avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Selectaศ›i un emoji" @@ -10780,12 +10785,13 @@ msgstr "Selectaศ›i o opศ›iune" msgid "Select app language" msgstr "Selectaศ›i limba aplicaศ›iei" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Selectaศ›i fiศ™ierul subtitrare (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Selectaศ›i conversaศ›ia โ€ž{name}โ€" @@ -10826,7 +10832,7 @@ msgstr "Selectare GIF" msgid "Select GIF \"{0}\"" msgstr "Selectare GIF โ€ž{0}โ€" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Selectaศ›i membrii de conversaศ›ie de grup" @@ -10864,7 +10870,7 @@ msgstr "Selectaศ›i limba principalฤƒ" msgid "Select telephone code" msgstr "Selectaศ›i prefixul telefonic" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Selectaศ›i emoji-ul {emojiName} ca avatar" @@ -10945,7 +10951,8 @@ msgstr "Trimitere mesaj" msgid "Send post to {name}" msgstr "Trimitere postare cฤƒtre {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Trimitere postare cฤƒtre..." @@ -10963,12 +10970,12 @@ msgstr "Trimiteศ›i mesajul de pe telefonul dvs." msgid "Send verification email" msgstr "Trimitere e-mail de verificare" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Trimitere prin mesaj direct" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Trimitere prin conversaศ›ie" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Setaศ›i manual furnizorul de gฤƒzduire" msgid "Sets email for password reset" msgstr "Seteazฤƒ e-mailul pentru resetarea parolei" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Setฤƒri" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Setฤƒri pentru activitate de la alศ›ii" @@ -11036,49 +11043,49 @@ msgstr "Setฤƒri pentru activitate de la alศ›ii" msgid "Settings for allowing others to be notified of your posts" msgstr "Setฤƒri pentru a permite celorlalศ›i sฤƒ fie notificaศ›i despre postฤƒrile dvs." -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Setฤƒri pentru notificฤƒri de aprecieri" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Setฤƒri pentru notificฤƒri de menศ›iuni" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Setฤƒri pentru notificฤƒri de urmฤƒritor nou" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Setฤƒri pentru notificฤƒri pentru orice altceva" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Setฤƒri pentru notificฤƒri de aprecieri ale repostฤƒrilor dvs." #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Setฤƒri pentru notificฤƒri privind cererile de mesaje noi" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Setฤƒri pentru notificฤƒri privind mesaje noi" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Setฤƒri pentru notificฤƒri de repostฤƒri ale repostฤƒrilor dvs." -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Setฤƒri pentru notificฤƒri de citate" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Setฤƒri pentru notificฤƒri de rฤƒspuns" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Setฤƒri pentru notificฤƒri de repostare" @@ -11115,8 +11122,8 @@ msgstr "Partajaศ›i intervalul de vรขrstฤƒ" msgid "Share anyway" msgstr "Distribuiศ›i oricum" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Partajare DID autor" @@ -11127,7 +11134,7 @@ msgstr "Partajare DID autor" msgid "Share feedback" msgstr "Partajare feedback" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialogul de distribuire link" msgid "Share my profile" msgstr "Partajaศ›i-mi profilul" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Distribuiศ›i postarea at:// URI" @@ -11169,12 +11176,12 @@ msgstr "Partajare profil" msgid "Share QR code" msgstr "Distribuiศ›i codul QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Distribuiศ›i acest flux" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Partajaศ›i aceastฤƒ cฤƒutare" @@ -11186,8 +11193,8 @@ msgstr "Distribuiศ›i acest pachet de pornire" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Distribuiศ›i acest pachet de pornire ศ™i ajutaศ›i oamenii sฤƒ se alฤƒture comunitฤƒศ›ii dvs. pe Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Partajaศ›i-vฤƒ contactele pentru a gฤƒsi prieteni" msgid "Share your thoughtsโ€ฆ" msgstr "รŽmpฤƒrtฤƒศ™iศ›i-vฤƒ gรขndurileโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Tester Preferinศ›e Partajate" @@ -11219,7 +11226,7 @@ msgstr "Partajarea intervalului dvs. de vรขrstฤƒ dezvฤƒluie doar intervalul asoc msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Partajarea intervalului dvs. de vรขrstฤƒ dezvฤƒluie doar intervalul asociat cu contul dvs. Google โ€“ de exemplu, faptul cฤƒ aveศ›i cel puศ›in 18 ani. <0>Vรขrsta dvs. exactฤƒ ศ™i ziua de naศ™tere nu sunt niciodatฤƒ partajate, iar aceste date nu pฤƒrฤƒsesc niciodatฤƒ acest dispozitiv. Prin urmare, se activeazฤƒ accesul doar pe acest dispozitiv. Alternativ, <1>puteศ›i folosi partenerul nostru de รฎncredere, KWS, pentru a finaliza verificarea ศ™i a activa accesul pe toate platformele." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Afiศ™are" msgid "Show alt text" msgstr "Afiศ™are text alternativ" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Afiศ™aศ›i oricum" @@ -11274,8 +11281,8 @@ msgstr "Afiศ™aศ›i lista oricum" msgid "Show lists of users to select from" msgstr "Afiศ™aศ›i liste de utilizatori din care puteศ›i selecta" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Afiศ™aศ›i mai multe" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Afiศ™eazฤƒ avertismente ศ™i filtreazฤƒ din fluxuri" msgid "Show when youโ€™re live" msgstr "Afiศ™aศ›i cรขnd sunteศ›i รฎn direct" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Afiศ™eazฤƒ informaศ›ii despre cรขnd a fost creatฤƒ aceastฤƒ postare" @@ -11341,15 +11348,15 @@ msgstr "Afiศ™eazฤƒ informaศ›ii despre cรขnd a fost creatฤƒ aceastฤƒ postare" msgid "Shows other accounts you can switch to" msgstr "Afiศ™eazฤƒ alte conturi la care vฤƒ puteศ›i comuta" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Afiศ™eazฤƒ conศ›inutul" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Afiศ™eazฤƒ conศ›inutul" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Deconectare?" msgid "Sign up" msgstr "รŽnscrieศ›i-vฤƒ" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Conectare necesarฤƒ" @@ -11469,7 +11476,7 @@ msgstr "Omitere" msgid "Skip contact sharing and continue to the app" msgstr "Omiteศ›i partajarea contactelor ศ™i continuaศ›i spre aplicaศ›ie" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Omiteศ›i postฤƒrile goale?" @@ -11487,7 +11494,7 @@ msgstr "Omiteศ›i la pasul urmฤƒtor" msgid "slide" msgstr "glisare" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Mai mic" @@ -11499,7 +11506,7 @@ msgstr "Amรขnare memento" msgid "So many thoughts, you should post one" msgstr "Atรขt de multe gรขnduri, ar trebui sฤƒ postaศ›i mฤƒcar unul" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "O reศ›ea socialฤƒ pe care dvs. o controlaศ›i." @@ -11520,7 +11527,7 @@ msgstr "Unele servicii de moderare din lista dvs. nu mai sunt disponibile." msgid "Some of your verifications are invalid." msgstr "Unele dintre verificฤƒrile dvs. sunt invalide." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Alte fluxuri care v-ar putea plฤƒcea" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Cineva a pฤƒrฤƒsit grupul" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Cineva a reacศ›ionat cu {0}" @@ -11554,7 +11561,7 @@ msgstr "Cineva a reacศ›ionat cu {0}" msgid "Someone reacted {0} to {target}" msgstr "Cineva a reacศ›ionat cu {0} la {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Cineva a rฤƒspuns" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Ceva n-a mers bine, vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Ceva nu a mers bine, vฤƒ rugฤƒm รฎncercaศ›i din nou." msgid "Something went wrong. Please try again." msgstr "Ceva n-a mers bine. Vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "E ceva รฎn neregulฤƒ? Anunศ›aศ›i-ne." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam sau alt comportament inautentic sau รฎnศ™elฤƒciune" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "รŽncepeศ›i o conversaศ›ie ศ™i ea va apฤƒrea aici." msgid "Start a group chat" msgstr "รŽncepeศ›i o conversaศ›ie de grup" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "รŽncepeศ›i o conversaศ›ie nouฤƒ" @@ -11682,17 +11689,17 @@ msgstr "รŽncepeศ›i sฤƒ adaugaศ›i persoane" msgid "Start adding people!" msgstr "รŽncepeศ›i sฤƒ adaugaศ›i persoane!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "รŽncepeศ›i conversaศ›ia" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "รŽncepeศ›i conversaศ›ia cu {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pachet de pornire" @@ -11715,12 +11722,16 @@ msgstr "Pachet de pornire de dvs." msgid "Starter pack is invalid" msgstr "Pachetul de pornire nu este valid" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Pachete de pornire" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Pachete de pornire" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Pachetele de pornire vฤƒ permit sฤƒ partajaศ›i cu uศ™urinศ›ฤƒ fluxurile ศ™i persoanele preferate cu prietenii dvs." @@ -11728,7 +11739,7 @@ msgstr "Pachetele de pornire vฤƒ permit sฤƒ partajaศ›i cu uศ™urinศ›ฤƒ fluxurile msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Pachetele de pornire vฤƒ permit sฤƒ partajaศ›i cu uศ™urinศ›ฤƒ fluxurile ศ™i persoanele preferate cu prietenii dvs." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Pachetele de pornire vฤƒ permit sฤƒ partajaศ›i cu uศ™urinศ›ฤƒ fluxurile ศ™i persoanele preferate cu prietenii dvs." @@ -11742,7 +11753,7 @@ msgstr "Pagina de stare" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Pasul {0} din {1}" @@ -11754,7 +11765,7 @@ msgstr "Spaศ›iu de stocare curฤƒศ›at, trebuie sฤƒ reporniศ›i aplicaศ›ia acum." msgid "Stored as part of a secure code for matching with others" msgstr "Stocat ca parte a unui cod securizat pentru a se potrivi cu alศ›ii" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Abonaศ›i-vฤƒ la {publicationTitle} pe {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Abonaศ›i-vฤƒ la @{0} pentru a utiliza aceste etichete:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Verificat cu succes" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Sugerate" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Conturi sugerate" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Sugerat pentru dvs." @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Apus de soare" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Aceastฤƒ caracteristicฤƒ nu este รฎncฤƒ disponibilฤƒ รฎn ศ›ara dvs.! Vฤƒ rugฤƒm sฤƒ reveniศ›i mai tรขrziu." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Conturile suspendate nu pot participa la o conversaศ›ie de grup." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Conturile suspendate nu pot participa la conversaศ›ie." @@ -11921,8 +11934,8 @@ msgstr "Comutaศ›i la {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistem" @@ -11945,7 +11958,7 @@ msgstr "Treceศ›i conversaศ›ia รฎn privat." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Atingeศ›i mai jos pentru a permite aplicaศ›iei Bluesky sฤƒ vฤƒ acceseze locaศ›ia GPS. Vom folosi apoi aceste date pentru a determina cu mai multฤƒ precizie conศ›inutul ศ™i caracteristicile disponibile รฎn regiunea dvs." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Atingeศ›i pentru detalii" @@ -11976,7 +11989,7 @@ msgstr "Atingeศ›i pentru a รฎnchide meniul contextual" msgid "Tap to copy this invite link" msgstr "Atingeศ›i pentru a copia acest link de invitaศ›ie" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Atingeศ›i pentru a รฎnchide" @@ -12003,7 +12016,7 @@ msgstr "Atingeศ›i pentru a vฤƒ elimina reacศ›ia {0}" msgid "Tap to request access to join this group chat" msgstr "Atingeศ›i pentru a solicita acces pentru a vฤƒ alฤƒtura acestei conversaศ›ii de grup" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Atingeศ›i pentru a reรฎncerca" @@ -12016,7 +12029,7 @@ msgstr "Atingeศ›i pentru a afiศ™a {0} reacศ›ii" msgid "Tap to show all reactions" msgstr "Atingeศ›i pentru a afiศ™a toate reacศ›iile" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Atingeศ›i pentru a vizualiza reacศ›iile" @@ -12032,7 +12045,7 @@ msgstr "Sarcinฤƒ completฤƒ - 10 urmฤƒriri!" msgid "Task complete - 10 likes!" msgstr "Sarcinฤƒ completฤƒ - 10 aprecieri!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "รŽnvฤƒศ›aศ›i algoritmul ce vฤƒ place" @@ -12060,7 +12073,7 @@ msgstr "Termeni" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Acest pachet de pornire nu a putut fi gฤƒsit." msgid "That username is already taken" msgstr "Acel nume de utilizator este deja luat" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Asta-i tot, oameni buni!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Asta e tot!" @@ -12216,7 +12229,7 @@ msgstr "Serverul pare sฤƒ รฎntรขmpine probleme. Vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din n msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Pachetul de pornire pe care รฎncercaศ›i sฤƒ รฎl vizualizaศ›i este nevalid. รŽn schimb, puteศ›i ศ™terge acest pachet de pornire." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Subiectul meniului contextul" @@ -12238,7 +12251,7 @@ msgstr "Codul de verificare pe care l-aศ›i furnizat este nevalid. Asiguraศ›i-vฤƒ msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Furnizorul de verificare nu a putut trimite un cod la numฤƒrul dvs. de telefon. Vฤƒ rugฤƒm sฤƒ verificaศ›i numฤƒrul de telefon ศ™i sฤƒ รฎncercaศ›i din nou." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Temฤƒ" @@ -12266,7 +12279,7 @@ msgstr "A apฤƒrut o problemฤƒ la รฎncฤƒrcarea GIF-urilor. Verificaศ›i-vฤƒ conexi msgid "There was a problem with your internet connection, please try again" msgstr "A apฤƒrut o problemฤƒ cu conexiunea dvs. la internet, vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "A apฤƒrut o problemฤƒ cu conexiunea dvs. la internet, vฤƒ rugฤƒm sฤƒ รฎn msgid "There was an issue contacting the server" msgstr "A apฤƒrut o problemฤƒ la contactarea serverului" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "A apฤƒrut o problemฤƒ la contactarea serverului, vฤƒ rugฤƒm sฤƒ vฤƒ verificaศ›i conexiunea la internet ศ™i รฎncercaศ›i din nou." @@ -12283,8 +12296,8 @@ msgstr "A apฤƒrut o problemฤƒ la contactarea serverului, vฤƒ rugฤƒm sฤƒ vฤƒ veri msgid "There was an issue fetching notifications. Tap here to try again." msgstr "A apฤƒrut o problemฤƒ la preluarea notificฤƒrilor. Atingeศ›i aici pentru a รฎncerca din nou." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "A apฤƒrut o problemฤƒ la preluarea postฤƒrilor. Atingeศ›i aici pentru a รฎncerca din nou." @@ -12309,7 +12322,7 @@ msgstr "A apฤƒrut o problemฤƒ la preluarea informaศ›iilor dvs. de serviciu" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "A apฤƒrut o problemฤƒ la eliminarea acestui flux. Vฤƒ rugฤƒm sฤƒ vฤƒ verificaศ›i conexiunea la internet ศ™i sฤƒ รฎncercaศ›i din nou." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Aceste setฤƒri se aplicฤƒ numai fluxului Urmฤƒriศ›i." msgid "These URLs" msgstr "Aceste URL-uri" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Aceศ™tia deศ›in aceastฤƒ conversaศ›ie" @@ -12392,7 +12405,7 @@ msgstr "Aceศ™tia deศ›in aceastฤƒ conversaศ›ie" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "Nu se vor putea realฤƒtura decรขt dacฤƒ รฎi invitaศ›i din nou." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Acest {screenDescription} a fost etichetat:" @@ -12408,7 +12421,7 @@ msgstr "Acest cont a fost marcat ca automatizat de cฤƒtre proprietarul sฤƒu." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Acest cont are una sau mai multe verificฤƒri, dar nu este verificat รฎn prezent." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Acest cont a solicitat ca utilizatorii sฤƒ se conecteze pentru a vizualiza profilul lor." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Acest flux este gol! S-ar putea sฤƒ fie nevoie sฤƒ urmฤƒriศ›i mai mulศ›i utilizatori sau sฤƒ ajustaศ›i setฤƒrile de limbฤƒ." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Acest flux este gol." @@ -12554,7 +12567,7 @@ msgstr "Acest grup este blocat de o acศ›iune de moderare asupra proprietarului" msgid "This handle is reserved. Please try a different one." msgstr "Acest identificator este rezervat. Vฤƒ rugฤƒm sฤƒ รฎncercaศ›i unul diferit." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Aceastฤƒ imagine nu a putut fi utilizatฤƒ. รŽncercaศ›i un alt format ca .jpg sau .png." @@ -12596,7 +12609,7 @@ msgstr "Aceastฤƒ etichetฤƒ a fost aplicatฤƒ de dvs." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Aceastฤƒ etichetฤƒ a fost aplicatฤƒ รฎntregului cont de utilizator ศ™i va apฤƒrea pe toate postฤƒrile." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Acest etichetator nu a declarat etichetele pe care le publicฤƒ ศ™i s-ar putea sฤƒ nu fie activ." @@ -12621,13 +12634,13 @@ msgstr "Aceastฤƒ listฤƒ este goalฤƒ." msgid "This message is hidden" msgstr "Acest mesaj este ascuns" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Acest mesaj este ascuns deoarece acest utilizator vฤƒ blocheazฤƒ." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Acest mesaj este ascuns deoarece blocaศ›i acest utilizator." @@ -12641,7 +12654,7 @@ msgstr "Aceastฤƒ persoanฤƒ vฤƒ blocheazฤƒ" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Aceastฤƒ postare pretinde cฤƒ a fost creatฤƒ pe <0>{0}, dar a fost vฤƒzutฤƒ prima datฤƒ de Bluesky pe <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Aceastฤƒ postare pretinde cฤƒ a fost creatฤƒ pe <0>{0}, dar a fost v msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Aceastฤƒ postare are un tip necunoscut de threadgate. Este posibil ca aplicaศ›ia dvs. sฤƒ nu fie actualizatฤƒ la zi." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Aceastฤƒ postare este vizibilฤƒ numai pentru utilizatorii conectaศ›i." @@ -12661,7 +12674,7 @@ msgstr "Aceastฤƒ postare a fost ศ™tearsฤƒ de autorul sฤƒu" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Aceastฤƒ postare va fi ascunsฤƒ de fluxuri ศ™i fire. Acest lucru nu poate fi anulat." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Autorul acestei postฤƒri a dezactivat postฤƒrile citate." @@ -12698,11 +12711,12 @@ msgstr "Acest lucru ar trebui sฤƒ dureze doar cรขteva minute." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Acest utilizator nu are un nume afiศ™at, ศ™i prin urmare, nu poate fi verificat." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Acest utilizator nu are urmฤƒritori." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Acest utilizator v-a blocat ศ™i nu-i se pot scrie mesaje." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Acest utilizator v-a blocat. Nu puteศ›i vizualiza conศ›inutul acestuia." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Acest utilizator a dezactivat conversaศ›ia ศ™i nu-i se pot scrie mesaje." @@ -12733,11 +12748,11 @@ msgstr "Acest utilizator este inclus รฎn lista <0>{0} pe care aศ›i amuศ›it-o msgid "This user is new here. Press for more info about when they joined." msgstr "Acest utilizator este nou aici. Apฤƒsaศ›i pentru mai multe informaศ›ii despre momentul cรขnd s-a alฤƒturat." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Acest utilizator nu urmฤƒreศ™te pe nimeni." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Acest videoclip nu poate fi redat pe dispozitivul dvs. Este posibil ca browserul sau sistemul dvs. sฤƒ nu aibฤƒ codec-urile video necesare (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Aceastฤƒ acศ›iune va ศ™terge ireversibil contul dvs. Bluesky <0>{currentHandle} ศ™i toate datele asociate. Reศ›ineศ›i cฤƒ acest lucru va afecta orice alte servicii pe <1>Protocolul AT pe care le utilizaศ›i cu acest cont." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Aceasta va elimina @{0} din lista de acces rapid." @@ -12786,7 +12801,7 @@ msgstr "Preferinศ›e fir" msgid "Threaded" msgstr "Fire" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Preferinศ›e fire" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Prea multe contacte - aศ›i depฤƒศ™it numฤƒrul de contacte pe care le puteศ›i importa pentru a vฤƒ gฤƒsi prietenii" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Sus" @@ -12858,7 +12873,7 @@ msgstr "Sus" msgid "Top replies first" msgstr "Rฤƒspunsurile de top primele" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Subiect" @@ -12893,7 +12908,9 @@ msgstr "Traducerea รฎn aceeaลŸi limbฤƒ nu este disponibilฤƒ pe dispozitivul dvs. msgid "Tree view" msgstr "Vizualizare arbore" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "รŽn tendinศ›e" @@ -12902,13 +12919,15 @@ msgstr "รŽn tendinศ›e" msgid "Trending GIFs" msgstr "GIF-uri populare" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Opศ›iuni subiecte รฎn tendinศ›e" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Videoclipuri รฎn tendinศ›e" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Trolling" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "รŽncrederea rezultฤƒ din relaศ›ii, comunitฤƒศ›i ศ™i context comun, aศ™a cฤƒ activฤƒm ศ™i <0>verificatori de รฎncredere: organizaศ›ii care pot emite รฎn mod direct verificฤƒri." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "รŽncercaศ›i un alt termen de cฤƒutare sau eliminaศ›i cรขteva filtre." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "รŽncercaศ›i un alt termen de cฤƒutare." @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Imposibil de preluat cererile de alฤƒturare." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Imposibil de gฤƒsit destinatarul selectat." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Imposibil de gฤƒsit destinatarul selectat." @@ -13024,12 +13045,12 @@ msgstr "Indisponibil" msgid "Unavailable feed information" msgstr "Informaศ›ii flux indisponibile" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Deblocare cont?" msgid "Unblock list" msgstr "Deblocare listฤƒ" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Nu mai urmฤƒriศ›i pe {0}" msgid "Unfollow account" msgstr "Nu mai urmฤƒriศ›i contul" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Anuleazฤƒ urmฤƒrirea utilizatorului" @@ -13132,7 +13153,7 @@ msgstr "Conศ›inut pentru adulศ›i care nu este etichetat ca atare" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Conศ›inut pentru adulศ›i care nu este etichetat ca atare, abuziv sau neconsensual" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Nu mai apreciaศ›i" @@ -13192,7 +13213,7 @@ msgstr "Dezamuศ›iศ›i aceastฤƒ conversaศ›ie de grup" msgid "Unmute thread" msgstr "Dezamuศ›ire fir" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Activaศ›i sunetul videoclipului" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Anulaศ›i fixarea" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Anulaศ›i fixarea fluxului" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Anulaศ›i fixarea de la acasฤƒ" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Anulaศ›i fixarea listei de moderare" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Fixarea {0} anulatฤƒ de la pagina Acasฤƒ" @@ -13258,11 +13279,11 @@ msgstr "Dezabonare de la acest etichetator" msgid "Unsubscribed from list" msgstr "Dezabonat de la listฤƒ" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Conศ›inut clipboard neacceptat" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Tip videoclip neacceptat: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Actualizarea vizibilitฤƒศ›ii rฤƒspunsului a eศ™uat" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "รŽncฤƒrcaศ›i o fotografie รฎn schimb" @@ -13355,7 +13376,7 @@ msgstr "รŽncฤƒrcaศ›i din fiศ™iere" msgid "Upload from Library" msgstr "รŽncฤƒrcaศ›i din bibliotecฤƒ" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Se รฎncarcฤƒ GIF-ul..." @@ -13369,7 +13390,7 @@ msgstr "Se รฎncarcฤƒ imaginile..." msgid "Uploading link thumbnail..." msgstr "Se รฎncarcฤƒ miniatura link-ului..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Se รฎncarcฤƒ videoclipul..." @@ -13408,7 +13429,7 @@ msgstr "Utilizaศ›i asta pentru a vฤƒ conecta la cealaltฤƒ aplicaศ›ie รฎmpreunฤƒ msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Utilizaศ›i adresa dvs. de e-mail sau o altฤƒ adresฤƒ realฤƒ de e-mail pe care o controlaศ›i รฎn cazul รฎn care KWS sau Bluesky trebuie sฤƒ vฤƒ contacteze." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "utilizator" @@ -13510,7 +13531,7 @@ msgstr "Verificare eศ™uatฤƒ, รฎncercaศ›i din nou." msgid "Verification settings" msgstr "Setฤƒri de verificare" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Setฤƒri de verificare" @@ -13618,34 +13639,34 @@ msgstr "Videoclip" msgid "Video failed to process" msgstr "Procesarea videoclipului a eศ™uat" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Flux video" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Videoclip de la {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Videoclip de la {0}. Atingeศ›i pentru a reda sau pentru a รฎntrerupe videoclipul" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Jocuri video" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Redarea videoclipului este รฎntreruptฤƒ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Videoclipul se redฤƒ" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Videoclipul nu a fost gฤƒsit." @@ -13653,7 +13674,7 @@ msgstr "Videoclipul nu a fost gฤƒsit." msgid "Video settings" msgstr "Setฤƒri videoclip" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Videoclip รฎncฤƒrcat" @@ -13662,17 +13683,17 @@ msgstr "Videoclip รฎncฤƒrcat" msgid "Video: {0}" msgstr "Videoclip: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videoclipuri" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videoclipurile trebuie sฤƒ aibฤƒ o lungime de mai puศ›in de 3 minute." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Vizualizare" @@ -13691,9 +13712,9 @@ msgstr "Vizualizaศ›i avatarul lui {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Vizualizaศ›i profilul lui {0}" @@ -13724,13 +13745,13 @@ msgstr "Vizualizaศ›i postarea pe blog pentru mai multe detalii" msgid "View debug entry" msgstr "Vizualizaศ›i intrarea de depanare" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Vizualizare detalii" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Vizualizaศ›i รฎntregul fir" @@ -13750,18 +13771,18 @@ msgstr "Vizualizaศ›i cererile de alฤƒturare primite acestei conversaศ›ii de grup msgid "View information about these labels" msgstr "Vizualizaศ›i informaศ›ii despre aceste etichete" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Vedeศ›i mai multe" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Vizualizaศ›i mai multe videoclipuri รฎn tendinศ›e" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Vizualizare postare" @@ -13798,15 +13819,15 @@ msgstr "Vizualizaศ›i linkul de invitaศ›ie pentru aceastฤƒ conversaศ›ie de grup" msgid "View the labeling service provided by @{0}" msgstr "Vizualizaศ›i serviciul de etichetare furnizat de @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Vizualizaศ›i verificฤƒrile acestui utilizator" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Vizualizaศ›i utilizatorii care apreciazฤƒ acest flux" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Vizualizare videoclip" @@ -13831,7 +13852,7 @@ msgstr "Vizualizaศ›i listele dvs. de moderare" msgid "View your muted accounts" msgstr "Vizualizaศ›i conturile dvs. amuศ›ite" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Vizualizaศ›i-vฤƒ verificฤƒrile" @@ -13840,7 +13861,7 @@ msgstr "Vizualizaศ›i-vฤƒ verificฤƒrile" msgid "Views full image" msgstr "Vizualizeazฤƒ imaginea completฤƒ" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Vizualizeazฤƒ videoclipul รฎn modul imersiv" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Avem probleme cu reศ›eaua, รฎncercaศ›i din nou" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Avem probleme cu reศ›eaua, รฎncercaศ›i din nou" @@ -14043,7 +14064,7 @@ msgstr "Avem probleme cu reศ›eaua, รฎncercaศ›i din nou" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Introducem un nou nivel de verificare pe Bluesky - o bifฤƒ uศ™or de vฤƒzut." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Suntem atรขt de รฎncรขntaศ›i sฤƒ vฤƒ avem alฤƒturi de noi!" @@ -14064,13 +14085,15 @@ msgstr "Ne pare rฤƒu, dar nu am reuศ™it sฤƒ rezolvฤƒm aceastฤƒ listฤƒ. Dacฤƒ pro msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Ne pare rฤƒu, dar nu am putut รฎncฤƒrca cuvintele dvs. amuศ›ite รฎn acest moment. Vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "Ne pare rฤƒu, dar cฤƒutarea dvs. nu a putut fi finalizatฤƒ." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Ne pare rฤƒu, dar cฤƒutarea dvs. nu a putut fi finalizatฤƒ. Vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou peste cรขteva minute." @@ -14078,7 +14101,7 @@ msgstr "Ne pare rฤƒu, dar cฤƒutarea dvs. nu a putut fi finalizatฤƒ. Vฤƒ rugฤƒm s msgid "We're sorry, you cannot access this screen at this time." msgstr "Ne pare rฤƒu, nu puteศ›i accesa acest ecran รฎn acest moment." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ne pare rฤƒu! Postare la care rฤƒspundeศ›i a fost ศ™ters." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "care-i treaba" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Care-i treaba?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Cine poate verifica?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Hopa!" @@ -14220,21 +14243,21 @@ msgstr "Doriศ›i sฤƒ blocaศ›i acest utilizator ศ™i/sau sฤƒ pฤƒrฤƒsiศ›i aceastฤƒ c msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Doriศ›i sฤƒ salvaศ›i acest lucru ca schiศ›ฤƒ รฎnainte de a vฤƒ vizualiza schiศ›ele?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Doriศ›i sฤƒ salvaศ›i acest lucru ca schiศ›ฤƒ pentru a o edita mai tรขrziu?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Scrieศ›i o postare" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Scrieศ›i o postare" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Scrieศ›i-vฤƒ rฤƒspunsul" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Accesaศ›i Bluesky dintr-o regiune care, รฎn mod legal, ne cere sฤƒ vฤƒ verificฤƒm vรขrsta รฎnainte de a vฤƒ permite sฤƒ accesaศ›i aplicaศ›ia." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Dvs. blocaศ›i pe {0}" @@ -14342,7 +14365,7 @@ msgstr "Nu mai sunteศ›i รฎn direct" msgid "You are not allowed to upload videos." msgstr "Nu aveศ›i voie sฤƒ รฎncฤƒrcaศ›i videoclipuri." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Nu urmฤƒriศ›i pe nimeni รฎncฤƒ" @@ -14362,7 +14385,7 @@ msgstr "Sunteศ›i verificat. Veศ›i pierde starea de verificare dacฤƒ vฤƒ schimba msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Sunteศ›i verificat. Veศ›i pierde starea de verificare dacฤƒ vฤƒ schimbaศ›i identificatorul. <0>Aflaศ›i mai multe." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Vฤƒ puteศ›i ajusta interesele รฎn orice moment din setฤƒrile โ€žConศ›inut ศ™i mediaโ€." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Acum vฤƒ puteศ›i conecta cu noua parolฤƒ." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Puteศ›i adฤƒuga pรขnฤƒ la {MAX_GALLERY_IMAGES, plural, one {} few {# imagini}other {# de imagini}} per postare" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Puteศ›i salva doar schiศ›e pรขnฤƒ la 1000 de caractere." @@ -14439,9 +14462,11 @@ msgstr "Puteศ›i citi istoricul conversaศ›iei, dar nu puteศ›i trimite mesaje noi. msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Puteศ›i selecta pรขnฤƒ la {MAX_GALLERY_IMAGES, plural, one {} few {# imagini}other {# de imagini}} รฎn total." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Puteศ›i actualiza acest lucru mai tรขrziu รฎn setฤƒri." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Nu puteศ›i adฤƒuga mai mult de {EMOJI_REACTION_LIMIT, plural, one {o reacศ›ie emoji} few {# reacศ›ii emoji} other {# de reacศ›ii emoji}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "รŽncฤƒ nu puteศ›i crea conversaศ›ii de grup." @@ -14555,7 +14581,7 @@ msgstr "Aศ›i verificat cu succes adresa dvs. de e-mail. Puteศ›i รฎnchide acest d msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Aศ›i atins temporar limita pentru รฎncฤƒrcฤƒri de videoclipuri. Vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou mai tรขrziu." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Aveศ›i modificฤƒri nesalvate la aceastฤƒ schiศ›ฤƒ, doriศ›i sฤƒ le salvaศ›i?" @@ -14563,7 +14589,7 @@ msgstr "Aveศ›i modificฤƒri nesalvate la aceastฤƒ schiศ›ฤƒ, doriศ›i sฤƒ le salva msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Aveศ›i modificฤƒri nesalvate. Doriศ›i sฤƒ le salvaศ›i รฎnainte de a vฤƒ vizualiza schiศ›ele?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "รŽncฤƒ nu aศ›i creat un pachet de pornire!" @@ -14614,7 +14640,7 @@ msgstr "Puteศ›i adฤƒuga pรขnฤƒ la {STARTER_PACK_MAX_SIZE, plural, one {} few {{S msgid "You may only add up to 3 feeds" msgstr "Puteศ›i adฤƒuga pรขnฤƒ la 3 fluxuri" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Trebuie sฤƒ fiศ›i proprietarul conversaศ›iei pentru a elimina un membru." @@ -14622,7 +14648,7 @@ msgstr "Trebuie sฤƒ fiศ›i proprietarul conversaศ›iei pentru a elimina un membru. msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Trebuie sฤƒ aveศ›i cel puศ›in 13 ani pentru a utiliza Bluesky. Citiศ›i <0>Termenii de Serviciu pentru mai multe informaศ›ii." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Trebuie sฤƒ urmฤƒriศ›i cel puศ›in alte ศ™apte persoane pentru a genera un pachet de pornire." @@ -14639,7 +14665,7 @@ msgstr "Trebuie sฤƒ permiteศ›i accesul la biblioteca dvs. media." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Trebuie sฤƒ vฤƒ verificaศ›i adresa de e-mail รฎnainte de a putea activa A2F." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Sunteศ›i proprietarul acestei conversaศ›ii" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Probabil doriศ›i sฤƒ reporniศ›i aplicaศ›ia acum." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Aศ›i reacศ›ionat cu {0}" @@ -14667,15 +14693,15 @@ msgstr "Aศ›i reacศ›ionat cu {0} la {target}" msgid "You recently changed your birthdate" msgstr "V-aศ›i schimbat recent data naศ™terii" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Aศ›i rฤƒspuns" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Aศ›i rฤƒspuns cฤƒtre {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "V-aศ›i rฤƒspuns" @@ -14715,11 +14741,11 @@ msgstr "Nu vฤƒ veศ›i putea alฤƒtura decรขt dacฤƒ sunteศ›i invitat." msgid "You: {message}" msgstr "Dvs.: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Veศ›i urmฤƒri utilizatorii ศ™i fluxurile sugerate dupฤƒ ce aศ›i terminat de creat contul!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Veศ›i urmฤƒri utilizatorii sugeraศ›i dupฤƒ ce veศ›i finaliza crearea contului!" @@ -14791,7 +14817,7 @@ msgstr "Aศ›i ajuns la sfรขrศ™itul conศ›inutului activ." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Aศ›i ajuns la sfรขrศ™itul fluxului dvs.! Gฤƒsiศ›i mai multe conturi de urmฤƒrit." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Aศ›i atins numฤƒrul maxim de schiศ›e" @@ -14799,7 +14825,7 @@ msgstr "Aศ›i atins numฤƒrul maxim de schiศ›e" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Aศ›i atins numฤƒrul maxim de solicitฤƒri permise. Vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou mai tรขrziu." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Aศ›i atins numฤƒrul maxim de {MAX_FILTERS, plural, one {un filtru} few {# filtre} other {# de filtre}}. Adฤƒugaศ›i mai multe valori unui filtru existent รฎn loc sฤƒ creaศ›i unele noi." @@ -14815,11 +14841,11 @@ msgstr "Aศ›i atins limita zilnicฤƒ pentru รฎncฤƒrcฤƒri de videoclipuri (prea mul msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Aศ›i atins limita zilnicฤƒ pentru รฎncฤƒrcฤƒri de videoclipuri (prea multe videoclipuri)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Aศ›i rฤƒmas fฤƒrฤƒ videoclipuri de vizionat. Poate e un moment bun pentru a face o pauzฤƒ?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Contul dvs." @@ -14835,11 +14861,11 @@ msgstr "Contul dumneavoastrฤƒ a fost suspendat" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Contul dvs. nu este รฎncฤƒ suficient de vechi pentru a รฎncฤƒrca videoclipuri. Vฤƒ rugฤƒm sฤƒ รฎncercaศ›i din nou mai tรขrziu." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Contul dvs. este prea nou" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Contul dvs. trebuie sฤƒ aibฤƒ cel puศ›in 7 zile pentru a crea o nouฤƒ conversaศ›ie de grup." @@ -14896,7 +14922,7 @@ msgstr "E-mailul dvs." #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "E-mailul dvs. pare a fi nevalid." @@ -14930,8 +14956,8 @@ msgstr "Furnizorul dvs. de servicii de gฤƒzduire nu poate fi identificat pe baza msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Furnizorul dvs. de gฤƒzduire este detectat automat din numele de utilizator pe care รฎl introduceศ›i." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Interesele dvs. au fost actualizate!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Interesele dvs. ne ajutฤƒ sฤƒ gฤƒsim ceea ce vฤƒ place!" @@ -14967,11 +14993,11 @@ msgstr "Parola dvs. a fost modificatฤƒ cu succes! Vฤƒ rugฤƒm sฤƒ folosiศ›i noua msgid "Your password must be at least 8 characters long." msgstr "Parola dvs. trebuie sฤƒ aibฤƒ cel puศ›in 8 caractere." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Postarea dvs. a fost trimisฤƒ" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Postฤƒrile dvs. au fost trimise" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Limba dvs. preferatฤƒ" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Imaginea dvs. de profil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Imaginea dvs. de profil รฎnconjuratฤƒ de cercuri concentrice cu imagini de profil ale altor utilizatori" @@ -14992,7 +15018,7 @@ msgstr "Imaginea dvs. de profil รฎnconjuratฤƒ de cercuri concentrice cu imagini msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Profilul, postฤƒrile, fluxurile ศ™i listele dvs. nu vor mai fi vizibile pentru alศ›i utilizatori Bluesky. Vฤƒ puteศ›i reactiva contul รฎn orice moment, conectรขndu-vฤƒ." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Rฤƒspunsul dvs. a fost trimis" @@ -15005,7 +15031,7 @@ msgstr "Raportul dvs. va fi trimis la <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Interesele dvs. selectate ne ajutฤƒ sฤƒ vฤƒ oferim conศ›inut care vฤƒ intereseazฤƒ." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Firul dvs. conศ›ine postฤƒri goale care vor fi omise. Postฤƒrile rฤƒmase vor fi publicate ca un fir." diff --git a/src/locale/locales/ru/messages.po b/src/locale/locales/ru/messages.po index 521c22a6df..d699cc955d 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Russian\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "ะšะฐั‚ะตะณะพั€ะธั \"{interestsDisplayName}\" (ะฐะบั‚ะธะฒะฝะฐ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(ัะพะดะตั€ะถะธั‚ ะฒัั‚ั€ะพะตะฝะฝั‹ะน ะบะพะฝั‚ะตะฝั‚)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# ั‡ะฐั} few {# ั‡ะฐัะฐ} other {# ั‡ะฐัะพะฒ}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr " {0, plural, one {# ะปะฐะนะบ} few {# ะปะฐะนะบะฐ} other {# ะปะฐะนะบะพะฒ}} #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (ะะบะบะฐัƒะฝั‚)" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} ะฟะพะดะฟะธัะพะบ" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} ะธะท 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ะพั‚ั€ะตะฐะณะธั€ะพะฒะฐะป {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} ะฒะตั€ะธั„ะธั†ะธั€ะพะฒะฐะป ะฒะฐั" msgid "{following} following" msgstr "{following} ะฟะพะดะฟะธัะพะบ" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} ะฝะต ะผะพะถะตั‚ ะฟะพะปัƒั‡ะฐั‚ัŒ ัะพะพะฑั‰ะตะฝะธั" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# ะฝะตะฟั€ะพั‡ะธั‚ะฐะฝะฝั‹ะน ัะปะตะผะต msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} ะฟั€ะธัะพะตะดะธะฝะธะปัั ะบ Bluesky {timeAgoString} ะฝะฐะทะฐะด" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} ะฟั€ะธัะพะตะดะธะฝะธะปัั ะบ Bluesky, ะธัะฟะพะปัŒะทัƒั ัั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€ {timeAgoString} ะฝะฐะทะฐะด" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}ั‡. ะฝะฐะทะฐะด" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} โ€” ะดะพะฒะตั€ะตะฝะฝั‹ะน ะฒะตั€ะธั„ะธะบะฐั‚ะพั€" @@ -842,13 +795,13 @@ msgstr "ะ’ะตั€ะธั„ะธะบะฐั†ะธะธ {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {ะฟะพะดะฟะธัะบะฐ} few {ะฟะพะดะฟะธัะบะธ} oth #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {ั†ะธั‚ะธั€ะพะฒะฐะฝะธะต} few {ั†ะธั‚ะธั€ะพะฒะฐะฝะธั} other {ั†ะธั‚ะธั€ะพะฒะฐะฝะธะน}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {ั€ะตะฟะพัั‚} few {ั€ะตะฟะพัั‚ะฐ} other {ั€ะตะฟะพัั‚ะพะฒ}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {ัะพั…ั€ะฐะฝะตะฝะธะต} few {ัะพั…ั€ะฐะฝะตะฝ #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>ะ’ะพะนะดะธั‚ะต ะฒ ัะฒะพะน ะฐะบะบะฐัƒะฝั‚<1> ะธะปะธ <2>ัะพะทะดะฐะนั‚ะต ะฐะบะบะฐัƒะฝั‚<3>, <4> ั‡ั‚ะพะฑั‹ ะธัะบะฐั‚ัŒ ะฝะพะฒะพัั‚ะธ, ัะฟะพั€ั‚, ะฟะพะปะธั‚ะธะบัƒ ะธ ะฒัั‘ ะพัั‚ะฐะปัŒะฝะพะต, ั‡ั‚ะพ ะฟั€ะพะธัั…ะพะดะธั‚ ะฝะฐ Bluesky." @@ -971,7 +924,7 @@ msgstr "30 ะดะฝะตะน" msgid "7 days" msgstr "7 ะดะฝะตะน" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "ะŸะพะดะฑะพั€ะบะฐ ะฟะพะฟัƒะปัั€ะฝั‹ั… ะปะตะฝั‚, ะบะพั‚ะพั€ั‹ะต ะฒั‹ ะผะพะถะตั‚ะต ะฝะฐะนั‚ะธ ะฝะฐ Bluesky, ะฒะบะปัŽั‡ะฐั News, Booksky, Game Dev, Blacksky ะธ Foundation Pens" @@ -988,9 +941,11 @@ msgstr "ะŸั€ะพะธะทะพัˆะปะฐ ัะตั‚ะตะฒะฐั ะพัˆะธะฑะบะฐ. ะŸะพะถะฐะปัƒะนัั‚ะฐ, ะฟ #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "ะะพะฒะฐั ั„ะพั€ะผะฐ ะฒะตั€ะธั„ะธะบะฐั†ะธะธ" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "ะ”ะพัั‚ัƒะฟะฝะพัั‚ัŒ" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "ะะฐัั‚ั€ะพะนะบะธ ะ”ะพัั‚ัƒะฟะฝะพัั‚ะธ" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "ะฃั‡ั‘ั‚ะฝะฐั ะทะฐะฟะธััŒ ะธะณะฝะพั€ะธั€ัƒะตั‚ัั ัะฟะธัะบะพะผ" msgid "Account options" msgstr "ะŸะฐั€ะฐะผะตั‚ั€ั‹ ัƒั‡ั‘ั‚ะฝะพะน ะทะฐะฟะธัะธ" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "ะฃั‡ั‘ั‚ะฝะฐั ะทะฐะฟะธััŒ ัƒะดะฐะปะตะฝะฐ ะธะท ะฑั‹ัั‚ั€ะพะณะพ ะดะพัั‚ัƒะฟะฐ" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "ะฃั‡ั‘ั‚ะฝั‹ะต ะทะฐะฟะธัะธ ั ั„ะธะณัƒั€ะฝะพะน ัะธะฝะตะน ะณะฐะปะพั‡ะบะพะน <0><1/> ะผะพะณัƒั‚ ะฒะตั€ะธั„ะธั†ะธั€ะพะฒะฐั‚ัŒ ะดั€ัƒะณะธะต ัƒั‡ั‘ั‚ะฝั‹ะต ะทะฐะฟะธัะธ. ะญั‚ะธ ะดะพะฒะตั€ะตะฝะฝั‹ะต ะฒะตั€ะธั„ะธะบะฐั‚ะพั€ั‹ ะฒั‹ะฑั€ะฐะฝั‹ Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "ะะบั‚ะธะฒะฝะพัั‚ัŒ ะพั‚ ะดั€ัƒะณะธั…" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "ะ”ะพะฑะฐะฒัŒั‚ะต ะฐะปัŒั‚ะตั€ะฝะฐั‚ะธะฒะฝั‹ะน ั‚ะตะบัั‚ (ะฝะตะพะฑัะทะฐ msgid "Add another account" msgstr "ะ”ะพะฑะฐะฒะธั‚ัŒ ะดั€ัƒะณัƒัŽ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "ะ”ะพะฑะฐะฒะธั‚ัŒ ะดั€ัƒะณะพะน ะฟะพัั‚" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "ะ”ะพะฑะฐะฒะธั‚ัŒ ะตั‰ะต ะพะดะธะฝ ะฟะพัั‚ ะฒ ะฒะตั‚ะบัƒ" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "ะ”ะพะฑะฐะฒะธั‚ัŒ ัะผะพะดะทะธ-ั€ะตะฐะบั†ะธัŽ" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "ะ”ะพะฑะฐะฒัŒั‚ะต ัั‚ัƒ ะปะตะฝั‚ัƒ ะฒ ัะฒะพะธ ะปะตะฝั‚ั‹" msgid "Add to lists" msgstr "ะ”ะพะฑะฐะฒะธั‚ัŒ ะฒ ัะฟะธัะบะธ" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "ะ”ะพะฑะฐะฒะธั‚ัŒ ะฒ ัะพั…ั€ะฐะฝั‘ะฝะฝั‹ะต ะฟะพัั‚ั‹" @@ -1400,7 +1360,7 @@ msgstr "ะ”ะปั ะฒะทั€ะพัะปั‹ั…" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "ะ’ัะต" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "ะ’ัะต ัะทั‹ะบะธ" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "ะ’ัะต ัะพั…ั€ะฐะฝั‘ะฝะฝั‹ะต ะปะตะฝั‚ั‹ ะฒ ะพะดะฝะพะผ ะผะตัั‚ะต." @@ -1560,7 +1511,7 @@ msgstr "ะŸะพะทะฒะพะปัะตั‚ ะฟะพะปัƒั‡ะธั‚ัŒ ะดะพัั‚ัƒะฟ ะบ ะปะธั‡ะฝั‹ะผ ัะพะพ msgid "Already have a code?" msgstr "ะฃะถะต ะตัั‚ัŒ ะบะพะด?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "ะฃะถะต ะตัั‚ัŒ ัƒั‡ั‘ั‚ะฝะฐั ะทะฐะฟะธััŒ?" @@ -1614,7 +1565,7 @@ msgstr "ะ‘ั‹ะปะพ ะพั‚ะฟั€ะฐะฒะปะตะฝะพ ะฟะธััŒะผะพ ะฝะฐ ะฐะดั€ะตั {0}. ะžะฝะพ msgid "An error has occurred" msgstr "ะ’ะพะทะฝะธะบะปะฐ ะพัˆะธะฑะบะฐ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "ะ’ะพะทะฝะธะบะปะฐ ะพัˆะธะฑะบะฐ" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "ะŸั€ะธ ะพะฑะฝะพะฒะปะตะฝะธะธ ะปะตะฝั‚ั‹ ะฟั€ะพะธะทะพัˆะปะฐ ะพัˆะธะฑะบะฐ." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "ะŸั€ะธ ัะพะทะดะฐะฝะธะธ ะฒะฐัˆะตะณะพ ัั‚ะฐั€ั‚ะพะฒะพะณะพ ะฝะฐะฑะพั€ะฐ ะฒะพะทะฝะธะบะปะฐ ะพัˆะธะฑะบะฐ. ะฅะพั‚ะธั‚ะต ะฟะพะฟั€ะพะฑะพะฒะฐั‚ัŒ ะตั‰ั‘ ั€ะฐะท?" @@ -1640,11 +1591,11 @@ msgstr "ะŸั€ะธ ัะพะทะดะฐะฝะธะธ ะฒะฐัˆะตะณะพ ัั‚ะฐั€ั‚ะพะฒะพะณะพ ะฝะฐะฑะพั€ะฐ msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "ะŸั€ะธ ะทะฐะณั€ัƒะทะบะต ะฒะธะดะตะพ ะฒะพะทะฝะธะบะปะฐ ะพัˆะธะฑะบะฐ. ะŸะพะถะฐะปัƒะนัั‚ะฐ, ะฟะพะฒั‚ะพั€ะธั‚ะต ะฟะพะฟั‹ั‚ะบัƒ ะฟะพะทะถะต." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "ะŸั€ะธ ะทะฐะณั€ัƒะทะบะต ะฒะธะดะตะพ ะฒะพะทะฝะธะบะปะฐ ะพัˆะธะฑะบะฐ. ะŸะพะถะฐะปัƒะนัั‚ะฐ, ะฟะพะฟั€ะพะฑัƒะนั‚ะต ะตั‰ั‘ ั€ะฐะท." @@ -1684,7 +1635,7 @@ msgstr "ะ’ะพะทะฝะธะบะปะฐ ะพัˆะธะฑะบะฐ. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "ะŸั€ะพะฑะปะตะผะฐ ะฝะต ะฒะบะปัŽั‡ะตะฝะฐ ะฒ ัั‚ะธ ะฒะฐั€ะธะฐะฝั‚ั‹" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "ะŸั€ะธ ะฟะพะฟั‹ั‚ะบะต ะพั‚ะบั€ั‹ั‚ัŒ ั‡ะฐั‚ ะฒะพะทะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "ะ›ัŽะฑะพะน" @@ -1802,7 +1749,7 @@ msgstr "ะ›ัŽะฑะพะน, ะบั‚ะพ ะฟะพะดะฟะธัะฐะฝ ะฝะฐ ะผะตะฝั" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "ะ˜ะผะตะฝะฐ ะฟะฐั€ะพะปะตะน ะฟั€ะธะปะพะถะตะฝะธะน ะดะพะปะถะฝั‹ ัะพัั‚ะพั msgid "App passwords" msgstr "ะŸะฐั€ะพะปะธ ะฟั€ะธะปะพะถะตะฝะธะน" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "ะŸะฐั€ะพะปะธ ะฟั€ะธะปะพะถะตะฝะธะน" @@ -1891,8 +1838,8 @@ msgstr "ะžะฑะถะฐะปะพะฒะฐั‚ัŒ ัั‚ะพ ั€ะตัˆะตะฝะธะต" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "ะŸั€ะธะผะตะฝะธั‚ัŒ ะทะฐะฟั€ะพั ะฝะฐ ัะปะธัะฝะธะต" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "ะั€ั…ะธะฒะฝั‹ะน ะฟะพัั‚ ะพั‚ {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "ะั€ั…ะธะฒะฝั‹ะน ะฟะพัั‚" @@ -1980,7 +1927,7 @@ msgstr "ะ’ั‹ ัƒะฒะตั€ะตะฝั‹, ั‡ั‚ะพ ั…ะพั‚ะธั‚ะต ัƒะดะฐะปะธั‚ัŒ ัั‚ะพ ะธะท ัะฒ msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "ะ’ั‹ ะดะตะนัั‚ะฒะธั‚ะตะปัŒะฝะพ ั…ะพั‚ะธั‚ะต ัƒะดะฐะปะธั‚ัŒ ัั‚ะพั‚ ะฟะพัั‚?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "ะะฒั€ะพั€ะฐ" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "ะะฒั‚ะพะฒะพัะฟั€ะพะธะทะฒะตะดะตะฝะธะต ะฒะธะดะตะพ ะธ GIF-ั„ะฐะนะปะพะฒ" msgid "Available" msgstr "ะ”ะพัั‚ัƒะฟะตะฝ" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "ะงั‚ะพะฑั‹ ัะพะทะดะฐั‚ัŒ ะฟะพัั‚ ะธะปะธ ะพั‚ะฒะตั‚ะธั‚ัŒ, ะฝะตะพะฑั…ะพะดะธะผะพ ัะฝะฐั‡ะฐะปะฐ ะฟะพะดั‚ะฒะตั€ะดะธั‚ัŒ ัะฒะพัŽ ัะปะตะบั‚ั€ะพะฝะฝัƒัŽ ะฟะพั‡ั‚ัƒ." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "ะงั‚ะพะฑั‹ ัะพะทะดะฐั‚ัŒ ัั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€, ะฝะตะพะฑั…ะพะดะธะผะพ ัะฝะฐั‡ะฐะปะฐ ะฟะพะดั‚ะฒะตั€ะดะธั‚ัŒ ัะฒะพัŽ ัะปะตะบั‚ั€ะพะฝะฝัƒัŽ ะฟะพั‡ั‚ัƒ." @@ -2135,10 +2091,10 @@ msgstr "ะŸะตั€ะตะด ั‚ะตะผ, ะบะฐะบ ะฒั‹ ะฑัƒะดะตั‚ะต ะฟะพะปัƒั‡ะฐั‚ัŒ ัƒะฒะตะดะพ #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "ะะฐั‡ะฝะธั‚ะต ะฟั€ะพั†ะตัั ะฟั€ะพะฒะตั€ะบะธ ะฒะพะทั€ะฐัั‚ะฐ, ะทะฐะฟ msgid "Beta Feature" msgstr "ะ‘ะตั‚ะฐ ั„ัƒะฝะบั†ะธั" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "ะ”ะฐั‚ะฐ ั€ะพะถะดะตะฝะธั" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "ะ—ะฐะฑะปะพะบะธั€ะพะฒะฐะฝะพ" msgid "Blocked accounts" msgstr "ะ—ะฐะฑะปะพะบะธั€ะพะฒะฐะฝะฝั‹ะต ัƒั‡ั‘ั‚ะฝั‹ะต ะทะฐะฟะธัะธ" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "ะ—ะฐะฑะปะพะบะธั€ะพะฒะฐะฝะฝั‹ะต ัƒั‡ั‘ั‚ะฝั‹ะต ะทะฐะฟะธัะธ" @@ -2282,7 +2244,7 @@ msgstr "ะ—ะฐะฑะปะพะบะธั€ะพะฒะฐะฝะฝั‹ะต ัƒั‡ั‘ั‚ะฝั‹ะต ะทะฐะฟะธัะธ ะฝะต ะผะพะณัƒ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "ะ—ะฐะฑะปะพะบะธั€ะพะฒะฐะฝะฝั‹ะต ัƒั‡ั‘ั‚ะฝั‹ะต ะทะฐะฟะธัะธ ะฝะต ะผะพะณัƒั‚ ะฒะฐะผ ะพั‚ะฒะตั‡ะฐั‚ัŒ, ัƒะฟะพะผะธะฝะฐั‚ัŒ ะฒะฐั ะฒ ัะฒะพะธั… ะฟะพัั‚ะฐั…, ะธ ะฒะทะฐะธะผะพะดะตะนัั‚ะฒะพะฒะฐั‚ัŒ ั ะฒะฐะผะธ ะบะฐะบะธะผ-ะปะธะฑะพ ะดั€ัƒะณะธะผ ะพะฑั€ะฐะทะพะผ. ะ’ั‹ ะฝะต ะฑัƒะดะตั‚ะต ะฒะธะดะตั‚ัŒ ะธั… ะฟะพัั‚ั‹ ะธ ะพะฝะธ ะฝะต ะฑัƒะดัƒั‚ ะฒะธะดะตั‚ัŒ ะฒะฐัˆะธ." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ะ‘ะปะพะบะธั€ะพะฒะบะฐ ะฝะต ะผะตัˆะฐะตั‚ ัั‚ะพะผัƒ ะผะฐั€ะบะธั€ะพะฒั‰ะธะบัƒ ะดะพะฑะฐะฒะปัั‚ัŒ ะผะตั‚ะบัƒ ะฝะฐ ะฒะฐัˆัƒ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ะฝะต ะผะพะถะตั‚ ะฟะพะดั‚ะฒะตั€ะดะธั‚ัŒ ะฟะพะดะปะธะฝะฝะพัั‚ัŒ ะทะฐัะฒะปะตะฝะฝะพะน ะดะฐั‚ั‹." @@ -2330,7 +2293,7 @@ msgstr "Bluesky - ัั‚ะพ ะพั‚ะบั€ั‹ั‚ะฐั ัะตั‚ัŒ, ะณะดะต ะฒั‹ ะผะพะถะตั‚ะต ะฒ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky - ัั‚ะพ ะพั‚ะบั€ั‹ั‚ะฐั ัะตั‚ัŒ, ะณะดะต ะฒั‹ ะผะพะถะตั‚ะต ัะฐะผะธ ะฒั‹ะฑะธั€ะฐั‚ัŒ ะฟั€ะพะฒะฐะนะดะตั€ะฐ. ะ•ัะปะธ ะฒั‹ ะฒะฟะตั€ะฒั‹ะต ะทะดะตััŒ, ะผั‹ ั€ะตะบะพะผะตะฝะดัƒะตะผ ะฒั‹ะฑั€ะฐั‚ัŒ Bluesky Social ะฟะพ ัƒะผะพะปั‡ะฐะฝะธัŽ." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky ะปัƒั‡ัˆะต ั ะดั€ัƒะทัŒัะผะธ!" @@ -2358,7 +2321,7 @@ msgstr "ะฃัะปะพะฒะธั ะฟั€ะตะดะพัั‚ะฐะฒะปะตะฝะธั ัƒัะปัƒะณ Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky ะฒั‹ะฑะตั€ะตั‚ ะฝะฐะฑะพั€ ั€ะตะบะพะผะตะฝะดัƒะตะผั‹ั… ัƒั‡ั‘ั‚ะฝั‹ั… ะทะฐะฟะธัะตะน ะธะท ะฒะฐัˆะตะณะพ ะบั€ัƒะณะฐ ะพะฑั‰ะตะฝะธั." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ะดั€ัƒะณะธะต ะปะตะฝั‚ั‹ ะฝะฐ ัั‚ั€ะฐะฝะธั†ะต Explore" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ะดั€ัƒะณะธะต ะฟั€ะตะดะปะพะถะตะฝะธั" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "ะŸั€ะพัะผะพั‚ั€ะธั‚ะต ะดั€ัƒะณะธะต ะฟั€ะตะดะปะพะถะตะฝะธั ะฝะฐ ัั‚ั€ะฐะฝะธั†ะต Explore" @@ -2425,24 +2388,25 @@ msgstr "ะŸั€ะพัะผะพั‚ั€ะธั‚ะต ะดั€ัƒะณะธะต ะฟั€ะตะดะปะพะถะตะฝะธั ะฝะฐ ัั‚ั€ะฐ msgid "Browse other feeds" msgstr "ะŸั€ะพัะผะพั‚ั€ ะดั€ัƒะณะธั… ะปะตะฝั‚" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ะฟะพัั‚ั‹ ะพ {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ะฟะพัั‚ั‹ ั ั‚ะตะณะพะผ {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ัั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€ {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ั‚ะตะผัƒ {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ั‚ะตะผัƒ {displayName}" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "ะžั‚ {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "ะžั‚ <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "ะกะพะทะดะฐะฒะฐั ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ, ะฒั‹ ัะพะณะปะฐัˆะฐะตั‚ะต msgid "By creating an account you agree to the <0>Terms of Service." msgstr "ะกะพะทะดะฐะฒะฐั ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ, ะฒั‹ ัะพะณะปะฐัˆะฐะตั‚ะตััŒ ั <0>ะฃัะปะพะฒะธัะผะธ ะฟั€ะตะดะพัั‚ะฐะฒะปะตะฝะธั ัƒัะปัƒะณ." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "ะกะดะตะปะฐะฝ ะฒะฐะผะธ" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "ะšะฐะผะตั€ะฐ" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "ะžั‚ะผะตะฝะธั‚ัŒ ั€ะตะฐะบั‚ะธะฒะฐั†ะธัŽ ะธ ะฒั‹ะนั‚ะธ ะธะท ัะธัั‚ะตะผ msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "ะžั‚ะผะตะฝะธั‚ัŒ ะฟะพะธัะบ" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "ะงะฐั‚ ะฑะตะท ะทะฒัƒะบะฐ" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "ะŸะพั‡ั‚ะพะฒั‹ะน ัั‰ะธะบ ะทะฐะฟั€ะพัะพะฒ ะฝะฐ ั‡ะฐั‚" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "ะ—ะฐะฟั€ะพัั‹ ะฝะฐ ั‡ะฐั‚" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "ะะฐัั‚ั€ะพะนะบะธ ั‡ะฐั‚ะฐ" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "ะงะฐั‚ ัะพ ะทะฒัƒะบะพะผ" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "ะงะฐั‚ั‹" @@ -2837,7 +2802,7 @@ msgstr "ะ’ั‹ะฑะตั€ะธั‚ะต ะผะตั‚ะพะด ะฟะพะดั‚ะฒะตั€ะถะดะตะฝะธั ะดะพะผะตะฝะฐ" msgid "Choose Feeds" msgstr "ะ’ั‹ะฑะตั€ะธั‚ะต ะปะตะฝั‚ั‹" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "ะ’ั‹ะฑะตั€ะธั‚ะต ะทะฐ ะผะตะฝั" @@ -2854,7 +2819,7 @@ msgstr "ะ’ั‹ะฑะตั€ะธั‚ะต ะปัŽะดะตะน" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "ะ’ั‹ะฑะตั€ะธั‚ะต ัั‚ะพั‚ ั†ะฒะตั‚ ะฒ ะบะฐั‡ะตัั‚ะฒะต ัะฒะพะตะณะพ ะฐะฒะฐั‚ะฐั€ะฐ" @@ -2879,7 +2844,7 @@ msgstr "ะ’ั‹ะฑะตั€ะธั‚ะต ัะฒะพัŽ ัะพะฑัั‚ะฒะตะฝะฝัƒัŽ ะฒั€ะตะผะตะฝะฝัƒัŽ ัˆะบ msgid "Choose your password" msgstr "ะฃะบะฐะถะธั‚ะต ะฟะฐั€ะพะปัŒ" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "ะ’ั‹ะฑะตั€ะธั‚ะต ัะฒะพะน ะฟัะตะฒะดะพะฝะธะผ" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "ะะฐะถะผะธั‚ะต, ั‡ั‚ะพะฑั‹ ะพั‚ะบั€ั‹ั‚ัŒ ะผะตะฝัŽ ั‚ะตะณะพะฒ ะดะปั {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "ะะฐะถะผะธั‚ะต, ั‡ั‚ะพะฑั‹ ะฟะพะฒั‚ะพั€ะธั‚ัŒ ะฝะตัƒะดะฐั‡ะฝะพะต ัะพะพะฑั‰ะตะฝะธะต" @@ -3003,7 +2968,7 @@ msgstr "ะะฐะถะผะธั‚ะต, ั‡ั‚ะพะฑั‹ ะฟะพะฒั‚ะพั€ะธั‚ัŒ ะฝะตัƒะดะฐั‡ะฝะพะต ัะพะพ #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "ะะฐะถะผะธั‚ะต, ั‡ั‚ะพะฑั‹ ะฟะพะฒั‚ะพั€ะธั‚ัŒ ะฝะตัƒะดะฐั‡ะฝะพะต ัะพะพ msgid "Close" msgstr "ะ—ะฐะบั€ั‹ั‚ัŒ" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "ะ—ะฐะบั€ั‹ั‚ัŒ ะดะธะฐะปะพะณะพะฒะพะต ะพะบะฝะพ" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "ะ—ะฐะบั€ั‹ั‚ัŒ ะผะตะฝัŽ" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "ะ—ะฐะบั€ั‹ั‚ัŒ ะดะธะฐะปะพะณะพะฒะพะต ะพะบะฝะพ" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "ะ—ะฐะบั€ั‹ั‚ัŒ ะพะบะฝะพ ะฟั€ะธะฒะตั‚ัั‚ะฒะธั" @@ -3098,7 +3063,7 @@ msgstr "ะ—ะฐะบั€ั‹ั‚ัŒ ะพะบะฝะพ ะฟั€ะธะฒะตั‚ัั‚ะฒะธั" msgid "Closes password update alert" msgstr "ะ—ะฐะบั€ั‹ะฒะฐะตั‚ ัƒะฒะตะดะพะผะปะตะฝะธะต ะพะฑ ะธะทะผะตะฝะตะฝะธะธ ะฟะฐั€ะพะปั" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "ะ—ะฐะบั€ั‹ะฒะฐะตั‚ ั€ะตะดะฐะบั‚ะพั€ ะธ ัƒะดะฐะปัะตั‚ ั‡ะตั€ะฝะพะฒะธะบ" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "ะฆะฒะตั‚ะพะฒะพะน ั€ะตะถะธะผ" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "ะšะพะผะธะบัั‹" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "ะŸั€ะฐะฒะธะปะฐ ัะพะพะฑั‰ะตัั‚ะฒะฐ" @@ -3141,7 +3106,7 @@ msgstr "ะŸั€ะฐะฒะธะปะฐ ัะพะพะฑั‰ะตัั‚ะฒะฐ" msgid "Complete onboarding and start using your account" msgstr "ะ—ะฐะฒะตั€ัˆะธั‚ะต ะพะทะฝะฐะบะพะผะปะตะฝะธะต ะธ ะฝะฐั‡ะฝะธั‚ะต ะฟะพะปัŒะทะพะฒะฐั‚ัŒัั ะฒะฐัˆะตะน ัƒั‡ั‘ั‚ะฝะพะน ะทะฐะฟะธััŒัŽ" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "ะ’ั‹ะฟะพะปะฝะธั‚ะต ะทะฐะดะฐะฝะธะต" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "ะกะพัั‚ะฐะฒะธั‚ัŒ ะฝะพะฒั‹ะน ะฟะพัั‚" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "ะŸะธัˆะธั‚ะต ะฟะพัั‚ั‹ ะดะปะธะฝะพะน ะดะพ {0, plural, one {# ัะธะผะฒะพะปะฐ} other {# ัะธะผะฒะพะปะพะฒ}}" @@ -3160,11 +3125,11 @@ msgstr "ะŸะธัˆะธั‚ะต ะฟะพัั‚ั‹ ะดะปะธะฝะพะน ะดะพ {0, plural, one {# ัะธะผะฒะพ msgid "Compose reply" msgstr "ะกะพัั‚ะฐะฒะธั‚ัŒ ะพั‚ะฒะตั‚" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "ะกะถะฐั‚ะธะต ะฒะธะดะตะพ..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "ะกะปัƒะถะฑะฐ ะฟะพะดะดะตั€ะถะบะธ" @@ -3253,7 +3218,7 @@ msgstr "ะกะพะดะตั€ะถะฐะฝะธะต ะธ ะผะตะดะธะฐ" msgid "Content and media" msgstr "ะกะพะดะตั€ะถะธะผะพะต ะธ ะผะตะดะธะฐ" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "ะกะพะดะตั€ะถะธะผะพะต ะธ ะผะตะดะธะฐ" @@ -3265,10 +3230,6 @@ msgstr "ะ—ะฐะฑะปะพะบะธั€ะพะฒะฐะฝะฝะพะต ัะพะดะตั€ะถะธะผะพะต" msgid "Content filters" msgstr "ะคะธะปัŒั‚ั€ั‹ ัะพะดะตั€ะถะธะผะพะณะพ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "ะกะพะดะตั€ะถะธะผะพะต ัะตั‚ะธ, ะบะพั‚ะพั€ะพะต, ะฟะพ ะฝะฐัˆะตะผัƒ ะผะฝะตะฝะธัŽ, ะผะพะถะตั‚ ะฒะฐะผ ะฟะพะฝั€ะฐะฒะธั‚ัŒัั." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "ะšะพะฝั‚ะตะฝั‚, ะฟั€ะพะฟะฐะณะฐะฝะดะธั€ัƒัŽั‰ะธะน ะธะปะธ ะธะทะพะฑั€ะฐะถะฐัŽั‰ะธะน ั‡ะปะตะฝะพะฒั€ะตะดะธั‚ะตะปัŒัั‚ะฒะพ" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "ะŸั€ะตะดัƒะฟั€ะตะถะดะตะฝะธะต ะพ ัะพะดะตั€ะถะธะผะพะผ" msgid "Content warnings" msgstr "ะŸั€ะตะดัƒะฟั€ะตะถะดะตะฝะธะต ะพ ัะพะดะตั€ะถะธะผะพะผ" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "ะคะพะฝ ะบะพะฝั‚ะตะบัั‚ะฝะพะณะพ ะผะตะฝัŽ, ะฝะฐะถะผะธั‚ะต, ั‡ั‚ะพะฑั‹ ะทะฐะบั€ั‹ั‚ัŒ ะผะตะฝัŽ." @@ -3302,7 +3263,7 @@ msgstr "ะคะพะฝ ะบะพะฝั‚ะตะบัั‚ะฝะพะณะพ ะผะตะฝัŽ, ะฝะฐะถะผะธั‚ะต, ั‡ั‚ะพะฑั‹ ะท #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "ะŸั€ะพะดะพะปะถะธั‚ัŒ ะฒะตั‚ะบัƒ..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "ะ’ะตั€ัะธั ัะฑะพั€ะบะธ ัะบะพะฟะธั€ะพะฒะฐะฝะฐ ะฒ ะฑัƒั„ะตั€ ะพะฑะผะตะฝะฐ" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "ะšะพะฟะธั€ะพะฒะฐั‚ัŒ ะฟะฐั€ะพะปัŒ ะฟั€ะธะปะพะถะตะฝะธั" msgid "Copy at:// URI" msgstr "ะšะพะฟะธั€ะพะฒะฐั‚ัŒ at:// URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "ะšะพะฟะธั€ะพะฒะฐั‚ัŒ DID ะฐะฒั‚ะพั€ะฐ" @@ -3449,10 +3410,10 @@ msgstr "ะšะพะฟะธั€ะพะฒะฐั‚ัŒ ััั‹ะปะบัƒ" msgid "Copy link to list" msgstr "ะšะพะฟะธั€ะพะฒะฐั‚ัŒ ััั‹ะปะบัƒ ะฝะฐ ัะฟะธัะพะบ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "ะšะพะฟะธั€ะพะฒะฐั‚ัŒ ััั‹ะปะบัƒ ะฝะฐ ะฟะพัั‚" @@ -3470,8 +3431,8 @@ msgstr "ะšะพะฟะธั€ะพะฒะฐั‚ัŒ ััั‹ะปะบัƒ ะฝะฐ ัั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€" msgid "Copy message text" msgstr "ะšะพะฟะธั€ะพะฒะฐั‚ัŒ ั‚ะตะบัั‚ ัะพะพะฑั‰ะตะฝะธั" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "ะšะพะฟะธั€ะพะฒะฐั‚ัŒ at:// URI ะฟะพัั‚ะฐ" @@ -3490,7 +3451,7 @@ msgstr "ะšะพะฟะธั€ะพะฒะฐั‚ัŒ ะทะฝะฐั‡ะตะฝะธะต TXT-ะทะฐะฟะธัะธ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "ะŸะพะปะธั‚ะธะบะฐ ะทะฐั‰ะธั‚ั‹ ะฐะฒั‚ะพั€ัะบะพะณะพ ะฟั€ะฐะฒะฐ" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "ะะต ัƒะดะฐะปะพััŒ ะฒั‹ะนั‚ะธ ะธะท ั‡ะฐั‚ะฐ" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "ะะต ัƒะดะฐะปะพััŒ ะทะฐะณั€ัƒะทะธั‚ัŒ ะปะตะฝั‚ัƒ" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "ะะต ัƒะดะฐะปะพััŒ ะทะฐะณะปัƒัˆะธั‚ัŒ ั‡ะฐั‚" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "ะกะพะทะดะฐั‚ัŒ" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "ะกะพะทะดะฐั‚ัŒ QR-ะบะพะด ะดะปั ัั‚ะฐั€ั‚ะพะฒะพะณะพ ะฝะฐะฑะพั€ะฐ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "ะกะพะทะดะฐั‚ัŒ ัั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "ะกะพะทะดะฐั‚ัŒ ะดะปั ะผะตะฝั ัั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "ะ ะตะณะธัั‚ั€ะฐั†ะธั" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "ะกะพะทะดะฐั‚ัŒ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ" @@ -3666,15 +3627,15 @@ msgstr "ะกะพะทะดะฐั‚ัŒ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ" msgid "Create an account without using this starter pack" msgstr "ะกะพะทะดะฐั‚ัŒ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ ะฑะตะท ัั‚ะพะณะพ ัั‚ะฐั€ั‚ะพะฒะพะณะพ ะฝะฐะฑะพั€ะฐ" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "ะกะพะทะดะฐั‚ัŒ ะฐะฒะฐั‚ะฐั€ ะฒะผะตัั‚ะพ ัั‚ะพะณะพ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "ะกะพะทะดะฐั‚ัŒ ะตั‰ั‘ ะพะดะธะฝ" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "ะšัƒะปัŒั‚ัƒั€ะฐ" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "ะขั‘ะผะฝะฐั" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "ะขั‘ะผะฝะฐั" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "ะขั‘ะผะฝะฐั ั‚ะตะผะฐ" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "ะŸะพ ัƒะผะพะปั‡ะฐะฝะธัŽ" @@ -3894,7 +3855,7 @@ msgstr "ะฃะดะฐะปะธั‚ัŒ ะผะพัŽ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "ะฃะดะฐะปะธั‚ัŒ ะฟะพัั‚" @@ -3988,7 +3949,7 @@ msgstr "ะ”ะธะฐะปะพะณ: ะฝะฐัั‚ั€ะพะนั‚ะต, ะบั‚ะพ ะผะพะถะตั‚ ะฒะทะฐะธะผะพะดะตะนั msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "ะขัƒัะบะปะฐั" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "ะžั‚ะบะปัŽั‡ะธั‚ัŒ 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "ะžั‚ะบะปัŽั‡ะตะฝะพ" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "ะฃะดะฐะปะธั‚ัŒ" msgid "Discard changes?" msgstr "ะฃะดะฐะปะธั‚ัŒ ะธะทะผะตะฝะตะฝะธั?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "ะฃะดะฐะปะธั‚ัŒ ั‡ะตั€ะฝะพะฒะธะบ?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "ะฃะดะฐะปะธั‚ัŒ ะฟะพัั‚?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "ะŸะพะฟั€ะพัะธั‚ัŒ ะฟั€ะธะปะพะถะตะฝะธั ะฝะต ะฟะพะบะฐะทั‹ะฒะฐั‚ัŒ ะผะพัŽ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ ะฝะตะทะฐะปะพะณะธะฝะตะฝะฝั‹ะผ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปัะผ" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "ะŸะพะฟั€ะพัะธั‚ัŒ ะฟั€ะธะปะพะถะตะฝะธั ะฝะต ะฟะพะบะฐะทั‹ะฒะฐั‚ัŒ ะผะพัŽ msgid "Discover new custom feeds" msgstr "ะžั‚ะบั€ะพะนั‚ะต ะดะปั ัะตะฑั ะฝะพะฒั‹ะต ะฟะพะปัŒะทะพะฒะฐั‚ะตะปัŒัะบะธะต ะปะตะฝั‚ั‹" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "ะžั‚ะบั€ะพะนั‚ะต ะดะปั ัะตะฑั ะฝะพะฒั‹ะต ะปะตะฝั‚ั‹" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "ะŸั€ะพะฟัƒัั‚ะธั‚ัŒ" @@ -4103,28 +4064,28 @@ msgstr "ะŸั€ะพะฟัƒัั‚ะธั‚ัŒ" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "ะŸั€ะพะฟัƒัั‚ะธั‚ัŒ ะพัˆะธะฑะบัƒ" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "ะŸั€ะพะฟัƒัั‚ะธั‚ัŒ ั€ัƒะบะพะฒะพะดัั‚ะฒะพ ะฟะพ ะฝะฐั‡ะฐะปัƒ ั€ะฐะฑะพั‚ั‹" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "ะžั‚ะบะปะพะฝะธั‚ัŒ ะธะฝั‚ะตั€ะตัั‹" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "ะŸั€ะพะฟัƒัั‚ะธั‚ัŒ ัั‚ะพั‚ ั€ะฐะทะดะตะป" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "ะžั‚ะพะฑั€ะฐะถะตะฝะธะต ะฑะพะปัŒัˆะธั… ะทะฝะฐั‡ะบะพะฒ ะฐะปัŒั‚ะตั€ะฝะฐั‚ msgid "Display name" msgstr "ะ˜ะผั" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "ะะต ะฒะพะปะฝัƒะนั‚ะตััŒ! ะ’ัะต ััƒั‰ะตัั‚ะฒัƒัŽั‰ะธะต ัะพะพะฑั‰ะต #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "ะะต ะฒะพะปะฝัƒะนั‚ะตััŒ! ะ’ัะต ััƒั‰ะตัั‚ะฒัƒัŽั‰ะธะต ัะพะพะฑั‰ะต msgid "Done" msgstr "ะ“ะพั‚ะพะฒะพ" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "ะ”ะฒะฐะถะดั‹ ะฝะฐะถะผะธั‚ะต ะธะปะธ ะทะฐะถะผะธั‚ะต ัะพะพะฑั‰ะตะฝะธะต, ั‡ั‚ะพะฑั‹ ะดะพะฑะฐะฒะธั‚ัŒ ั€ะตะฐะบั†ะธัŽ" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "ะ”ะฒะฐะถะดั‹ ะฝะฐะถะผะธั‚ะต, ั‡ั‚ะพะฑั‹ ะทะฐะบั€ั‹ั‚ัŒ ะดะธะฐะปะพะณ" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "ะ”ะฒะฐะถะดั‹ ะฝะฐะถะผะธั‚ะต, ั‡ั‚ะพะฑั‹ ะฟะพัั‚ะฐะฒะธั‚ัŒ ะปะฐะนะบ" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "ะ ะตะดะฐะบั‚ะธั€ะพะฒะฐั‚ัŒ ะธะทะพะฑั€ะฐะถะตะฝะธะต" msgid "Edit interaction settings" msgstr "ะ ะตะดะฐะบั‚ะธั€ะพะฒะฐั‚ัŒ ะฝะฐัั‚ั€ะพะนะบะธ ะฒะทะฐะธะผะพะดะตะนัั‚ะฒะธั" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "ะ˜ะทะผะตะฝะธั‚ัŒ ะธะฝั‚ะตั€ะตัั‹" @@ -4397,7 +4359,7 @@ msgstr "ะ˜ะทะผะตะฝะธั‚ัŒ ัั‚ะฐั‚ัƒั ะฟั€ัะผะพะณะพ ัั„ะธั€ะฐ" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "ะ ะตะดะฐะบั‚ะธั€ะพะฒะฐั‚ัŒ ะผะพะธ ะปะตะฝั‚ั‹" @@ -4406,6 +4368,11 @@ msgstr "ะ ะตะดะฐะบั‚ะธั€ะพะฒะฐั‚ัŒ ะผะพะธ ะปะตะฝั‚ั‹" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "ะ ะตะดะฐะบั‚ะธั€ะพะฒะฐั‚ัŒ ะปัŽะดะตะน" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "ะ ะตะดะฐะบั‚ะธั€ะพะฒะฐั‚ัŒ, ะบั‚ะพ ะผะพะถะตั‚ ะพั‚ะฒะตั‡ะฐั‚ัŒ" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "ะ ะตะดะฐะบั‚ะธั€ะพะฒะฐั‚ัŒ ะฒะฐัˆ ัั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€" @@ -4500,8 +4467,8 @@ msgstr "ะ’ัั‚ั€ะพะธั‚ัŒ HTML-ะบะพะด" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "ะ’ัั‚ั€ะพะธั‚ัŒ ะฟะพัั‚" @@ -4509,7 +4476,7 @@ msgstr "ะ’ัั‚ั€ะพะธั‚ัŒ ะฟะพัั‚" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "ะ’ัั‚ั€ะพะนั‚ะต ัั‚ะพั‚ ะฟะพัั‚ ะฒ ะ’ะฐัˆ ัะฐะนั‚. ะŸั€ะพัั‚ะพ ัะบะพะฟะธั€ัƒะนั‚ะต ัั‚ะพั‚ ัะบั€ะธะฟั‚ ะธ ะฒัั‚ะฐะฒัŒั‚ะต ะตะณะพ ะฒ HTML ะบะพะด ะฒะฐัˆะตะณะพ ัะฐะนั‚ะฐ." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "ะ’ัั‚ั€ะพะตะฝะฝั‹ะน ะฒะธะดะตะพะฟะปะตะตั€" @@ -4533,7 +4500,7 @@ msgstr "ะ ะฐะทั€ะตัˆะธั‚ัŒ ัะพะดะตั€ะถะธะผะพะต ะดะปั ะฒะทั€ะพัะปั‹ั…" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "ะ’ะบะปัŽั‡ะธั‚ัŒ ะฒะฝะตัˆะฝะธะต ะผะตะดะธะฐ" msgid "Enable media players for" msgstr "ะ’ะบะปัŽั‡ะธั‚ัŒ ะผะตะดะธะฐะฟั€ะพะธะณั€ั‹ะฒะฐั‚ะตะปะธ ะดะปั" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "ะ’ะบะปัŽั‡ะธั‚ะต ัƒะฒะตะดะพะผะปะตะฝะธั ะดะปั ัƒั‡ั‘ั‚ะฝะพะน ะทะฐะฟะธัะธ, ะฟะพัะตั‚ะธะฒ ะตั‘ ะฟั€ะพั„ะธะปัŒ ะธ ะฝะฐะถะฐะฒ <0>ะทะฝะฐั‡ะพะบ ะบะพะปะพะบะพะปัŒั‡ะธะบะฐ <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "ะ’ะบะปัŽั‡ะธั‚ัŒ push-ัƒะฒะตะดะพะผะปะตะฝะธั" @@ -4581,7 +4549,7 @@ msgstr "ะ’ะบะปัŽั‡ะธั‚ัŒ ะฐะบั‚ัƒะฐะปัŒะฝั‹ะต ะฒะธะดะตะพ ะฒ ะปะตะฝั‚ะต Discover" msgid "Enabled" msgstr "ะ’ะบะปัŽั‡ะตะฝะพ" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "ะšะพะฝะตั† ะปะตะฝั‚ั‹" @@ -4608,7 +4576,7 @@ msgstr "ะ’ะฒะตะดะธั‚ะต ัะปะพะฒะพ ะธะปะธ ั‚ะตะณ" msgid "Enter code" msgstr "ะ’ะฒะตะดะธั‚ะต ะบะพะด" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "ะŸะตั€ะตะนั‚ะธ ะฒ ะฟะพะปะฝะพัะบั€ะฐะฝะฝั‹ะน ั€ะตะถะธะผ" @@ -4650,11 +4618,11 @@ msgstr "ะ’ะฒะตะดะธั‚ะต ะฟัะตะฒะดะพะฝะธะผ ะธ ะฟะฐั€ะพะปัŒ" msgid "Enters full screen" msgstr "ะŸะตั€ะตั…ะพะดะธั‚ ะฒ ะฟะพะปะฝะพัะบั€ะฐะฝะฝั‹ะน ั€ะตะถะธะผ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "ะ ะฐะทะฒะปะตั‡ะตะฝะธั" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "ะžัˆะธะฑะบะฐ" @@ -4684,7 +4652,7 @@ msgstr "ะŸั€ะพะธะทะพัˆะปะฐ ะพัˆะธะฑะบะฐ ะฟั€ะธ ัะพั…ั€ะฐะฝะตะฝะธะธ ั„ะฐะนะปะฐ" msgid "Error receiving captcha response." msgstr "ะžัˆะธะฑะบะฐ ะฟะพะปัƒั‡ะตะฝะธั ะพั‚ะฒะตั‚ะฐ Captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "ะžัˆะธะฑะบะฐ: {error}" @@ -4696,8 +4664,8 @@ msgstr "ะšะฐะถะดั‹ะน ะผะพะถะตั‚ ะพั‚ะฒะตั‚ะธั‚ัŒ" msgid "Everybody can reply to this post." msgstr "ะ’ัะต ะผะพะณัƒั‚ ะพั‚ะฒะตั‚ะธั‚ัŒ ะฝะฐ ัั‚ะพั‚ ะฟะพัั‚." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "ะ’ัะต" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "ะ’ัะต" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "ะ˜ัะบะปัŽั‡ะธั‚ัŒ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปะตะน, ะฝะฐ ะบะพั‚ะพั€ั‹ั… ะฒั‹ msgid "Excludes users you follow" msgstr "ะ˜ัะบะปัŽั‡ะฐะตั‚ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปะตะน, ะฝะฐ ะบะพั‚ะพั€ั‹ั… ะฒั‹ ะฟะพะดะฟะธัะฐะฝั‹" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "ะ’ั‹ะนั‚ะธ ะธะท ะฟะพะปะฝะพัะบั€ะฐะฝะฝะพะณะพ ั€ะตะถะธะผะฐ" @@ -4755,11 +4723,11 @@ msgstr "ะ ะฐะทะฒะตั€ะฝัƒั‚ัŒ ัะฟะธัะพะบ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปะตะน" msgid "Expand or collapse the full post you are replying to" msgstr "ะ ะฐะทะฒะตั€ะฝัƒั‚ัŒ ะธะปะธ ัะฒะตั€ะฝัƒั‚ัŒ ะฒะตััŒ ะฟะพัั‚, ะฝะฐ ะบะพั‚ะพั€ั‹ะน ะฒั‹ ะพั‚ะฒะตั‡ะฐะตั‚ะต" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "ะ ะฐะทะฒะพั€ะฐั‡ะธะฒะฐะตั‚ ะธะปะธ ัะฒะพั€ะฐั‡ะธะฒะฐะตั‚ ั‚ะตะบัั‚ ะฟะพัั‚ะฐ" @@ -4802,15 +4770,15 @@ msgstr "ะžั‚ะบั€ะพะฒะตะฝะฝั‹ะน ะธะปะธ ะฟะพั‚ะตะฝั†ะธะฐะปัŒะฝะพ ะฟั€ะพะฑะปะตะผะฝ msgid "Explicit sexual images." msgstr "ะžั‚ะบั€ะพะฒะตะฝะฝั‹ะต ัะตะบััƒะฐะปัŒะฝั‹ะต ะธะทะพะฑั€ะฐะถะตะฝะธั." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "ะžะฑะทะพั€" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "ะ’ะฝะตัˆะฝะธะต ะผะตะดะธะฐ" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ะ’ะฝะตัˆะฝะธะต ะผะตะดะธะฐ ะผะพะณัƒั‚ ะฟะพะทะฒะพะปะธั‚ัŒ ะฒะตะฑ-ัะฐะนั‚ะฐะผ ัะพะฑะธั€ะฐั‚ัŒ ะธะฝั„ะพั€ะผะฐั†ะธัŽ ะพ ะฒะฐั ะธ ะฒะฐัˆะตะผ ัƒัั‚ั€ะพะนัั‚ะฒะต. ะ˜ะฝั„ะพั€ะผะฐั†ะธั ะฝะต ะพั‚ะฟั€ะฐะฒะปัะตั‚ัั ะธ ะฝะต ะทะฐะฟั€ะฐัˆะธะฒะฐะตั‚ัั, ะฟะพะบะฐ ะฝะต ะฝะฐะถะฐั‚ะฐ ะบะฝะพะฟะบะฐ \"ะ’ะพัะฟั€ะพะธะทะฒะตัั‚ะธ\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "ะะฐัั‚ั€ะพะนะบะฐ ะฒะฝะตัˆะฝะธั… ะผะตะดะธะฐ" @@ -4886,7 +4854,7 @@ msgstr "ะะต ัƒะดะฐะปะพััŒ ะธะทะผะตะฝะธั‚ัŒ ะฟัะตะฒะดะพะฝะธะผ. ะŸะพะฟั€ะพะฑัƒ #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "ะะต ัƒะดะฐะปะพััŒ ะทะฐะณั€ัƒะทะธั‚ัŒ ะฑะตัะตะดั‹" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "ะะต ัƒะดะฐะปะพััŒ ะทะฐะณั€ัƒะทะธั‚ัŒ ะฝะฐัั‚ั€ะพะนะบะธ ะปะตะฝั‚ั‹" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "ะะต ัƒะดะฐะปะพััŒ ะทะฐะณั€ัƒะทะธั‚ัŒ ะฝะฐัั‚ั€ะพะนะบะธ ัƒะฒะตะดะพะผะปะตะฝะธะน." @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "ะะต ัƒะดะฐะปะพััŒ ะทะฐะณั€ัƒะทะธั‚ัŒ ะฟั€ะตะดะปะพะถะตะฝะฝั‹ะต ะปะตะฝั‚ั‹" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "ะะต ัƒะดะฐะปะพััŒ ะทะฐะณั€ัƒะทะธั‚ัŒ ะฟั€ะตะดะปะพะถะตะฝะฝั‹ะต ะฟะพะดะฟะธัะบะธ" @@ -5027,12 +4996,12 @@ msgstr "ะะต ัƒะดะฐะปะพััŒ ะทะฐะณั€ัƒะทะธั‚ัŒ ะฟั€ะตะดะปะพะถะตะฝะฝั‹ะต ะฟะพะดะฟ msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "ะ›ะตะฝั‚ะฐ" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "ะœะตะฝัŽ ะปะตะฝั‚ั‹" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "ะ›ะตะฝั‚ั‹ ะธะทะผะตะฝะตะฝั‹!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "ะœั‹ ะดัƒะผะฐะตะผ, ั‡ั‚ะพ ะฒะฐะผ ะฟะพะฝั€ะฐะฒัั‚ัั ัั‚ะธ ะปะตะฝั‚ั‹." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "ะŸะพะปัƒั‡ะธั‚ัŒ ะพะฑะฝะพะฒะปะตะฝะธะต" @@ -5273,34 +5238,22 @@ msgstr "ะŸะพะปัƒั‡ะธั‚ัŒ ะพะฑะฝะพะฒะปะตะฝะธะต" msgid "File saved successfully!" msgstr "ะคะฐะนะป ัƒัะฟะตัˆะฝะพ ัะพั…ั€ะฐะฝั‘ะฝ!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "ะคะธะปัŒั‚ั€ะพะฒะฐั‚ัŒ ะธะท ะปะตะฝั‚" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "ะคะธะปัŒั‚ั€ ะฟะพะธัะบะฐ ะฟะพ ัะทั‹ะบัƒ" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "ะคะธะปัŒั‚ั€ ะฟะพะธัะบะฐ ะฟะพ ัะทั‹ะบัƒ (ั‚ะตะบัƒั‰ะธะน: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "ะะฐะนะดะธั‚ะต ัƒั‡ั‘ั‚ะฝั‹ะต ะทะฐะฟะธัะธ ะดะปั ะฟะพะดะฟะธัะบะธ" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "ะŸะพะดะฟะธัะฐั‚ัŒัั ะฝะฐ {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "ะŸะพะดะฟะธัะฐั‚ัŒัั ะฝะฐ {handle}" @@ -5453,11 +5406,11 @@ msgstr "ะŸะพะดะฟะธัะฐั‚ัŒัั ะฝะฐ {handle}" msgid "Follow 10 accounts" msgstr "ะŸะพะดะฟะธัˆะธั‚ะตััŒ ะฝะฐ 10 ัƒั‡ั‘ั‚ะฝั‹ั… ะทะฐะฟะธัะตะน" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "ะŸะพะดะฟะธัˆะธั‚ะตััŒ ะฝะฐ 7 ัƒั‡ั‘ั‚ะฝั‹ั… ะทะฐะฟะธัะตะน" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "ะŸะพะดะฟะธัั‡ะธะบะธ @{0}, ะบะพั‚ะพั€ั‹ั… ะฒั‹ ะทะฝะฐะตั‚ะต" @@ -5544,7 +5497,7 @@ msgstr "ะŸะพะดะฟะธัั‡ะธะบะธ, ะบะพั‚ะพั€ั‹ั… ะฒั‹ ะทะฝะฐะตั‚ะต" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "ะŸะพะดะฟะธัะบะฐ ะฝะฐ {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "ะŸะพะดะฟะธัะฐะฝ ะฝะฐ {handle}" @@ -5578,21 +5531,21 @@ msgstr "ะŸะพะดะฟะธัะฐะฝ ะฝะฐ {handle}" msgid "Following feed preferences" msgstr "ะะฐัั‚ั€ะพะนะบะฐ ะปะตะฝั‚ั‹ ะฟะพะดะฟะธัะพะบ" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "ะะฐัั‚ั€ะพะนะบะฐ ะปะตะฝั‚ั‹ ะฟะพะดะฟะธัะพะบ" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "ะŸะพะดะฟะธัะฐะฝ ะฝะฐ ะฒะฐั" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "ะจั€ะธั„ั‚" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "ะ ะฐะทะผะตั€ ัˆั€ะธั„ั‚ะฐ" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "ะ’ ั†ะตะปัั… ะฑะตะทะพะฟะฐัะฝะพัั‚ะธ ะฒั‹ ะฝะต ัะผะพะถะตั‚ะต ะฟั€ะพัะผะพั‚ั€ะตั‚ัŒ ะตะณะพ ัะฝะพะฒะฐ. ะ•ัะปะธ ะฒั‹ ะฟะพั‚ะตั€ัะตั‚ะต ัั‚ะพั‚ ะฟะฐั€ะพะปัŒ ะฟั€ะธะปะพะถะตะฝะธั, ะฒะฐะผ ะฟั€ะธะดั‘ั‚ัั ัะณะตะฝะตั€ะธั€ะพะฒะฐั‚ัŒ ะฝะพะฒั‹ะน." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "ะ”ะปั ะฝะฐะธะปัƒั‡ัˆะตะณะพ ะฒะพัะฟั€ะธัั‚ะธั ะผั‹ ั€ะตะบะพะผะตะฝะดัƒะตะผ ะธัะฟะพะปัŒะทะพะฒะฐั‚ัŒ ั‚ะตะผะฐั‚ะธั‡ะตัะบะธะน ัˆั€ะธั„ั‚." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "ะ”ะปั ะ’ะฐั" @@ -5628,7 +5581,7 @@ msgstr "ะ”ะปั ะ’ะฐั" msgid "Forever" msgstr "ะะฐะฒัะตะณะดะฐ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "ะ—ะฐะฑัƒะดัŒั‚ะต ะพ ัˆัƒะผะต" @@ -5647,11 +5600,11 @@ msgstr "ะ—ะฐะฑั‹ะปะธ ะฟะฐั€ะพะปัŒ?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "ะžัะฒะพะฑะพะดะธั‚ะต ัะฒะพัŽ ะปะตะฝั‚ัƒ" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "ะžั‚" @@ -5674,7 +5627,7 @@ msgstr "ะ˜ะท <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "ะกะณะตะฝะตั€ะธั€ะพะฒะฐั‚ัŒ ัั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "ะŸะพะปัƒั‡ะธั‚ัŒ ะฟะพะผะพั‰ัŒ" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "ะŸะพะปัƒั‡ะฐะนั‚ะต ัƒะฒะตะดะพะผะปะตะฝะธั, ะบะพะณะดะฐ ะฝะฐ ะฒะฐั ะฟะพะดะฟะธัั‹ะฒะฐัŽั‚ัั ะปัŽะดะธ." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "ะŸะพะปัƒั‡ะฐะนั‚ะต ัƒะฒะตะดะพะผะปะตะฝะธั, ะบะพะณะดะฐ ะปัŽะดะธ ัั‚ะฐะฒัั‚ ะปะฐะนะบะธ ะฝะฐ ะฒะฐัˆะธ ะฟะพัั‚ั‹." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "ะŸะพะปัƒั‡ะฐะนั‚ะต ัƒะฒะตะดะพะผะปะตะฝะธั, ะบะพะณะดะฐ ะปัŽะดะธ ัƒะฟะพะผะธะฝะฐัŽั‚ ะฒะฐั." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "ะŸะพะปัƒั‡ะฐะนั‚ะต ัƒะฒะตะดะพะผะปะตะฝะธั, ะบะพะณะดะฐ ะปัŽะดะธ ั†ะธั‚ะธั€ัƒัŽั‚ ะฒะฐัˆะธ ะฟะพัั‚ั‹." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "ะŸะพะปัƒั‡ะฐะนั‚ะต ัƒะฒะตะดะพะผะปะตะฝะธั, ะบะพะณะดะฐ ะปัŽะดะธ ะพั‚ะฒะตั‡ะฐัŽั‚ ะฝะฐ ะฒะฐัˆะธ ะฟะพัั‚ั‹." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "ะŸะพะปัƒั‡ะฐะนั‚ะต ัƒะฒะตะดะพะผะปะตะฝะธั, ะบะพะณะดะฐ ะปัŽะดะธ ั€ะตะฟะพัั‚ัั‚ ะฒะฐัˆะธ ะฟะพัั‚ั‹." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "ะŸะพะปัƒั‡ะฐะนั‚ะต ัƒะฒะตะดะพะผะปะตะฝะธั ะพ ะฝะพะฒั‹ั… ะฟะพัั‚ะฐั…" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "ะŸั€ะธัั‚ัƒะฟะธั‚ัŒ" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "ะŸั€ะธะดะฐะนั‚ะต ัะฒะพะตะผัƒ ะฟั€ะพั„ะธะปัŽ ะปะธั†ะพ" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "ะ’ั‹ะนั‚ะธ ะฒ ะฟั€ัะผะพะน ัั„ะธั€ ะฝะฐ" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "ะฅะตัˆั‚ะตะณ" @@ -6098,7 +6052,7 @@ msgstr "ะ•ัั‚ัŒ ะบะพะด? <0>ะะฐะถะผะธั‚ะต ะทะดะตััŒ." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "ะ’ะพะทะฝะธะบะปะธ ะฟั€ะพะฑะปะตะผั‹?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "ะกะฟั€ะฐะฒะบะฐ" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "ะงั‚ะพะฑั‹ ะปัŽะดะธ ะทะฝะฐะปะธ, ั‡ั‚ะพ ะฒั‹ ะฝะต ะฑะพั‚, ะทะฐะณั€ัƒะทะธั‚ะต ั„ะพั‚ะพะณั€ะฐั„ะธัŽ ะธะปะธ ัะพะทะดะฐะนั‚ะต ะฐะฒะฐั‚ะฐั€." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "ะกะบั€ั‹ั‚ะพ" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "ะกะบั€ั‹ั‚ะพ ะฝะฐัั‚ั€ะพะนะบะฐะผะธ ะผะพะดะตั€ะฐั†ะธะธ." @@ -6148,9 +6102,10 @@ msgstr "ะกะบั€ั‹ั‚ะพ ะฝะฐัั‚ั€ะพะนะบะฐะผะธ ะผะพะดะตั€ะฐั†ะธะธ." msgid "Hidden list" msgstr "ะกะบั€ั‹ั‚ั‹ะน ัะฟะธัะพะบ" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "ะกะบั€ั‹ั‚ั‹ะน ัะฟะธัะพะบ" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "ะกะบั€ั‹ั‚ัŒ" @@ -6198,7 +6154,7 @@ msgstr "ะกะฟั€ัั‚ะฐั‚ัŒ ะพั‚ะฒะตั‚ ะดะปั ะฒัะตั…" msgid "Hide reply for me" msgstr "ะกะฟั€ัั‚ะฐั‚ัŒ ะพั‚ะฒะตั‚ ะดะปั ะผะตะฝั" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "ะกะบั€ั‹ั‚ัŒ ัั‚ัƒ ะบะฐั€ั‚ัƒ" @@ -6218,16 +6174,18 @@ msgstr "ะกะบั€ั‹ั‚ัŒ ัั‚ะพั‚ ะพั‚ะฒะตั‚?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "ะกะบั€ั‹ั‚ัŒ ะฐะบั‚ัƒะฐะปัŒะฝั‹ะต ั‚ะตะผั‹" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "ะกะบั€ั‹ั‚ัŒ ะฐะบั‚ัƒะฐะปัŒะฝั‹ะต ั‚ะตะผั‹?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "ะกะบั€ั‹ั‚ัŒ ะฐะบั‚ัƒะฐะปัŒะฝั‹ะต ะฒะธะดะตะพ?" @@ -6240,7 +6198,7 @@ msgstr "ะกะบั€ั‹ั‚ัŒ ัะฟะธัะพะบ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปะตะน" msgid "Hide verification badges" msgstr "ะกะบั€ั‹ั‚ัŒ ะทะฝะฐั‡ะบะธ ะฒะตั€ะธั„ะธะบะฐั†ะธะธ" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "ะกะบั€ั‹ะฒะฐะตั‚ ัะพะดะตั€ะถะธะผะพะต" @@ -6293,8 +6251,8 @@ msgstr "ะฅะผะผะผ, ะผั‹ ะฝะต ัะผะพะณะปะธ ะทะฐะณั€ัƒะทะธั‚ัŒ ัั‚ะพั‚ ัะตั€ะฒะธ msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "ะŸะพะดะพะถะดะธั‚ะต! ะœั‹ ะฟะพัั‚ะตะฟะตะฝะฝะพ ะดะฐั‘ะผ ะดะพัั‚ัƒะฟ ะบ ะฒะธะดะตะพ, ะธ ะฒั‹ ะฒัั‘ ะตั‰ั‘ ะฒ ะพั‡ะตั€ะตะดะธ. ะ’ะพะทะฒั€ะฐั‰ะฐะนั‚ะตััŒ ะฟะพะทะถะต!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "ะ“ะพั€ัั‡ะตะต" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "ะ•ัะปะธ ะฒั‹ ะพะฑะฝะพะฒะธั‚ะต ะฐะดั€ะตั ัะปะตะบั‚ั€ะพะฝะฝะพะน ะฟะพั‡ msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "ะ•ัะปะธ ะฒั‹ ั…ะพั‚ะธั‚ะต ะธะทะผะตะฝะธั‚ัŒ ะฟะฐั€ะพะปัŒ, ะผั‹ ะพั‚ะฟั€ะฐะฒะธะผ ะฒะฐะผ ะบะพะด, ั‡ั‚ะพะฑั‹ ัƒะฑะตะดะธั‚ัŒัั, ั‡ั‚ะพ ัั‚ะพ ะฒะฐัˆะฐ ัƒั‡ั‘ั‚ะฝะฐั ะทะฐะฟะธััŒ." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "ะŸะพั‡ั‚ะพะฒั‹ะน ัั‰ะธะบ ะฟัƒัั‚!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "ะะตะฒะตั€ะฝั‹ะน ะฟัะตะฒะดะพะฝะธะผ ะธะปะธ ะฟะฐั€ะพะปัŒ" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "ะšะพะด ะฟั€ะธะณะปะฐัˆะตะฝะธั" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "ะšะพะด ะฟั€ะธะณะปะฐัˆะตะฝะธั ะฝะต ะฟั€ะธะฝัั‚. ะฃะฑะตะดะธั‚ะตััŒ ะฒ ะตะณะพ ะฟั€ะฐะฒะธะปัŒะฝะพัั‚ะธ ะธ ะฟะพะฒั‚ะพั€ะธั‚ะต ะฟะพะฟั‹ั‚ะบัƒ." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "ะกะตะนั‡ะฐั ะทะดะตััŒ ั‚ะพะปัŒะบะพ ะฒั‹! ะ”ะพะฑะฐะฒัŒั‚ะต ะฑะพะปัŒัˆะต ะปัŽะดะตะน ะฒ ัะฒะพะน ัั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€, ะฒะพัะฟะพะปัŒะทะพะฒะฐะฒัˆะธััŒ ะฟะพะธัะบะพะผ ะฒั‹ัˆะต." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID ะฒะฐะบะฐะฝัะธะธ: {0}" @@ -6816,8 +6766,8 @@ msgstr "ะŸั€ะธัะพะตะดะธะฝะธั‚ัŒัั ะบ ะฑะตัะตะดะต" msgid "Journalism" msgstr "ะ–ัƒั€ะฝะฐะปะธัั‚ะธะบะฐ" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "ะ’ะตะฑ-ัะฐะนั‚ KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "ะžั‚ะผะตั‡ะตะฝ {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "ะœะตั‚ะบะฐ ะดะพะฑะฐะฒะปะตะฝะฐ ะฐะฒั‚ะพั€ะพะผ." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "ะœะตั‚ะบะธ" @@ -6852,7 +6802,7 @@ msgstr "ะœะตั‚ะบะธ ะดะพะฑะฐะฒะปะตะฝั‹" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ะœะตั‚ะบะธ ัะฒะปััŽั‚ัั ะฐะฝะฝะพั‚ะฐั†ะธัะผะธ ะดะปั ะฟะพะปัŒะทะพะฒะฐั‚ะตะปะตะน ะธ ะบะพะฝั‚ะตะฝั‚ะฐ. ะžะฝะธ ะผะพะณัƒั‚ ะธัะฟะพะปัŒะทะพะฒะฐั‚ัŒัั ะดะปั ัะบั€ั‹ั‚ะธั, ะฟั€ะตะดัƒะฟั€ะตะถะดะตะฝะธั ะธ ะบะฐั‚ะตะณะพั€ะธะทะฐั†ะธะธ ัะตั‚ะธ." @@ -6864,7 +6814,7 @@ msgstr "ะœะตั‚ะบะธ ะฝะฐ ะฒะฐัˆะตะน ัƒั‡ั‘ั‚ะฝะพะน ะทะฐะฟะธัะธ" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "ะะฐัั‚ั€ะพะนะบะธ ัะทั‹ะบะฐ" @@ -6874,7 +6824,7 @@ msgstr "ะะฐัั‚ั€ะพะนะบะธ ัะทั‹ะบะฐ" msgid "Languages" msgstr "ะฏะทั‹ะบะธ" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "ะฃะฒะตะปะธั‡ะตะฝะฝั‹ะน" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "ะŸะพัะปะตะดะฝะตะต ะธะฝะธั†ะธะธั€ะพะฒะฐะฝะธะต ั‚ะพะปัŒะบะพ ั‡ั‚ะพ" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "ะะตะดะฐะฒะฝะธะต" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "ะฃะทะฝะฐั‚ัŒ ะฑะพะปัŒัˆะต" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "ะฃะทะฝะฐั‚ัŒ ะฑะพะปัŒัˆะต" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "ะฃะทะฝะฐะนั‚ะต ะฑะพะปัŒัˆะต ะพ ัะฐะผะพัั‚ะพัั‚ะตะปัŒะฝะพะผ ั…ะพัั‚ะธะฝะณะต PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "ะฃะทะฝะฐะนั‚ะต ะฑะพะปัŒัˆะต ะพ ะผะพะดะตั€ะฐั†ะธะธ, ะฟั€ะธะผะตะฝัะตะผะพะน ะบ ัั‚ะพะผัƒ ัะพะดะตั€ะถะธะผะพะผัƒ" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "ะฃะทะฝะฐั‚ัŒ ะฑะพะปัŒัˆะต ะพะฑ ัั‚ะพะผ ะฟั€ะตะดัƒะฟั€ะตะถะดะตะฝะธะธ" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "ะฃะทะฝะฐั‚ัŒ ะฑะพะปัŒัˆะต." @@ -6993,8 +6943,8 @@ msgstr "ะ’ั‹ะนั‚ะธ" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "ะ’ั‹ ะฟะพะบะธะดะฐะตั‚ะต Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "ะตั‰ั‘ ะพัั‚ะฐะปะพััŒ." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "ะŸะพะทะฒะพะปัŒั‚ะต ะผะฝะต ะฒั‹ะฑั€ะฐั‚ัŒ" @@ -7057,7 +7007,7 @@ msgstr "ะ’ะทะปะตั‚ะฐะตะผ!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "ะกะฒะตั‚ะปะฐั" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "ะกะฒะตั‚ะปะฐั" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "ะ›ะฐะนะบ" @@ -7076,7 +7026,7 @@ msgstr "ะ›ะฐะนะบ" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "ะ›ะฐะนะบ ({0, plural, one {# ะปะฐะนะบ} few {# ะปะฐะนะบะฐ} other {# ะปะฐะนะบะพะฒ}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "ะ›ะฐะนะบะฝะธั‚ะต 10 ะฟะพัั‚ะพะฒ" @@ -7085,7 +7035,7 @@ msgstr "ะ›ะฐะนะบะฝะธั‚ะต 10 ะฟะพัั‚ะพะฒ" msgid "Like 10 posts to train the Discover feed" msgstr "ะ›ะฐะนะบะฝะธั‚ะต 10 ะฟะพัั‚ะพะฒ, ั‡ั‚ะพะฑั‹ ะพะฑัƒั‡ะธั‚ัŒ ะปะตะฝั‚ัƒ Discover" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "ะ›ะฐะนะบะฝัƒั‚ัŒ ัั‚ัƒ ะปะตะฝั‚ัƒ" @@ -7093,8 +7043,8 @@ msgstr "ะ›ะฐะนะบะฝัƒั‚ัŒ ัั‚ัƒ ะปะตะฝั‚ัƒ" msgid "Like this labeler" msgstr "ะ›ะฐะนะบะฝัƒั‚ัŒ ัั‚ะพั‚ ะผะฐั€ะบะธั€ะพะฒั‰ะธะบ" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "ะŸะพะฝั€ะฐะฒะธะปะพััŒ" @@ -7111,27 +7061,45 @@ msgstr "ะŸะพะฝั€ะฐะฒะธะปัั ะฟะพะปัŒะทะพะฒะฐั‚ะตะปัŽ" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "ะŸะพะฝั€ะฐะฒะธะปะพััŒ {0, plural, one {# ะฟะพะปัŒะทะพะฒะฐั‚ะตะปัŽ} other {# ะฟะพะปัŒะทะพะฒะฐั‚ะตะปัะผ}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "ะŸะพะฝั€ะฐะฒะธะปะพััŒ {likeCount, plural, one {# ะฟะพะปัŒะทะพะฒะฐั‚ะตะปัŽ} other {# ะฟะพะปัŒะทะพะฒะฐั‚ะตะปัะผ}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "ะั€ะฐะฒะธั‚ัั" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "ะ›ะฐะนะบะธ ัั‚ะพะณะพ ะฟะพัั‚ะฐ" @@ -7144,7 +7112,7 @@ msgstr "ะ›ะธะฝะตะนะฝะพ" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "ะกะฟะธัะพะบ" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "ะกะฟะธัะพะบ ะฑะพะปัŒัˆะต ะฝะต ะธะณะฝะพั€ะธั€ัƒะตั‚ัั" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "ะŸะ ะฏะœะžะ™ ะญะคะ˜ะ " msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "ะŸั€ัะผะฐั ััั‹ะปะบะฐ" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "ะ—ะฐะณั€ัƒะทะธั‚ัŒ ะฑะพะปัŒัˆะต" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "ะ—ะฐะณั€ัƒะทะธั‚ัŒ ะฑะพะปัŒัˆะต ะฟั€ะตะดะปะฐะณะฐะตะผั‹ั… ะปะตะฝั‚" @@ -7292,8 +7260,8 @@ msgstr "ะ—ะฐะณั€ัƒะทะธั‚ัŒ ะฑะพะปัŒัˆะต ะฟั€ะตะดะปะฐะณะฐะตะผั‹ั… ะปะตะฝั‚" msgid "Load new notifications" msgstr "ะ—ะฐะณั€ัƒะทะธั‚ัŒ ะฝะพะฒั‹ะต ัƒะฒะตะดะพะผะปะตะฝะธั" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "ะžั‚ั‡ั‘ั‚" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "ะกะดะตะปะฐั‚ัŒ ะพะดะธะฝ ะดะปั ะผะตะฝั" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "ะžั‚ะผะตั‚ะธั‚ัŒ ะฒัะต ะบะฐะบ ะฟั€ะพั‡ะธั‚ะฐะฝะฝั‹ะต" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "ะžั‚ะผะตั‚ะธั‚ัŒ ะบะฐะบ ะฟั€ะพั‡ะธั‚ะฐะฝะฝะพะต" msgid "Marked all as read" msgstr "ะ’ัะต ัะพะพะฑั‰ะตะฝะธั ะพั‚ะผะตั‡ะตะฝั‹ ะบะฐะบ ะฟั€ะพั‡ะธั‚ะฐะฝะฝั‹ะต" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "ะ’ะพะทะผะพะถะฝะพ, ะฟะพะทะถะต" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "ะœะตะดะธะฐ" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "ะœะตะดะธะฐ, ะบะพั‚ะพั€ั‹ะต ะผะพะณัƒั‚ ะฒั‹ะทั‹ะฒะฐั‚ัŒ ะฑะตัะฟะพะบะพะนัั‚ะฒะพ ะธะปะธ ะฑั‹ั‚ัŒ ะฝะตะฟั€ะธะตะผะปะตะผั‹ะผะธ ะดะปั ะฝะตะบะพั‚ะพั€ั‹ั… ะฐัƒะดะธั‚ะพั€ะธะน." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "ัƒะฟะพะผัะฝัƒั‚ั‹ะต ะฟะพะปัŒะทะพะฒะฐั‚ะตะปะธ" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "ะฃะฟะพะผะธะฝะฐะฝะธั" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "ะกะพะพะฑั‰ะตะฝะธะต ัƒะดะฐะปะตะฝะพ" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "ะŸะฐั€ะฐะผะตั‚ั€ั‹ ัะพะพะฑั‰ะตะฝะธะน" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "ะกะพะพะฑั‰ะตะฝะธั" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "ะœะพะดะตั€ะฐั†ะธั" @@ -7636,7 +7608,7 @@ msgstr "ะกะฟะธัะพะบ ะผะพะดะตั€ะฐั†ะธะธ ะธะทะผะตะฝั‘ะฝ" msgid "Moderation lists" msgstr "ะกะฟะธัะบะธ ะผะพะดะตั€ะฐั†ะธะธ" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "ะกะฟะธัะบะธ ะผะพะดะตั€ะฐั†ะธะธ" @@ -7645,7 +7617,7 @@ msgstr "ะกะฟะธัะบะธ ะผะพะดะตั€ะฐั†ะธะธ" msgid "moderation settings" msgstr "ะฝะฐัั‚ั€ะพะนะบะฐ ะผะพะดะตั€ะฐั†ะธะธ" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "ะกั‚ะฐั‚ัƒั ะผะพะดะตั€ะฐั†ะธะธ" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "ะ˜ะณะฝะพั€ะธั€ัƒะตะผั‹ะต ัƒั‡ั‘ั‚ะฝั‹ะต ะทะฐะฟะธัะธ" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "ะ˜ะณะฝะพั€ะธั€ัƒะตะผั‹ะต ัƒั‡ั‘ั‚ะฝั‹ะต ะทะฐะฟะธัะธ" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "ะะตะฒะฐะถะฝะพ, ัะพะทะดะฐะนั‚ะต ะดะปั ะผะตะฝั ะฟัะตะฒะดะพะฝะธะผ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "ะะพะฒั‹ะน" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "ะะพะฒั‹ะน ั‡ะฐั‚" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "ะะพะฒะฐั ั„ัƒะฝะบั†ะธั" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "ะะพะฒั‹ะต ะฟะพะดะฟะธัั‡ะธะบะธ" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "ะะพะฒั‹ะน ัะฟะธัะพะบ" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "ะะพะฒั‹ะน ะฟะฐั€ะพะปัŒ" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "ะะพะฒั‹ะน ะฟะพัั‚" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "ะกะฝะฐั‡ะฐะปะฐ ัะฐะผั‹ะต ะฝะพะฒั‹ะต" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "ะะพะฒะพัั‚ะธ" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "ะกะปะตะดัƒัŽั‰ะตะต ะธะทะพะฑั€ะฐะถะตะฝะธะต" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "ะ‘ะตะท ั€ะตะบะปะฐะผั‹, ะฑะตะท ะธะฝะฒะฐะทะธะฒะฝะพะณะพ ะพั‚ัะปะตะถะธะฒะฐะฝะธั, ะฑะตะท ะฒะพะฒะปะตะบะฐัŽั‰ะธั… ะปะพะฒัƒัˆะตะบ. Bluesky ัƒะฒะฐะถะฐะตั‚ ะฒะฐัˆะต ะฒั€ะตะผั ะธ ะฒะฝะธะผะฐะฝะธะต." @@ -8065,6 +8036,11 @@ msgstr "ะ‘ะตะท ั€ะตะบะปะฐะผั‹, ะฑะตะท ะธะฝะฒะฐะทะธะฒะฝะพะณะพ ะพั‚ัะปะตะถะธะฒะฐ msgid "No app passwords yet" msgstr "ะŸะพะบะฐ ะฝะตั‚ ะฟะฐั€ะพะปะตะน ะฟั€ะธะปะพะถะตะฝะธะน" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "ะะตั‚ ัั€ะพะบะฐ ะดะตะนัั‚ะฒะธั" msgid "No feeds found. Try searching for something else." msgstr "ะะต ะฝะฐะนะดะตะฝะพ ะฝะธ ะพะดะฝะพะน ะปะตะฝั‚ั‹. ะŸะพะฟั€ะพะฑัƒะนั‚ะต ะฟะพะธัะบะฐั‚ัŒ ั‡ั‚ะพ-ะฝะธะฑัƒะดัŒ ะตั‰ะต." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "ะะตั‚ ะธะทะพะฑั€ะฐะถะตะฝะธั" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "ะŸะพะบะฐ ะฝะตั‚ ะปะฐะนะบะพะฒ" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "ะ’ั‹ ะฑะพะปัŒัˆะต ะฝะต ะฟะพะดะฟะธัะฐะฝั‹ ะฝะฐ {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "ะกะพะพะฑั‰ะตะฝะธั ะฟะพะบะฐ ะพั‚ััƒั‚ัั‚ะฒัƒัŽั‚" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "ะ‘ะพะปัŒัˆะต ะฝะธะบะฐะบะธั… ะฐะปะณะพั€ะธั‚ะผะพะฒ, ะฝะฐะฟะพะปะฝะตะฝะฝั‹ั… ะฑะตัะฟะพะปะตะทะฝะพะน ะธะฝั„ะพั€ะผะฐั†ะธะตะน. ะะฐะนะดะธั‚ะต ะบะฐะฝะฐะปั‹, ะบะพั‚ะพั€ั‹ะต ั€ะฐะฑะพั‚ะฐัŽั‚ ะฝะฐ ะฒะฐั, ะฐ ะฝะต ะฟั€ะพั‚ะธะฒ ะฒะฐั." @@ -8180,16 +8167,21 @@ msgstr "ะะธะบั‚ะพ, ะบั€ะพะผะต ะฐะฒั‚ะพั€ะฐ, ะฝะต ะผะพะถะตั‚ ั†ะธั‚ะธั€ะพะฒะฐั‚ msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "ะŸะพะบะฐ ะฝะตั‚ ั†ะธั‚ะธั€ะพะฒะฐะฝะธะน" @@ -8198,11 +8190,7 @@ msgstr "ะŸะพะบะฐ ะฝะตั‚ ั†ะธั‚ะธั€ะพะฒะฐะฝะธะน" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "ะะตั‚ ั€ะตะทัƒะปัŒั‚ะฐั‚ะพะฒ" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "ะะตั‚ ั€ะตะทัƒะปัŒั‚ะฐั‚ะพะฒ" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "ะะธั‡ะตะณะพ ะฝะต ะฝะฐะนะดะตะฝะพ ะดะปั \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "ะะตั‚ ั€ะตะทัƒะปัŒั‚ะฐั‚ะพะฒ" msgid "No results found for \"{query}\"" msgstr "ะะธั‡ะตะณะพ ะฝะต ะฝะฐะนะดะตะฝะพ ะฟะพ ะทะฐะฟั€ะพััƒ \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "ะะตั‚ ั€ะตะทัƒะปัŒั‚ะฐั‚ะพะฒ." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "ะะตั‚, ัะฟะฐัะธะฑะพ" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "ะะธะบะพะณะพ" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "ะŸะพะบะฐ ัั‚ะพ ะฝะธะบะพะผัƒ ะฝะต ะฟะพะฝั€ะฐะฒะธะปะพััŒ. ะ’ะพะทะผะพะถะฝะพ, ะฒั‹ ะดะพะปะถะฝั‹ ะฑั‹ั‚ัŒ ะฟะตั€ะฒั‹ะผ!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "ะะธะบั‚ะพ ะตั‰ั‘ ะฝะต ั†ะธั‚ะธั€ะพะฒะฐะป ัั‚ะพ. ะ’ะพะทะผะพะถะฝะพ, ะฒั‹ ะดะพะปะถะฝั‹ ะฑั‹ั‚ัŒ ะฟะตั€ะฒั‹ะผ!" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "ะะตัะตะบััƒะฐะปัŒะฝะฐั ะพะฑะฝะฐะถั‘ะฝะฝะพัั‚ัŒ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "ะะต ะฝะฐะนะดะตะฝะพ" @@ -8333,7 +8325,7 @@ msgstr "ะŸั€ะธะผะตั‡ะฐะฝะธะต ะฟะพ ั€ะฐัะฟั€ะพัั‚ั€ะฐะฝะตะฝะธัŽ" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "ะŸั€ะธะผะตั‡ะฐะฝะธะต: Bluesky ัะฒะปัะตั‚ัั ะพั‚ะบั€ั‹ั‚ะพะน ะธ ะฟัƒะฑะปะธั‡ะฝะพะน ัะตั‚ัŒัŽ. ะญั‚ะพั‚ ะฟะฐั€ะฐะผะตั‚ั€ ะพะณั€ะฐะฝะธั‡ะธะฒะฐะตั‚ ะฒะธะดะธะผะพัั‚ัŒ ะฒะฐัˆะตะณะพ ัะพะดะตั€ะถะธะผะพะณะพ ั‚ะพะปัŒะบะพ ะฒ ะฟั€ะธะปะพะถะตะฝะธัั… ะธ ะฝะฐ ัะฐะนั‚ะต Bluesky, ะฝะพ ะดั€ัƒะณะธะต ะฟั€ะธะปะพะถะตะฝะธั ะผะพะณัƒั‚ ัั‚ะพะณะพ ะฝะต ะฟั€ะธะดะตั€ะถะธะฒะฐั‚ัŒัั. ะ’ะฐัˆ ะบะพะฝั‚ะตะฝั‚ ะฒัะต ะตั‰ั‘ ะผะพะถะตั‚ ะฑั‹ั‚ัŒ ะฟะพะบะฐะทะฐะฝ ะฟะพัะตั‚ะธั‚ะตะปัะผ ะฑะตะท ัƒั‡ั‘ั‚ะฝะพะน ะทะฐะฟะธัะธ ะดั€ัƒะณะธะผะธ ะฟั€ะธะปะพะถะตะฝะธัะผะธ ะธ ะฒะตะฑ-ัะฐะนั‚ะฐะผะธ." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "ะŸะพะบะฐ ะฝะธั‡ะตะณะพ ะฝะต ัะพั…ั€ะฐะฝะตะฝะพ" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "ะะฐัั‚ั€ะพะนะบะธ ัƒะฒะตะดะพะผะปะตะฝะธั" @@ -8353,11 +8345,12 @@ msgstr "ะะฐัั‚ั€ะพะนะบะธ ัƒะฒะตะดะพะผะปะตะฝะธั" msgid "Notification sounds" msgstr "ะ—ะฒัƒะบะธ ัƒะฒะตะดะพะผะปะตะฝะธะน" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "ะž ะฝะตั‚!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "ะžะš" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "ะฅะพั€ะพัˆะพ" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "ะกะฑั€ะพั ะฝะฐัั‚ั€ะพะตะบ" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "ะ’ ะพะดะฝะพะผ ะธะปะธ ะฝะตัะบะพะปัŒะบะธั… GIF-ั„ะฐะนะปะฐั… ะพั‚ััƒั‚ัั‚ะฒัƒะตั‚ ะฐะปัŒั‚ะตั€ะฝะฐั‚ะธะฒะฝั‹ะน ั‚ะตะบัั‚." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "ะ”ะปั ะพะดะฝะพะณะพ ะธะปะธ ะฝะตัะบะพะปัŒะบะธั… ะธะทะพะฑั€ะฐะถะตะฝะธะน ะพั‚ััƒั‚ัั‚ะฒัƒะตั‚ ะฐะปัŒั‚ะตั€ะฝะฐั‚ะธะฒะฝั‹ะน ั‚ะตะบัั‚." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "ะ’ ะพะดะฝะพะผ ะธะปะธ ะฝะตัะบะพะปัŒะบะธั… ะฒะธะดะตะพ ะพั‚ััƒั‚ัั‚ะฒัƒะตั‚ ะฐะปัŒั‚ะตั€ะฝะฐั‚ะธะฒะฝั‹ะน ั‚ะตะบัั‚." @@ -8471,7 +8466,7 @@ msgstr "ะขะพะปัŒะบะพ {0} ะผะพะณัƒั‚ ะพั‚ะฒะตั‡ะฐั‚ัŒ." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "ะŸะพะดะดะตั€ะถะธะฒะฐัŽั‚ัั ั‚ะพะปัŒะบะพ ั„ะฐะนะปั‹ WebVTT (.vtt)" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "ะžะน!" @@ -8544,7 +8543,7 @@ msgstr "ะžะน!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "ะžั‚ะบั€ั‹ั‚ัŒ ัะพะทะดะฐั‚ะตะปัŒ ะฐะฒะฐั‚ะฐั€ะฐ" @@ -8570,21 +8569,22 @@ msgstr "ะžั‚ะบั€ั‹ั‚ัŒ ะฝะฐัั‚ั€ะพะนะบะธ ะฑะตัะตะดั‹" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "ะžั‚ะบั€ั‹ั‚ัŒ ะฒั‹ะดะฒะธะถะฝะพะต ะผะตะฝัŽ" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "ะžั‚ะบั€ั‹ั‚ัŒ ะฟะพะดะฑะพั€ั‰ะธะบ ัะผะพะดะทะธ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "ะžั‚ะบั€ั‹ั‚ัŒ ัะบั€ะฐะฝ ะธะฝั„ะพั€ะผะฐั†ะธะธ ะพ ะปะตะฝั‚ะต" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "ะžั‚ะบั€ั‹ั‚ัŒ ะผะตะฝัŽ ะฝะฐัั‚ั€ะพะตะบ ะปะตะฝั‚ั‹" @@ -8627,7 +8627,7 @@ msgstr "ะžั‚ะบั€ั‹ั‚ัŒ ัั‚ั€ะฐะฝะธั†ัƒ ะพั‚ะปะฐะดะบะธ ะผะพะดะตั€ะฐั†ะธะธ" msgid "Open muted words and tags settings" msgstr "ะžั‚ะบั€ั‹ั‚ัŒ ะฝะฐัั‚ั€ะพะนะบะธ ะธะณะฝะพั€ะธั€ะพะฒะฐะฝะธั ัะปะพะฒ ะธ ั‚ะตะณะพะฒ" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "ะžั‚ะบั€ั‹ั‚ัŒ ะฝะฐะฑะพั€" @@ -8699,7 +8699,7 @@ msgstr "ะžั‚ะบั€ั‹ะฒะฐะตั‚ ะดะพะฟะพะปะฝะธั‚ะตะปัŒะฝัƒัŽ ะธะฝั„ะพั€ะผะฐั†ะธัŽ ะพ msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "ะžั‚ะบั€ั‹ะฒะฐะตั‚ ะบะฐะผะตั€ัƒ ะฝะฐ ัƒัั‚ั€ะพะนัั‚ะฒะต" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "ะžั‚ะบั€ั‹ะฒะฐะตั‚ ะฟั€ะพั†ะตัั ัะพะทะดะฐะฝะธั ะฝะพะฒะพะน ัƒั‡ั‘ั‚ะฝะพะน ะทะฐะฟะธัะธ Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "ะžั‚ะบั€ั‹ะฒะฐะตั‚ัั ะฟั€ะพั†ะตัั ะฒั…ะพะดะฐ ะฒ ััƒั‰ะตัั‚ะฒัƒัŽั‰ัƒัŽ ัƒั‡ะตั‚ะฝัƒัŽ ะทะฐะฟะธััŒ Bluesky" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "ะŸะฐั€ะพะปัŒ ะธะทะผะตะฝั‘ะฝ!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "ะŸั€ะธะพัั‚ะฐะฝะพะฒะธั‚ัŒ" @@ -8925,12 +8925,12 @@ msgstr "ะŸั€ะธะพัั‚ะฐะฝะพะฒะธั‚ัŒ" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "ะŸั€ะธะพัั‚ะฐะฝะพะฒะธั‚ัŒ ะฒะธะดะตะพ" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "ะ›ัŽะดะธ" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "ะ›ัŽะดะธ, ะฝะฐ ะบะพั‚ะพั€ั‹ั… ะฟะพะดะฟะธัะฐะฝ(ะฐ) @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "ะ›ัŽะดะธ, ะบะพั‚ะพั€ั‹ะต ะฟะพะดะฟะธัะฐะฝั‹ ะฝะฐ @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "ะ˜ะทะพะฑั€ะฐะถะตะฝะธั, ะฟั€ะตะดะฝะฐะทะฝะฐั‡ะตะฝะฝั‹ะต ะดะปั ะฒะทั€ะพัะปั‹ั…." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "ะ—ะฐะบั€ะตะฟะธั‚ัŒ ะปะตะฝั‚ัƒ" @@ -9034,7 +9034,7 @@ msgstr "ะ—ะฐะบั€ะตะฟะธั‚ัŒ ะปะตะฝั‚ัƒ" msgid "Pin to home" msgstr "ะ—ะฐะบั€ะตะฟะธั‚ัŒ ะฝะฐ ะณะปะฐะฒะฝะพะน ัั‚ั€ะฐะฝะธั†ะต" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "ะ—ะฐะบั€ะตะฟะธั‚ัŒ ะฝะฐ ะณะปะฐะฒะฝะพะน ัั‚ั€ะฐะฝะธั†ะต" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "ะ—ะฐะบั€ะตะฟะปั‘ะฝ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "ะŸั€ะธะบั€ะตะฟะปะตะฝะพ {0} ะบ ะณะปะฐะฒะฝะพะน ัั‚ั€ะฐะฝะธั†ะต" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "ะ—ะฐะบั€ะตะฟะธั‚ัŒ ะฒ ัะฒะพะธั… ะปะตะฝั‚ะฐั…" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "ะ’ะพัะฟั€ะพะธะทะฒะตัั‚ะธ" @@ -9076,8 +9076,8 @@ msgstr "ะ’ะพัะฟั€ะพะธะทะฒะตัั‚ะธ {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "ะ’ะพัะฟั€ะพะธะทะฒะตัั‚ะธ ะฒะธะดะตะพ" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "ะŸะพะถะฐะปัƒะนัั‚ะฐ, ะฒั‹ะฑะตั€ะธั‚ะต ะฟัะตะฒะดะพะฝะธะผ." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "ะŸะพะถะฐะปัƒะนัั‚ะฐ, ะฒั‹ะฑะตั€ะธั‚ะต ะฒะฐัˆ ะฟะฐั€ะพะปัŒ." @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "ะŸะพะถะฐะปัƒะนัั‚ะฐ, ะทะฐะฒะตั€ัˆะธั‚ะต ะฟั€ะพะฒะตั€ะบัƒ Captcha." @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "ะŸะพะถะฐะปัƒะนัั‚ะฐ, ะฒะฒะตะดะธั‚ะต ะฐะดั€ะตั ัะปะตะบั‚ั€ะพะฝะฝะพะน ะฟะพั‡ั‚ั‹." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "ะŸะพะปะธั‚ะธะบะฐ" @@ -9269,7 +9269,7 @@ msgstr "ะŸะพะปะธั‚ะธะบะฐ" msgid "Porn" msgstr "ะŸะพั€ะฝะพะณั€ะฐั„ะธั" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "ะžะฟัƒะฑะปะธะบะพะฒะฐั‚ัŒ" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "ะŸะพัั‚" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "ะžะฟัƒะฑะปะธะบะพะฒะฐั‚ัŒ ะฒัะต" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "ะŸะพัั‚ ะพั‚ @{0}" @@ -9340,7 +9340,7 @@ msgstr "ะ’ั‹ ัะบั€ั‹ะปะธ ัั‚ะพั‚ ะฟะพัั‚" msgid "Post interaction settings" msgstr "ะะฐัั‚ั€ะพะนะบะธ ะฒะทะฐะธะผะพะดะตะนัั‚ะฒะธั ั ะฟะพัั‚ะพะผ" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "ะะฐัั‚ั€ะพะนะบะธ ะฒะทะฐะธะผะพะดะตะนัั‚ะฒะธั ั ะฟะพัั‚ะพะผ" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "ะŸะพัั‚ ะทะฐะบั€ะตะฟะปั‘ะฝ" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "ะŸะพัั‚ ัะพั…ั€ะฐะฝั‘ะฝ" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "ะŸะพัั‚ ะพั‚ะบั€ะตะฟะปั‘ะฝ" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "ะŸะพัั‚ั‹" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "ะŸะพัั‚ั‹ ะผะพะณัƒั‚ ะฑั‹ั‚ัŒ ะฟั€ะพะธะณะฝะพั€ะธั€ะพะฒะฐะฝั‹ ะฝะฐ ะพัะฝะพะฒะฐะฝะธะธ ะธั… ั‚ะตะบัั‚ะฐ, ั‚ะตะณะพะฒ ะธะปะธ ั‚ะพะณะพ ะธ ะดั€ัƒะณะพะณะพ. ะœั‹ ั€ะตะบะพะผะตะฝะดัƒะตะผ ะธะทะฑะตะณะฐั‚ัŒ ะพะฑั‰ะธั… ัะปะพะฒ, ะบะพั‚ะพั€ั‹ะต ะฒัั‚ั€ะตั‡ะฐัŽั‚ัั ะฒะพ ะผะฝะพะณะธั… ะฟะพัั‚ะฐั…, ั‚ะฐะบ ะบะฐะบ ัั‚ะพ ะผะพะถะตั‚ ะฟั€ะธะฒะตัั‚ะธ ะบ ั‚ะพะผัƒ, ั‡ั‚ะพ ะฝะธะบะฐะบะธะต ะฟะพัั‚ั‹ ะฝะต ะฑัƒะดัƒั‚ ะฟะพะบะฐะทะฐะฝั‹." @@ -9398,6 +9396,10 @@ msgstr "ะŸะพัั‚ั‹ ะผะพะณัƒั‚ ะฑั‹ั‚ัŒ ะฟั€ะพะธะณะฝะพั€ะธั€ะพะฒะฐะฝั‹ ะฝะฐ ะพั msgid "Posts hidden" msgstr "ะŸะพัั‚ั‹ ัะบั€ั‹ั‚ั‹" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "ะšะพะฝั„ะธะดะตะฝั†ะธะฐะปัŒะฝะพัั‚ัŒ" msgid "Privacy and security" msgstr "ะšะพะฝั„ะธะดะตะฝั†ะธะฐะปัŒะฝะพัั‚ัŒ ะธ ะฑะตะทะพะฟะฐัะฝะพัั‚ัŒ" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "ะšะพะฝั„ะธะดะตะฝั†ะธะฐะปัŒะฝะพัั‚ัŒ ะธ ะฑะตะทะพะฟะฐัะฝะพัั‚ัŒ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "ะŸะพะปะธั‚ะธะบะฐ ะบะพะฝั„ะธะดะตะฝั†ะธะฐะปัŒะฝะพัั‚ะธ" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "ะžะฑั€ะฐะฑะพั‚ะบะฐ ะฒะธะดะตะพ..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "ะŸัƒะฑะปะธั‡ะฝั‹ะต, ะดะพัั‚ัƒะฟะฝั‹ะต ะดะปั ะพะฑะผะตะฝะฐ ัะฟะธัะบะธ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปะตะน ะดะปั ะผะฐััะพะฒะพะณะพ ะธะณะฝะพั€ะธั€ะพะฒะฐะฝะธั ะธะปะธ ะฑะปะพะบะธั€ะพะฒะบะธ." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "ะžะฟัƒะฑะปะธะบะพะฒะฐั‚ัŒ ะฟะพัั‚" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "ะžะฟัƒะฑะปะธะบะพะฒะฐั‚ัŒ ะฟะพัั‚ั‹" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "ะžะฟัƒะฑะปะธะบะพะฒะฐั‚ัŒ ะพั‚ะฒะตั‚ั‹" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "ะžะฟัƒะฑะปะธะบะพะฒะฐั‚ัŒ ะพั‚ะฒะตั‚" @@ -9599,12 +9602,12 @@ msgstr "ะฆะธั‚ะธั€ะพะฒะฐะฝะธะต ะฟะพัั‚ะพะฒ ะพั‚ะบะปัŽั‡ะตะฝะพ" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "ะฆะธั‚ะฐั‚ั‹" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "ะฆะธั‚ะฐั‚ั‹ ะธะท ัั‚ะพะณะพ ะฟะพัั‚ะฐ" @@ -9647,7 +9650,7 @@ msgstr "ะ ะตะฐะบั‚ะธะฒะธั€ะพะฒะฐั‚ัŒ ัะฒะพัŽ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "ะŸั€ะพั‡ะธั‚ะฐั‚ัŒ ะฟะพัั‚ ะฒ ะฑะปะพะณะต" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "ะงะธั‚ะฐั‚ัŒ ะผะตะฝัŒัˆะต" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "ะงะธั‚ะฐั‚ัŒ ะฑะพะปัŒัˆะต" @@ -9687,11 +9690,11 @@ msgstr "ะŸั€ะพั‡ั‚ะธั‚ะต ะฟะพะปะธั‚ะธะบัƒ ะบะพะฝั„ะธะดะตะฝั†ะธะฐะปัŒะฝะพัั‚ะธ B msgid "Read the Bluesky Terms of Service" msgstr "ะŸั€ะพั‡ั‚ะธั‚ะต ัƒัะปะพะฒะธั ะฟั€ะตะดะพัั‚ะฐะฒะปะตะฝะธั ัƒัะปัƒะณ Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "ะ ะตะบะพะผะตะฝะดัƒะตั‚ัั" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "ะŸะตั€ะตะฟะพะดะบะปัŽั‡ะธั‚ัŒัั" @@ -9748,7 +9747,7 @@ msgstr "ะžั‚ะบะปะพะฝะธั‚ัŒ ะทะฐะฟั€ะพั ะฝะฐ ะฑะตัะตะดัƒ" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "ะŸะตั€ะตะทะฐะณั€ัƒะทะธั‚ัŒ ะฑะตัะตะดั‹" @@ -9766,7 +9765,7 @@ msgstr "ะŸะตั€ะตะทะฐะณั€ัƒะทะธั‚ัŒ ะฑะตัะตะดั‹" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "ะฃะดะฐะปะธั‚ัŒ" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "ะฃะดะฐะปะธั‚ัŒ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "ะฃะดะฐะปะธั‚ัŒ ะธะท ะผะพะธั… ะปะตะฝั‚" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "ะฃะดะฐะปะธั‚ัŒ ะธะท ะฑั‹ัั‚ั€ะพะณะพ ะดะพัั‚ัƒะฟะฐ?" @@ -9862,7 +9861,7 @@ msgstr "ะฃะดะฐะปะธั‚ัŒ ะธะท ะฑั‹ัั‚ั€ะพะณะพ ะดะพัั‚ัƒะฟะฐ?" msgid "Remove from saved feeds" msgstr "ะฃะดะฐะปะธั‚ัŒ ะธะท ัะพั…ั€ะฐะฝั‘ะฝะฝั‹ั… ะปะตะฝั‚" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "ะฃะดะฐะปะธั‚ัŒ ะธะท ัะพั…ั€ะฐะฝั‘ะฝะฝั‹ั… ะฟะพัั‚ะพะฒ" @@ -9880,8 +9879,8 @@ msgstr "ะฃะดะฐะปะธั‚ัŒ ะธะทะพะฑั€ะฐะถะตะฝะธะต" msgid "Remove live status" msgstr "ะฃะฑั€ะฐั‚ัŒ ัั‚ะฐั‚ัƒั ะฟั€ัะผะพะณะพ ัั„ะธั€ะฐ" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "ะฃะดะฐะปะตะฝะพ ะธะท ัะฟะธัะบะฐ" msgid "Removed from saved feeds" msgstr "ะฃะดะฐะปะตะฝะพ ะธะท ัะพั…ั€ะฐะฝั‘ะฝะฝั‹ั… ะปะตะฝั‚" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "ะฃะดะฐะปะตะฝะพ ะธะท ัะพั…ั€ะฐะฝั‘ะฝะฝั‹ั… ะฟะพัั‚ะพะฒ" @@ -9952,7 +9951,7 @@ msgstr "ะฃะดะฐะปะตะฝะพ ะธะท ัะพั…ั€ะฐะฝั‘ะฝะฝั‹ั… ะฟะพัั‚ะพะฒ" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "ะžั‚ะฒะตั‚ั‹" @@ -10037,7 +10037,7 @@ msgstr "ะžั‚ะฒะตั‚ั‹ ะฝะฐ ัั‚ะพั‚ ะฟะพัั‚ ะพั‚ะบะปัŽั‡ะตะฝั‹." msgid "Reply" msgstr "ะžั‚ะฒะตั‚ะธั‚ัŒ" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "ะžั‚ะฒะตั‚ะธั‚ัŒ" @@ -10098,8 +10098,8 @@ msgstr "ะŸะพะถะฐะปะพะฒะฐั‚ัŒัั ะฝะฐ ะฑะตัะตะดัƒ" msgid "Report dialog" msgstr "ะ”ะธะฐะปะพะณะพะฒะพะต ะพะบะฝะพ ะดะปั ะถะฐะปะพะฑ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "ะŸะพะถะฐะปะพะฒะฐั‚ัŒัั ะฝะฐ ะปะตะฝั‚ัƒ" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "ะ’ั‹ ัะดะตะปะฐะปะธ ั€ะตะฟะพัั‚" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "ะ ะตะฟะพัั‚ั‹ ัั‚ะพะณะพ ะฟะพัั‚ะฐ" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "ะŸะพะฒั‚ะพั€ัะตั‚ ะฟะพัะปะตะดะฝะตะต ะดะตะนัั‚ะฒะธะต, ะบะพั‚ะพั€ะพะต #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "ะ’ะพะทะฒั€ะฐั‰ะฐะตั‚ ะฝะฐ ะณะปะฐะฒะฝัƒัŽ ัั‚ั€ะฐะฝะธั†ัƒ" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "ะ’ะพะทะฒั€ะฐั‰ะฐะตั‚ ะบ ะฟั€ะตะดั‹ะดัƒั‰ะตะน ัั‚ั€ะฐะฝะธั†ะต" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "ะกะพั…ั€ะฐะฝะธั‚ัŒ ะธะทะผะตะฝะตะฝะธั" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "ะกะพั…ั€ะฐะฝะธั‚ัŒ QR-ะบะพะด" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "ะกะพั…ั€ะฐะฝะธั‚ัŒ ะฒ ะผะพะธ ะปะตะฝั‚ั‹" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "ะกะพั…ั€ะฐะฝั‘ะฝะฝั‹ะต ะปะตะฝั‚ั‹" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "ะกะพั…ั€ะฐะฝั‘ะฝะฝั‹ะต ะฟะพัั‚ั‹" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "ะกะพั…ั€ะฐะฝะตะฝะพ ะฒ ะฒะฐัˆะธ ะปะตะฝั‚ั‹" @@ -10520,8 +10520,8 @@ msgstr "ะกะพั…ั€ะฐะฝะตะฝะพ ะฒ ะฒะฐัˆะธ ะปะตะฝั‚ั‹" msgid "Say hello!" msgstr "ะกะบะฐะถะธ ะฟั€ะธะฒะตั‚!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "ะะฐัƒะบะฐ" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "ะŸั€ะพะปะธัั‚ะฐั‚ัŒ ะฒะฒะตั€ั…" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "ะŸะพะธัะบ" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "ะŸะพะธัะบ ะฟะพัั‚ะพะฒ @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "ะŸะพะธัะบ ะปะตะฝั‚, ะบะพั‚ะพั€ั‹ะต ะฒั‹ ั…ะพั‚ะธั‚ะต ะฟั€ะตะดะปะพะถะธั‚ัŒ ะดั€ัƒะณะธะผ." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "ะŸะพะธัะบ ะดั€ัƒะณะธั… ัƒั‡ะตั‚ะฝั‹ั… ะทะฐะฟะธัะตะน" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "ะะฐะนะดะธั‚ะต ะฑะพะปัŒัˆะต ะปะตะฝั‚" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "ะŸะพะธัะบ GIF-ั„ะฐะนะปะพะฒ" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ะฟะพัั‚ั‹ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปั #{tag}" msgid "See jobs at Bluesky" msgstr "ะŸะพัะผะพั‚ั€ะตั‚ัŒ ะฒะฐะบะฐะฝัะธะธ ะฒ Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "ะŸะพะดั€ะพะฑะฝะตะต" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "ะŸะพะปะทัƒะฝะพะบ ะฟะตั€ะตะผะตั‰ะตะฝะธั. ะ˜ัะฟะพะปัŒะทัƒะนั‚ะต ะบะปะฐะฒะธัˆะธ ัะพ ัั‚ั€ะตะปะบะฐะผะธ ะดะปั ะฟะตั€ะตะผะตั‰ะตะฝะธั ะฒะฟะตั€ั‘ะด ะธ ะฝะฐะทะฐะด ะธ ะฟั€ะพะฑะตะป ะดะปั ะฒะพัะฟั€ะพะธะทะฒะตะดะตะฝะธั/ะฟะฐัƒะทั‹" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "ะ’ั‹ะฑั€ะฐั‚ัŒ ั†ะฒะตั‚" @@ -10764,11 +10769,11 @@ msgstr "ะ’ั‹ะฑั€ะฐั‚ัŒ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ" msgid "Select an app language" msgstr "ะ’ั‹ะฑะตั€ะธั‚ะต ัะทั‹ะบ ะฟั€ะธะปะพะถะตะฝะธั" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "ะ’ั‹ะฑั€ะฐั‚ัŒ ะฐะฒะฐั‚ะฐั€" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "ะ’ั‹ะฑั€ะฐั‚ัŒ ัะผะพะดะทะธ" @@ -10780,12 +10785,13 @@ msgstr "ะ’ั‹ะฑะตั€ะธั‚ะต ะพะฟั†ะธัŽ" msgid "Select app language" msgstr "ะ’ั‹ะฑะตั€ะธั‚ะต ัะทั‹ะบ ะฟั€ะธะปะพะถะตะฝะธั" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "ะ’ั‹ะฑั€ะฐั‚ัŒ GIF" msgid "Select GIF \"{0}\"" msgstr "ะ’ั‹ะฑั€ะฐั‚ัŒ GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "ะ’ั‹ะฑะตั€ะธั‚ะต ะพัะฝะพะฒะฝะพะน ัะทั‹ะบ" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "ะ’ั‹ะฑั€ะฐั‚ัŒ ัะผะพะดะทะธ {emojiName} ะฒ ะบะฐั‡ะตัั‚ะฒะต ัะฒะพะตะณะพ ะฐะฒะฐั‚ะฐั€ะฐ" @@ -10945,7 +10951,8 @@ msgstr "ะžั‚ะฟั€ะฐะฒะธั‚ัŒ ัะพะพะฑั‰ะตะฝะธะต" msgid "Send post to {name}" msgstr "ะžั‚ะฟั€ะฐะฒะธั‚ัŒ ะฟะพัั‚ {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "ะžั‚ะฟั€ะฐะฒะธั‚ัŒ ะฟะพัั‚ ะฝะฐ..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "ะžั‚ะฟั€ะฐะฒัŒั‚ะต ะฟะธััŒะผะพ ั ะฟะพะดั‚ะฒะตั€ะถะดะตะฝะธะตะผ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "ะžั‚ะฟั€ะฐะฒะธั‚ัŒ ะปะธั‡ะฝั‹ะผ ัะพะพะฑั‰ะตะฝะธะตะผ" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "ะฃัั‚ะฐะฝะฐะฒะปะธะฒะฐะตั‚ ะฐะดั€ะตั ัะปะตะบั‚ั€ะพะฝะฝะพะน ะฟะพั‡ั‚ั‹ ะดะปั ัะฑั€ะพัะฐ ะฟะฐั€ะพะปั" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "ะะฐัั‚ั€ะพะนะบะธ" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "ะ’ัั‘ ั€ะฐะฒะฝะพ ะฟะพะดะตะปะธั‚ัŒัั" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "ะŸะพะดะตะปะธั‚ัŒัั DID ะฐะฒั‚ะพั€ะฐ" @@ -11127,7 +11134,7 @@ msgstr "ะŸะพะดะตะปะธั‚ัŒัั DID ะฐะฒั‚ะพั€ะฐ" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "ะ”ะธะฐะปะพะณะพะฒะพะต ะพะบะฝะพ ะพะฑะผะตะฝะฐ ััั‹ะปะบะฐะผะธ" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "ะŸะพะดะตะปะธั‚ัŒัั at:// URI ะฟะพัั‚ะฐ" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "ะŸะพะดะตะปะธั‚ัŒัั QR-ะบะพะดะพะผ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "ะŸะพะดะตะปะธั‚ัŒัั ัั‚ะพะน ะปะตะฝั‚ะพะน" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "ะŸะพะดะตะปะธั‚ัŒัั ัั‚ะธะผ ัั‚ะฐั€ั‚ะพะฒั‹ะผ ะฝะฐะฑะพั€ะพะผ" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "ะŸะพะดะตะปะธั‚ะตััŒ ัั‚ะธะผ ัั‚ะฐั€ั‚ะพะฒั‹ะผ ะฝะฐะฑะพั€ะพะผ ะธ ะฟะพะผะพะณะธั‚ะต ะปัŽะดัะผ ะฟั€ะธัะพะตะดะธะฝะธั‚ัŒัั ะบ ะฒะฐัˆะตะผัƒ ัะพะพะฑั‰ะตัั‚ะฒัƒ ะฝะฐ Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "ะขะตัั‚ะตั€ ะพะฑั‰ะธั… ะฝะฐัั‚ั€ะพะตะบ" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "ะŸะพะบะฐะทะฐั‚ัŒ" msgid "Show alt text" msgstr "ะŸะพะบะฐะทะฐั‚ัŒ ะฐะปัŒั‚ะตั€ะฝะฐั‚ะธะฒะฝั‹ะน ั‚ะตะบัั‚" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "ะ’ัั‘ ั€ะฐะฒะฝะพ ะฟะพะบะฐะทะฐั‚ัŒ" @@ -11274,9 +11281,9 @@ msgstr "ะ’ัั‘ ั€ะฐะฒะฝะพ ะฟะพะบะฐะทั‹ะฒะฐั‚ัŒ ัะฟะธัะพะบ" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "ะŸะพะบะฐะทะฐั‚ัŒ ะฑะพะปัŒัˆะต" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "ะŸะพะบะฐะทะฐั‚ัŒ ะฟั€ะตะดัƒะฟั€ะตะถะดะตะฝะธั ะธ ั„ะธะปัŒั‚ั€ะพะฒะฐั‚ัŒ msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "ะŸะพะบะฐะทั‹ะฒะฐะตั‚ ะธะฝั„ะพั€ะผะฐั†ะธัŽ ะพ ั‚ะพะผ, ะบะพะณะดะฐ ะฑั‹ะป ัะพะทะดะฐะฝ ัั‚ะพั‚ ะฟะพัั‚" @@ -11341,15 +11348,15 @@ msgstr "ะŸะพะบะฐะทั‹ะฒะฐะตั‚ ะธะฝั„ะพั€ะผะฐั†ะธัŽ ะพ ั‚ะพะผ, ะบะพะณะดะฐ ะฑั‹ะป msgid "Shows other accounts you can switch to" msgstr "ะŸะพะบะฐะทั‹ะฒะฐะตั‚ ะดั€ัƒะณะธะต ัƒั‡ั‘ั‚ะฝั‹ะต ะทะฐะฟะธัะธ, ะฝะฐ ะบะพั‚ะพั€ั‹ะต ะฒั‹ ะผะพะถะตั‚ะต ะฟะตั€ะตะบะปัŽั‡ะธั‚ัŒัั" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "ะŸะพะบะฐะทั‹ะฒะฐะตั‚ ัะพะดะตั€ะถะธะผะพะต" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "ะŸะพะบะฐะทั‹ะฒะฐะตั‚ ัะพะดะตั€ะถะธะผะพะต" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "ะ’ั‹ะนั‚ะธ?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "ะะตะพะฑั…ะพะดะธะผะพ ะฒะพะนั‚ะธ ะดะปั ะฟั€ะพัะผะพั‚ั€ะฐ" @@ -11469,7 +11476,7 @@ msgstr "ะŸั€ะพะฟัƒัั‚ะธั‚ัŒ" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "ะฃะผะตะฝัŒัˆะตะฝะฝั‹ะน" @@ -11499,7 +11506,7 @@ msgstr "ะžั‚ะปะพะถะธั‚ัŒ ะฝะฐะฟะพะผะธะฝะฐะฝะธะต" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "ะะตะบะพั‚ะพั€ั‹ะต ะธะท ะฒะฐัˆะธั… ะฒะตั€ะธั„ะธะบะฐั†ะธะน ะฝะตะดะตะนัั‚ะฒะธั‚ะตะปัŒะฝั‹." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "ะะตะบะพั‚ะพั€ั‹ะต ะดั€ัƒะณะธะต ะปะตะฝั‚ั‹, ะบะพั‚ะพั€ั‹ะต ะผะพะณัƒั‚ ะฒะฐะผ ะฟะพะฝั€ะฐะฒะธั‚ัŒัั" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "ะšั‚ะพ-ั‚ะพ ะพั‚ั€ะตะฐะณะธั€ะพะฒะฐะป {0}" @@ -11554,7 +11561,7 @@ msgstr "ะšั‚ะพ-ั‚ะพ ะพั‚ั€ะตะฐะณะธั€ะพะฒะฐะป {0}" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "ะงั‚ะพ-ั‚ะพ ะฟะพัˆะปะพ ะฝะต ั‚ะฐะบ, ะฟะพะถะฐะปัƒะนัั‚ะฐ, ะฟะพะฟั€ะพะฑัƒะนั‚ะต ะตั‰ั‘ ั€ะฐะท" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "ะงั‚ะพ-ั‚ะพ ะฟะพัˆะปะพ ะฝะต ั‚ะฐะบ. ะŸะพะถะฐะปัƒะนัั‚ะฐ, ะฟะพะฟั€ะพะฑัƒะนั‚ะต ะตั‰ั‘ ั€ะฐะท." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "ะงั‚ะพ-ั‚ะพ ะฝะต ั‚ะฐะบ? ะกะพะพะฑั‰ะธั‚ะต ะฝะฐะผ." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "ะกะฟะพั€ั‚" @@ -11668,7 +11675,7 @@ msgstr "ะะฐั‡ะฝะธั‚ะต ะฑะตัะตะดัƒ, ะธ ะพะฝะฐ ะฟะพัะฒะธั‚ัั ะทะดะตััŒ." msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "ะะฐั‡ะฐั‚ัŒ ะฝะพะฒั‹ะน ั‡ะฐั‚" @@ -11682,17 +11689,17 @@ msgstr "ะะฐั‡ะฝะธั‚ะต ะดะพะฑะฐะฒะปัั‚ัŒ ะปัŽะดะตะน" msgid "Start adding people!" msgstr "ะะฐั‡ะฝะธั‚ะต ะดะพะฑะฐะฒะปัั‚ัŒ ะปัŽะดะตะน!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "ะะฐั‡ะฐั‚ัŒ ะพะฑั‰ะฐั‚ัŒัั ั {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "ะกั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€" @@ -11715,12 +11722,16 @@ msgstr "ะกั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€ ะพั‚ ะฒะฐั" msgid "Starter pack is invalid" msgstr "ะกั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€ ะฝะตะดะตะนัั‚ะฒะธั‚ะตะปะตะฝ" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "ะะฐะฑะพั€ั‹" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "ะกั‚ะฐั€ั‚ะพะฒั‹ะต ะฝะฐะฑะพั€ั‹ ะฟะพะทะฒะพะปััŽั‚ ะปะตะณะบะพ ะดะตะปะธั‚ัŒัั ะปัŽะฑะธะผั‹ะผะธ ะปะตะฝั‚ะฐะผะธ ะธ ะปัŽะดัŒะผะธ ั ะดั€ัƒะทัŒัะผะธ." @@ -11728,7 +11739,7 @@ msgstr "ะกั‚ะฐั€ั‚ะพะฒั‹ะต ะฝะฐะฑะพั€ั‹ ะฟะพะทะฒะพะปััŽั‚ ะปะตะณะบะพ ะดะตะปะธั‚ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "ะกั‚ั€ะฐะฝะธั†ะฐ ัะพัั‚ะพัะฝะธั" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "ะจะฐะณ {0} ะธะท {1}" @@ -11754,7 +11765,7 @@ msgstr "ะฅั€ะฐะฝะธะปะธั‰ะต ะพั‡ะธั‰ะตะฝะพ, ั‚ะตะฟะตั€ัŒ ะฒะฐะผ ะฝัƒะถะฝะพ ะฟะตั€ msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "ะ˜ัั‚ะพั€ะธั" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "ะŸะพะดะฟะธัˆะธั‚ะตััŒ ะฝะฐ @{0}, ั‡ั‚ะพะฑั‹ ะธัะฟะพะปัŒะทะพะฒะฐั‚ัŒ ัั‚ะธ ะผะตั‚ะบะธ:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "ะ’ะตั€ะธั„ะธะบะฐั†ะธั ะฟั€ะพัˆะปะฐ ัƒัะฟะตัˆะฝะพ" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "ะŸั€ะตะดะปะพะถะตะฝะธั ะดะปั ะฒะฐั" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "ะ—ะฐะบะฐั‚" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "ะŸะตั€ะตะบะปัŽั‡ะธั‚ัŒัั ะฝะฐ {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "ะกะธัั‚ะตะผะฝั‹ะน" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "ะะฐะถะผะธั‚ะต, ั‡ั‚ะพะฑั‹ ะทะฐะบั€ั‹ั‚ัŒ ะบะพะฝั‚ะตะบัั‚ะฝะพะต ะผะตะฝ msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "ะะฐะถะผะธั‚ะต, ั‡ั‚ะพะฑั‹ ะฟั€ะพะฟัƒัั‚ะธั‚ัŒ" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "ะฆะตะปัŒ ะฒั‹ะฟะพะปะฝะตะฝะฐ - 10 ะฟะพะดะฟะธัะพะบ!" msgid "Task complete - 10 likes!" msgstr "ะฆะตะปัŒ ะฒั‹ะฟะพะปะฝะตะฝะฐ - 10 ะปะฐะนะบะพะฒ!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "ะžะฑัƒั‡ะธั‚ะต ะฝะฐัˆ ะฐะปะณะพั€ะธั‚ะผ ั‚ะพะผัƒ, ั‡ั‚ะพ ะฒะฐะผ ะฝั€ะฐะฒะธั‚ัั" @@ -12060,7 +12073,7 @@ msgstr "ะฃัะปะพะฒะธั" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "ะะต ัƒะดะฐะปะพััŒ ะฝะฐะนั‚ะธ ัั‚ะพั‚ ัั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "ะ’ะพั‚ ะธ ะฒัะต, ั€ะตะฑัั‚ะฐ!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "ะญั‚ะพ ะฒัั‘!" @@ -12216,7 +12229,7 @@ msgstr "ะŸะพั…ะพะถะต, ะฝะฐ ัะตั€ะฒะตั€ะต ะฒะพะทะฝะธะบะปะธ ะฟั€ะพะฑะปะตะผั‹. ะŸ msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "ะกั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€, ะบะพั‚ะพั€ั‹ะน ะฒั‹ ะฟั‹ั‚ะฐะตั‚ะตััŒ ะฟั€ะพัะผะพั‚ั€ะตั‚ัŒ, ะฝะตะดะตะนัั‚ะฒะธั‚ะตะปะตะฝ. ะ’ั‹ ะผะพะถะตั‚ะต ัƒะดะฐะปะธั‚ัŒ ัั‚ะพั‚ ัั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "ะ’ั‹ ะฒะฒะตะปะธ ะฝะตะฒะตั€ะฝั‹ะน ะบะพะด ะฟะพะดั‚ะฒะตั€ะถะดะตะฝะธั. ะŸะพ msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "ะขะตะผะฐั‚ะธั‡ะตัะบะธะน" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "ะŸั€ะธ ัะพะตะดะธะฝะตะฝะธะธ ั ัะตั€ะฒะตั€ะพะผ ะฒะพะทะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "ะ’ะพะทะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ัะพะตะดะธะฝะตะฝะธั ั ัะตั€ะฒะตั€ะพะผ, ะฟั€ะพะฒะตั€ัŒั‚ะต ะฟะพะดะบะปัŽั‡ะตะฝะธะต ะบ ะ˜ะฝั‚ะตั€ะฝะตั‚ัƒ ะธ ะฟะพะฒั‚ะพั€ะธั‚ะต ะฟะพะฟั‹ั‚ะบัƒ." @@ -12283,8 +12296,8 @@ msgstr "ะ’ะพะทะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ัะพะตะดะธะฝะตะฝะธั ั ัะตั€ะฒะตั€ะพ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "ะ’ะพะทะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ั ะทะฐะณั€ัƒะทะบะพะน ัƒะฒะตะดะพะผะปะตะฝะธะน. ะะฐะถะผะธั‚ะต ะทะดะตััŒ, ั‡ั‚ะพะฑั‹ ะฟะพะฒั‚ะพั€ะธั‚ัŒ ะฟะพะฟั‹ั‚ะบัƒ." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "ะ’ะพะทะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ั ะทะฐะณั€ัƒะทะบะพะน ะฟะพัั‚ะพะฒ. ะะฐะถะผะธั‚ะต ะทะดะตััŒ, ั‡ั‚ะพะฑั‹ ะฟะพะฒั‚ะพั€ะธั‚ัŒ ะฟะพะฟั‹ั‚ะบัƒ." @@ -12309,7 +12322,7 @@ msgstr "ะ’ะพะทะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ั ะทะฐะณั€ัƒะทะบะพะน ะธะฝั„ะพั€ะผะฐั† msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "ะ’ะพะทะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ั ัƒะดะฐะปะตะฝะธะตะผ ัั‚ะพะน ะปะตะฝั‚ั‹. ะŸั€ะพะฒะตั€ัŒั‚ะต ะฟะพะดะบะปัŽั‡ะตะฝะธะต ะบ ะ˜ะฝั‚ะตั€ะฝะตั‚ัƒ ะธ ะฟะพะฒั‚ะพั€ะธั‚ะต ะฟะพะฟั‹ั‚ะบัƒ." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "ะญั‚ะธ ะฝะฐัั‚ั€ะพะนะบะธ ะฟั€ะธะผะตะฝะธะผั‹ ั‚ะพะปัŒะบะพ ะบ ะปะตะฝั‚ะต msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "ะญั‚ะพั‚ {screenDescription} ะฑั‹ะป ะฟะพะผะตั‡ะตะฝ:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "ะฃ ัั‚ะพะน ัƒั‡ั‘ั‚ะฝะพะน ะทะฐะฟะธัะธ ะฝะตัะบะพะปัŒะบะพ ะฟะพะฟั‹ั‚ะพะบ ะฒะตั€ะธั„ะธะบะฐั†ะธะธ, ะฝะพ ะฟะพะบะฐ ั‡ั‚ะพ ะพะฝะฐ ะฝะต ะฒะตั€ะธั„ะธั†ะธั€ะพะฒะฐะฝะฐ." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "ะญั‚ะพั‚ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปัŒ ัƒะบะฐะทะฐะป, ั‡ั‚ะพ ะฝะต ั…ะพั‡ะตั‚, ั‡ั‚ะพะฑั‹ ะตะณะพ ะฟั€ะพั„ะธะปัŒ ะฒะธะดะตะปะธ ะฟะพัะตั‚ะธั‚ะตะปะธ ะฑะตะท ัƒั‡ั‘ั‚ะฝะพะน ะทะฐะฟะธัะธ." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "ะญั‚ะฐ ะปะตะฝั‚ะฐ ะฟัƒัั‚ะฐ! ะ’ะพะทะผะพะถะฝะพ, ะฒะฐะผ ะฝัƒะถะฝะพ ะฟะพะดะฟะธัะฐั‚ัŒัั ะฝะฐ ะฑะพะปัŒัˆะตะต ะบะพะปะธั‡ะตัั‚ะฒะพ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปะตะน ะธะปะธ ะธะทะผะตะฝะธั‚ัŒ ะฝะฐัั‚ั€ะพะนะบะธ ัะทั‹ะบะฐ." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "ะญั‚ะฐ ะปะตะฝั‚ะฐ ะฟัƒัั‚ะฐ." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "ะญั‚ะพั‚ ะฟัะตะฒะดะพะฝะธะผ ะทะฐั€ะตะทะตั€ะฒะธั€ะพะฒะฐะฝ. ะŸะพะถะฐะปัƒะนัั‚ะฐ, ะฟะพะฟั€ะพะฑัƒะนั‚ะต ะดั€ัƒะณะพะน." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "ะญั‚ะฐ ะผะตั‚ะบะฐ ะฑั‹ะปะฐ ะฟั€ะธะผะตะฝะตะฝะฐ ะฒะฐะผะธ." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "ะญั‚ะพั‚ ะผะฐั€ะบะธั€ะพะฒั‰ะธะบ ะตั‰ั‘ ะฝะต ะทะฐัะฒะธะป, ะบะฐะบะธะต ะผะตั‚ะบะธ ะพะฝ ะฟัƒะฑะปะธะบัƒะตั‚, ะธ ะผะพะถะตั‚ ะฑั‹ั‚ัŒ ะฝะตะฐะบั‚ะธะฒะฝั‹ะผ." @@ -12621,13 +12634,13 @@ msgstr "ะญั‚ะพั‚ ัะฟะธัะพะบ ะฟัƒัั‚." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "ะญั‚ะพั‚ ะฟะพัั‚ ัƒั‚ะฒะตั€ะถะดะฐะตั‚, ั‡ั‚ะพ ะฑั‹ะป ัะพะทะดะฐะฝ <0>{0}, ะฝะพ ะฒะฟะตั€ะฒั‹ะต ะฑั‹ะป ะทะฐะผะตั‡ะตะฝ Bluesky <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "ะญั‚ะพั‚ ะฟะพัั‚ ัƒั‚ะฒะตั€ะถะดะฐะตั‚, ั‡ั‚ะพ ะฑั‹ะป ัะพะทะดะฐะฝ <0>{0 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "ะญั‚ะพั‚ ะฟะพัั‚ ะธะผะตะตั‚ ะฝะตะธะทะฒะตัั‚ะฝั‹ะน ั‚ะธะฟ ะพะณั€ะฐะฝะธั‡ะตะฝะธั ะฝะฐ ะพั‚ะฒะตั‚ั‹. ะ’ะพะทะผะพะถะฝะพ, ะฒะฐัˆะต ะฟั€ะธะปะพะถะตะฝะธะต ัƒัั‚ะฐั€ะตะปะพ." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "ะญั‚ะพั‚ ะฟะพัั‚ ะฑัƒะดะตั‚ ัะบั€ั‹ั‚ ะธะท ะปะตะฝั‚ ะธ ั‚ะตะผ. ะญั‚ะพ ะฝะตะฒะพะทะผะพะถะฝะพ ะพั‚ะผะตะฝะธั‚ัŒ." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "ะะฒั‚ะพั€ ัั‚ะพะณะพ ะฟะพัั‚ะฐ ะพั‚ะบะปัŽั‡ะธะป ั†ะธั‚ะธั€ะพะฒะฐะฝะธะต ะฟะพัั‚ะพะฒ." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "ะฃ ัั‚ะพะณะพ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปั ะฝะตั‚ ะพั‚ะพะฑั€ะฐะถะฐะตะผะพะณะพ ะธะผะตะฝะธ, ะฟะพัั‚ะพะผัƒ ะตะณะพ ะฝะตะปัŒะทั ะฒะตั€ะธั„ะธั†ะธั€ะพะฒะฐั‚ัŒ." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "ะฃ ัั‚ะพะณะพ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปั ะตั‰ั‘ ะฝะตั‚ ะฝะธ ะพะดะฝะพะณะพ ะฟะพะดะฟะธัั‡ะธะบะฐ." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "ะญั‚ะพั‚ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปัŒ ะทะฐะฑะปะพะบะธั€ะพะฒะฐะป ะฒะฐั. ะ’ั‹ ะฝะต ะผะพะถะตั‚ะต ะฒะธะดะตั‚ัŒ ะธั… ะฟะพัั‚ั‹." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "ะญั‚ะพั‚ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปัŒ ะตัั‚ัŒ ะฒ ัะฟะธัะบะต <0>{0}, msgid "This user is new here. Press for more info about when they joined." msgstr "ะญั‚ะพั‚ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปัŒ ะทะดะตััŒ ะฝะตะดะฐะฒะฝะพ. ะะฐะถะผะธั‚ะต ะดะปั ะฟะพะปัƒั‡ะตะฝะธั ะดะพะฟะพะปะฝะธั‚ะตะปัŒะฝะพะน ะธะฝั„ะพั€ะผะฐั†ะธะธ ะพ ั‚ะพะผ, ะบะพะณะดะฐ ะพะฝ ะฟั€ะธัะพะตะดะธะฝะธะปัั." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "ะญั‚ะพั‚ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปัŒ ะฝะต ะฟะพะดะฟะธัะฐะฝ ะฝะธ ะฝะฐ ะบะพะณะพ." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "ะญั‚ะพ ัƒะดะฐะปะธั‚ @{0} ะธะท ัะฟะธัะบะฐ ะฑั‹ัั‚ั€ะพะณะพ ะดะพัั‚ัƒะฟะฐ." @@ -12786,7 +12801,7 @@ msgstr "ะะฐัั‚ั€ะพะนะบะธ ะฒะตั‚ะพะบ" msgid "Threaded" msgstr "ะšะฐะบ ะฒะตั‚ะบะธ" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "ะะฐัั‚ั€ะพะนะบะธ ะฒะตั‚ะพะบ" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "ะ›ัƒั‡ัˆะตะต" @@ -12858,7 +12873,7 @@ msgstr "ะ›ัƒั‡ัˆะตะต" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "ะขะตะผะฐ" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "ะ”ะตั€ะตะฒะพะฒะธะดะฝั‹ะน ะฒะธะด" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "ะะบั‚ัƒะฐะปัŒะฝั‹ะต" @@ -12902,13 +12919,15 @@ msgstr "ะะบั‚ัƒะฐะปัŒะฝั‹ะต" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "ะะบั‚ัƒะฐะปัŒะฝั‹ะต ะฒะธะดะตะพ" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "ะ”ะพะฒะตั€ะธะต ั€ะพะถะดะฐะตั‚ัั ะฒ ะพั‚ะฝะพัˆะตะฝะธัั…, ัะพะพะฑั‰ะตัั‚ะฒะฐั… ะธ ะพะฑั‰ะตะผ ะบะพะฝั‚ะตะบัั‚ะต, ะฟะพัั‚ะพะผัƒ ะผั‹ ั‚ะฐะบะถะต ะฒะฒะพะดะธะผ <0>ะดะพะฒะตั€ะตะฝะฝั‹ั… ะฒะตั€ะธั„ะธะบะฐั‚ะพั€ะพะฒ โ€” ะพั€ะณะฐะฝะธะทะฐั†ะธะธ, ะบะพั‚ะพั€ั‹ะต ะผะพะณัƒั‚ ะฝะตะฟะพัั€ะตะดัั‚ะฒะตะฝะฝะพ ะฒั€ัƒั‡ะฐั‚ัŒ ะฒะตั€ะธั„ะธะบะฐั†ะธัŽ." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "ะะตะดะพัั‚ัƒะฟะฝะพ" msgid "Unavailable feed information" msgstr "ะ˜ะฝั„ะพั€ะผะฐั†ะธั ะพ ะปะตะฝั‚ะต ะฝะตะดะพัั‚ัƒะฟะฝะฐ" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "ะ ะฐะทะฑะปะพะบะธั€ะพะฒะฐั‚ัŒ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ?" msgid "Unblock list" msgstr "ะ ะฐะทะฑะปะพะบะธั€ะพะฒะฐั‚ัŒ ัะฟะธัะพะบ" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "ะžั‚ะฟะธัะฐั‚ัŒัั ะพั‚ {0}" msgid "Unfollow account" msgstr "ะžั‚ะฟะธัะฐั‚ัŒัั ะพั‚ ัƒั‡ั‘ั‚ะฝะพะน ะทะฐะฟะธัะธ" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "ะžั‚ะฟะธัะฐั‚ัŒัั ะพั‚ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปั" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "ะ”ะธะทะปะฐะนะบ" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "ะŸะตั€ะตัั‚ะฐั‚ัŒ ะธะณะฝะพั€ะธั€ะพะฒะฐั‚ัŒ ะฒะตั‚ะบัƒ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "ะ’ะบะปัŽั‡ะธั‚ัŒ ะทะฒัƒะบ ะฒะธะดะตะพ" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "ะžั‚ะบั€ะตะฟะธั‚ัŒ" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "ะžั‚ะบั€ะตะฟะธั‚ัŒ ะปะตะฝั‚ัƒ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "ะžั‚ะบั€ะตะฟะธั‚ัŒ ะพั‚ ะณะปะฐะฒะฝะพะน ัั‚ั€ะฐะฝะธั†ั‹" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "ะžั‚ะบั€ะตะฟะธั‚ัŒ ัะฟะธัะพะบ ะผะพะดะตั€ะฐั†ะธะธ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "ะžั‚ะบั€ะตะฟะปะตะฝะพ {0} ะพั‚ ะณะปะฐะฒะฝะพะน ัั‚ั€ะฐะฝะธั†ั‹" @@ -13258,11 +13279,11 @@ msgstr "ะžั‚ะฟะธัะฐั‚ัŒัั ะพั‚ ัั‚ะพะณะพ ะผะฐั€ะบะธั€ะพะฒั‰ะธะบะฐ" msgid "Unsubscribed from list" msgstr "ะŸะพะดะฟะธัะบะฐ ะฝะฐ ัะฟะธัะพะบ ะพั‚ะผะตะฝะตะฝะฐ" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "ะะต ัƒะดะฐะปะพััŒ ะธะทะผะตะฝะธั‚ัŒ ะฒะธะดะธะผะพัั‚ัŒ ะพั‚ะฒะตั‚ะฐ" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "ะ—ะฐะณั€ัƒะทะธั‚ัŒ ะฒะผะตัั‚ะพ ัั‚ะพะณะพ ั„ะพั‚ะพะณั€ะฐั„ะธัŽ" @@ -13355,7 +13376,7 @@ msgstr "ะ—ะฐะณั€ัƒะทะธั‚ัŒ ะธะท ั„ะฐะนะปะพะฒ" msgid "Upload from Library" msgstr "ะ—ะฐะณั€ัƒะทะธั‚ัŒ ะธะท ะฑะธะฑะปะธะพั‚ะตะบะธ" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "ะ—ะฐะณั€ัƒะทะบะฐ ะธะทะพะฑั€ะฐะถะตะฝะธะน..." msgid "Uploading link thumbnail..." msgstr "ะ—ะฐะณั€ัƒะทะบะฐ ะผะธะฝะธะฐั‚ัŽั€ั‹ ััั‹ะปะบะธ..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "ะ—ะฐะณั€ัƒะทะบะฐ ะฒะธะดะตะพ..." @@ -13408,7 +13429,7 @@ msgstr "ะ˜ัะฟะพะปัŒะทัƒะนั‚ะต ะตะณะพ ะดะปั ะฒั…ะพะดะฐ ะฒ ะดั€ัƒะณะพะต ะฟั€ะธะป msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "ะ’ะตั€ะธั„ะธะบะฐั†ะธั ะฝะต ัƒะดะฐะปะฐััŒ, ะฟะพะฟั€ะพะฑัƒะนั‚ะต ะตั‰ั‘ msgid "Verification settings" msgstr "ะะฐัั‚ั€ะพะนะบะธ ะฒะตั€ะธั„ะธะบะฐั†ะธะธ" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "ะะฐัั‚ั€ะพะนะบะธ ะฒะตั€ะธั„ะธะบะฐั†ะธะธ" @@ -13618,34 +13639,34 @@ msgstr "ะ’ะธะดะตะพ" msgid "Video failed to process" msgstr "ะะต ัƒะดะฐะปะพััŒ ะพะฑั€ะฐะฑะพั‚ะฐั‚ัŒ ะฒะธะดะตะพ" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "ะ›ะตะฝั‚ะฐ ะฒะธะดะตะพ" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "ะ’ะธะดะตะพ ะพั‚ {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "ะ’ะธะดะตะพะธะณั€ั‹" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "ะ’ะธะดะตะพ ะฟั€ะธะพัั‚ะฐะฝะพะฒะปะตะฝะพ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "ะ’ะธะดะตะพ ะฒะพัะฟั€ะพะธะทะฒะพะดะธั‚ัั" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "ะ’ะธะดะตะพ ะฝะต ะฝะฐะนะดะตะฝะพ." @@ -13653,7 +13674,7 @@ msgstr "ะ’ะธะดะตะพ ะฝะต ะฝะฐะนะดะตะฝะพ." msgid "Video settings" msgstr "ะะฐัั‚ั€ะพะนะบะธ ะฒะธะดะตะพ" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "ะ’ะธะดะตะพ ะทะฐะณั€ัƒะถะตะฝะพ" @@ -13662,17 +13683,17 @@ msgstr "ะ’ะธะดะตะพ ะทะฐะณั€ัƒะถะตะฝะพ" msgid "Video: {0}" msgstr "ะ’ะธะดะตะพ: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "ะ’ะธะดะตะพ" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ะฐะฒะฐั‚ะฐั€ {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "ะŸะพัะผะพั‚ั€ะตั‚ัŒ ะฟั€ะพั„ะธะปัŒ {0}" @@ -13724,13 +13745,13 @@ msgstr "ะŸะพัะผะพั‚ั€ะตั‚ัŒ ะทะฐะฟะธััŒ ะฒ ะฑะปะพะณะต ะดะปั ะฟะพะปัƒั‡ะตะฝะธ msgid "View debug entry" msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ะทะฐะฟะธััŒ ะดะปั ะพั‚ะปะฐะดะบะธ" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ะดะตั‚ะฐะปะธ" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ะฒะตั‚ะบัƒ ะฟะพะปะฝะพัั‚ัŒัŽ" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ะธะฝั„ะพั€ะผะฐั†ะธัŽ ะพ ะผะตั‚ะบะฐั…" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "ะŸะพะบะฐะทะฐั‚ัŒ ะฑะพะปัŒัˆะต" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "ะŸั€ะพัะผะพั‚ั€ ัƒัะปัƒะณ ะผะฐั€ะบะธั€ะพะฒะบะธ, ะบะพั‚ะพั€ั‹ะน ะฟั€ะตะดะพัั‚ะฐะฒะปัะตั‚ @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ะฒะตั€ะธั„ะธะบะฐั†ะธะธ ัั‚ะพะณะพ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปั" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "ะŸั€ะพัะผะพั‚ั€ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปะตะน, ะบะพั‚ะพั€ั‹ะผ ะฟะพะฝั€ะฐะฒะธะปะฐััŒ ัั‚ะฐ ะปะตะฝั‚ะฐ" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "ะŸะพัะผะพั‚ั€ะตั‚ัŒ ะฒะธะดะตะพ" @@ -13831,7 +13852,7 @@ msgstr "ะŸั€ะพัะผะพั‚ั€ ัะฒะพะตะณะพ ัะฟะธัะบะฐ ะผะพะดะตั€ะฐั†ะธะธ" msgid "View your muted accounts" msgstr "ะŸั€ะพัะผะพั‚ั€ ะพั‚ะบะปัŽั‡ั‘ะฝะฝั‹ั… ัƒั‡ั‘ั‚ะฝั‹ั… ะทะฐะฟะธัะตะน" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ัะฒะพะธ ะฒะตั€ะธั„ะธะบะฐั†ะธะธ" @@ -13840,7 +13861,7 @@ msgstr "ะŸั€ะพัะผะพั‚ั€ะตั‚ัŒ ัะฒะพะธ ะฒะตั€ะธั„ะธะบะฐั†ะธะธ" msgid "Views full image" msgstr "ะŸั€ะพัะผะพั‚ั€ ะฟะพะปะฝะพะณะพ ะธะทะพะฑั€ะฐะถะตะฝะธั" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "ะŸั€ะพัะผะพั‚ั€ ะฒะธะดะตะพ ะฒ ั€ะตะถะธะผะต ะฟะพะณั€ัƒะถะตะฝะธั" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "ะฃ ะฝะฐั ะฟั€ะพะฑะปะตะผั‹ ั ัะตั‚ัŒัŽ, ะฟะพะฟั€ะพะฑัƒะนั‚ะต ะตั‰ั‘ ั€ะฐะท" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "ะœั‹ ะฟั€ะตะดัั‚ะฐะฒะปัะตะผ ะฝะพะฒั‹ะน ัƒั€ะพะฒะตะฝัŒ ะฒะตั€ะธั„ะธะบะฐั†ะธะธ ะฝะฐ Bluesky โ€” ะฟั€ะพัั‚ั‹ะต ะธ ะฟะพะฝัั‚ะฝั‹ะต ะณะฐะปะพั‡ะบะธ." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "ะะฐะผ ะพั‡ะตะฝัŒ ะถะฐะปัŒ, ะฝะพ ะฝะฐะผ ะฝะต ัƒะดะฐะปะพััŒ ะฝะฐะนั‚ะธ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "ะะฐะผ ะพั‡ะตะฝัŒ ะถะฐะปัŒ, ะผั‹ ะฝะต ัะผะพะณะปะธ ัะตะนั‡ะฐั ะทะฐะณั€ัƒะทะธั‚ัŒ ะฒะฐัˆะธ ะธะณะฝะพั€ะธั€ัƒะตะผั‹ะต ัะปะพะฒะฐ. ะŸะพะถะฐะปัƒะนัั‚ะฐ, ะฟะพะฟั€ะพะฑัƒะนั‚ะต ะตั‰ั‘ ั€ะฐะท." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "ะะฐะผ ะพั‡ะตะฝัŒ ะถะฐะปัŒ! ะŸะพัั‚, ะฝะฐ ะบะพั‚ะพั€ั‹ะน ะฒั‹ ะพั‚ะฒะตั‡ะฐะตั‚ะต, ะฑั‹ะป ัƒะดะฐะปะตะฝ." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "ะšะฐะบ ะดะตะปะฐ?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "ะšั‚ะพ ะผะพะถะตั‚ ะฒะตั€ะธั„ะธั†ะธั€ะพะฒะฐั‚ัŒ?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "ะžะฟะฐะฝัŒะบะธ!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "ะะฐะฟะธัะฐั‚ัŒ ะฟะพัั‚" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "ะะฐะฟะธัะฐั‚ัŒ ะพั‚ะฒะตั‚" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "ะ’ั‹ ะฑะพะปัŒัˆะต ะฝะต ะฒ ะฟั€ัะผะพะผ ัั„ะธั€ะต" msgid "You are not allowed to upload videos." msgstr "ะ’ั‹ ะฝะต ะผะพะถะตั‚ะต ะทะฐะณั€ัƒะถะฐั‚ัŒ ะฒะธะดะตะพ." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "ะ’ั‹ ะฒะตั€ะธั„ะธั†ะธั€ะพะฒะฐะฝั‹. ะ’ั‹ ะฟะพั‚ะตั€ัะตั‚ะต ัั‚ะฐั‚ัƒั msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "ะ’ั‹ ะฒะตั€ะธั„ะธั†ะธั€ะพะฒะฐะฝั‹. ะ’ั‹ ะฟะพั‚ะตั€ัะตั‚ะต ัั‚ะฐั‚ัƒั ะฒะตั€ะธั„ะธะบะฐั†ะธะธ, ะตัะปะธ ะธะทะผะตะฝะธั‚ะต ะฒะฐัˆ ะฟัะตะฒะดะพะฝะธะผ. <0>ะฃะทะฝะฐั‚ัŒ ะฑะพะปัŒัˆะต." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "ะ’ั‹ ะฒัะตะณะดะฐ ะผะพะถะตั‚ะต ะธะทะผะตะฝะธั‚ัŒ ัะฒะพะธ ะธะฝั‚ะตั€ะตัั‹ ะฒ ั€ะฐะทะดะตะปะต ะฝะฐัั‚ั€ะพะตะบ \"ะกะพะดะตั€ะถะธะผะพะต ะธ ะผะตะดะธะฐ\"." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "ะขะตะฟะตั€ัŒ ะฒั‹ ะผะพะถะตั‚ะต ะฒะพะนั‚ะธ ั ะฟะพะผะพั‰ัŒัŽ ะฝะพะฒะพะณะพ ะฟะฐั€ะพะปั." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "ะ’ั‹ ะผะพะถะตั‚ะต ะพะฑะฝะพะฒะธั‚ัŒ ัั‚ะพ ะฟะพะทะถะต ะฒ ัะฒะพะธั… ะฝะฐัั‚ั€ะพะนะบะฐั…." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "ะ’ั‹ ัƒัะฟะตัˆะฝะพ ะฟั€ะพะฒะตั€ะธะปะธ ัะฒะพะน ะฐะดั€ะตั ัะปะตะบั‚ั€ msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "ะ’ั‹ ะดะพัั‚ะธะณะปะธ ะฒั€ะตะผะตะฝะฝะพะณะพ ะปะธะผะธั‚ะฐ ะฟะพ ะทะฐะณั€ัƒะทะบะฐะผ ะฒะธะดะตะพ. ะŸะพะฟั€ะพะฑัƒะนั‚ะต ะตั‰ั‘ ั€ะฐะท ะฟะพะทะถะต." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "ะ’ั‹ ะตั‰ั‘ ะฝะต ัะพะทะดะฐะปะธ ัั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€!" @@ -14614,7 +14640,7 @@ msgstr "ะ’ั‹ ะผะพะถะตั‚ะต ะดะพะฑะฐะฒะธั‚ัŒ ะปะธัˆัŒ ะดะพ {STARTER_PACK_MAX_SIZE, msgid "You may only add up to 3 feeds" msgstr "ะ’ั‹ ะผะพะถะตั‚ะต ะดะพะฑะฐะฒะธั‚ัŒ ะฝะต ะฑะพะปะตะต 3 ะปะตะฝั‚" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "ะงั‚ะพะฑั‹ ะฟะพะปัƒั‡ะธั‚ัŒ ัั‚ะฐั€ั‚ะพะฒั‹ะน ะฝะฐะฑะพั€, ะฒั‹ ะดะพะปะถะฝั‹ ะฟะพะดะฟะธัะฐั‚ัŒัั ะบะฐะบ ะผะธะฝะธะผัƒะผ ะฝะฐ ัะตะผัŒ ะดั€ัƒะณะธั… ะปัŽะดะตะน." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "ะงั‚ะพะฑั‹ ะฒะบะปัŽั‡ะธั‚ัŒ ั„ัƒะฝะบั†ะธัŽ 2FA, ะฝะตะพะฑั…ะพะดะธะผะพ ะฟะพะดั‚ะฒะตั€ะดะธั‚ัŒ ะฐะดั€ะตั ัะปะตะบั‚ั€ะพะฝะฝะพะน ะฟะพั‡ั‚ั‹." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "ะ’ั‹ ะพั‚ั€ะตะฐะณะธั€ะพะฒะฐะปะธ {0}" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "ะ’ั‹ ะฑัƒะดะตั‚ะต ะฟะพะดะฟะธัะฐะฝั‹ ะฝะฐ ะฟั€ะตะดะปะพะถะตะฝะฝั‹ั… ะฟะพะปัŒะทะพะฒะฐั‚ะตะปะตะน ะธ ะปะตะฝั‚ั‹, ะบะฐะบ ั‚ะพะปัŒะบะพ ัะพะทะดะฐะดะธั‚ะต ัะฒะพัŽ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "ะ’ั‹ ะฑัƒะดะตั‚ะต ะฟะพะดะฟะธัะฐะฝั‹ ะฝะฐ ะฟั€ะตะดะปะพะถะตะฝะฝั‹ั… ะฟะพะปัŒะทะพะฒะฐั‚ะตะปะตะน, ะบะฐะบ ั‚ะพะปัŒะบะพ ัะพะทะดะฐะดะธั‚ะต ัะฒะพัŽ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ะ’ะฐัˆะฐ ะดะพะผะฐัˆะฝัั ะปะตะฝั‚ะฐ ะทะฐะบะพะฝั‡ะธะปะฐััŒ! ะŸะพะดะฟะธัˆะธั‚ะตััŒ ะฝะฐ ะฑะพะปัŒัˆะต ัƒั‡ั‘ั‚ะฝั‹ั… ะทะฐะฟะธัะตะน ั‡ั‚ะพะฑั‹ ะฟะพะปัƒั‡ะฐั‚ัŒ ะฑะพะปัŒัˆะต ะฟะพัั‚ะพะฒ." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "ะ’ั‹ ะดะพัั‚ะธะณะปะธ ะผะฐะบัะธะผะฐะปัŒะฝะพ ะดะพะฟัƒัั‚ะธะผะพะณะพ ะบะพะปะธั‡ะตัั‚ะฒะฐ ะทะฐะฟั€ะพัะพะฒ. ะŸะพะฒั‚ะพั€ะธั‚ะต ะฟะพะฟั‹ั‚ะบัƒ ะฟะพะทะถะต." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "ะ’ั‹ ะดะพัั‚ะธะณะปะธ ะดะฝะตะฒะฝะพะณะพ ะปะธะผะธั‚ะฐ ะฟะพ ะทะฐะณั€ัƒะทะบ msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "ะ’ั‹ ะดะพัั‚ะธะณะปะธ ะดะฝะตะฒะฝะพะณะพ ะปะธะผะธั‚ะฐ ะฟะพ ะทะฐะณั€ัƒะทะบะฐะผ ะฒะธะดะตะพ (ัะปะธัˆะบะพะผ ะผะฝะพะณะพ ะฒะธะดะตะพ)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "ะฃ ะฒะฐั ะทะฐะบะพะฝั‡ะธะปะธััŒ ะฒะธะดะตะพ ะดะปั ะฟั€ะพัะผะพั‚ั€ะฐ. ะœะพะถะตั‚ ะฑั‹ั‚ัŒ, ัะตะนั‡ะฐั ัะฐะผะพะต ะฒั€ะตะผั ัะดะตะปะฐั‚ัŒ ะฟะตั€ะตั€ั‹ะฒ?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "ะ’ะฐัˆะฐ ัƒั‡ั‘ั‚ะฝะฐั ะทะฐะฟะธััŒ" @@ -14835,11 +14861,11 @@ msgstr "ะ’ะฐัˆะฐ ัƒั‡ั‘ั‚ะฝะฐั ะทะฐะฟะธััŒ ะฑั‹ะปะฐ ะฟั€ะธะพัั‚ะฐะฝะพะฒะปะตะฝ msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "ะ’ะฐัˆะฐ ัƒั‡ั‘ั‚ะฝะฐั ะทะฐะฟะธััŒ ัะพะทะดะฐะฝะฐ ะตั‰ั‘ ะฝะตะดะพัั‚ะฐั‚ะพั‡ะฝะพ ะดะฐะฒะฝะพ, ั‡ั‚ะพะฑั‹ ะฒั‹ ะผะพะณะปะธ ะทะฐะณั€ัƒะถะฐั‚ัŒ ะฒะธะดะตะพ. ะŸะพะฟั€ะพะฑัƒะนั‚ะต ะตั‰ั‘ ั€ะฐะท ะฟะพะทะถะต." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "ะะต ัƒะดะฐะปะพััŒ ั€ะฐัะฟะพะทะฝะฐั‚ัŒ ะฐะดั€ะตั ัะปะตะบั‚ั€ะพะฝะฝะพะน ะฟะพั‡ั‚ั‹." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "ะ’ะฐัˆะธ ะธะฝั‚ะตั€ะตัั‹ ะฑั‹ะปะธ ะธะทะผะตะฝะตะฝั‹!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "ะ’ะฐัˆะธ ะธะฝั‚ะตั€ะตัั‹ ะฟะพะผะพะณะฐัŽั‚ ะฝะฐะผ ะฝะฐะนั‚ะธ ั‚ะพ, ั‡ั‚ะพ ะฒะฐะผ ะฝั€ะฐะฒะธั‚ัั!" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "ะ’ะฐัˆ ะฟะฐั€ะพะปัŒ ะดะพะปะถะตะฝ ัะพัั‚ะพัั‚ัŒ ะฝะต ะผะตะฝะตะต ั‡ะตะผ ะธะท 8 ัะธะผะฒะพะปะพะฒ." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "ะ’ะฐัˆ ะฟั€ะตะดะฟะพั‡ั‚ะธั‚ะตะปัŒะฝั‹ะน ัะทั‹ะบ" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "ะ’ะฐัˆะฐ ั„ะพั‚ะพะณั€ะฐั„ะธั ะฒ ะฟั€ะพั„ะธะปะต, ะพะบั€ัƒะถะตะฝะฝะฐั ะบะพะฝั†ะตะฝั‚ั€ะธั‡ะตัะบะธะผะธ ะบั€ัƒะณะฐะผะธ ั ั„ะพั‚ะพะณั€ะฐั„ะธัะผะธ ะดั€ัƒะณะธั… ะฟะพะปัŒะทะพะฒะฐั‚ะตะปะตะน" @@ -14992,7 +15018,7 @@ msgstr "ะ’ะฐัˆะฐ ั„ะพั‚ะพะณั€ะฐั„ะธั ะฒ ะฟั€ะพั„ะธะปะต, ะพะบั€ัƒะถะตะฝะฝะฐั ะบ msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "ะ’ะฐัˆ ะฟั€ะพั„ะธะปัŒ, ะฟะพัั‚ั‹, ะปะตะฝั‚ั‹ ะธ ัะฟะธัะบะธ ะฑะพะปัŒัˆะต ะฝะต ะฑัƒะดัƒั‚ ะฒะธะดะฝั‹ ะดั€ัƒะณะธะผ ะฟะพะปัŒะทะพะฒะฐั‚ะตะปัะผ Bluesky. ะ’ั‹ ะผะพะถะตั‚ะต ั€ะตะฐะบั‚ะธะฒะธั€ะพะฒะฐั‚ัŒ ัะฒะพัŽ ัƒั‡ั‘ั‚ะฝัƒัŽ ะทะฐะฟะธััŒ ะฒ ะปัŽะฑะพะต ะฒั€ะตะผั, ะฒะพะนะดั ะฒ ัะธัั‚ะตะผัƒ." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "ะ’ะฐัˆ ะพั‚ะฒะตั‚ ะฑั‹ะป ะพั‚ะฟั€ะฐะฒะปะตะฝ" @@ -15005,7 +15031,7 @@ msgstr "ะ’ะฐัˆะฐ ะถะฐะปะพะฑะฐ ะฑัƒะดะตั‚ ะพั‚ะฟั€ะฐะฒะปะตะฝะฐ ะฝะฐ ะฐะดั€ะตั <0 msgid "Your selected interests help us serve you content you care about." msgstr "ะ’ั‹ะฑั€ะฐะฝะฝั‹ะต ะฒะฐะผะธ ะธะฝั‚ะตั€ะตัั‹ ะฟะพะผะพะณะฐัŽั‚ ะฝะฐะผ ะฟั€ะตะดะพัั‚ะฐะฒะปัั‚ัŒ ะฒะฐะผ ัะพะดะตั€ะถะธะผะพะต, ะบะพั‚ะพั€ะพะต ะฒะฐั ะธะฝั‚ะตั€ะตััƒะตั‚." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/sv/messages.po b/src/locale/locales/sv/messages.po index 3d8eb12170..f8ac4db3d8 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorin โ€{interestsDisplayName}โ€ (aktiv)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(dolt blockerat meddelande)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(innehรฅller inbรคddat innehรฅll)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(raderat meddelande)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(ogiltig inbjudningslรคnk till chatt)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(meddelande som skickades innan du gick med)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# timme} other {# timmar}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, one {# etikett pรฅ ditt inlรคgg} other {# etiketter pรฅ ditt inlรคgg}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, one {# etikett} other {# etiketter}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# gillamarkering} other {# gillamarkeringar}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# medlem} other {# medlemmar}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# ny medlemsfรถrfrรฅgan} other {# nya medlemsfรถrfrรฅgn #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, one {# person} other {# personer}} reagerade med {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (konto)" @@ -251,36 +252,13 @@ msgstr "{0} lades till i chatten" msgid "{0} and {1} added to chat" msgstr "{0} och {1} lades till i chatten" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} och {1} gillar detta" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} och {others, plural, one {{1} annan} other {{2} andra}} gillar detta" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} och {othersLabel} gillar detta" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} fรถljda" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} blockerar dig" @@ -324,14 +302,6 @@ msgstr "{0} lรคmnade" msgid "{0} left the group" msgstr "{0} lรคmnade gruppen" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} gillar detta" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} av 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} reagerade med {1}" @@ -388,27 +358,12 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} och {memberCount, plural, one {# annan} other {# andra}} lades till i chatten" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1} och {others, plural, one {{2} annan} other {{3} andra}} gillar detta" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1} och {othersLabel} gillar detta" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 #: src/view/com/feeds/FeedSourceCard.tsx:189 msgid "{0}, a feed by {1}, liked by {2}" -msgstr "{0}, ett flรถde av {1}, gillat av {2}" +msgstr "{0}, ett flรถde av {1}, gillas av {2}" #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} verifierade dig" msgid "{following} following" msgstr "{following} fรถljda" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, one {inlรคgg} other {inlรคgg}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} kan inte lรคggas till" @@ -698,7 +660,7 @@ msgstr "{handle} kan inte lรคggas till" msgid "{handle} can't be messaged" msgstr "Det gรฅr inte att skicka meddelanden till {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "Det gรฅr inte att skicka meddelanden till {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# olรคst notis} other {# olรคsta notise msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# kontakt} other {# kontakter}} hittades" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, one {{0} annan} other {{1} andra}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} gick med i Bluesky fรถr {timeAgoString} sedan" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} gick med i Bluesky med hjรคlp av ett startpaket fรถr {timeAgoString} sedan" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, one {# tecken รฅterstรฅr} other {# tecken รฅterstรฅr}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} svarade" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} svarade {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} svarade dig" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# fรถrfrรฅgan} other {# fรถrfrรฅgningar}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ fรถrfrรฅgningar" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} tim sedan" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} รคr en betrodd verifierare" @@ -842,13 +795,13 @@ msgstr "{userName}s verifieringar" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {fรถljda} other {fรถljda}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citat} other {citat}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {รฅterpublicering} other {รฅterpubliceringar}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, one {sparning} other {sparningar}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, one {gillamarkering} other {gillamarkeringar}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> lade till dig" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>Logga in<1> eller <2>skapa ett konto<3> <4>fรถr att sรถka efter nyheter, sport, politik och allt annat som hรคnder pรฅ Bluesky." @@ -971,7 +924,7 @@ msgstr "30 dagar" msgid "7 days" msgstr "7 dagar" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "En samling av populรคra flรถden som du kan hitta pรฅ Bluesky, inklusive News, Booksky, Game Dev, Blacksky och Fountain Pens" @@ -988,9 +941,11 @@ msgstr "Ett nรคtverksfel uppstod. Kontrollera din internetanslutning" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "En ny kod har skickats" msgid "A new form of verification" msgstr "En ny form av verifiering" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Ett svar pรฅ ett meddelande som skickades innan du gick med" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "En skรคrmdump av inlรคggsverktyget. Bredvid publiceringsknappen syns den nya knappen โ€Utkastโ€ dekorerad med en fyrverkerieffekt. I skrivfรคltet nedanfรถr syns texten โ€Hallรฅ, har ni hรถrt? Bluesky har utkast nu!!!โ€ (รถversatt frรฅn engelska)." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "En vald mottagare fรถljs inte av avsรคndaren." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "Fรถrfrรฅgan skickad! Gruppรคgaren kommer att granska din fรถrfrรฅgan." msgid "Accessibility" msgstr "Tillgรคnglighet" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Tillgรคnglighetsinstรคllningar" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Konto ignorerat av lista" msgid "Account options" msgstr "Kontoalternativ" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Konto borttaget frรฅn snabbรฅtkomst" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Konton med en blรฅ, vรฅgkantad bockmarkering <0><1/> kan verifiera andra. Dessa betrodda verifierare รคr utvalda av Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "Aktivitet frรฅn andra" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Aktivitetsnotiser" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Lรคgg till alternativtext (valfritt)" msgid "Add another account" msgstr "Lรคgg till ett annat konto" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Lรคgg till ett ytterligare inlรคgg" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Lรคgg till ytterligare ett inlรคgg i trรฅden" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "Lรคgg till ytterligare ett sรถkfilter" @@ -1253,7 +1213,7 @@ msgstr "Lรคgg till automatiseringsetikett pรฅ kontot" msgid "Add emoji reaction" msgstr "Lรคgg till emoji-reaktion" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Lรคgg till filter" @@ -1338,7 +1298,7 @@ msgstr "Lรคgg till i dina flรถden" msgid "Add to lists" msgstr "Lรคgg till i listor" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Lรคgg till i sparade inlรคgg" @@ -1400,7 +1360,7 @@ msgstr "Sexuellt explicit" msgid "Adult content" msgstr "Vuxeninnehรฅll" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@exempel.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Alla" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Alla vรคnner fรถljda!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Alla sprรฅk" @@ -1491,11 +1447,6 @@ msgstr "Alla sprรฅk kommer visas i dina flรถden." msgid "All of these words" msgstr "Alla dessa ord" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "Alla inlรคgg" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Alla flรถden du har sparat, pรฅ ett och samma stรคlle." @@ -1560,7 +1511,7 @@ msgstr "Ger รฅtkomst till direktmeddelanden" msgid "Already have a code?" msgstr "Har du redan en kod?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Har du redan ett konto?" @@ -1614,7 +1565,7 @@ msgstr "Ett e-postmeddelande har skickats till {0}. Det innehรฅller en bekrรคfte msgid "An error has occurred" msgstr "Ett fel har uppstรฅtt" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Ett fel uppstod" @@ -1631,7 +1582,7 @@ msgstr "Ett fel uppstod vid hรคmtning av fรถreslagna konton." msgid "An error occurred while fetching the feed." msgstr "Ett fel uppstod under hรคmtningen av flรถdet." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Ett fel uppstod nรคr ditt startpaket skulle genereras. Vill du fรถrsรถka igen?" @@ -1640,11 +1591,11 @@ msgstr "Ett fel uppstod nรคr ditt startpaket skulle genereras. Vill du fรถrsรถka msgid "An error occurred while hiding suggestion. {0}" msgstr "Ett fel uppstod nรคr fรถrslag skulle dรถljas. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Ett fel uppstod under inlรคsningen av videoklippet. Fรถrsรถk igen senare." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Ett fel uppstod under inlรคsningen av videoklippet. Fรถrsรถk igen." @@ -1684,7 +1635,7 @@ msgstr "Ett fel uppstod. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "En illustration som fรถrestรคller anvรคndaravatarer som flyger frรฅn en kontaktbok till Bluesky-appen" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "En illustration av flera Bluesky-inlรคgg tillsammans med ikonerna fรถr รฅterpublicera, gilla och kommentera" @@ -1705,17 +1656,15 @@ msgstr "En inbjudningslรคnk lรฅter personer gรฅ med i chatten utan att lรคggas t msgid "An issue not included in these options" msgstr "Nรฅgot problematiskt som inte omfattas av de andra alternativen" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Ett problem uppstod nรคr gruppchatten skulle skapas. Fรถrsรถk igen." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Ett problem uppstod nรคr chatten skulle startas. Fรถrsรถk igen." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Ett problem uppstod nรคr chatten skulle รถppnas" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "Ett problem uppstod nรคr gruppchatten skulle startas. Fรถrsรถk igen." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "Valfritt datum" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Alla" @@ -1802,7 +1749,7 @@ msgstr "Alla som fรถljer mig" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "De som har tillgรฅng till den kommer inte lรคngre kunna gรฅ med eller begรคra att fรฅ gรฅ med. Du kan alltid skapa en ny lรคnk." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Namn pรฅ applรถsenord mรฅste vara minst 4 tecken lรฅnga" msgid "App passwords" msgstr "Applรถsenord" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Applรถsenord" @@ -1891,8 +1838,8 @@ msgstr "Begรคr omprรถvning av beslutet" msgid "Appeal this label" msgstr "Begรคr omprรถvning av den hรคr etiketten" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,18 +1856,18 @@ msgid "Apply Pull Request" msgstr "Tillรคmpa pull request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Arkiverat frรฅn {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Arkiverat inlรคgg" #: src/screens/Settings/components/DeleteAccountDialog.tsx:327 msgid "Are you really, really sure?" -msgstr "ร„r du verkligen, verkligen sรคker?" +msgstr "ร„r du helt, helt sรคker?" #. placeholder {0}: link(languages[0]) #. placeholder {1}: link(languages[1]) @@ -1980,7 +1927,7 @@ msgstr "ร„r du sรคker pรฅ att du vill ta bort det hรคr frรฅn dina flรถden?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "ร„r du sรคker pรฅ att du vill รฅterkalla din fรถrfrรฅgan om att gรฅ med i {0}?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "ร„r du sรคker pรฅ att du vill slรคnga det hรคr inlรคgget?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Norrsken" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "Fรถrfattare" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Automatiserat konto" @@ -2033,7 +1985,7 @@ msgstr "Automatiskt" msgid "Automation label" msgstr "Automatiseringsetikett" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatiseringsetikett" @@ -2050,12 +2002,16 @@ msgstr "Spela upp videoklipp och gif-bilder automatiskt" msgid "Available" msgstr "Tillgรคngligt" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "Avatarskapare" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Du mรฅste verifiera din e-post innan du kan skapa eller svara pรฅ ett inlรคgg." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Du mรฅste verifiera din eโ€‘postadress innan du kan skapa ett startpaket." @@ -2135,10 +2091,10 @@ msgstr "Innan du kan fรฅ notiser om {name}s inlรคgg mรฅste du fรถrst verifiera d #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "Inled รฅlderskontrollen med att fylla i fรคlten nedan." msgid "Beta Feature" msgstr "Betafunktion" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "Betafunktioner" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Betafunktioner aktiverade" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "Fรถdelsedatum" msgid "Birthday" msgstr "Fรถdelsedag" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Blockerat" msgid "Blocked accounts" msgstr "Blockerade konton" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blockerade konton" @@ -2282,7 +2244,7 @@ msgstr "Blockerade konton kan inte svara i dina trรฅdar, omnรคmna dig eller pรฅ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Blockerade konton kan inte svara i dina trรฅdar, omnรคmna dig eller pรฅ annat sรคtt interagera med dig. Du kan inte se deras innehรฅll, och de kan inte se ditt." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Blockeringen hindrar inte den hรคr etikettsรคttaren frรฅn att sรคtta etiketter pรฅ ditt konto." @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan inte bekrรคfta รคktheten av det angivna datumet." @@ -2330,7 +2293,7 @@ msgstr "Bluesky รคr ett รถppet nรคtverk dรคr du kan vรคlja vilken tjรคnst som ha msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky รคr ett รถppet nรคtverk dรคr du kan vรคlja din leverantรถr. Om du รคr ny hรคr rekommenderar vi att du hรฅller dig till standardalternativet Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky รคr bรคttre med vรคnner!" @@ -2358,7 +2321,7 @@ msgstr "Anvรคndarvillkor fรถr Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky lagrar dina kontakter som kodad data. Om du tar bort dina kontakter raderas datan omedelbart." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky vรคljer en uppsรคttning av rekommenderade konton frรฅn personer i ditt nรคtverk." @@ -2403,20 +2366,20 @@ msgstr "Samla upp till 50 vรคnner i en och samma chatt." msgid "Browse custom feeds" msgstr "Blรคddra bland anpassade flรถden" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "Blรคddra bland fler konton" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "Blรคddra bland fler flรถden pรฅ Utforska-sidan" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Blรคddra bland fler fรถrslag" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Blรคddra bland fler fรถrslag pรฅ Utforska-sidan" @@ -2425,24 +2388,25 @@ msgstr "Blรคddra bland fler fรถrslag pรฅ Utforska-sidan" msgid "Browse other feeds" msgstr "Blรคddra bland andra flรถden" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Blรคddra bland inlรคgg om {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Blรคddra bland inlรคgg med taggen {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Blรคddra i startpaketet {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Blรคddra i รคmnet {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Blรคddra inom รคmnet {displayName}" @@ -2461,10 +2425,10 @@ msgstr "Knapp som tar dig tillbaka till hemtidslinjen" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" -msgstr "Av {0}" +msgstr "av {0}" #. placeholder {0}: authorProfile.handle #: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 @@ -2473,9 +2437,9 @@ msgstr "av @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "av <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Genom att skapa ett konto godkรคnner du vรฅra <0>anvรคndarvillkor oc msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Genom att skapa ett konto godkรคnner du vรฅra <0>anvรคndarvillkor." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" -msgstr "Av dig" +msgstr "av dig" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2498,7 @@ msgstr "Kameraรฅtkomst krรคvs" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Kameraรฅtkomst krรคvs" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Avbryt รฅteraktivering och logga ut" msgid "Cancel reply" msgstr "Avbryt svar" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Avbryt sรถkning" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "ร„ndringar i startpaketet kommer inte att รฅterspeglas i listan efter skapandet. Listan blir en fristรฅende kopia." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Chatten ignorerades" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Chatten hittades inte." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Chattalternativ" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Chattรคgare kan inte lรคmna sina gruppchattar." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Chattmottagare fรถljs inte av avsรคndaren." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Inkorg fรถr chattfรถrfrรฅgningar" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Chattfรถrfrรฅgningar" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Chattinstรคllningar" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Chatten ignoreras inte lรคngre" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chattar" @@ -2837,7 +2802,7 @@ msgstr "Vรคlj metod fรถr att verifiera din domรคn" msgid "Choose Feeds" msgstr "Vรคlj flรถden" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Vรคlj รฅt mig" @@ -2854,7 +2819,7 @@ msgstr "Vรคlj personer" msgid "Choose post languages" msgstr "Vรคlj inlรคggssprรฅk" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Vรคlj den hรคr fรคrgen som din avatar" @@ -2879,7 +2844,7 @@ msgstr "Vรคlj din egen tidslinje! Flรถden som har skapats av andra i gemenskapen msgid "Choose your password" msgstr "Vรคlj ditt lรถsenord" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Vรคlj ditt anvรคndarnamn" @@ -2966,7 +2931,7 @@ msgstr "Klicka hรคr fรถr att visa inbjudningslรคnken fรถr den hรคr gruppchatten" msgid "Click to open tag menu for {0}" msgstr "Klicka fรถr att รถppna taggmenyn fรถr {0}" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Klicka fรถr att fรถrsรถka pรฅ nytt med misslyckat meddelande" @@ -3003,7 +2968,7 @@ msgstr "Klicka fรถr att fรถrsรถka pรฅ nytt med misslyckat meddelande" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Klicka fรถr att fรถrsรถka pรฅ nytt med misslyckat meddelande" msgid "Close" msgstr "Stรคng" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Stรคng aktiv dialogruta" @@ -3047,7 +3012,7 @@ msgstr "Stรคng banderoll" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Stรคng bildvisare" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Stรคng meny" @@ -3090,7 +3055,7 @@ msgstr "Stรคng banderollen fรถr vรคntande fรถrfrรฅgningar" msgid "Close this dialog" msgstr "Stรคng den hรคr dialogrutan" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "Stรคng vรคlkomstfรถnster" @@ -3098,7 +3063,7 @@ msgstr "Stรคng vรคlkomstfรถnster" msgid "Closes password update alert" msgstr "Stรคnger avisering om uppdatering av lรถsenord" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Stรคnger inlรคggsverktyget och slรคnger utkastet" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Fรคrg" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Fรคrglรคge" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Serier" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Gemenskapens riktlinjer" @@ -3141,7 +3106,7 @@ msgstr "Gemenskapens riktlinjer" msgid "Complete onboarding and start using your account" msgstr "Slutfรถr introduktionen och bรถrja anvรคnda ditt konto" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Slutfรถr kontrollen" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Skriv ett nytt inlรคgg" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Skriv inlรคgg som รคr upp till {0, plural, other {# tecken}} lรฅnga" @@ -3160,11 +3125,11 @@ msgstr "Skriv inlรคgg som รคr upp till {0, plural, other {# tecken}} lรฅnga" msgid "Compose reply" msgstr "Skriv svar" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "Komprimerar gif-bildโ€ฆ" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Komprimerar videoklippโ€ฆ" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Kontakta vรฅrt supportteam" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Kontakta supporten" @@ -3253,7 +3218,7 @@ msgstr "Innehรฅll och media" msgid "Content and media" msgstr "Innehรฅll och media" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Innehรฅll och media" @@ -3265,10 +3230,6 @@ msgstr "Innehรฅll blockerat" msgid "Content filters" msgstr "Innehรฅllsfilter" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Innehรฅll frรฅn รถver hela nรคtverket som vi tror du kan gilla." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "Innehรฅllssprรฅk" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Innehรฅll som beskriver, framstรคller eller uppmuntrar till sjรคlvskadebeteende" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Innehรฅllsvarning" msgid "Content warnings" msgstr "Innehรฅllsvarningar" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Utanfรถr kontextmenyn. Klicka fรถr att stรคnga menyn." @@ -3302,7 +3263,7 @@ msgstr "Utanfรถr kontextmenyn. Klicka fรถr att stรคnga menyn." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Utรถka trรฅdโ€ฆ" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Fortsรคtt till gruppnamn" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "Konversationen hittades inte." msgid "Copied build version to clipboard" msgstr "Byggversion kopierad till urklipp" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "Lรคnken kopierades till urklipp" @@ -3376,7 +3337,7 @@ msgstr "Lรคnken kopierades till urklipp" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Kopiera applรถsenord" msgid "Copy at:// URI" msgstr "Kopiera at://-URI" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Kopiera fรถrfattarens DID" @@ -3449,10 +3410,10 @@ msgstr "Kopiera lรคnk" msgid "Copy link to list" msgstr "Kopiera lรคnk till lista" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Kopiera lรคnk till inlรคgg" @@ -3470,8 +3431,8 @@ msgstr "Kopiera lรคnk till startpaket" msgid "Copy message text" msgstr "Kopiera meddelandetext" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Kopiera inlรคggets at://-URI" @@ -3490,7 +3451,7 @@ msgstr "Kopiera vรคrde fรถr TXT-post" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Upphovsrรคttspolicy" @@ -3540,11 +3501,11 @@ msgstr "Kunde inte fรถlja alla matchningar. {0}" msgid "Could not leave chat" msgstr "Kunde inte lรคmna chatt" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Kunde inte lรคmna chatten." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Kunde inte lรคsa in flรถde" @@ -3562,7 +3523,7 @@ msgstr "Kunde inte lรคsa in profil" msgid "Could not mute chat" msgstr "Kunde inte ignorera chatt" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "Kunde inte ta bort medlemmen." @@ -3606,8 +3567,8 @@ msgstr "kor grisar" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Skapa" @@ -3624,26 +3585,26 @@ msgstr "Skapa en lista baserad pรฅ det hรคr startpaketet" msgid "Create a QR code for a starter pack" msgstr "Skapa en QR-kod fรถr ett startpaket" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Skapa ett startpaket" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "Skapa ett startpaket" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Skapa ett startpaket รฅt mig" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Skapa konto" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Skapa ett konto" @@ -3666,15 +3627,15 @@ msgstr "Skapa ett konto" msgid "Create an account without using this starter pack" msgstr "Skapa ett konto utan att anvรคnda det hรคr startpaketet" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Skapa en avatar istรคllet" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Skapa ett till" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Skapa gruppchatt" @@ -3743,7 +3704,7 @@ msgstr "Kultur" msgid "Current beta features" msgstr "Aktuella betafunktioner" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Aktuell chatt" @@ -3770,8 +3731,8 @@ msgstr "Farliga substanser eller drogmissbruk" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Mรถrkt" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Mรถrk" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Mรถrkt tema" @@ -3814,7 +3775,7 @@ msgstr "Avvisa det hรคr sprรฅkfรถrslaget" msgid "Deepfake adult content" msgstr "Djupfรถrfalskat vuxeninnehรฅll" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Fรถrvald" @@ -3894,7 +3855,7 @@ msgstr "Radera mitt konto" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Radera inlรคgg" @@ -3988,7 +3949,7 @@ msgstr "Dialogruta: stรคll in vem som fรฅr interagera med det hรคr inlรคgget" msgid "Dialog: Set search filters" msgstr "Dialogruta: Stรคll in sรถkfilter" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Dรคmpat" @@ -4002,7 +3963,7 @@ msgstr "Inaktivera" msgid "Disable 2FA" msgstr "Inaktivera 2FA" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Inaktivera undertexter" @@ -4045,9 +4006,9 @@ msgstr "Inaktiverat" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Slรคng" msgid "Discard changes?" msgstr "Vill du slรคnga รคndringarna?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Vill du slรคnga utkastet?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Vill du slรคnga inlรคgget?" @@ -4079,6 +4040,10 @@ msgstr "Koppla frรฅn Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "Be appar att inte visa mitt innehรฅll fรถr utloggade anvรคndare" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "Upptรคck flรถden" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Be appar att inte visa mitt innehรฅll fรถr utloggade anvรคndare" msgid "Discover new custom feeds" msgstr "Upptรคck nya anpassade flรถden" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Upptรคck nya flรถden" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Upptรคck nya flรถden" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Avvisa" @@ -4103,28 +4064,28 @@ msgstr "Avvisa" msgid "Dismiss banner" msgstr "Avvisa banderoll" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Avvisa fel" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Avvisa kom-igรฅng-guide" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Avvisa intressen" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Avvisa banderoll fรถr liveevenemang" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Avvisa den hรคr sektionen" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Avvisa det hรคr fรถrslaget" @@ -4142,7 +4103,7 @@ msgstr "Visa stรถrre ALT-mรคrken" msgid "Display name" msgstr "Visningsnamn" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Lรคmna troll och klickbeten bakom dig. Hitta riktiga mรคnniskor och samtal som betyder nรฅgot fรถr dig." @@ -4205,8 +4166,8 @@ msgstr "Ingen fara! Alla dina befintliga meddelanden och instรคllningar รคr spar #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Ingen fara! Alla dina befintliga meddelanden och instรคllningar รคr spar msgid "Done" msgstr "Klar" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Hรฅll nere eller dubbeltryck pรฅ meddelandet fรถr att lรคgga till en reaktion" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Dubbeltryck fรถr att stรคnga dialogrutan" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Dubbeltryck fรถr att gilla" @@ -4328,6 +4289,7 @@ msgstr "ร„tstรถrningar" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Redigera bild" msgid "Edit interaction settings" msgstr "Redigera interaktionsinstรคllningar" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Redigera intressen" @@ -4397,7 +4359,7 @@ msgstr "Redigera livesรคndningsstatus" msgid "Edit moderation list" msgstr "Redigera modereringslista" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Redigera mina flรถden" @@ -4406,6 +4368,11 @@ msgstr "Redigera mina flรถden" msgid "Edit name" msgstr "Redigera namn" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "Redigera notisinstรคllningar fรถr {0}" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Redigera personer" @@ -4444,7 +4411,7 @@ msgstr "Redigera anvรคndarlista" msgid "Edit who can reply" msgstr "Redigera vem som fรฅr svara" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Redigera ditt startpaket" @@ -4500,8 +4467,8 @@ msgstr "Bรคdda in HTML-kod" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Bรคdda in inlรคgg" @@ -4509,7 +4476,7 @@ msgstr "Bรคdda in inlรคgg" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Bรคdda in det hรคr inlรคgget pรฅ din hemsida. Det รคr bara att kopiera fรถljande text och klistra in den i HTML-koden pรฅ din hemsida." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Inbรคddad videospelare" @@ -4533,7 +4500,7 @@ msgstr "Tillรฅt vuxeninnehรฅll" msgid "Enable beta features" msgstr "Aktivera betafunktioner" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Aktivera undertexter" @@ -4550,12 +4517,13 @@ msgstr "Aktivera extern media" msgid "Enable media players for" msgstr "Aktivera mediaspelare fรถr" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Aktivera notiser fรถr ett konto genom att besรถka dess profil och trycka pรฅ <0>klockikonen <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Aktivera pushnotiser" @@ -4581,7 +4549,7 @@ msgstr "Visa trendande videoklipp i ditt Upptรคck-flรถde" msgid "Enabled" msgstr "Aktiverat" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Slut pรฅ flรถdet" @@ -4608,7 +4576,7 @@ msgstr "Ange ett ord eller en tagg" msgid "Enter code" msgstr "Ange kod" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "ร–ppna helskรคrm" @@ -4650,11 +4618,11 @@ msgstr "Ange ditt anvรคndarnamn och lรถsenord" msgid "Enters full screen" msgstr "ร–ppnar helskรคrm" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Underhรฅllning" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Fel" @@ -4684,7 +4652,7 @@ msgstr "Ett fel uppstod nรคr filen skulle sparas" msgid "Error receiving captcha response." msgstr "Fel vid mottagning av captcha-svar." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Fel: {error}" @@ -4696,8 +4664,8 @@ msgstr "Alla fรฅr svara" msgid "Everybody can reply to this post." msgstr "Alla fรฅr svara pรฅ det hรคr inlรคgget." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Alla" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Alla" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Allt annat" @@ -4738,7 +4706,7 @@ msgstr "Undanta anvรคndare du fรถljer" msgid "Excludes users you follow" msgstr "Undantar anvรคndare du fรถljer" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Stรคng helskรคrm" @@ -4755,11 +4723,11 @@ msgstr "Utรถka lista รถver anvรคndare" msgid "Expand or collapse the full post you are replying to" msgstr "Utรถka eller fรคll ihop det inlรคgg som du svarar pรฅ" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Utรถka inlรคggstext" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Utรถkar eller fรคller ihop inlรคggstext" @@ -4802,15 +4770,15 @@ msgstr "Explicit eller potentiellt stรถtande media." msgid "Explicit sexual images." msgstr "Explicit sexuella bilder." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Utforska" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Utforska appen" @@ -4844,7 +4812,7 @@ msgstr "Extern media" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Extern media kan gรถra det mรถjligt fรถr webbplatser att samla in information om dig och din enhet. Ingen information skickas eller begรคrs fรถrrรคn du trycker pรฅ spelaknappen." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Instรคllningar fรถr extern media" @@ -4886,7 +4854,7 @@ msgstr "Det gick inte att รคndra anvรคndarnamn. Fรถrsรถk igen." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "Det gick inte att kopiera lรคnk" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Det gick inte att lรคmna gruppchatten" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Det gick inte att lรคsa in konversationer" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "Det gick inte att lรคsa in flรถden" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Det gick inte att lรคsa in flรถdesinstรคllningar" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Det gick inte att lรคsa in notisinstรคllningar." @@ -5012,14 +4981,14 @@ msgstr "Det gick inte att lรคsa in instรคllning." msgid "Failed to load profiles" msgstr "Det gick inte att lรคsa in profiler" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Det gick inte att lรคsa in fรถreslagna flรถden" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Det gick inte att lรคsa in fรถreslagna konton att fรถlja" @@ -5027,12 +4996,12 @@ msgstr "Det gick inte att lรคsa in fรถreslagna konton att fรถlja" msgid "Failed to lock group chat" msgstr "Det gick inte att lรฅsa gruppchatt" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Det gick inte att markera chattarna som lรคsta" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "Det gick inte att รฅterkalla din fรถrfrรฅgan. Fรถrsรถk igen." msgid "Failed to resolve location. Please try again." msgstr "Det gick inte att faststรคlla din plats. Fรถrsรถk igen." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Det gick inte att spara utkast" @@ -5191,7 +5160,7 @@ msgstr "Falskt konto eller bot" msgid "False information about elections" msgstr "Falsk information om val eller rรถstning" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Flรถde" @@ -5212,7 +5181,7 @@ msgstr "Flรถdets skapare" msgid "Feed identifier" msgstr "Flรถdets identifierare" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Meny fรถr flรถde" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback skickad till flรถdesoperatรถr" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "Flรถden uppdaterade!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Flรถden som vi tror du kan gilla." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Sรถk efter uppdatering" @@ -5273,34 +5238,22 @@ msgstr "Sรถk efter uppdatering" msgid "File saved successfully!" msgstr "Filen sparades utan problem!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Filtrera efter fรถrfattare" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Filtrera efter fรถrfattare (nuvarande: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Filtrera efter media" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Filtrera efter media (nuvarande: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Filtrera i flรถden" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Filtrera sรถkning efter sprรฅk" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Filtrera sรถkning efter sprรฅk (nuvarande: {currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "Filtrera sรถkning efter media (nuvarande: {currentLabel})" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "Filtrera sรถkningen efter {0}" msgid "Filter who can opt to receive notifications for your activity" msgstr "Filtrera vem som kan vรคlja att fรฅ notiser om din aktivitet" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Filtrera vem du fรฅr notiser frรฅn" @@ -5352,8 +5305,8 @@ msgstr "Hitta konton att fรถlja" msgid "Find and invite friends" msgstr "Hitta och bjud in vรคnner" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "Hitta kontakter" @@ -5387,7 +5340,7 @@ msgstr "Hitta dina vรคnner" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Hitta dina vรคnner pรฅ Bluesky genom att verifiera ditt telefonnummer och matcha med dina kontakter. Vi skyddar din information, och du bestรคmmer vad som hรคnder hรคrnรคst. <0>Lรคs mer" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Hitta din gemenskap" @@ -5429,7 +5382,7 @@ msgstr "Fokusera sรถkfรคltet" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Fรถlj {0}" msgid "Follow {displayName}" msgstr "Fรถlj {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Fรถlj {handle}" @@ -5453,11 +5406,11 @@ msgstr "Fรถlj {handle}" msgid "Follow 10 accounts" msgstr "Fรถlj 10 konton" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "Fรถlj 10 personer fรถr att komma igรฅng" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Fรถlj 7 konton" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Fรถljare kan gรฅ med" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Fรถljare av @{0} som du kรคnner" @@ -5544,7 +5497,7 @@ msgstr "Fรถljare som du kรคnner" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "Fรถljer {0}" msgid "Following {displayName}" msgstr "Fรถljer {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "Fรถljer {handle}" @@ -5578,21 +5531,21 @@ msgstr "Fรถljer {handle}" msgid "Following feed preferences" msgstr "Instรคllningar fรถr Fรถljer-flรถdet" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Instรคllningar fรถr Fรถljer-flรถdet" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Fรถljer dig" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Typsnitt" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Teckenstorlek" @@ -5612,13 +5565,13 @@ msgstr "Av sรคkerhetsskรคl kommer vi att skicka en bekrรคftelsekod till din eโ€‘ msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Av sรคkerhetsskรคl kommer du inte kunna se det hรคr igen. Om du tappar bort applรถsenordet mรฅste du skapa ett nytt." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Vi rekommenderar tematypsnittet fรถr bรคsta upplevelse." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Fรถr dig" @@ -5628,7 +5581,7 @@ msgstr "Fรถr dig" msgid "Forever" msgstr "Obegrรคnsad" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Slipp allt brus" @@ -5647,11 +5600,11 @@ msgstr "Glรถmt lรถsenordet?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Fyra meddelandebubblor i en gruppchatt. I bilden รคr meddelandena pรฅ engelska. Fรถrsta meddelandet: โ€Har du hรถrt? Bluesky har gruppchattar nu!โ€ Andra meddelandet: โ€va, skรคmtar du?โ€ Tredje meddelandet: โ€Wow, 50 medlemmar i en chatt!โ€ Fjรคrde meddelandet: โ€Man kan skicka inbjudningslรคnkar ocksรฅ!โ€" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "Befria ditt flรถde" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Frรฅn" @@ -5674,7 +5627,7 @@ msgstr "Frรฅn <0/>" msgid "From these people" msgstr "Frรฅn dessa personer" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Generera ett startpaket" @@ -5718,39 +5671,39 @@ msgstr "Fรฅ tidig รฅtkomst till experimentella funktioner vi testar." msgid "Get help" msgstr "Fรฅ hjรคlp" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "Fรฅ notiser nรคr andra anvรคnder dina startpaket vid registrering, samt om verifiering och annan aktivitet." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Fรฅ notiser nรคr andra fรถljer dig." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Fรฅ notiser nรคr andra gillar dina inlรคgg." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "Fรฅ notiser nรคr andra gillar dina รฅterpubliceringar." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Fรฅ notiser nรคr du omnรคmns av andra." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Fรฅ notiser nรคr andra citerar dina inlรคgg." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Fรฅ notiser nรคr andra svarar pรฅ dina inlรคgg." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Fรฅ notiser nรคr andra รฅterpublicerar dina inlรคgg." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "Fรฅ notiser nรคr andra รฅterpublicerar dina รฅterpubliceringar." @@ -5762,15 +5715,15 @@ msgstr "Fรฅ notiser nรคr andra skickar meddelandefรถrfrรฅgningar till dig." msgid "Get notifications when people send you messages." msgstr "Fรฅ notiser nรคr andra skickar meddelanden till dig." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Fรฅ notiser om aktivitet pรฅ inlรคgg du prenumererar pรฅ." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Bli notifierad om nya inlรคgg" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "Fรฅ notiser om inlรคgg och svar frรฅn personer du vรคljer." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Bli notifierad om nya inlรคgg frรฅn {name}" @@ -5799,11 +5752,11 @@ msgstr "Kom igรฅng" msgid "GIF" msgstr "Gif-bild" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "Gif-bild uppladdad" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Ge din profil ett ansikte" @@ -5813,20 +5766,20 @@ msgstr "Fรถrhรคrligande av vรฅld" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Sรคnd live i" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "Gรฅ till {0}s profil" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Gruppchattens namn uppdaterades" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Instรคllningar fรถr gruppchatt" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Gruppchattar kan ha maximalt {0, plural, other {# personer}}." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Gruppen รคr lรฅst" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Gruppnamn" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Gruppnamnet รคr fรถr lรฅngt. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {Maximalt antal tecken รคr #.}}" @@ -6077,7 +6031,7 @@ msgstr "Skadliga eller riskfyllda aktiviteter" msgid "Harming or endangering minors" msgstr "Innehรฅll som kan skada eller utsรคtta minderรฅriga fรถr fara" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtagg" @@ -6098,7 +6052,7 @@ msgstr "Har du en kod? <0>Klicka hรคr." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Har vi tagit fel pรฅ var du befinner dig? <0>Tryck hรคr fรถr att uppdatera din plats med GPS." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Har du problem?" @@ -6114,7 +6068,7 @@ msgstr "Hรฅlls av Bluesky i 7 dagar fรถr att fรถrhindra missbruk, dรคrefter rade msgid "Help" msgstr "Hjรคlp" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Lรฅt folk veta att du inte รคr en bot genom att ladda upp en bild eller skapa en avatar." @@ -6135,12 +6089,12 @@ msgstr "Hej dรคr!" msgid "Hi there!" msgstr "Hej dรคr!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Dolt" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Dolt av dina modereringsinstรคllningar." @@ -6148,9 +6102,10 @@ msgstr "Dolt av dina modereringsinstรคllningar." msgid "Hidden list" msgstr "Dold lista" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Dold lista" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Dรถlj" @@ -6198,7 +6154,7 @@ msgstr "Dรถlj svar fรถr alla" msgid "Hide reply for me" msgstr "Dรถlj svar fรถr mig" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Dรถlj det hรคr kortet" @@ -6218,16 +6174,18 @@ msgstr "Dรถlj det hรคr svaret?" msgid "Hide translation" msgstr "Dรถlj รถversรคttning" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Dรถlj trendande รคmnen" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Dรถlj trendande รคmnen?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Dรถlj trendande videoklipp?" @@ -6240,7 +6198,7 @@ msgstr "Dรถlj anvรคndarlista" msgid "Hide verification badges" msgstr "Dรถlj verifieringsmรคrken" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "Dรถljer innehรฅllet" @@ -6293,8 +6251,8 @@ msgstr "Hmmmm, vi kunde inte ladda den modereringstjรคnsten." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Vรคnta lite! Vi ger gradvis tillgรฅng till videoklipp till fler anvรคndare, och du stรฅr fortfarande i kรถn. Fรถrsรถk igen senare!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "Kontoleverantรถr: {0}" msgid "Hosting provider: Bluesky" msgstr "Kontoleverantรถr: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Hett" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Sรฅ hรคr fungerar det:" @@ -6409,9 +6363,10 @@ msgstr "Om du uppdaterar din e-postadress kommer 2FA via e-post att inaktiveras. msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Om du vill รคndra ditt lรถsenord skickar vi en kod till dig fรถr att verifiera att det hรคr รคr ditt konto." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." -msgstr "Om du vill begrรคnsa vem som kan fรฅ notiser om ditt kontos aktivitet kan du รคndra detta under <0>Instรคllningar โ†’ Integritet och sรคkerhet." +msgstr "Om du vill begrรคnsa vem som kan fรฅ notiser om ditt kontos aktivitet kan du รคndra det under <0>Instรคllningar โ†’ Integritet och sรคkerhet." #: src/components/dialogs/ServerInput.tsx:210 msgid "If you're a developer, you can host your own server." @@ -6548,7 +6503,7 @@ msgstr "I appen, Push, Frรฅn personer du fรถljer" msgid "In-app, push, people you follow" msgstr "I appen, Push, Frรฅn personer du fรถljer" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Inkorgen รคr tom" @@ -6564,7 +6519,6 @@ msgstr "Inkorgen รคr tom!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "Inkludera" @@ -6573,7 +6527,7 @@ msgstr "Inkludera" msgid "Include or exclude matching posts (currently: {0})" msgstr "Inkludera eller exkludera matchande inlรคgg (nuvarande: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Inkludera inlรคgg och/eller svar (nuvarande: {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "Inkludera inlรคgg gjorda frรฅn och med detta datum" msgid "Include posts made until this date" msgstr "Inkludera inlรคgg gjorda till och med detta datum" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Inkludera dessa resultat" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Felaktigt anvรคndarnamn eller lรถsenord" @@ -6683,7 +6633,7 @@ msgstr "Bjud in {name} att gรฅ med i Bluesky" msgid "Invite code" msgstr "Inbjudningskod" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Inbjudningskoden godkรคndes inte. Kontrollera att du har angett den korrekt och fรถrsรถk igen." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Just nu รคr det bara du! Lรคgg till fler personer i ditt startpaket genom att sรถka ovan." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "Jobb-ID: {0}" @@ -6816,8 +6766,8 @@ msgstr "Delta i samtalen" msgid "Journalism" msgstr "Journalistik" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Fortsรคtt redigera" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "KWS webbplats" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Markerat av {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Markerat av anvรคndaren." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Etiketter" @@ -6852,7 +6802,7 @@ msgstr "Etiketter tillagda" msgid "Labels applied to this post" msgstr "Etiketter satta pรฅ det hรคr inlรคgget" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Etiketter รคr anteckningar som sรคtts pรฅ anvรคndare och innehรฅll. De kan anvรคndas fรถr att dรถlja, varna och kategorisera inom nรคtverket." @@ -6864,7 +6814,7 @@ msgstr "Etiketter pรฅ ditt konto" msgid "Language" msgstr "Sprรฅk" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Sprรฅkinstรคllningar" @@ -6874,7 +6824,7 @@ msgstr "Sprรฅkinstรคllningar" msgid "Languages" msgstr "Sprรฅk" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Stรถrre" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "Senast initierad nyss" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Senaste" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Lรคs mer" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Lรคs mer" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "Lรคs mer om <0>hur du anvรคnder avancerade sรถkfilter." @@ -6937,8 +6887,8 @@ msgstr "Lรคs mer om att importera kontakter" msgid "Learn more about self hosting your PDS." msgstr "Lรคs mer om att driva din egen PDS." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Lรคs mer om den moderering som tillรคmpas pรฅ det hรคr innehรฅllet" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Lรคs mer om fรถrรคndringarna och hur du kan dela med dig av dina synpunkter i vรฅrt blogginlรคgg." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Lรคs mer om den hรคr varningen" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "Lรคs mer i dina <0>kontoinstรคllningar." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Lรคs mer." @@ -6993,8 +6943,8 @@ msgstr "Lรคmna" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Du รคr pรฅ vรคg att lรคmna Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Om du lรคmnar den hรคr chatten kommer den att lรฅsas permanent, och du kommer inte kunna gรฅ med i den igen." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Du lรคmnade gruppchatten." @@ -7042,7 +6992,7 @@ msgstr "Du lรคmnade gruppchatten." msgid "left to go." msgstr "kvar." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Lรฅt mig vรคlja" @@ -7057,7 +7007,7 @@ msgstr "Sรคtt igรฅng!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Ljust" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Ljus" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Gilla" @@ -7076,7 +7026,7 @@ msgstr "Gilla" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gilla ({0, plural, one {# gillamarkering} other {# gillamarkeringar}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Gilla 10 inlรคgg" @@ -7085,7 +7035,7 @@ msgstr "Gilla 10 inlรคgg" msgid "Like 10 posts to train the Discover feed" msgstr "Gilla 10 inlรคgg fรถr att trรคna Upptรคck-flรถdet" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Gilla det hรคr flรถdet" @@ -7093,45 +7043,63 @@ msgstr "Gilla det hรคr flรถdet" msgid "Like this labeler" msgstr "Gilla den hรคr etikettsรคttaren" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" -msgstr "Gillat av" +msgstr "Gillas av" #: src/screens/Post/PostLikedBy.tsx:31 #: src/screens/Profile/ProfileLabelerLikedBy.tsx:22 #: src/view/screens/ProfileFeedLikedBy.tsx:22 msgid "Liked By" -msgstr "Gillat av" +msgstr "Gillas av" #. placeholder {0}: count || 0 #. placeholder {0}: feed.likeCount || 0 #: src/components/FeedCard.tsx:249 #: src/view/com/feeds/FeedSourceCard.tsx:173 msgid "Liked by {0, plural, one {# user} other {# users}}" -msgstr "Gillat av {0, plural, one {# anvรคndare} other {# anvรคndare}}" +msgstr "Gillas av {0, plural, one {# anvรคndare} other {# anvรคndare}}" + +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "Gillas av {0}" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "Gillas av {0} och {1}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" -msgstr "Gillat av {likeCount, plural, one {# anvรคndare} other {# anvรคndare}}" +msgstr "Gillas av {likeCount, plural, one {# anvรคndare} other {# anvรคndare}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Gillamarkeringar" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Gillamarkeringar pรฅ dina รฅterpubliceringar" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Gillamarkeringar pรฅ det hรคr inlรคgget" @@ -7144,7 +7112,7 @@ msgstr "Linjรคr vy" msgid "Link copied to clipboard" msgstr "Lรคnk kopierad till urklipp" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Lista" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Listan ignoreras inte lรคngre" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "LIVE" msgid "Live event happening now: {0}" msgstr "Pรฅgรฅende liveevenemang: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Liveevenemang dolt" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Liveevenemang synliggjort" @@ -7279,12 +7247,12 @@ msgstr "Livesรคndningsยญfunktionen รคr i beta" msgid "Live link" msgstr "Lรคnk till livesรคndning" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Lรคs in fler" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Lรคs in fler fรถreslagna flรถden" @@ -7292,8 +7260,8 @@ msgstr "Lรคs in fler fรถreslagna flรถden" msgid "Load new notifications" msgstr "Lรคs in nya notiser" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Lรฅs den hรคr gruppchatten" msgid "Locked" msgstr "Lรฅst" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Logg" @@ -7387,7 +7355,7 @@ msgstr "Kรคrleksfulla gif-bilder" msgid "Make adjustments to email settings for your account" msgstr "Gรถr justeringar i ditt kontos e-postinstรคllningar" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Skapa ett รฅt mig" @@ -7418,15 +7386,15 @@ msgstr "Manuellt" msgid "Mark all as read" msgstr "Markera alla som lรคsta" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Markera alla chattar som lรคsta" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Markera som lรคst" msgid "Marked all as read" msgstr "Markerade alla som lรคsta" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Markerade alla chattar som lรคsta" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Markerade alla fรถrfrรฅgningar som lรคsta" @@ -7456,8 +7424,12 @@ msgstr "Markerade alla fรถrfrรฅgningar som lรคsta" msgid "Maybe later" msgstr "Kanske senare" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Jag" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Media" @@ -7475,7 +7447,7 @@ msgstr "Media lagrad pรฅ en annan enhet" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media som kan vara stรถrande eller olรคmplig fรถr vissa mรฅlgrupper." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "Medlemmen togs bort frรฅn gruppchatten." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "omnรคmnda anvรคndare" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Omnรคmnanden" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Meddelandet raderades" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Det gick inte att skicka meddelande." @@ -7563,15 +7535,15 @@ msgstr "Meddelandet รคr fรถr lรฅngt ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Meddelandealternativ" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Meddelanden" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Meddelanden frรฅn den hรคr personen รคr dolda sรฅ lรคnge personen blockerar dig." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Meddelanden frรฅn den hรคr personen รคr dolda sรฅ lรคnge du blockerar personen." @@ -7592,7 +7564,7 @@ msgstr "Vilseledning" msgid "Missing media" msgstr "Media saknas" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderering" @@ -7636,7 +7608,7 @@ msgstr "Modereringslistan uppdaterades" msgid "Moderation lists" msgstr "Modereringslistor" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Modereringslistor" @@ -7645,7 +7617,7 @@ msgstr "Modereringslistor" msgid "moderation settings" msgstr "modereringsinstรคllningar" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Modereringslรคgen" @@ -7786,7 +7758,7 @@ msgstr "Ignoreras" msgid "Muted accounts" msgstr "Ignorerade konton" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Ignorerade konton" @@ -7867,7 +7839,6 @@ msgstr "Behรถver du skicka in ett upphovsrรคttsรคrende, en juridisk begรคran ell msgid "Nevermind, create a handle for me" msgstr "Det var inget. Skapa ett anvรคndarnamn รฅt mig" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Nytt" @@ -7893,11 +7864,11 @@ msgstr "{postsCount, plural, one {Nytt} other {Nya}} inlรคgg frรฅn {firstAuthorN #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Ny chatt" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Ny funktion" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Nya fรถljare" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Ny gruppchatt" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Ny gruppchatt" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Ny gruppchatt med:" @@ -7966,13 +7937,13 @@ msgstr "Ny lista" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Nya meddelandefรถrfrรฅgningar" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Nya meddelanden" @@ -7982,12 +7953,12 @@ msgstr "Nya meddelanden" msgid "New password" msgstr "Nytt lรถsenord" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Nytt inlรคgg" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Senaste svar fรถrst" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Nyheter" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Nรคsta bild" msgid "Night" msgstr "Natt" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Inga annonser, ingen pรฅtrรคngande spรฅrning, inga engagemangsfรคllor. Bluesky vรคrnar om din tid och ditt fokus." @@ -8065,6 +8036,11 @@ msgstr "Inga annonser, ingen pรฅtrรคngande spรฅrning, inga engagemangsfรคllor. B msgid "No app passwords yet" msgstr "Du har inga applรถsenord รคnnu" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "Inget fรถrfattarfilter" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "Inga betafunktioner fรถr tillfรคllet." @@ -8098,7 +8074,7 @@ msgstr "Ingen sluttid instรคlld" msgid "No feeds found. Try searching for something else." msgstr "Inga flรถden kunde hittas." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Inga fรถljare รคnnu" @@ -8116,9 +8092,15 @@ msgstr "Det finns inga gif-bilder att visa just nu. Fรถrsรถk igen om en stund." msgid "No image" msgstr "Ingen bild" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "Inget sprรฅkfilter" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Inga gillamarkeringar รคnnu" @@ -8135,7 +8117,12 @@ msgstr "Inga listor" msgid "No longer following {0}" msgstr "{0} fรถljs inte lรคngre" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "Inget mediafilter" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Ingen media รคnnu" @@ -8143,7 +8130,7 @@ msgstr "Ingen media รคnnu" msgid "No messages yet" msgstr "Inga meddelanden รคnnu" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "Inget mer doomscrollande orsakat av skrรคpfyllda algoritmer. Hitta flรถden som arbetar fรถr dig โ€“ inte emot dig." @@ -8180,16 +8167,21 @@ msgstr "Ingen annan รคn fรถrfattaren kan citera det hรคr inlรคgget." msgid "No one can send messages" msgstr "Ingen kan skicka meddelanden" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "Inget inlรคggsfilter" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Hรคr finns inga inlรคgg" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Inga inlรคgg รคnnu" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Inga citat รคnnu" @@ -8198,11 +8190,7 @@ msgstr "Inga citat รคnnu" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Inga senaste gif-bilder รคnnu. Vรคlj en fรถr att se den hรคr." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "Inga svar" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Inga svar รคnnu" @@ -8217,13 +8205,13 @@ msgstr "Inga resultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Inga resultat" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Inga resultat fรถr โ€{0}โ€." @@ -8236,23 +8224,23 @@ msgstr "Inget resultat hittades" msgid "No results found for \"{query}\"" msgstr "Inget resultat hittades fรถr โ€{query}โ€" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "Inga resultat hittades fรถr โ€<0>{query}โ€ med avancerade sรถkfilter tillรคmpade." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "Inga resultat hittades fรถr โ€<0>{query}โ€." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "Inga resultat hittades fรถr din sรถkning med avancerade sรถkfilter tillรคmpade." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Inga resultat." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Inga startpaket รคnnu" @@ -8265,7 +8253,7 @@ msgstr "Nej tack" msgid "No translation received from your device." msgstr "Ingen รถversรคttning mottagen frรฅn din enhet." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Inga videoinlรคgg รคnnu" @@ -8278,7 +8266,7 @@ msgstr "Ingen" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ingen har gillat det hรคr รคnnu. Du kanske kan bli den fรถrsta!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Ingen har citerat det hรคr รคnnu. Du kanske kan bli den fรถrsta!" @@ -8298,6 +8286,10 @@ msgstr "Intima bilder eller videoklipp delade utan samtycke" msgid "Non-sexual Nudity" msgstr "Icke-sexuell nakenhet" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Inget" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Ej tillgรคngligt pรฅ denna plattform." msgid "Not followed by anyone youโ€™re following" msgstr "Fรถljs inte av nรฅgon som du fรถljer" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Hittades inte" @@ -8333,7 +8325,7 @@ msgstr "Anmรคrkning om delning" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Obs: Bluesky รคr ett รถppet och publikt nรคtverk. Den hรคr instรคllningen begrรคnsar endast ditt kontos synlighet pรฅ Blueskys app och webbplats. Andra appar kanske inte respekterar den hรคr instรคllningen. Ditt innehรฅll kan fortfarande visas fรถr utloggade anvรคndare genom andra appar och webbplatser." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Obs: Det hรคr inlรคgget visas bara fรถr inloggade anvรคndare." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Inget sparat รคnnu" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Notisinstรคllningar" @@ -8353,11 +8345,12 @@ msgstr "Notisinstรคllningar" msgid "Notification sounds" msgstr "Notisljud" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "ร…h nej!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Okej" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "ร…terstรคllning av kom-igรฅng-guide" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "En av de valda mottagarna tillรฅter inte gruppchattar." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "En av de valda mottagarna har blockerat dig och kan inte nรฅs via meddelanden." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "En eller flera gif-bilder saknar alternativtext." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "En eller flera bilder saknar alternativtext." @@ -8454,11 +8449,11 @@ msgstr "En eller flera av de filer du valt stรถds inte." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "En eller flera av de filer du valt รคr fรถr stora. Maxstorlek รคr {VIDEO_MAX_SIZE_MB}ย MB." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Ett eller flera inlรคgg รคr fรถr lรฅnga fรถr att sparas som utkast. {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {Maximalt antal tecken รคr #.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Ett eller flera videoklipp saknar alternativtext." @@ -8471,7 +8466,7 @@ msgstr "Endast {0} fรฅr svara." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "Endast {0} av {1} {2, plural, one {bild} other {bilder}} lades till. Grรคnsen รคr {MAX_GALLERY_IMAGES} bilder" @@ -8507,6 +8502,10 @@ msgstr "Endast personer som {0} fรถljer kan gรฅ med." msgid "Only people the chat owner follows can join" msgstr "Endast personer som chattรคgaren fรถljer kan gรฅ med" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "Endast inlรคgg" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "Endast inlรคgg med media" @@ -8519,7 +8518,7 @@ msgstr "Endast inlรคgg med videoklipp" msgid "Only replies" msgstr "Endast svar" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Endast WebVTT-filer (.vtt) stรถds" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Hoppsan, den hรคr profilen finns inte. Fรถrsรถk med att skanna en annan." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Hoppsan!" @@ -8544,7 +8543,7 @@ msgstr "Hoppsan!" msgid "Open advanced search options" msgstr "ร–ppna avancerade sรถkalternativ" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "ร–ppna avatarskapare" @@ -8570,21 +8569,22 @@ msgstr "ร–ppna konversationsalternativ" msgid "Open draft" msgstr "ร–ppna utkast" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "ร–ppna sidpanel" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "ร–ppna emoji-vรคljaren" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "ร–ppna dialogruta med information om flรถde" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "ร–ppna meny fรถr flรถdesalternativ" @@ -8627,7 +8627,7 @@ msgstr "ร–ppna felsรถkningssida fรถr moderering" msgid "Open muted words and tags settings" msgstr "ร–ppna instรคllningar fรถr ignorerade ord och taggar" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "ร–ppna paket" @@ -8699,7 +8699,7 @@ msgstr "ร–ppnar ytterligare detaljer fรถr en loggpost" msgid "Opens alt text dialog" msgstr "ร–ppnar dialogruta fรถr alternativtext" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "ร–ppnar kameran pรฅ enheten" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "ร–ppnar guiden fรถr att skapa ett nytt Bluesky-konto" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "ร–ppnar guide fรถr att logga in pรฅ ditt befintliga Bluesky-konto" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "Lรถsenordet har uppdaterats!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Pausa" @@ -8925,12 +8925,12 @@ msgstr "Pausa" msgid "Pause GIF" msgstr "Pausa gif-bild" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Pausa video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Personer" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "Personer som {ownerName} fรถljer kan begรคra att fรฅ gรฅ med" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Personer som fรถljs av @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Personer som fรถljer @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Personer jag fรถljer" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Personer jag fรถljer kan begรคra att fรฅ gรฅ med" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Personer du fรถljer" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Bilder avsedda fรถr vuxna." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fรคst flรถde" @@ -9034,7 +9034,7 @@ msgstr "Fรคst flรถde" msgid "Pin to home" msgstr "Fรคst pรฅ hem" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Fรคst pรฅ Hem" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Fรคst" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "Fรคste {0} pรฅ Hem" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "Fรคst i dina flรถden" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Spela" @@ -9076,8 +9076,8 @@ msgstr "Spela {0}" msgid "Play GIF" msgstr "Spela upp gif-bild" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Spela upp videoklipp" @@ -9109,11 +9109,11 @@ msgstr "Lรคgg till de varningsetiketter som รคr relevanta fรถr den media du publ 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Vรคlj ditt anvรคndarnamn." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Vรคlj ditt lรถsenord." @@ -9122,7 +9122,7 @@ msgstr "Vรคlj ditt lรถsenord." 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 "Klicka pรฅ lรคnken i e-postmeddelandet vi just skickade till dig fรถr att bekrรคfta din nya e-postadress. Det hรคr รคr ett viktigt steg fรถr att du ska kunna fortsรคtta anvรคnda alla funktioner pรฅ Bluesky." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Slutfรถr captcha-verifieringen." @@ -9179,7 +9179,7 @@ msgstr "Ange koden du fick och det nya lรถsenordet du vill anvรคnda." 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:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Ange din e-postadress." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Skriv ditt meddelande nedan:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politik" @@ -9269,7 +9269,7 @@ msgstr "Politik" msgid "Porn" msgstr "Porr" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Publicera" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Inlรคgg" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Publicera ett foto" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Publicera ett videoklipp" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Publicera alla" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Publicera รคndรฅ" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Inlรคgg blockerat" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "Inlรคgg av @{0}" @@ -9340,7 +9340,7 @@ msgstr "Inlรคgg dolt av dig" msgid "Post interaction settings" msgstr "Interaktionsinstรคllningar fรถr inlรคgg" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Interaktionsinstรคllningar fรถr inlรคgg" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Inlรคgget fรคstes" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Inlรคgg sparat" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "Inlรคggstyp" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Inlรคgget lossades" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Inlรคgg" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "Inlรคgg och svar" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Inlรคgg kan ignoreras baserat pรฅ textinnehรฅll, taggar eller bรฅdadera. msgid "Posts hidden" msgstr "Inlรคgg dolda" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Inlรคgg, Svar" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Potentiellt vilseledande lรคnk" @@ -9449,20 +9451,21 @@ msgstr "Integritet" msgid "Privacy and security" msgstr "Integritet och sรคkerhet" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Integritet och sรคkerhet" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Integritets- och sรคkerhetsinstรคllningar" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Integritetspolicy" msgid "Privacy violation of a minor" msgstr "Krรคnkning av minderรฅrigs integritet" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "Bearbetar gif-bildโ€ฆ" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Bearbetar videoklippโ€ฆ" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Publika, delningsbara listor รถver anvรคndare som kan ignoreras eller blockeras i grupp." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Publicera inlรคgg" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Publicera samtliga inlรคgg" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Publicera samtliga svar" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Publicera samtliga svar" @@ -9599,12 +9602,12 @@ msgstr "Citatinlรคgg inaktiverade" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Citat" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Citat av det hรคr inlรคgget" @@ -9647,7 +9650,7 @@ msgstr "ร…teraktivera ditt konto" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "Lรคs {0, plural, one {ett svar till} other {# svar till}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "Lรคs om hur du anvรคnder avancerade sรถkfilter" @@ -9657,11 +9660,11 @@ msgstr "Lรคs om hur du anvรคnder avancerade sรถkfilter" msgid "Read blog post" msgstr "Lรคs blogginlรคgget" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Visa mindre" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Visa mer" @@ -9687,11 +9690,11 @@ msgstr "Lรคs Blueskys integritetspolicy" msgid "Read the Bluesky Terms of Service" msgstr "Lรคs Blueskys anvรคndarvillkor" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "ร„kta samtal." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "ร„kta mรคnniskor." @@ -9721,10 +9724,6 @@ msgstr "Senaste sรถkningar" msgid "Recently used" msgstr "Senast anvรคnda" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "Rekommenderat" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "ร…teranslut" @@ -9748,7 +9747,7 @@ msgstr "Avvisa chattfรถrfrรฅgan" msgid "Reject join request" msgstr "Avvisa medlemsfรถrfrรฅgan" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Ladda om konversationer" @@ -9766,7 +9765,7 @@ msgstr "Ladda om konversationer" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Ta bort" @@ -9792,8 +9791,8 @@ msgstr "Ta bort {displayName}?" msgid "Remove {q}" msgstr "Ta bort {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Ta bort konto" @@ -9845,15 +9844,15 @@ msgstr "Ta bort filter" msgid "Remove from chat" msgstr "Ta bort frรฅn chatt" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Ta bort frรฅn mina flรถden" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Ta bort frรฅn snabbรฅtkomst?" @@ -9862,7 +9861,7 @@ msgstr "Ta bort frรฅn snabbรฅtkomst?" msgid "Remove from saved feeds" msgstr "Ta bort frรฅn sparade flรถden" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Ta bort frรฅn sparade inlรคgg" @@ -9880,8 +9879,8 @@ msgstr "Ta bort bild" msgid "Remove live status" msgstr "Ta bort livesรคndningsstatus" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "Ta bort medlem" @@ -9943,7 +9942,7 @@ msgstr "Togs bort frรฅn lista" msgid "Removed from saved feeds" msgstr "Togs bort frรฅn sparade flรถden" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Togs bort frรฅn sparade inlรคgg" @@ -9952,7 +9951,7 @@ msgstr "Togs bort frรฅn sparade inlรคgg" msgid "Removed from starter pack" msgstr "Togs bort frรฅn startpaket" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Svarade dig" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "Besvarat meddelande frรฅn {senderName}, tryck fรถr att rulla till det" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Det besvarade meddelandet skickades innan du gick med" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Besvarat meddelande, tryck fรถr att rulla till det" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Svar" @@ -10037,7 +10037,7 @@ msgstr "Svar รคr inaktiverat fรถr det hรคr inlรคgget." msgid "Reply" msgstr "Svara" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Svara" @@ -10098,8 +10098,8 @@ msgstr "Anmรคl konversation" msgid "Report dialog" msgstr "Dialogruta fรถr anmรคlan" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Anmรคl flรถde" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "ร…terpublicerat av dig" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "ร…terpubliceringar" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "ร…terpubliceringar av det hรคr inlรคgget" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "ร…terpubliceringar av dina รฅterpubliceringar" @@ -10253,7 +10253,7 @@ msgstr "Fรถrfrรฅgan skickad" msgid "Requests" msgstr "Fรถrfrรฅgningar" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Fรถrsรถker igen med den senaste misslyckade รฅtgรคrden" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Gรฅr tillbaka till startsidan" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Gรฅr tillbaka till fรถregรฅende sida" @@ -10446,27 +10446,27 @@ msgstr "Spara fรถdelsedatum" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Spara รคndringar" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Spara รคndringar?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Spara utkast" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Spara utkast?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Spara QR-kod" msgid "Save these options for next time" msgstr "Spara mina val till nรคsta gรฅng" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Spara till mina flรถden" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Sparade flรถden" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Sparade inlรคgg" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Sparat i dina flรถden" @@ -10520,8 +10520,8 @@ msgstr "Sparat i dina flรถden" msgid "Say hello!" msgstr "Sรคg hej!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Sรคg hej till nรฅgon" @@ -10535,7 +10535,7 @@ msgstr "Skanna" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Skanna QR-kod" @@ -10543,15 +10543,15 @@ msgstr "Skanna QR-kod" msgid "Science" msgstr "Vetenskap" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Rulla รฅt vรคnster" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "Rulla รฅt hรถger" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Rulla till det besvarade meddelandet" @@ -10564,8 +10564,8 @@ msgstr "Gรฅ till toppen" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Sรถk" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Sรถk i @{0}s inlรคgg" @@ -10612,11 +10612,11 @@ msgstr "Sรถk efter {q}" msgid "Search for feeds that you want to suggest to others." msgstr "Sรถk efter flรถden att fรถreslรฅ รฅt andra." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Sรถk efter fler konton" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Sรถk efter fler flรถden" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Sรถk gif-bilder" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Sรถkning รคr fรถr nรคrvarande inte tillgรคngligt fรถr utloggade" @@ -10707,17 +10707,22 @@ msgstr "Se #{tag}-inlรคgg av anvรคndare" msgid "See jobs at Bluesky" msgstr "Se jobb pรฅ Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Se fler" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Se fler fรถreslagna profiler" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "Se fler trendande รคmnen" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "Se fรถreslagna konton" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Uppspelningsreglage. Anvรคnd piltangenterna fรถr att spola framรฅt och bakรฅt, samt mellanslag fรถr att spela upp/pausa" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "Vรคlj kategorin โ€{interestsDisplayName}โ€" @@ -10748,7 +10753,7 @@ msgstr "Vรคlj {0}" msgid "Select {langName}" msgstr "Vรคlj {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Vรคlj en fรคrg" @@ -10764,11 +10769,11 @@ msgstr "Vรคlj konto" msgid "Select an app language" msgstr "Vรคlj ett appsprรฅk" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Vรคlj en avatar" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Vรคlj en emoji" @@ -10780,12 +10785,13 @@ msgstr "Vรคlj ett alternativ" msgid "Select app language" msgstr "Vรคlj appsprรฅk" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Vรคlj undertextfil (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "Vรคlj chatten โ€{name}โ€" @@ -10826,7 +10832,7 @@ msgstr "Vรคlj gif-bild" msgid "Select GIF \"{0}\"" msgstr "Vรคlj gif-bild โ€{0}โ€" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Vรคlj medlemmar till gruppchatten" @@ -10864,7 +10870,7 @@ msgstr "Vรคlj primรคrt sprรฅk" msgid "Select telephone code" msgstr "Vรคlj landskod" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Vรคlj emojin {emojiName} som din avatar" @@ -10945,7 +10951,8 @@ msgstr "Skicka meddelande" msgid "Send post to {name}" msgstr "Skicka inlรคgg till {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Skicka inlรคgg tillโ€ฆ" @@ -10963,12 +10970,12 @@ msgstr "Skicka meddelandet frรฅn din telefon" msgid "Send verification email" msgstr "Skicka e-post fรถr verifiering" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Skicka via direktmeddelande" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Skicka via chatt" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Stรคll in din kontoleverantรถr manuellt" msgid "Sets email for password reset" msgstr "Stรคller in e-postadress fรถr รฅterstรคllning av lรถsenord" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Instรคllningar" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "Instรคllningar fรถr aktivitet frรฅn andra" @@ -11036,49 +11043,49 @@ msgstr "Instรคllningar fรถr aktivitet frรฅn andra" msgid "Settings for allowing others to be notified of your posts" msgstr "Instรคllningar fรถr att tillรฅta andra att bli notifierade om dina inlรคgg" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "Notisinstรคllningar fรถr gillamarkeringar" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Notisinstรคllningar fรถr omnรคmnanden" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Notisinstรคllningar fรถr nya fรถljare" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Notisinstรคllningar fรถr allt annat" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Notisinstรคllningar fรถr gillamarkeringar pรฅ dina รฅterpubliceringar" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Instรคllningar fรถr notiser om nya meddelandefรถrfrรฅgningar" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Instรคllningar fรถr notiser om nya meddelanden" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Notisinstรคllningar fรถr รฅterpubliceringar av dina รฅterpubliceringar" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Notisinstรคllninngar fรถr citat" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Notisinstรคllningar fรถr svar" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Notisinstรคllningar fรถr รฅterpubliceringar" @@ -11115,8 +11122,8 @@ msgstr "Dela รฅldersgrupp" msgid "Share anyway" msgstr "Dela รคndรฅ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Dela fรถrfattarens DID" @@ -11127,7 +11134,7 @@ msgstr "Dela fรถrfattarens DID" msgid "Share feedback" msgstr "Lรคmna feedback" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Dialogruta fรถr lรคnkdelning" msgid "Share my profile" msgstr "Dela min profil" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Dela inlรคggets at://-URI" @@ -11169,12 +11176,12 @@ msgstr "Dela profil" msgid "Share QR code" msgstr "Dela QR-kod" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Dela det hรคr flรถdet" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Dela den hรคr sรถkningen" @@ -11186,8 +11193,8 @@ msgstr "Dela det hรคr startpaketet" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Dela det hรคr startpaketet och hjรคlp andra att gรฅ med i din gemenskap pรฅ Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "Dela dina kontakter fรถr att hitta vรคnner" msgid "Share your thoughtsโ€ฆ" msgstr "Dela med dig av dina tankarโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Testare fรถr delade instรคllningar" @@ -11219,7 +11226,7 @@ msgstr "Nรคr du delar din รฅldersgrupp delar du bara det intervall som รคr koppl msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "Nรคr du delar din รฅldersgrupp delar du bara det intervall som รคr kopplat till ditt Google-konto, till exempel att du รคr 18 รฅr eller รคldre. <0>Din exakta รฅlder eller ditt fรถdelsedatum delas inte, och informationen lรคmnar aldrig din enhet. Dรคrfรถr ger det hรคr alternativet endast รฅtkomst fรถr den hรคr enheten. Du kan ocksรฅ vรคlja att gรถra en <1>fullbordad verifiering via vรฅr betrodda partner KWS. En sรฅdan mรถjliggรถr รฅtkomst frรฅn alla plattformar." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Visa" msgid "Show alt text" msgstr "Visa alternativtext" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Visa รคndรฅ" @@ -11274,8 +11281,8 @@ msgstr "Visa listan รคndรฅ" msgid "Show lists of users to select from" msgstr "Visa listor รถver anvรคndare att vรคlja mellan" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "Visa mer" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "Visa varning och filtrera i flรถden" msgid "Show when youโ€™re live" msgstr "Visa att du sรคnder live" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Visar information om nรคr det hรคr inlรคgget skapades" @@ -11341,15 +11348,15 @@ msgstr "Visar information om nรคr det hรคr inlรคgget skapades" msgid "Shows other accounts you can switch to" msgstr "Visar andra konton som du kan byta till" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Visar innehรฅllet" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Visar innehรฅllet" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "Logga ut?" msgid "Sign up" msgstr "Registrera dig" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Inloggning krรคvs" @@ -11469,7 +11476,7 @@ msgstr "Hoppa รถver" msgid "Skip contact sharing and continue to the app" msgstr "Hoppa รถver kontaktdelning och fortsรคtt till appen" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "Hoppa รถver tomma inlรคgg?" @@ -11487,7 +11494,7 @@ msgstr "Hoppa till nรคsta steg" msgid "slide" msgstr "slide" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Mindre" @@ -11499,7 +11506,7 @@ msgstr "Skjuter upp pรฅminnelsen" msgid "So many thoughts, you should post one" msgstr "Sรฅ mรฅnga tankarโ€ฆ Varfรถr inte publicera en?" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Ett socialt medium pรฅ dina villkor." @@ -11520,7 +11527,7 @@ msgstr "Vissa modereringstjรคnster i din lista รคr inte lรคngre tillgรคngliga." msgid "Some of your verifications are invalid." msgstr "Nรฅgra av dina verifieringar รคr ogiltiga." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Andra flรถden som du kanske gillar" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Nรฅgon lรคmnade gruppen" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Nรฅgon reagerade med {0}" @@ -11554,7 +11561,7 @@ msgstr "Nรฅgon reagerade med {0}" msgid "Someone reacted {0} to {target}" msgstr "Nรฅgon reagerade med {0} pรฅ {target}" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Nรฅgon svarade" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Nรฅgot gick fel. Fรถrsรถk igen" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Nรฅgot gick fel. Fรถrsรถk igen om en stund." msgid "Something went wrong. Please try again." msgstr "Nรฅgot gick fel. Fรถrsรถk igen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "ร„r nรฅgot pรฅ tok? Hรถr av dig till oss." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam, oรคkta beteende eller vilseledande innehรฅll" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Sport" @@ -11668,7 +11675,7 @@ msgstr "Starta en konversation, sรฅ visas den hรคr." msgid "Start a group chat" msgstr "Starta en gruppchatt" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Starta en ny chatt" @@ -11682,17 +11689,17 @@ msgstr "Bรถrja med att lรคgga till personer" msgid "Start adding people!" msgstr "Bรถrja med att lรคgga till personer!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Starta chatt" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Starta chatt med {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpaket" @@ -11715,12 +11722,16 @@ msgstr "Startpaket av dig" msgid "Starter pack is invalid" msgstr "Startpaketet รคr ogiltigt" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "Startpaket" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Startpaket" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Med startpaket kan du enkelt dela dina favoritflรถden och personer med dina vรคnner." @@ -11728,7 +11739,7 @@ msgstr "Med startpaket kan du enkelt dela dina favoritflรถden och personer med d msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "Med startpaket kan du dela de flรถden och konton du gillar med dina vรคnner." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "Med startpaket kan du dela de flรถden och konton du gillar med dina vรคnner." @@ -11742,7 +11753,7 @@ msgstr "Driftinformation" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Steg {0} av {1}" @@ -11754,7 +11765,7 @@ msgstr "Datan har rensats. Starta om appen nu." msgid "Stored as part of a secure code for matching with others" msgstr "Lagras som en sรคker kod fรถr att hitta matchningar med andra anvรคndare" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "Prenumerera pรฅ {publicationTitle} med {0}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Prenumerera pรฅ @{0} fรถr att anvรคnda dessa etiketter:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "Verifiering lyckades" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "Fรถreslagna" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "Fรถreslagna konton" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Fรถreslaget รฅt dig" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Solnedgรฅng" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Den hรคr funktionen har inte aktiverats fรถr ditt land รคnnu. Kom tillbaka senare." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Avstรคngda konton kan inte delta i en gruppchatt." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Avstรคngda konton kan inte delta i chatten." @@ -11921,8 +11934,8 @@ msgstr "Byt till {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "System" @@ -11945,7 +11958,7 @@ msgstr "Fortsรคtt samtalet privat." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Tryck nedan fรถr att ge Bluesky รฅtkomst till din GPS-position. Vi anvรคnder sedan den informationen fรถr att mer exakt kunna avgรถra vilket innehรฅll och vilka funktioner som รคr tillgรคngliga i din region." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Tryck fรถr detaljer" @@ -11976,7 +11989,7 @@ msgstr "Tryck fรถr att stรคnga kontextmeny" msgid "Tap to copy this invite link" msgstr "Tryck fรถr att kopiera den hรคr inbjudningslรคnken" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Tryck fรถr att avvisa" @@ -12003,7 +12016,7 @@ msgstr "Tryck fรถr att ta bort din reaktion {0}" msgid "Tap to request access to join this group chat" msgstr "Tryck fรถr att begรคra att fรฅ รฅtkomst till den hรคr gruppchatten" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Tryck fรถr att fรถrsรถka igen" @@ -12016,7 +12029,7 @@ msgstr "Tryck fรถr att visa reaktioner med {0}" msgid "Tap to show all reactions" msgstr "Tryck fรถr att visa alla reaktioner" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tryck fรถr att visa reaktioner" @@ -12032,7 +12045,7 @@ msgstr "Uppgiften slutfรถrd - Du fรถljer 10 stycken!" msgid "Task complete - 10 likes!" msgstr "Uppgift slutfรถrd - 10 gillamarkeringar!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Lรคr vรฅr algoritm vad du vill" @@ -12060,7 +12073,7 @@ msgstr "Villkor" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Det startpaketet kunde inte hittas." msgid "That username is already taken" msgstr "Det anvรคndarnamnet รคr redan taget" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Det var allt!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Det var allt!" @@ -12216,7 +12229,7 @@ msgstr "Det verkar som att servern har problem. Fรถrsรถk igen om en liten stund. msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Startpaketet som du fรถrsรถker visa รคr ogiltigt. Du kan radera det hรคr startpaketet istรคllet." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Kontextmenyns รคmne" @@ -12238,7 +12251,7 @@ msgstr "Den verifieringskod du har angett รคr ogiltig. Kontrollera att du har an msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "Vรฅr verifieringsleverantรถr kunde inte skicka en kod till ditt telefonnummer. Kontrollera ditt telefonnummer och fรถrsรถk igen." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "Ett problem uppstod under inlรคsningen av gif-bilderna. Kontrollera din msgid "There was a problem with your internet connection, please try again" msgstr "Ett problem uppstod med din internetanslutning. Fรถrsรถk igen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "Ett problem uppstod med din internetanslutning. Fรถrsรถk igen" msgid "There was an issue contacting the server" msgstr "Ett problem uppstod med anslutningen till servern" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Ett problem uppstod med anslutningen till servern. Kontrollera din internetanslutning och fรถrsรถk igen." @@ -12283,8 +12296,8 @@ msgstr "Ett problem uppstod med anslutningen till servern. Kontrollera din inter msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ett problem uppstod med att hรคmta notiser. Tryck hรคr fรถr att fรถrsรถka igen." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Ett problem uppstod med att hรคmta inlรคgg. Tryck hรคr fรถr att fรถrsรถka igen." @@ -12309,7 +12322,7 @@ msgstr "Ett problem uppstod med att hรคmta din serviceinformation" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Ett problem uppstod med att ta bort det hรคr flรถdet. Kontrollera din internetanslutning och fรถrsรถk igen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "De hรคr instรคllningarna gรคller bara fรถr flรถdet Fรถljer." msgid "These URLs" msgstr "Dessa URL:er" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Anvรคndaren รคger chatten" @@ -12392,7 +12405,7 @@ msgstr "Anvรคndaren รคger chatten" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "Anvรคndaren kommer inte kunna gรฅ med igen utan att bli inbjuden av dig." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Den hรคr {screenDescription} har flaggats:" @@ -12408,7 +12421,7 @@ msgstr "Det hรคr kontot har markerats som automatiserat av รคgaren." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Det hรคr kontot har ett eller fler genomfรถrda verifieringsfรถrsรถk, men รคr fรถr nรคrvarande inte verifierat." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Det hรคr kontot har begรคrt att profilen endast fรฅr visas fรถr inloggade anvรคndare." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Det hรคr flรถdet รคr tomt! Du kanske borde fรถlja fler anvรคndare eller justera dina sprรฅkinstรคllningar." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Det hรคr flรถdet รคr tomt." @@ -12554,7 +12567,7 @@ msgstr "Den hรคr gruppen รคr lรฅst pรฅ grund av en modereringsรฅtgรคrd mot รคgar msgid "This handle is reserved. Please try a different one." msgstr "Det hรคr anvรคndarnamnet รคr reserverat. Fรถrsรถk med ett annat." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Den hรคr bilden kunde inte anvรคndas. Fรถrsรถk med ett annat format sรฅsom .jpg eller .png." @@ -12596,7 +12609,7 @@ msgstr "Den hรคr etiketten sattes av dig." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Den hรคr etiketten gรคller fรถr hela anvรคndarkontot och visas pรฅ alla inlรคgg." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Den hรคr etikettsรคttaren har inte lรคmnat nรฅgon information om sina etiketter, och รคr kanske inte aktiv." @@ -12621,13 +12634,13 @@ msgstr "Den hรคr listan รคr tom." msgid "This message is hidden" msgstr "Det hรคr meddelandet รคr dolt" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Det hรคr meddelandet รคr dolt eftersom anvรคndaren blockerar dig." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Det hรคr meddelandet รคr dolt eftersom du blockerar anvรคndaren." @@ -12641,7 +12654,7 @@ msgstr "Den hรคr personen blockerar dig" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Det hรคr inlรคgget har <0>{0} som angivet skapelsedatum, men registrerades pรฅ Bluesky fรถrst den <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Det hรคr inlรคgget har <0>{0} som angivet skapelsedatum, men registr msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Det hรคr inlรคgget har en okรคnd typ av trรฅdrestriktion instรคlld. Din app kan vara inaktuell." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Det hรคr inlรคgget visas bara fรถr inloggade anvรคndare." @@ -12661,7 +12674,7 @@ msgstr "Det hรคr inlรคgget har raderats av fรถrfattaren" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Det hรคr inlรคgget kommer att hรฅllas dolt frรฅn flรถden och trรฅdar. Det hรคr kan inte รฅngras." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Fรถrfattaren till det hรคr inlรคgget har inaktiverat citatinlรคgg." @@ -12698,11 +12711,12 @@ msgstr "Detta bรถr bara ta nรฅgra minuter." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Den hรคr anvรคndaren har inget visningsnamn och kan dรคrfรถr inte verifieras." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Den hรคr anvรคndaren har inga fรถljare." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Den hรคr anvรคndaren har blockerat dig och kan inte nรฅs via meddelanden." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Den hรคr anvรคndaren har blockerat dig. Du kan inte se anvรคndarens innehรฅll." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Den hรคr anvรคndaren har inaktiverat chatten och kan inte nรฅs via meddelanden." @@ -12733,11 +12748,11 @@ msgstr "Den hรคr anvรคndaren finns med pรฅ listan <0>{0} som du har ignorera msgid "This user is new here. Press for more info about when they joined." msgstr "Den hรคr anvรคndaren รคr ny hรคr. Tryck fรถr mer information om nรคr hen gick med." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Den hรคr anvรคndaren fรถljer inte nรฅgon." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Det hรคr videoklippet kan inte spelas upp pรฅ din enhet. Din webblรคsare eller system kan sakna de nรถdvรคndiga videokodekarna (H.264/AAC)." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Detta kommer att permanent radera ditt Bluesky-konto <0>{currentHandle} och all tillhรถrande data. Observera att detta รคven pรฅverkar andra tjรคnster som anvรคnder <1>AT-protokollet och som du har anvรคnt med det hรคr kontot." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Det hรคr tar bort @{0} frรฅn snabbรฅtkomstlistan." @@ -12786,7 +12801,7 @@ msgstr "Trรฅdinstรคllningar" msgid "Threaded" msgstr "Trรคdvy" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Trรฅdinstรคllningar" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "Fรถr mรฅnga kontakter. Du har รถverskridit antalet kontakter du kan importera fรถr att hitta dina vรคnner" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Topp" @@ -12858,7 +12873,7 @@ msgstr "Topp" msgid "Top replies first" msgstr "Populรคra svar fรถrst" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "ร„mne" @@ -12893,22 +12908,26 @@ msgstr "ร–versรคttning till samma sprรฅk รคr inte tillgรคngligt pรฅ din enhet." msgid "Tree view" msgstr "Trรคdvy" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" -msgstr "Trendar" +msgstr "Trendande รคmnen" #. Accessibility label for the icon-only pill that shows currently trending/featured GIFs in the GIF picker. #: src/features/gifPicker/components/GifCategoryPills.tsx:45 msgid "Trending GIFs" msgstr "Trendande gif-bilder" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Alternativ fรถr trendande รคmnen" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Trendande videoklipp" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Avsiktligt stรถrande eller provocerande beteende (โ€trollingโ€)" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Fรถrtroende skapas genom relationer, gemenskaper och delade sammanhang. Dรคrfรถr infรถr vi รคven <0>betrodda verifierare โ€“ organisationer med mรถjlighet att utfรคrda verifieringar direkt." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Fรถrsรถk med ett annat sรถkord eller ta bort nรฅgra filter." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Fรถrsรถk med ett annat sรถkord." @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Kunde inte hรคmta medlemsfรถrfrรฅgningar." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "Kunde inte hitta en vald mottagare." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "Kunde inte att hitta den valda mottagaren." @@ -13024,12 +13045,12 @@ msgstr "Otillgรคngligt" msgid "Unavailable feed information" msgstr "Otillgรคnglig flรถdesinformation" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Hรคv blockering av konto?" msgid "Unblock list" msgstr "Hรคv blockering av lista" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Sluta fรถlj {0}" msgid "Unfollow account" msgstr "Sluta fรถlj konto" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Slutar fรถlja anvรคndaren" @@ -13132,7 +13153,7 @@ msgstr "Omarkerat vuxeninnehรฅll" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "Vuxeninnehรฅll som inte har markerats, รคr krรคnkande eller delas utan samtycke" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Sluta gilla" @@ -13192,7 +13213,7 @@ msgstr "Sluta ignorera den hรคr gruppchatten" msgid "Unmute thread" msgstr "Sluta ignorera trรฅd" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Sรคtt pรฅ ljudet pรฅ videoklippet" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Lossa" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Lossa flรถde" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Lossa frรฅn hem" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Lossa modereringslista" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "Lossade {0} frรฅn Hem" @@ -13258,11 +13279,11 @@ msgstr "Sluta prenumerera pรฅ den hรคr etikettsรคttaren" msgid "Unsubscribed from list" msgstr "Avslutade prenumeration pรฅ lista" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Urklippsinnehรฅll stรถds inte" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Videotypen stรถds inte: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Det gick inte att uppdatera synlighet fรถr svar" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Ladda upp ett foto istรคllet" @@ -13355,7 +13376,7 @@ msgstr "Ladda upp frรฅn Filer" msgid "Upload from Library" msgstr "Ladda upp frรฅn Bibliotek" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "Laddar upp gif-bildโ€ฆ" @@ -13369,7 +13390,7 @@ msgstr "Laddar upp bilderโ€ฆ" msgid "Uploading link thumbnail..." msgstr "Laddar upp miniatyrbild av lรคnkโ€ฆ" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Laddar upp videoโ€ฆ" @@ -13408,7 +13429,7 @@ msgstr "Anvรคnd det hรคr fรถr att logga in pรฅ den andra appen med ditt anvรคnda msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "Anvรคnd e-postadressen fรถr ditt konto, eller en annan giltig e-postadress som du har kontroll รถver, ifall KWS eller Bluesky behรถver kontakta dig." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "anvรคndare" @@ -13510,7 +13531,7 @@ msgstr "Verifiering misslyckades. Fรถrsรถk igen." msgid "Verification settings" msgstr "Verifieringsinstรคllningar" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Verifieringsinstรคllningar" @@ -13618,34 +13639,34 @@ msgstr "Videoklipp" msgid "Video failed to process" msgstr "Bearbetning av videoklipp misslyckades" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Videoflรถde" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Videoklipp frรฅn {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "Videoklipp frรฅn {0}. Tryck fรถr att spela eller pausa videoklippet" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "TV-spel" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Videoklippet รคr pausat" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Videoklippet spelas upp" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Videoklippet hittades inte." @@ -13653,7 +13674,7 @@ msgstr "Videoklippet hittades inte." msgid "Video settings" msgstr "Instรคllningar fรถr videoklipp" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Videoklipp uppladdat" @@ -13662,17 +13683,17 @@ msgstr "Videoklipp uppladdat" msgid "Video: {0}" msgstr "Videoklipp: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videoklipp" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videoklipp fรฅr inte vara lรคngre รคn 3 minuter." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Visa" @@ -13691,9 +13712,9 @@ msgstr "Visa {0}s avatar" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Visa {0}s profil" @@ -13724,13 +13745,13 @@ msgstr "Se blogginlรคgget fรถr mer information" msgid "View debug entry" msgstr "Visa loggpost" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Visa detaljer" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Visa hela trรฅden" @@ -13750,18 +13771,18 @@ msgstr "Visa vรคntande medlemsfรถrfrรฅgningar fรถr den hรคr gruppchatten" msgid "View information about these labels" msgstr "Visa information om de hรคr etiketterna" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Visa mer" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Visa fler trendande videoklipp" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Visa inlรคgg" @@ -13798,15 +13819,15 @@ msgstr "Visa inbjudningslรคnken fรถr den hรคr gruppchatten" msgid "View the labeling service provided by @{0}" msgstr "Visa etiketteringstjรคnsten frรฅn @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Visa den hรคr anvรคndarens verifieringar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Visa anvรคndare som gillar det hรคr flรถdet" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Visa videoklipp" @@ -13831,7 +13852,7 @@ msgstr "Visa dina modereringslistor" msgid "View your muted accounts" msgstr "Visa de konton du har ignorerat" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Visa dina verifieringar" @@ -13840,7 +13861,7 @@ msgstr "Visa dina verifieringar" msgid "Views full image" msgstr "Visar hela bilden" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Visar videoklipp i uppslukande lรคge" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Vi har nรคtverksproblem, fรถrsรถk igen" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "Vi har nรคtverksproblem, fรถrsรถk igen" @@ -14043,7 +14064,7 @@ msgstr "Vi har nรคtverksproblem, fรถrsรถk igen" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Vi infรถr ett nytt lager av verifiering pรฅ Bluesky โ€“ en bockmarkering som รคr lรคtt att se." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Vi รคr glada รถver att ha dig med oss!" @@ -14064,13 +14085,15 @@ msgstr "Tyvรคrr kunde vi inte lรคsa in den hรคr listan. Om problemet kvarstรฅr, msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Tyvรคrr kunde vi inte lรคsa in dina ignorerade ord just nu. Fรถrsรถk igen." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "Tyvรคrr kunde din sรถkning inte genomfรถras." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Tyvรคrr kunde inte din sรถkning slutfรถras. Fรถrsรถk igen om nรฅgra minuter." @@ -14078,7 +14101,7 @@ msgstr "Tyvรคrr kunde inte din sรถkning slutfรถras. Fรถrsรถk igen om nรฅgra minu msgid "We're sorry, you cannot access this screen at this time." msgstr "Tyvรคrr kan du inte komma รฅt den hรคr vyn just nu." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Beklagar! Inlรคgget du svarar pรฅ har raderats." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "hur รคr lรคget" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Vad hรคnder?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Vem kan verifiera?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Hoppsan!" @@ -14220,21 +14243,21 @@ msgstr "Vill du blockera den hรคr anvรคndaren och/eller lรคmna den hรคr konversa msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Vill du spara det hรคr som ett utkast innan du gรฅr till dina utkast?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Vill du spara det hรคr som ett utkast sรฅ att du kan fortsรคtta pรฅ det senare?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Skriv ett inlรคgg" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Skriv inlรคgg" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Skriv ditt svar" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Du anvรคnder Bluesky frรฅn en region dรคr vi enligt lag mรฅste verifiera din รฅlder innan du fรฅr tillgรฅng till appen." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "Du blockerar {0}" @@ -14342,7 +14365,7 @@ msgstr "Du sรคnder inte lรคngre live" msgid "You are not allowed to upload videos." msgstr "Du har inte behรถrighet att ladda upp videoklipp." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Du fรถljer inte nรฅgon รคnnu" @@ -14362,7 +14385,7 @@ msgstr "Du รคr verifierad. Din verifieringsstatus gรฅr fรถrlorad om du รคndrar d msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Du รคr verifierad. Din verifieringsstatus gรฅr fรถrlorad om du รคndrar ditt anvรคndarnamn. <0>Lรคs mer." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Du kan nรคr som helst justera dina intressen frรฅn โ€Innehรฅll och mediaโ€ i instรคllningar." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Du kan nu logga in med ditt nya lรถsenord." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Du kan lรคgga till max {MAX_GALLERY_IMAGES, plural, other {# bilder}} per inlรคgg" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Du kan bara spara utkast med upp till 1000 tecken." @@ -14439,9 +14462,11 @@ msgstr "Du kan lรคsa chatthistoriken men inte skicka nya meddelanden." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Du kan vรคlja upp till {MAX_GALLERY_IMAGES, plural, other {# bilder}} totalt." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Du kan รคndra det hรคr senare i dina instรคllningar." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "Du kan inte lรคgga till mer รคn {EMOJI_REACTION_LIMIT, plural, one {# emojireaktion} other {# emojireaktioner}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Du kan inte skapa en gruppchatt รคnnu." @@ -14555,7 +14581,7 @@ msgstr "Din e-postadress har verifierats utan problem. Du kan stรคnga den hรคr d msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Du har fรถr tillfรคllet nรฅtt grรคnsen fรถr videouppladdningar. Fรถrsรถk igen senare." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Du har osparade รคndringar i det hรคr utkastet. Vill du spara dem?" @@ -14563,7 +14589,7 @@ msgstr "Du har osparade รคndringar i det hรคr utkastet. Vill du spara dem?" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "Du har osparade รคndringar. Vill du spara dem innan du gรฅr till dina utkast?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Du har inte skapat ett startpaket รคnnu!" @@ -14614,7 +14640,7 @@ msgstr "Du kan bara lรคgga till hรถgst {STARTER_PACK_MAX_SIZE, plural, other {{S msgid "You may only add up to 3 feeds" msgstr "Du kan bara lรคgga till hรถgst 3 flรถden" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Du mรฅste vara chattรคgare fรถr att ta bort en medlem." @@ -14622,7 +14648,7 @@ msgstr "Du mรฅste vara chattรคgare fรถr att ta bort en medlem." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Du mรฅste vara minst 13 รฅr fรถr att anvรคnda Bluesky. Lรคs vรฅra <0>anvรคndarvillkor fรถr mer information." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Du mรฅste fรถlja minst sju andra personer fรถr att generera ett startpaket." @@ -14639,7 +14665,7 @@ msgstr "Du mรฅste tillรฅta รฅtkomst till ditt mediebibliotek." msgid "You need to verify your email address before you can enable email 2FA." msgstr "Du mรฅste verifiera din e-postadress innan du kan aktivera 2FA via e-post." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Du รคger chatten" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Du vill nog starta om appen nu." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Du reagerade med {0}" @@ -14667,15 +14693,15 @@ msgstr "Du reagerade med {0} pรฅ {target}" msgid "You recently changed your birthdate" msgstr "Du รคndrade ditt fรถdelsedatum nyligen" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Du svarade" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "Du svarade {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Du svarade dig sjรคlv" @@ -14715,11 +14741,11 @@ msgstr "Du kommer inte att kunna gรฅ med igen utan en inbjudan." msgid "You: {message}" msgstr "Du: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Du kommer att fรถlja de fรถreslagna anvรคndarna och flรถdena nรคr du รคr klar med skapandet av ditt konto!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Du kommer att fรถlja de fรถreslagna anvรคndarna nรคr du รคr klar med skapandet av ditt konto!" @@ -14791,7 +14817,7 @@ msgstr "Du har nรฅtt slutet av det aktiva innehรฅllet." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Du har nรฅtt slutet av ditt flรถde! Hitta nรฅgra fler konton att fรถlja." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "Du har nรฅtt det maximala antalet utkast" @@ -14799,7 +14825,7 @@ msgstr "Du har nรฅtt det maximala antalet utkast" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "Du har nรฅtt maxgrรคnsen fรถr antalet tillรฅtna begรคranden. Fรถrsรถk igen senare." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Du har nรฅtt grรคnsen pรฅ maximalt {MAX_FILTERS, plural, one {# filter} other {# filter}}. Lรคgg till fler vรคrden i dina befintliga filter istรคllet fรถr att skapa nya." @@ -14815,11 +14841,11 @@ msgstr "Du har nรฅtt din dagliga grรคns fรถr videouppladdningar (fรถr mรฅnga byt msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Du har nรฅtt din dagliga grรคns fรถr videouppladdningar (fรถr mรฅnga videoklipp)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Det finns inga fler videoklipp att titta pรฅ. Det kanske รคr dags fรถr att ta en paus?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Ditt konto" @@ -14835,11 +14861,11 @@ msgstr "Ditt konto har stรคngts av" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Ditt konto รคr รคnnu inte tillrรคckligt gammalt fรถr att ladda upp videoklipp. Fรถrsรถk igen senare." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Ditt konto รคr fรถr nytt" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Ditt konto mรฅste vara minst 7 dagar gammalt fรถr att skapa en ny gruppchatt." @@ -14896,7 +14922,7 @@ msgstr "Din e-post" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Din e-postadress verkar vara ogiltig." @@ -14930,8 +14956,8 @@ msgstr "Din kontoleverantรถr kan inte identifieras genom en e-postadress, sรฅ de msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Din kontoleverantรถr identifieras automatiskt utifrรฅn anvรคndarnamnet du anger." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Dina intressen har uppdaterats!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Dina intressen hjรคlper oss att hitta det du gillar!" @@ -14967,11 +14993,11 @@ msgstr "Din รคndring av lรถsenordet lyckades! Anvรคnd ditt nya lรถsenord nรคr du msgid "Your password must be at least 8 characters long." msgstr "Ditt lรถsenord mรฅste vara minst 8 tecken lรฅngt." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Ditt inlรคgg har skickats" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Dina inlรคgg har skickats" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Ditt fรถredragna sprรฅk" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Din profilbild" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "Din profilbild i mitten, omgiven av andra anvรคndares profilbilder i ringar runt omkring" @@ -14992,7 +15018,7 @@ msgstr "Din profilbild i mitten, omgiven av andra anvรคndares profilbilder i rin msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Din profil samt dina inlรคgg, flรถden och listor kommer inte lรคngre att vara synliga fรถr andra Bluesky-anvรคndare. Du kan รฅteraktivera ditt konto nรคr som helst genom att logga in." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Ditt svar har skickats" @@ -15005,7 +15031,7 @@ msgstr "Din anmรคlan kommer att skickas till <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Dina valda intressen hjรคlper oss att visa dig innehรฅll som du bryr dig om." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Din trรฅd innehรฅller tomma inlรคgg som kommer att hoppas รถver. De รฅterstรฅende inlรคggen publiceras som en trรฅd." diff --git a/src/locale/locales/th/messages.po b/src/locale/locales/th/messages.po index ea9d91e92d..d2c43654b7 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Thai\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(เธกเธตเน€เธ™เธทเน‰เธญเธซเธฒเธ—เธตเนˆเธเธฑเธ‡เธญเธขเธนเนˆ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} เธ•เธดเธ”เธ•เธฒเธกเธญเธขเธนเนˆ" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} เน„เธกเนˆเธชเธฒเธกเธฒเธฃเธ–เธชเนˆเธ‡เธ‚เน‰เธญเธ„เธงเธฒเธกเน„เธ”เน‰" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {เธฃเธตเน‚เธžเธชเธ•เนŒ}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 เธงเธฑเธ™" msgid "7 days" msgstr "7 เธงเธฑเธ™" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "เธเธฒเธฃเน€เธ‚เน‰เธฒเธ–เธถเธ‡" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธเธฒเธฃเน€เธ‚เน‰เธฒเธ–เธถเธ‡" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "เธšเธฑเธเธŠเธตเธ–เธนเธเธ›เธดเธ”เน€เธชเธตเธขเธ‡เน‚เธ”เธขเธฅเธดเธชเธ•เนŒ msgid "Account options" msgstr "เธ•เธฑเธงเน€เธฅเธทเธญเธเธšเธฑเธเธŠเธต" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "เธฅเธšเธšเธฑเธเธŠเธตเธญเธญเธเธˆเธฒเธเธเธฒเธฃเน€เธ‚เน‰เธฒเธ–เธถเธ‡เธ”เนˆเธงเธ™เนเธฅเน‰เธง" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "เน€เธžเธดเนˆเธกเธ‚เน‰เธญเธ„เธงเธฒเธกเนเธชเธ”เธ‡เนเธ—เธ™ (เน„เธกเนˆเธš msgid "Add another account" msgstr "" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "เน€เธžเธดเนˆเธกเธŸเธตเธ•เธ™เธตเน‰เนƒเธ™เธŸเธตเธ•เธ‚เธญเธ‡เธ„เธธเธ“" msgid "Add to lists" msgstr "เน€เธžเธดเนˆเธกเนƒเธ™เธฅเธดเธชเธ•เนŒ" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "เธŸเธตเธ”เธ—เธฑเน‰เธ‡เธซเธกเธ”เธ—เธตเนˆเธ„เธธเธ“เธšเธฑเธ™เธ—เธถเธเธฃเธงเธกเน„เธงเน‰เนƒเธ™เธ—เธตเนˆเน€เธ”เธตเธขเธงเนเธฅเน‰เธง" @@ -1560,7 +1511,7 @@ msgstr "เธญเธ™เธธเธเธฒเธ•เนƒเธซเน‰เน€เธ‚เน‰เธฒเธ–เธถเธ‡เธ‚เน‰เธญเธ„เธงเธฒเธกเธช msgid "Already have a code?" msgstr "เธกเธตเน‚เธ„เน‰เธ”เธซเธฃเธทเธญเธขเธฑเธ‡?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "เธญเธตเน€เธกเธฅเน„เธ”เน‰เธ–เธนเธเธชเนˆเธ‡เน„เธ›เธขเธฑเธ‡ {0} เนเธฅเน‰ msgid "An error has occurred" msgstr "เน€เธเธดเธ”เธ‚เน‰เธญเธœเธดเธ”เธžเธฅเธฒเธ”" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "เน€เธเธดเธ”เธ‚เน‰เธญเธœเธดเธ”เธžเธฅเธฒเธ”" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "เน€เธเธดเธ”เธ‚เน‰เธญเธœเธดเธ”เธžเธฅเธฒเธ”เธ‚เธ“เธฐเธชเธฃเน‰เธฒเธ‡เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เธ‚เธญเธ‡เธ„เธธเธ“ เธ•เน‰เธญเธ‡เธเธฒเธฃเธฅเธญเธ‡เธญเธตเธเธ„เธฃเธฑเน‰เธ‡เธซเธฃเธทเธญเน„เธกเนˆ?" @@ -1640,11 +1591,11 @@ msgstr "เน€เธเธดเธ”เธ‚เน‰เธญเธœเธดเธ”เธžเธฅเธฒเธ”เธ‚เธ“เธฐเธชเธฃเน‰เธฒเธ‡เธŠเธธ msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "เน€เธเธดเธ”เธ‚เน‰เธญเธœเธดเธ”เธžเธฅเธฒเธ”เธ‚เธ“เธฐเน‚เธซเธฅเธ”เธงเธดเธ”เธตเน‚เธญ เน‚เธ›เธฃเธ”เธฅเธญเธ‡เธญเธตเธเธ„เธฃเธฑเน‰เธ‡เนƒเธ™เธ เธฒเธขเธซเธฅเธฑเธ‡" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "เน€เธเธดเธ”เธ‚เน‰เธญเธœเธดเธ”เธžเธฅเธฒเธ”เธ‚เธ“เธฐเน‚เธซเธฅเธ”เธงเธดเธ”เธตเน‚เธญ เน‚เธ›เธฃเธ”เธฅเธญเธ‡เธญเธตเธเธ„เธฃเธฑเน‰เธ‡" @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "เธ›เธฑเธเธซเธฒเธ—เธตเนˆเน„เธกเนˆเน„เธ”เน‰เธฃเธงเธกเธญเธขเธนเนˆเนƒเธ™เธ•เธฑเธงเน€เธฅเธทเธญเธเน€เธซเธฅเนˆเธฒเธ™เธตเน‰" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "เน€เธเธดเธ”เธ›เธฑเธเธซเธฒเธ‚เธ“เธฐเธžเธขเธฒเธขเธฒเธกเน€เธ›เธดเธ”เธเธฒเธฃเธชเธ™เธ—เธ™เธฒ" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "" msgid "App passwords" msgstr "เธฃเธซเธฑเธชเธœเนˆเธฒเธ™เนเธญเธ›" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "เธฃเธซเธฑเธชเธœเนˆเธฒเธ™เนเธญเธ›" @@ -1891,8 +1838,8 @@ msgstr "เธญเธธเธ—เธ˜เธฃเธ“เนŒเธเธฒเธฃเธ•เธฑเธ”เธชเธดเธ™เนƒเธˆเธ™เธตเน‰" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "" @@ -1980,7 +1927,7 @@ msgstr "เธ„เธธเธ“เนเธ™เนˆเนƒเธˆเธซเธฃเธทเธญเธงเนˆเธฒเธ•เน‰เธญเธ‡เธเธฒเธฃเธฅเธš msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "" @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "เธงเธฑเธ™เน€เธเธดเธ”" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "เธ–เธนเธเธšเธฅเน‡เธญเธ" msgid "Blocked accounts" msgstr "เธšเธฑเธเธŠเธตเธ—เธตเนˆเธ–เธนเธเธšเธฅเน‡เธญเธ" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "เธšเธฑเธเธŠเธตเธ—เธตเนˆเธ–เธนเธเธšเธฅเน‡เธญเธ" @@ -2282,7 +2244,7 @@ msgstr "เธšเธฑเธเธŠเธตเธ—เธตเนˆเธ–เธนเธเธšเธฅเน‡เธญเธเน„เธกเนˆเธชเธฒเธกเธฒเธฃ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "เธšเธฑเธเธŠเธตเธ—เธตเนˆเธ–เธนเธเธšเธฅเน‡เธญเธเน„เธกเนˆเธชเธฒเธกเธฒเธฃเธ–เธ•เธญเธšเนƒเธ™เธเธฃเธฐเธ—เธนเน‰เธ‚เธญเธ‡เธ„เธธเธ“, เธเธฅเนˆเธฒเธงเธ–เธถเธ‡เธ„เธธเธ“, เธซเธฃเธทเธญเธกเธตเธ›เธเธดเธชเธฑเธกเธžเธฑเธ™เธ˜เนŒเธเธฑเธšเธ„เธธเธ“เน„เธ”เน‰ เธ„เธธเธ“เธˆเธฐเน„เธกเนˆเน€เธซเน‡เธ™เน€เธ™เธทเน‰เธญเธซเธฒเธ‚เธญเธ‡เธžเธงเธเน€เธ‚เธฒเนเธฅเธฐเธžเธงเธเน€เธ‚เธฒเธˆเธฐเน„เธกเนˆเน€เธซเน‡เธ™เน€เธ™เธทเน‰เธญเธซเธฒเธ‚เธญเธ‡เธ„เธธเธ“" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "เธเธฒเธฃเธšเธฅเน‡เธญเธเน„เธกเนˆเน„เธ”เน‰เธ›เน‰เธญเธ‡เธเธฑเธ™เธœเธนเน‰เธ—เธณเน€เธ„เธฃเธทเนˆเธญเธ‡เธซเธกเธฒเธขเธ™เธตเน‰เธˆเธฒเธเธเธฒเธฃเธงเธฒเธ‡เธ›เน‰เธฒเธขเธšเธ™เธšเธฑเธเธŠเธตเธ‚เธญเธ‡เธ„เธธเธ“" @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2330,7 +2293,7 @@ msgstr "Bluesky เน€เธ›เน‡เธ™เน€เธ„เธฃเธทเธญเธ‚เนˆเธฒเธขเน€เธ›เธดเธ”เธ—เธตเนˆเธ„ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky เธชเธ™เธธเธเธขเธดเนˆเธ‡เธ‚เธถเน‰เธ™เน€เธกเธทเนˆเธญเธกเธตเน€เธžเธทเนˆเธญเธ™!" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky เธˆเธฐเน€เธฅเธทเธญเธเธŠเธธเธ”เธšเธฑเธเธŠเธตเธ—เธตเนˆเนเธ™เธฐเธ™เธณเธˆเธฒเธเธœเธนเน‰เธ„เธ™เนƒเธ™เน€เธ„เธฃเธทเธญเธ‚เนˆเธฒเธขเธ‚เธญเธ‡เธ„เธธเธ“" @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "เน€เธฃเธตเธขเธเธ”เธนเธŸเธตเธ”เน€เธžเธดเนˆเธกเน€เธ•เธดเธกเนƒเธ™เธซเธ™เน‰เธฒเธ„เน‰เธ™เธซเธฒ" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "เน€เธฃเธตเธขเธเธ”เธนเธ‚เน‰เธญเน€เธชเธ™เธญเน€เธžเธดเนˆเธกเน€เธ•เธดเธก" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "เน€เธฃเธตเธขเธเธ”เธนเธ‚เน‰เธญเน€เธชเธ™เธญเน€เธžเธดเนˆเธกเน€เธ•เธดเธกเนƒเธ™เธซเธ™เน‰เธฒเธ„เน‰เธ™เธซเธฒ" @@ -2425,24 +2388,25 @@ msgstr "เน€เธฃเธตเธขเธเธ”เธนเธ‚เน‰เธญเน€เธชเธ™เธญเน€เธžเธดเนˆเธกเน€เธ•เธดเธกเนƒ msgid "Browse other feeds" msgstr "เน€เธฃเธตเธขเธเธ”เธนเธŸเธตเธ”เธญเธทเนˆเธ™ เน†" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "เน‚เธ”เธข {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2468,11 @@ msgstr "" msgid "By creating an account you agree to the <0>Terms of Service." msgstr "" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "เธขเธเน€เธฅเธดเธเธเธฒเธฃเน€เธ›เธดเธ”เนƒเธŠเน‰เธ‡เธฒเธ™เนƒเธซเธกเนˆเน msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "เธขเธเน€เธฅเธดเธเธเธฒเธฃเธ„เน‰เธ™เธซเธฒ" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "เธ›เธดเธ”เน€เธชเธตเธขเธ‡เนเธŠเธ—เนเธฅเน‰เธง" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "เธ•เธฑเน‰เธ‡เธ„เนˆเธฒเนเธŠเธ—" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "เน€เธ›เธดเธ”เน€เธชเธตเธขเธ‡เนเธŠเธ—เนเธฅเน‰เธง" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "" msgid "Choose Feeds" msgstr "เน€เธฅเธทเธญเธเธŸเธตเธ”" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "เน€เธฅเธทเธญเธเนƒเธซเน‰เธ‰เธฑเธ™" @@ -2854,7 +2819,7 @@ msgstr "เน€เธฅเธทเธญเธเธœเธนเน‰เธ„เธ™" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "เน€เธฅเธทเธญเธเธชเธตเธ™เธตเน‰เน€เธ›เน‡เธ™เธญเธงเธฒเธ•เธฒเธฃเนŒเธ‚เธญเธ‡เธ„เธธเธ“" @@ -2879,7 +2844,7 @@ msgstr "" msgid "Choose your password" msgstr "เธ›เน‰เธญเธ™เธฃเธซเธฑเธชเธœเนˆเธฒเธ™เธ‚เธญเธ‡เธ„เธธเธ“" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "เนเธฎเธ™เธ”เนŒเน€เธ”เธดเธฅเธœเธนเน‰เนƒเธŠเน‰เธ‚เธญเธ‡เธ„เธธเธ“" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "เธ„เธฅเธดเธเน€เธžเธทเนˆเธญเธžเธขเธฒเธขเธฒเธกเธชเนˆเธ‡เธ‚เน‰เธญเธ„เธงเธฒเธกเธ—เธตเนˆเธฅเน‰เธกเน€เธซเธฅเธงเธญเธตเธเธ„เธฃเธฑเน‰เธ‡" @@ -3003,7 +2968,7 @@ msgstr "เธ„เธฅเธดเธเน€เธžเธทเนˆเธญเธžเธขเธฒเธขเธฒเธกเธชเนˆเธ‡เธ‚เน‰เธญเธ„เธงเธฒ #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "เธ„เธฅเธดเธเน€เธžเธทเนˆเธญเธžเธขเธฒเธขเธฒเธกเธชเนˆเธ‡เธ‚เน‰เธญเธ„เธงเธฒ msgid "Close" msgstr "เธ›เธดเธ”" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "เธ›เธดเธ”เธเธฅเนˆเธญเธ‡เน‚เธ•เน‰เธ•เธญเธšเธ—เธตเนˆเน€เธ›เธดเธ”เธญเธขเธนเนˆ" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "เธ›เธดเธ”เธเธฅเนˆเธญเธ‡เน‚เธ•เน‰เธ•เธญเธšเธ™เธตเน‰" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "เธ›เธดเธ”เธเธฒเธฃเนเธˆเน‰เธ‡เน€เธ•เธทเธญเธ™เธเธฒเธฃเธญเธฑเธ›เน€เธ”เธ•เธฃเธซเธฑเธชเธœเนˆเธฒเธ™" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "เน‚เธซเธกเธ”เธชเธต" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "เธเธฒเธฃเนŒเธ•เธนเธ™" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "เนเธ™เธงเธ—เธฒเธ‡เธŠเธธเธกเธŠเธ™" @@ -3141,7 +3106,7 @@ msgstr "เนเธ™เธงเธ—เธฒเธ‡เธŠเธธเธกเธŠเธ™" msgid "Complete onboarding and start using your account" msgstr "เน€เธชเธฃเน‡เธˆเธชเธดเน‰เธ™เธเธฒเธฃเธญเธšเธฃเธกเนเธฅเธฐเน€เธฃเธดเนˆเธกเนƒเธŠเน‰เธ‡เธฒเธ™เธšเธฑเธเธŠเธตเธ‚เธญเธ‡เธ„เธธเธ“" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "เธ—เธณเนƒเธซเน‰เธชเธณเน€เธฃเน‡เธˆเธ•เธฒเธกเธ„เธงเธฒเธกเธ—เน‰เธฒเธ—เธฒเธข" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "เธชเธฃเน‰เธฒเธ‡เธเธฒเธฃเธ•เธญเธšเธเธฅเธฑเธš" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "" @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "เธ•เธดเธ”เธ•เนˆเธญเธเนˆเธฒเธขเธชเธ™เธฑเธšเธชเธ™เธธเธ™" @@ -3253,7 +3218,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "" @@ -3265,10 +3230,6 @@ msgstr "เน€เธ™เธทเน‰เธญเธซเธฒเธ–เธนเธเธšเธฅเน‡เธญเธ" msgid "Content filters" msgstr "เธ•เธฑเธงเธเธฃเธญเธ‡เน€เธ™เธทเน‰เธญเธซเธฒ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "เธ„เธณเน€เธ•เธทเธญเธ™เน€เธ™เธทเน‰เธญเธซเธฒ" msgid "Content warnings" msgstr "เธ„เธณเน€เธ•เธทเธญเธ™เน€เธ™เธทเน‰เธญเธซเธฒ" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "เนเธšเน‡เธ„เธ”เธฃเธญเธ›เน€เธกเธ™เธนเธšเธฃเธดเธšเธ— เธ„เธฅเธดเธเน€เธžเธทเนˆเธญเธ›เธดเธ”เน€เธกเธ™เธน" @@ -3302,7 +3263,7 @@ msgstr "เนเธšเน‡เธ„เธ”เธฃเธญเธ›เน€เธกเธ™เธนเธšเธฃเธดเธšเธ— เธ„เธฅเธดเธเน€เธž #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "เธ”เธณเน€เธ™เธดเธ™เธเธฒเธฃเธ•เนˆเธญเน€เธ˜เธฃเธ”..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "เธ„เธฑเธ”เธฅเธญเธเน€เธงเธญเธฃเนŒเธŠเธฑเธ™เธšเธดเธฅเธ”เนŒเน„เธ›เธขเธฑเธ‡เธ„เธฅเธดเธ›เธšเธญเธฃเนŒเธ”เนเธฅเน‰เธง" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "เธ„เธฑเธ”เธฅเธญเธเธฅเธดเธ‡เธเนŒ" msgid "Copy link to list" msgstr "เธ„เธฑเธ”เธฅเธญเธเธฅเธดเธ‡เธเนŒเน„เธ›เธขเธฑเธ‡เธฅเธดเธชเธ•เนŒ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "เธ„เธฑเธ”เธฅเธญเธเธฅเธดเธ‡เธเนŒเน„เธ›เธขเธฑเธ‡เน‚เธžเธชเธ•เนŒ" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "เธ„เธฑเธ”เธฅเธญเธเธ‚เน‰เธญเธ„เธงเธฒเธก" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "เธ™เน‚เธขเธšเธฒเธขเธฅเธดเธ‚เธชเธดเธ—เธ˜เธดเนŒ" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "เน„เธกเนˆเธชเธฒเธกเธฒเธฃเธ–เธญเธญเธเธˆเธฒเธเธเธฒเธฃเธชเธ™เธ—เธ™เธฒเน„เธ”เน‰" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "เน„เธกเนˆเธชเธฒเธกเธฒเธฃเธ–เน‚เธซเธฅเธ”เธŸเธตเธ”เน„เธ”เน‰" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "เน„เธกเนˆเธชเธฒเธกเธฒเธฃเธ–เธ›เธดเธ”เน€เธชเธตเธขเธ‡เธเธฒเธฃเธชเธ™เธ—เธ™เธฒเน„เธ”เน‰" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "เธชเธฃเน‰เธฒเธ‡" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "เธชเธฃเน‰เธฒเธ‡ QR เน‚เธ„เน‰เธ”เธชเธณเธซเธฃเธฑเธšเธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "เธชเธฃเน‰เธฒเธ‡เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "เธชเธฃเน‰เธฒเธ‡เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เธชเธณเธซเธฃเธฑเธšเธ‰เธฑเธ™" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "เธชเธกเธฑเธ„เธฃเธชเธกเธฒเธŠเธดเธ" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "เธชเธฃเน‰เธฒเธ‡เธšเธฑเธเธŠเธต" @@ -3666,15 +3627,15 @@ msgstr "เธชเธฃเน‰เธฒเธ‡เธšเธฑเธเธŠเธต" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "เธชเธฃเน‰เธฒเธ‡เธญเธงเธ•เธฒเธฃเนเธ—เธ™" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "เธชเธฃเน‰เธฒเธ‡เธญเธฑเธ™เนƒเธซเธกเนˆ" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "เธงเธฑเธ’เธ™เธ˜เธฃเธฃเธก" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "เธกเธทเธ”" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "เธกเธทเธ”" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "เธ˜เธตเธกเธกเธทเธ”" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "เธ„เนˆเธฒเน€เธฃเธดเนˆเธกเธ•เธฑเธ™" @@ -3894,7 +3855,7 @@ msgstr "เธฅเธšเธšเธฑเธเธŠเธตเธ‚เธญเธ‡เธ‰เธฑเธ™" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "เธฅเธšเน‚เธžเธชเธ•เนŒ" @@ -3988,7 +3949,7 @@ msgstr "เธเธฅเนˆเธญเธ‡เน‚เธ•เน‰เธ•เธญเธš: เธ›เธฃเธฑเธšเธงเนˆเธฒเนƒเธ„เธฃเธชเธฒ msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "เธชเธงเนˆเธฒเธ‡" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "เธ›เธดเธ”เนƒเธŠเน‰เธ‡เธฒเธ™" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "เธฅเธฐเธ—เธดเน‰เธ‡" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "เธฅเธฐเธ—เธดเน‰เธ‡เธฃเนˆเธฒเธ‡เธ‚เน‰เธญเธ„เธงเธฒเธกเธซเธฃเธทเธญเน„เธกเนˆ?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "เน„เธกเนˆเธชเธ™เธฑเธšเธชเธ™เธธเธ™เนเธญเธ›เนƒเธซเน‰เนเธชเธ”เธ‡เธšเธฑเธเธŠเธตเธ‚เธญเธ‡เธ‰เธฑเธ™เธ•เนˆเธญเธœเธนเน‰เนƒเธŠเน‰เธ—เธตเนˆเน„เธกเนˆเน„เธ”เน‰เน€เธ‚เน‰เธฒเธชเธนเนˆเธฃเธฐเธšเธš" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "เน„เธกเนˆเธชเธ™เธฑเธšเธชเธ™เธธเธ™เนเธญเธ›เนƒเธซเน‰เนเธชเธ”เธ‡เธšเธฑเธ msgid "Discover new custom feeds" msgstr "เธ„เน‰เธ™เธžเธšเธŸเธตเธ”เธ—เธตเนˆเธเธณเธซเธ™เธ”เน€เธญเธ‡เนƒเธซเธกเนˆเน†" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "เธ„เน‰เธ™เธžเธšเธŸเธตเธ”เนƒเธซเธกเนˆ" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "เธ›เธดเธ”" @@ -4103,28 +4064,28 @@ msgstr "เธ›เธดเธ”" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "เธ›เธดเธ”เธ‚เน‰เธญเธœเธดเธ”เธžเธฅเธฒเธ”" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "เธ›เธดเธ”เธ„เธนเนˆเธกเธทเธญเน€เธฃเธดเนˆเธกเธ•เน‰เธ™เนƒเธŠเน‰เธ‡เธฒเธ™" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "เนเธชเธ”เธ‡เธ›เน‰เธฒเธขเธ‚เน‰เธญเธ„เธงเธฒเธกเธ„เธณเธญเธ˜เธดเธšเธฒเธขเธ  msgid "Display name" msgstr "เธŠเธทเนˆเธญเธ—เธตเนˆเนเธชเธ”เธ‡" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "เน€เธชเธฃเน‡เธˆเธชเธดเน‰เธ™" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "เนเธ•เธฐเธชเธญเธ‡เธ„เธฃเธฑเน‰เธ‡เน€เธžเธทเนˆเธญเธ›เธดเธ”เธซเธ™เน‰เธฒเธ•เนˆเธฒเธ‡" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "เนเธเน‰เน„เธ‚เธฃเธนเธ›เธ เธฒเธž" msgid "Edit interaction settings" msgstr "เนเธเน‰เน„เธ‚เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธเธฒเธฃเน‚เธ•เน‰เธ•เธญเธš" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "เนเธเน‰เน„เธ‚เธŸเธตเธ”เธ‚เธญเธ‡เธ‰เธฑเธ™" @@ -4406,6 +4368,11 @@ msgstr "เนเธเน‰เน„เธ‚เธŸเธตเธ”เธ‚เธญเธ‡เธ‰เธฑเธ™" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "เนเธเน‰เน„เธ‚เธšเธธเธ„เธ„เธฅ" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "เนเธเน‰เน„เธ‚เธœเธนเน‰เธ—เธตเนˆเธชเธฒเธกเธฒเธฃเธ–เธ•เธญเธšเธเธฅเธฑเธšเน„เธ”เน‰" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "เนเธเน‰เน„เธ‚เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เธ‚เธญเธ‡เธ„เธธเธ“" @@ -4500,8 +4467,8 @@ msgstr "เธเธฑเธ‡ HTML" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "เธเธฑเธ‡เน‚เธžเธชเธ•เนŒ" @@ -4509,7 +4476,7 @@ msgstr "เธเธฑเธ‡เน‚เธžเธชเธ•เนŒ" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "เธเธฑเธ‡เน‚เธžเธชเธ•เนŒเน€เธงเน‡เธšเน„เธ‹เธ•เนŒเธ‚เธญเธ‡เธ„เธธเธ“ เนเธ„เนˆเธเธฃเธญเธเน‚เธ„เน‰เธ”เธ”เน‰เธฒเธ™เธฅเนˆเธฒเธ‡เนเธฅเน‰เธงเธงเธฒเธ‡เธšเธ™เน€เธงเน‡เธšเน„เธ‹เธ•เนŒ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "" @@ -4533,7 +4500,7 @@ msgstr "เธญเธ™เธธเธเธฒเธ•เนƒเธซเน‰เน€เธ‚เน‰เธฒเธ–เธถเธ‡เน€เธ™เธทเน‰เธญเธซเธฒเธœ msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "เธญเธ™เธธเธเธฒเธ•เนƒเธซเน‰เธ™เธณเน„เธŸเธฅเนŒเธ”เน‰เธฒเธ™เธ™เธญเธเน€เธ‚ msgid "Enable media players for" msgstr "เธญเธ™เธธเธเธฒเธ•เธ•เธฑเธงเน€เธฅเนˆเธ™เธชเธทเนˆเธญเธชเธณเธซเธฃเธฑเธš" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "เธญเธ™เธธเธเธฒเธ•เนเธฅเน‰เธง" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "เธˆเธšเธŸเธตเธ•" @@ -4608,7 +4576,7 @@ msgstr "เธ›เน‰เธญเธ™เธ„เธณเธซเธฃเธทเธญเนเธ—เน‡เธ" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "" @@ -4650,11 +4618,11 @@ msgstr "เนƒเธชเนˆเธŠเธทเนˆเธญเธœเธนเน‰เนƒเธŠเน‰เธ‚เธญเธ‡เธ„เธธเธ“เนเธฅเธฐเธฃเธซ msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" @@ -4684,7 +4652,7 @@ msgstr "เน€เธเธดเธ”เธ‚เน‰เธญเธœเธดเธ”เธžเธฅเธฒเธ”เนƒเธ™เธ‚เธ“เธฐเธ—เธตเนˆเธšเธฑ msgid "Error receiving captcha response." msgstr "เน€เธเธดเธ”เธ‚เน‰เธญเธœเธดเธ”เธžเธฅเธฒเธ”เธเธฒเธฃเธ•เธญเธšเธชเธ™เธญเธ‡เธ‚เธญเธ‡ Captcha" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "เธ„เธ™เธ—เธตเนˆเธชเธฒเธกเธฒเธฃเธ–เธ•เธญเธšเธเธฅเธฑเธšเน„เธ”เน‰" msgid "Everybody can reply to this post." msgstr "เธ„เธ™เธ—เธตเนˆเธชเธฒเธกเธฒเธฃเธ–เธ•เธญเธšเธเธฅเธฑเธšเน„เธ”เน‰เนƒเธ™เน‚เธžเธชเธ„เนŒเธ™เธตเน‰" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "เธ—เธธเธเธ„เธ™" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "เธ—เธธเธเธ„เธ™" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "เน„เธกเนˆเธฃเธงเธกเธœเธนเน‰เนƒเธŠเน‰เธ—เธตเนˆเธ„เธธเธ“เธ•เธดเธ”เธ•เธฒเธก msgid "Excludes users you follow" msgstr "เน„เธกเนˆเธฃเธงเธกเธœเธนเน‰เนƒเธŠเน‰เธ—เธตเนˆเธ„เธธเธ“เธ•เธดเธ”เธ•เธฒเธก" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "เธญเธญเธเธˆเธฒเธเน‚เธซเธกเธ”เน€เธ•เน‡เธกเธซเธ™เน‰เธฒเธˆเธญ" @@ -4755,11 +4723,11 @@ msgstr "เธ‚เธขเธฒเธขเธฃเธฒเธขเธŠเธทเนˆเธญเธœเธนเน‰เนƒเธŠเน‰" msgid "Expand or collapse the full post you are replying to" msgstr "เธ‚เธขเธฒเธขเธซเธฃเธทเธญเธฅเธ”เธ‚เธ™เธฒเธ”เน‚เธžเธชเธ•เนŒเธ—เธฑเน‰เธ‡เธซเธกเธ”เธ—เธตเนˆเธ„เธธเธ“เธ•เธญเธšเธเธฅเธฑเธš" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "เธชเธทเนˆเธญเธ—เธตเนˆเธŠเธฑเธ”เน€เธˆเธ™เธซเธฃเธทเธญเธญเธฒเธˆเธ—เธณเนƒเธซ msgid "Explicit sexual images." msgstr "เธ เธฒเธžเน€เธ›เธฅเธทเธญเธขเธŠเธฑเธ”เน€เธˆเธ™" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "เธชเธทเนˆเธญเธ เธฒเธขเธ™เธญเธ" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "เธชเธทเนˆเธญเธ เธฒเธขเธ™เธญเธเธญเธฒเธˆเธญเธ™เธธเธเธฒเธ•เนƒเธซเน‰เน€เธงเน‡เธšเน„เธ‹เธ•เนŒเธฃเธงเธšเธฃเธงเธกเธ‚เน‰เธญเธกเธนเธฅเน€เธเธตเนˆเธขเธงเธเธฑเธšเธ„เธธเธ“เนเธฅเธฐเธญเธธเธ›เธเธฃเธ“เนŒเธ‚เธญเธ‡เธ„เธธเธ“ เน„เธกเนˆเธกเธตเธ‚เน‰เธญเธกเธนเธฅเนƒเธ”เธ–เธนเธเธชเนˆเธ‡เธซเธฃเธทเธญเธฃเน‰เธญเธ‡เธ‚เธญเธเนˆเธญเธ™เธ—เธตเนˆเธ„เธธเธ“เธˆเธฐเธเธ”เธ›เธธเนˆเธก \"เน€เธฅเนˆเธ™\"" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธชเธทเนˆเธญเธ เธฒเธขเธ™เธญเธ" @@ -4886,7 +4854,7 @@ msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "เธเธฒเธฃเน‚เธซเธฅเธ”เธŸเธตเธ•เธ—เธตเนˆเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธฅเน‰เธกเน€เธซเธฅเธง" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "เธเธฒเธฃเนเธ™เธฐเธ™เธณเธŸเธตเธ•เธฅเน‰เธกเน€เธซเธฅเธง" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "เธเธฒเธฃเนเธ™เธฐเธ™เธณเธ„เธ™เธ—เธตเนˆเธ„เธธเธ“เธ„เธงเธฃเธ•เธดเธ”เธ•เธฒเธกเธฅเน‰เธกเน€เธซเธฅเธง" @@ -5027,12 +4996,12 @@ msgstr "เธเธฒเธฃเนเธ™เธฐเธ™เธณเธ„เธ™เธ—เธตเนˆเธ„เธธเธ“เธ„เธงเธฃเธ•เธดเธ”เธ•เธฒ msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "เธŸเธตเธ”" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "เธญเธฑเธ›เน€เธ”เธ•เธŸเธตเธ”เนเธฅเน‰เธง!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "เธšเธฑเธ™เธ—เธถเธเน„เธŸเธฅเนŒเน€เธฃเธตเธขเธšเธฃเน‰เธญเธขเนเธฅเน‰เธง!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "เธเธฃเธญเธ‡เธˆเธฒเธเธŸเธตเธ”" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "เธ„เน‰เธ™เธซเธฒเธšเธฑเธเธŠเธตเน€เธžเธทเนˆเธญเธ„เธดเธ”เธ•เธฒเธก" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "เธ•เธดเธ”เธ•เธฒเธก {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "เธ•เธดเธ”เธ•เธฒเธก 7 เธšเธฑเธเธŠเธต" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "เธœเธนเน‰เธ•เธดเธ”เธ•เธฒเธกเธ‚เธญเธ‡ @{0} เธ—เธตเนˆเธ„เธธเธ“เธฃเธนเน‰เธˆเธฑเธ" @@ -5544,7 +5497,7 @@ msgstr "เธœเธนเน‰เธ•เธดเธ”เธ•เธฒเธกเธ—เธตเนˆเธ„เธธเธ“เธฃเธนเน‰เธˆเธฑเธ" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "เธ•เธดเธ”เธ•เธฒเธก {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธŸเธตเธ”เธเธฒเธฃเธ•เธดเธ”เธ•เธฒเธก" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธŸเธตเธ”เธเธฒเธฃเธ•เธดเธ”เธ•เธฒเธก" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "เธ•เธดเธ”เธ•เธฒเธกเธ„เธธเธ“" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "เนเธšเธšเธญเธฑเธเธฉเธฃ" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "เธ‚เธ™เธฒเธ”เนเธšเธšเธญเธฑเธเธฉเธฃ" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "เน€เธžเธทเนˆเธญเธ›เธฃเธฐเธชเธšเธเธฒเธฃเธ—เธตเนˆเธ”เธตเธ‚เธญเธ‡เธ„เธธเธ“ เน€เธฃเธฒเนเธ™เธฐเธ™เธณเนƒเธซเน‰เนƒเธŠเน‰เธŸเธญเธ™เธ•เนŒเธ˜เธตเธก" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "เธ•เธฅเธญเธ”" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "เธฅเธทเธกเธฃเธซเธฑเธชเธœเนˆเธฒเธ™เนƒเธŠเนˆเน„เธซเธก?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "เธˆเธฒเธ <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "เธชเธฃเน‰เธฒเธ‡เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "เธฃเธฑเธšเธ„เธงเธฒเธกเธŠเนˆเธงเธขเน€เธซเธฅเธทเธญ" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "เธ—เธณเนƒเธซเน‰เน‚เธ›เธฃเน„เธŸเธฅเนŒเธ‚เธญเธ‡เธ„เธธเธ“เธกเธตเธ„เธงเธฒเธกเธ™เนˆเธฒเธชเธ™เนƒเธˆเธ‚เธถเน‰เธ™" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "เนเธฎเธŠเนเธ—เน‡เธ" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "เธกเธตเธ›เธฑเธเธซเธฒเนƒเธŠเนˆเน„เธซเธก?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "เธเธฒเธฃเธŠเนˆเธงเธขเน€เธซเธฅเธทเธญ" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "เธ—เธณเนƒเธซเน‰เธ„เธ™เธ—เธฃเธฒเธšเธงเนˆเธฒเธ„เธธเธ“เน„เธกเนˆเนƒเธŠเนˆเธซเธธเนˆเธ™เธขเธ™เธ•เนŒเน‚เธ”เธขเธเธฒเธฃเธญเธฑเธžเน‚เธซเธฅเธ•เธฃเธนเธ›เธ เธฒเธžเธซเธฃเธทเธญเธเธฒเธฃเธชเธฃเน‰เธฒเธ‡เธญเธงเธฒเธ•เธฒเธฃเนŒ" @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "เธฅเธดเธชเธ•เนŒเธ—เธตเนˆเธ‹เนˆเธญเธ™เน„เธงเน‰" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "เธฅเธดเธชเธ•เนŒเธ—เธตเนˆเธ‹เนˆเธญเธ™เน„เธงเน‰" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "เธ‹เนˆเธญเธ™" @@ -6198,7 +6154,7 @@ msgstr "เธ‹เนˆเธญเธ™เธเธฒเธฃเธ•เธญเธšเธเธฅเธฑเธšเธชเธณเธซเธฃเธฑเธšเธ—เธธเธเธ„ msgid "Hide reply for me" msgstr "เธ‹เนˆเธญเธ™เธเธฒเธฃเธชเธณเธซเธฃเธฑเธšเธ‰เธฑเธ™" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "เธ‹เนˆเธญเธ™เธเธฒเธฃเธ•เธญเธšเธเธฅเธฑเธšเนƒเธŠเนˆเน„เธซเธก" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "เธ‹เนˆเธญเธ™เธฅเธดเธชเธ•เนŒเธœเธนเน‰เนƒเธŠเน‰" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "เธญเธทเน‰เธกเธกเธกเธก... เธ”เธนเน€เธซเธกเธทเธญเธ™เธงเนˆเธฒเน€เธฃเธฒเน„ msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "เธฃเธญเธชเธฑเธเธ„เธฃเธนเนˆ! เน€เธฃเธฒเธเธณเธฅเธฑเธ‡เน€เธ›เธดเธ”เนƒเธซเน‰เน€เธ‚เน‰เธฒเธ–เธถเธ‡เธงเธดเธ”เธตเน‚เธญเธญเธขเนˆเธฒเธ‡เธ„เนˆเธญเธขเน€เธ›เน‡เธ™เธ„เนˆเธญเธขเน„เธ› เนเธฅเธฐเธ„เธธเธ“เธขเธฑเธ‡เธญเธขเธนเนˆเนƒเธ™เธ„เธดเธง เนเธฅเน‰เธงเธเธฅเธฑเธšเธกเธฒเธญเธตเธเธ„เธฃเธฑเน‰เธ‡เธˆเน‰เธฒ" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "เธซเธฒเธเธ„เธธเธ“เธ•เน‰เธญเธ‡เธเธฒเธฃเน€เธ›เธฅเธตเนˆเธขเธ™เธฃเธซเธฑเธชเธœเนˆเธฒเธ™ เน€เธฃเธฒเธˆเธฐเธชเนˆเธ‡เธฃเธซเธฑเธชเธขเธทเธ™เธขเธฑเธ™เน€เธžเธทเนˆเธญเธขเธทเธ™เธขเธฑเธ™เธšเธฑเธเธŠเธตเธ‚เธญเธ‡เธ„เธธเธ“" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "เธŠเธทเนˆเธญเธœเธนเน‰เนƒเธŠเน‰เธซเธฃเธทเธญเธฃเธซเธฑเธชเธœเนˆเธฒเธ™เน„เธกเนˆเธ–เธนเธเธ•เน‰เธญเธ‡" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "เน‚เธ„เน‰เธ”เธ„เธณเน€เธŠเธดเธ" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "เน‚เธ„เน‰เธ”เธ„เธณเน€เธŠเธดเธเน„เธกเนˆเธ–เธนเธเธ•เน‰เธญเธ‡ เน‚เธ›เธฃเธ”เธ•เธฃเธงเธˆเธชเธญเธšเธงเนˆเธฒเธ„เธธเธ“เธเธฃเธญเธเธ–เธนเธเธ•เน‰เธญเธ‡เธซเธฃเธทเธญเธขเธฑเธ‡ เนเธฅเน‰เธงเธฅเธญเธ‡เธญเธตเธเธ„เธฃเธฑเน‰เธ‡" @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "เธ•เธญเธ™เธ™เธตเน‰เธกเธตเนเธ„เนˆเธ„เธธเธ“เนเธฅเน‰เธง! เน€เธžเธดเนˆเธกเธœเธนเน‰เธ„เธ™เนƒเธ™เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เธ‚เธญเธ‡เธ„เธธเธ“เน‚เธ”เธขเธเธฒเธฃเธ„เน‰เธ™เธซเธฒเธ”เน‰เธฒเธ™เธšเธ™เธ™เธตเน‰" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "" @@ -6816,8 +6766,8 @@ msgstr "เน€เธ‚เน‰เธฒเธฃเนˆเธงเธกเธเธฒเธฃเธชเธ™เธ—เธ™เธฒ" msgid "Journalism" msgstr "เธงเธฒเธฃเธชเธฒเธฃ" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "เธกเธฒเธฃเนŒเธ„เน‚เธ”เธข {0}" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "เธกเธฒเธฃเนŒเธ„เน‚เธ”เธขเธœเธนเน‰เธชเธฃเน‰เธฒเธ‡" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "เธกเธฒเธฃเนŒเธ„เน„เธงเน‰" @@ -6852,7 +6802,7 @@ msgstr "" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "เธเธฒเธฃเธกเธฒเธฃเนŒเธ„ เธ„เธทเธญ เธเธฒเธฃเนเธชเธ”เธ‡เธ‚เน‰เธญเธ„เธงเธฒเธกเธ›เธฃเธฐเธเธญเธšเธšเธ™เธœเธนเน‰เนƒเธŠเน‰เนเธฅเธฐเน€เธ™เธทเน‰เธญเธซเธฒ เธชเธฒเธกเธฒเธฃเธ–เนƒเธŠเน‰เนƒเธ™เธเธฒเธฃเธ‹เนˆเธญเธ™ เน€เธ•เธทเธญเธ™ เธซเธฃเธทเธญเธˆเธฑเธ”เธซเธกเธงเธ”เธซเธกเธนเนˆเนƒเธ™เน€เธ„เธฃเธทเธญเธ‚เนˆเธฒเธขเน„เธ”เน‰" @@ -6864,7 +6814,7 @@ msgstr "เธกเธฒเธฃเนŒเธ„เนƒเธ™เธšเธฑเธเธŠเธตเธ‚เธญเธ‡เธ„เธธเธ“" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "เธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธ เธฒเธฉเธฒ" @@ -6874,7 +6824,7 @@ msgstr "เธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธ เธฒเธฉเธฒ" msgid "Languages" msgstr "เธ เธฒเธฉเธฒ" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "เนƒเธซเธเนˆ" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "เธฅเนˆเธฒเธชเธธเธ”" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "เน€เธฃเธตเธขเธ™เธฃเธนเน‰เน€เธžเธดเนˆเธกเน€เธ•เธดเธก" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "เน€เธฃเธตเธขเธ™เธฃเธนเน‰เน€เธžเธดเนˆเธกเน€เธ•เธดเธกเน€เธเธตเนˆเธขเธงเธเธฑเธšเธเธฒเธฃเน‚เธฎเธชเธ•เนŒเธ‚เน‰เธญเธกเธนเธฅเธ”เน‰เธงเธขเธ•เธฑเธงเน€เธญเธ‡ (PDS)" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "เน€เธฃเธตเธขเธ™เธฃเธนเน‰เน€เธžเธดเนˆเธกเน€เธ•เธดเธกเน€เธเธตเนˆเธขเธงเธเธฑเธšเธ‚เน‰เธญเธ„เธงเธฃเธฃเธฐเธงเธฑเธ‡" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "เน€เธฃเธตเธขเธ™เธฃเธนเน‰เน€เธžเธดเนˆเธกเน€เธ•เธดเธก" @@ -6993,8 +6943,8 @@ msgstr "เธญเธญเธ" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "เธญเธญเธ Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "เธ›เธฅเนˆเธญเธขเน„เธ›เน€เธ–เธญเธฐ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "เนƒเธซเน‰เธ‰เธฑเธ™เน€เธฅเธทเธญเธเน€เธ–เธญเธฐ" @@ -7057,7 +7007,7 @@ msgstr "เน„เธ›เธเธฑเธ™เน€เธฅเน‰เธขเธขเธขเธขเธข!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "เนเธชเธ‡" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "เนเธชเธ‡" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "" @@ -7076,7 +7026,7 @@ msgstr "" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "เธŠเธญเธš 10 เน‚เธžเธชเธ•เนŒ" @@ -7085,7 +7035,7 @@ msgstr "เธŠเธญเธš 10 เน‚เธžเธชเธ•เนŒ" msgid "Like 10 posts to train the Discover feed" msgstr "เธŠเธญเธš 10 เน‚เธžเธชเธ•เนŒ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "เธŠเธญเธšเธŸเธตเธ•เธ™เธตเน‰" @@ -7093,8 +7043,8 @@ msgstr "เธŠเธญเธšเธŸเธตเธ•เธ™เธตเน‰" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "เธŠเธญเธšเน‚เธ”เธข" @@ -7111,27 +7061,45 @@ msgstr "เธŠเธญเธšเน‚เธ”เธข" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "เธ–เธนเธเนƒเธˆ" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "เธŠเธญเธšเนƒเธ™เน‚เธžเธชเธ•เนŒเธ™เธตเน‰" @@ -7144,7 +7112,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "เธฅเธดเธชเธ•เนŒ" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "เธฅเธดเธชเธ•เนŒเน€เธ›เธดเธ”เน€เธชเธตเธขเธ‡" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "เน‚เธซเธฅเธ”เน€เธžเธดเนˆเธกเน€เธ•เธดเธก" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "เน‚เธซเธฅเธ”เธŸเธตเธ”เธ—เธตเนˆเนเธ™เธฐเธ™เธณเน€เธžเธดเนˆเธกเน€เธ•เธดเธก" @@ -7292,8 +7260,8 @@ msgstr "เน‚เธซเธฅเธ”เธŸเธตเธ”เธ—เธตเนˆเนเธ™เธฐเธ™เธณเน€เธžเธดเนˆเธกเน€เธ•เธดเธก msgid "Load new notifications" msgstr "เน‚เธซเธฅเธ”เธเธฒเธฃเนเธˆเน‰เธ‡เน€เธ•เธทเธญเธ™เนƒเธซเธกเนˆ" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "เธšเธฑเธ™เธ—เธถเธ" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "เธชเธฃเน‰เธฒเธ‡เธชเธฑเธเธซเธ™เธถเนˆเธ‡เธญเธฑเธ™เธชเธณเธซเธฃเธฑเธšเธ‰เธฑเธ™" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "เธ—เธณเน€เธ„เธฃเธทเนˆเธญเธ‡เธซเธกเธฒเธขเธงเนˆเธฒเธญเนˆเธฒเธ™เนเธฅเน‰เธง msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "เธชเธทเนˆเธญ" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "เธœเธนเน‰เนƒเธŠเน‰เธ—เธตเนˆเธ–เธนเธเธเธฅเนˆเธฒเธงเธ–เธถเธ‡" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "เธ‚เน‰เธญเธ„เธงเธฒเธกเธ–เธนเธเธฅเธš" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "เธ‚เน‰เธญเธ„เธงเธฒเธก" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "เธเธฒเธฃเธเธฃเธญเธ‡" @@ -7636,7 +7608,7 @@ msgstr "เธเธฒเธฃเธเธฃเธญเธ‡เธ–เธนเธเธญเธฑเธžเน€เธ”เธ•" msgid "Moderation lists" msgstr "เธฅเธดเธชเธ•เนŒเธ—เธตเนˆเธเธฃเธญเธ‡" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "เธฅเธดเธชเธ•เนŒเธ—เธตเนˆเธเธฃเธญเธ‡" @@ -7645,7 +7617,7 @@ msgstr "เธฅเธดเธชเธ•เนŒเธ—เธตเนˆเธเธฃเธญเธ‡" msgid "moderation settings" msgstr "เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธเธฒเธฃเธเธฃเธญเธ‡" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "เธชเธ–เธฒเธ™เธฐเธเธฒเธฃเธเธฃเธญเธ‡" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "เธ›เธดเธ”เธเธฒเธฃเธกเธญเธ‡เน€เธซเน‡เธ™เธšเธฑเธเธŠเธต" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "เธ›เธดเธ”เธเธฒเธฃเธกเธญเธ‡เน€เธซเน‡เธ™เธšเธฑเธเธŠเธต" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "เน„เธกเนˆเธ•เน‰เธญเธ‡เธซเนˆเธงเธ‡ เธชเธฃเน‰เธฒเธ‡เนเธฎเธ™เน€เธ”เธดเน‰เธฅเธชเธณเธซเธฃเธฑเธšเธ‰เธฑเธ™เน„เธ”เน‰เน€เธฅเธข" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "เนƒเธซเธกเนˆ" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "เนเธŠเธ—เนƒเธซเธกเนˆ" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "เธฃเธซเธฑเธชเธœเนˆเธฒเธ™เนƒเธซเธกเนˆ" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "เน‚เธžเธชเธ•เนŒเนƒเธซเธกเนˆ" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "เน€เธซเน‡เธ™เธเธฒเธฃเธ•เธญเธšเธเธฅเธฑเธšเธ—เธตเนˆเนƒเธซเธกเนˆเธเนˆเธญเธ™" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "เธ‚เนˆเธฒเธงเธชเธฒเธฃ" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "เธ เธฒเธžเธ–เธฑเธ”เน„เธ›" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "เน„เธกเนˆเธžเธšเธŸเธตเธ• เธฅเธญเธ‡เธ„เน‰เธ™เธซเธฒเธญเธขเนˆเธฒเธ‡เธญเธทเนˆเธ™เนƒเธซเธกเนˆเธ”เธน" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "เธขเธฑเธ‡เน„เธกเนˆเธกเธตเธชเธดเนˆเธ‡เธ—เธตเนˆเธŠเธญเธš" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "เน„เธกเนˆเธ•เธดเธ”เธ•เธฒเธก {0} เธญเธตเธเธ•เนˆเธญเน„เธ›" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "เธขเธฑเธ‡เน„เธกเนˆเธกเธตเธ‚เน‰เธญเธ„เธงเธฒเธก" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "เน„เธกเนˆเธกเธตเนƒเธ„เธฃเธ™เธญเธเธˆเธฒเธเธœเธนเน‰เน€เธ‚เธตเธขเธ™เธ—เธต msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "เธขเธฑเธ‡เน„เธกเนˆเธกเธตเน‚เธ„เธงเธ—" @@ -8198,11 +8190,7 @@ msgstr "เธขเธฑเธ‡เน„เธกเนˆเธกเธตเน‚เธ„เธงเธ—" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "เน„เธกเนˆเธกเธตเธœเธฅเธฅเธฑเธžเธ˜เนŒ" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "เน„เธกเนˆเธกเธตเธœเธฅเธฅเธฑเธžเธ˜เนŒ" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "เน„เธกเนˆเธžเธšเธœเธฅเธฅเธฑเธžเธ˜เนŒ" msgid "No results found for \"{query}\"" msgstr "เน„เธกเนˆเธžเธšเธœเธฅเธฅเธฑเธžเธ˜เนŒเธชเธณเธซเธฃเธฑเธš \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "เน„เธกเนˆเน€เธ›เน‡เธ™เน„เธฃ เธ‚เธญเธšเธ„เธธเธ“" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "เน„เธกเนˆเธกเธตเนƒเธ„เธฃ" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "เธขเธฑเธ‡เน„เธกเนˆเธกเธตเนƒเธ„เธฃเธ„เธ™เน„เธฅเธ„เนŒเน‚เธžเธชเธ•เนŒเธ™เธตเน‰ เธ„เธธเธ“เธญเธฒเธˆเน„เธ”เน‰เน€เธ›เน‡เธ™เธ„เธ™เนเธฃเธ" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "เธขเธฑเธ‡เน„เธกเนˆเธกเธตเนƒเธ„เธฃเธ„เธ™เน‚เธ„เธงเธ—เนŒเน‚เธžเธชเธ•เนŒเธ™เธตเน‰ เธ„เธธเธ“เธญเธฒเธˆเน„เธ”เน‰เน€เธ›เน‡เธ™เธ„เธ™เนเธฃเธ" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "เธเธฒเธฃเน€เธ›เธฅเธทเธญเธขเธเธฒเธขเธ—เธตเนˆเน„เธกเนˆเน€เธเธตเนˆเธขเธงเธ‚เน‰เธญเธ‡เธเธฑเธšเน€เธžเธจ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "เน„เธกเนˆเธžเธš" @@ -8333,7 +8325,7 @@ msgstr "เน‚เธ™เน‰เธ•เน€เธเธตเนˆเธขเธงเธเธฑเธšเธเธฒเธฃเนเธŠเธฃเนŒ" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "เธซเธกเธฒเธขเน€เธซเธ•เธธ : Bluesky เน€เธ›เน‡เธ™เน€เธ„เธฃเธทเธญเธ‚เนˆเธฒเธขเนเธšเธšเน€เธ›เธดเธ”เนเธฅเธฐเธชเธฒเธ˜เธฒเธฃเธ“เธฐ เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธ™เธตเน‰เธˆเธณเธเธฑเธ”เน€เธžเธตเธขเธ‡เธเธฒเธฃเธกเธญเธ‡เน€เธซเน‡เธ™เน€เธ™เธทเน‰เธญเธซเธฒเธ‚เธญเธ‡เธ„เธธเธ“เนƒเธ™เนเธญเธ›เนเธฅเธฐเน€เธงเน‡เธšเน„เธ‹เธ•เนŒเธ‚เธญเธ‡ Bluesky เน€เธ—เนˆเธฒเธ™เธฑเน‰เธ™ เนเธฅเธฐเนเธญเธ›เธญเธทเนˆเธ™เธญเธฒเธˆเน„เธกเนˆเน€เธ„เธฒเธฃเธžเธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธ™เธตเน‰ เน€เธ™เธทเน‰เธญเธซเธฒเธ‚เธญเธ‡เธ„เธธเธ“เธญเธฒเธˆเธขเธฑเธ‡เธ–เธนเธเนเธชเธ”เธ‡เนƒเธซเน‰เธœเธนเน‰เนƒเธŠเน‰เธ—เธตเนˆเน„เธกเนˆเน„เธ”เน‰เน€เธ‚เน‰เธฒเธชเธนเนˆเธฃเธฐเธšเธšเน‚เธ”เธขเนเธญเธ›เนเธฅเธฐเน€เธงเน‡เธšเน„เธ‹เธ•เนŒเธญเธทเนˆเธ™เน†" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธเธฒเธฃเนเธˆเน‰เธ‡เน€เธ•เธทเธญเธ™" @@ -8353,11 +8345,12 @@ msgstr "เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธเธฒเธฃเนเธˆเน‰เธ‡เน€เธ•เธทเธญเธ™" msgid "Notification sounds" msgstr "เน€เธชเธตเธขเธ‡เธเธฒเธฃเนเธˆเน‰เธ‡เน€เธ•เธทเธญเธ™" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "เน„เธกเนˆเธ™เน‰เธฒเธฒเธฒ!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "เธ•เธเธฅเธ‡" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "เธ•เธเธฅเธ‡" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "เธฃเธตเน€เธ‹เน‡เธ•เธญเธญเธ™เธšเธญเธฃเนŒเธ”" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "เธ เธฒเธžเธซเธ™เธถเนˆเธ‡เธซเธฃเธทเธญเธกเธฒเธเธเธงเนˆเธฒเธ‚เธฒเธ”เธ‚เน‰เธญเธ„เธงเธฒเธกเนเธ—เธ™" @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "" @@ -8471,7 +8466,7 @@ msgstr "{0} เธชเธฒเธกเธฒเธฃเธ–เธ•เธญเธšเธเธฅเธฑเธšเน„เธ”เน‰เน€เธ—เนˆเธฒเธ™เธฑ #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "เธชเธฒเธกเธฒเธฃเธ–เธฅเธ‡เน„เธ”เน‰เนเธ„เนˆเน„เธŸเธฅเนŒ WebVTT (.vtt) เน€เธ—เนˆเธฒเธ™เธฑเน‰เธ™" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "เธญเนŠเธฐ!" @@ -8544,7 +8543,7 @@ msgstr "เธญเนŠเธฐ!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "เน€เธ›เธดเธ”เธเธฒเธฃเธชเธฃเน‰เธฒเธ‡เธญเธงเธฒเธ•เธฒเธฃเนŒ" @@ -8570,21 +8569,22 @@ msgstr "เน€เธ›เธดเธ”เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธเธฒเธฃเธชเธ™เธ—เธ™เธฒ" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "เน€เธ›เธดเธ”เธเธฒเธฃเน€เธฅเธทเธญเธเธญเธตเน‚เธกเธˆเธด" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "เน€เธ›เธดเธ”เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธŸเธตเธ•" @@ -8627,7 +8627,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "เน€เธ›เธดเธ”เธเธฒเธฃเธ›เธดเธ”เธเธฒเธฃเธกเธญเธ‡เน€เธซเน‡เธ™เธ„เธณเนเธฅเธฐเนเธ—เน‡เธ" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "เน€เธ›เธดเธ”เธฃเธฒเธขเธฅเธฐเน€เธญเธตเธขเธ”เน€เธžเธดเนˆเธกเน€เธ•เธดเธกเธช msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "เน€เธ›เธดเธ”เธเธฅเน‰เธญเธ‡เนƒเธ™เธญเธธเธ›เธเธฃเธ“เนŒ" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "เน€เธ›เธดเธ”เธ‚เธฑเน‰เธ™เธ•เธญเธ™เน€เธžเธทเนˆเธญเธชเธฃเน‰เธฒเธ‡เธšเธฑเธเธŠเธต Bluesky เนƒเธซเธกเนˆ" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "เน€เธ›เธดเธ”เน€เธžเธทเนˆเธญเธชเธฃเน‰เธฒเธ‡เธšเธฑเธเธŠเธต Bluesky เธ—เธตเนˆเธกเธตเธญเธขเธนเนˆเนเธฅเน‰เธง" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "เธญเธฑเธžเน€เธ”เธ•เธฃเธซเธฑเธชเธœเนˆเธฒเธ™เนเธฅเน‰เธง!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "เธžเธฑเธ" @@ -8925,12 +8925,12 @@ msgstr "เธžเธฑเธ" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "เธžเธฑเธเธงเธตเธ”เธตเน‚เธญ" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "เธœเธนเน‰เธ„เธ™" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "เธœเธนเน‰เธ„เธ™เธ—เธตเนˆเธ•เธดเธ”เธ•เธฒเธกเน‚เธ”เธข @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "เธœเธนเน‰เธ„เธ™เธ—เธตเนˆเธ•เธดเธ”เธ•เธฒเธก @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "เธ เธฒเธžเธ—เธตเนˆเน€เธซเธกเธฒเธฐเธชเธณเธซเธฃเธฑเธšเน€เธ™เธทเน‰เธญเธซเธฒเธœเธนเน‰เนƒเธซเธเนˆ (18+)" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "เธ›เธฑเธเธซเธกเธธเธ”เน„เธ›เธ—เธตเนˆเธซเธ™เน‰เธฒเนเธฃเธ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "เธ›เธฑเธเธซเธกเธธเธ”เน„เธ›เธ—เธตเนˆเธซเธ™เน‰เธฒเนเธฃเธ" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "เธ›เธฑเธเธซเธกเธธเธ”เนเธฅเน‰เธง" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "เธ›เธฑเธเธซเธกเธธเธ”เน„เธ›เธ—เธตเนˆเธŸเธตเธ•" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "เน€เธฅเนˆเธ™" @@ -9076,8 +9076,8 @@ msgstr "เน€เธฅเนˆเธ™ {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "เน€เธฅเนˆเธ™เธงเธดเธ”เธตเน‚เธญ" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "เธเธฃเธธเธ“เธฒเน€เธฅเธทเธญเธเนเธฎเธ™เน€เธ”เธดเธฅเธ‚เธญเธ‡เธ„เธธเธ“" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "เน‚เธ›เธฃเธ”เน€เธฅเธทเธญเธเธฃเธซเธฑเธชเธœเนˆเธฒเธ™เธ‚เธญเธ‡เธ„เธธเธ“" @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "เน‚เธ›เธฃเธ”เธ—เธณเธเธฒเธฃเธขเธทเธ™เธขเธฑเธ™ Captcha เนƒเธซเน‰เน€เธชเธฃเน‡เธˆ" @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "เธเธฃเธธเธ“เธฒเธเธฃเธญเธเธญเธตเน€เธกเธฅเธ‚เธญเธ‡เธ„เธธเธ“" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "เธเธฒเธฃเน€เธกเธทเธญเธ‡" @@ -9269,7 +9269,7 @@ msgstr "เธเธฒเธฃเน€เธกเธทเธญเธ‡" msgid "Porn" msgstr "เธชเธทเนˆเธญเธญเธ™เธฒเธˆเธฒเธฃ" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "เน‚เธžเธชเธ•เนŒ" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "เน‚เธžเธชเธ•เนŒ" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "เน‚เธžเธชเธ•เนŒเน‚เธ”เธข {0}" @@ -9340,7 +9340,7 @@ msgstr "เน‚เธžเธชเธ•เนŒเธ–เธนเธเธ‹เนˆเธญเธ™เน‚เธ”เธขเธ„เธธเธ“" msgid "Post interaction settings" msgstr "เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธเธฒเธฃเน‚เธ•เน‰เธ•เธญเธšเน‚เธžเธชเธ•เนŒ" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "เธ›เธฑเธเธซเธกเธธเธ”เน‚เธžเธชเธ•เนŒเนเธฅเน‰เธง" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "เธ–เธญเธ™เธซเธกเธธเธ”เน‚เธžเธชเธ•เนŒเนเธฅเน‰เธง" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "เน‚เธžเธชเธ•เนŒ" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "เน‚เธžเธชเธ•เนŒเธชเธฒเธกเธฒเธฃเธ–เธ–เธนเธเธ›เธดเธ”เน€เธชเธตเธขเธ‡เธ•เธฒเธกเธ‚เน‰เธญเธ„เธงเธฒเธก เนเธ—เน‡เธ เธซเธฃเธทเธญเธ—เธฑเน‰เธ‡เธชเธญเธ‡เธญเธขเนˆเธฒเธ‡ เน€เธฃเธฒเธ‚เธญเนเธ™เธฐเธ™เธณเนƒเธซเน‰เธซเธฅเธตเธเน€เธฅเธตเนˆเธขเธ‡เธ„เธณเธ—เธฑเนˆเธงเน„เธ›เธ—เธตเนˆเธ›เธฃเธฒเธเธเนƒเธ™เน‚เธžเธชเธ•เนŒเธซเธฅเธฒเธขเน† เน‚เธžเธชเธ•เนŒ เน€เธžเธฃเธฒเธฐเธญเธฒเธˆเธชเนˆเธ‡เธœเธฅเนƒเธซเน‰เน„เธกเนˆเธกเธตเน‚เธžเธชเธ•เนŒเนƒเธ”เนเธชเธ”เธ‡เธ‚เธถเน‰เธ™เธกเธฒ" @@ -9398,6 +9396,10 @@ msgstr "เน‚เธžเธชเธ•เนŒเธชเธฒเธกเธฒเธฃเธ–เธ–เธนเธเธ›เธดเธ”เน€เธชเธตเธขเธ‡เธ•เธฒ msgid "Posts hidden" msgstr "เน‚เธžเธชเธ•เนŒเธ—เธตเนˆเธ‹เนˆเธญเธ™เธญเธขเธนเนˆ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "เธ„เธงเธฒเธกเน€เธ›เน‡เธ™เธชเนˆเธงเธ™เธ•เธฑเธง" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "เธ™เน‚เธขเธšเธฒเธขเธ„เธงเธฒเธกเน€เธ›เน‡เธ™เธชเนˆเธงเธ™เธ•เธฑเธง" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "เธขเธเน€เธฅเธดเธเธเธฒเธฃเน‚เธ„เธงเธ—" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "เน‚เธ„เธงเธ—" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "เน‚เธ„เธงเธ—เน‚เธžเธชเธ•เนŒเธ™เธตเน‰" @@ -9647,7 +9650,7 @@ msgstr "เธ›เธดเธ”เนƒเธŠเน‰เธ‡เธฒเธ™เธšเธฑเธเธŠเธตเธ‚เธญเธ‡เธ„เธธเธ“เธญเธตเธเธ„ msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "เธญเนˆเธฒเธ™เธ™เน‚เธขเธšเธฒเธขเธ„เธงเธฒเธกเน€เธ›เน‡เธ™เธชเนˆเธงเธ™เธ•เธฑ msgid "Read the Bluesky Terms of Service" msgstr "เธญเนˆเธฒเธ™เธ™เน‚เธขเธšเธฒเธข เน€เธ‡เธทเนˆเธญเธ™เน„เธ‚ เนเธฅเธฐ เธ‚เน‰เธญเธ•เธเธฅเธ‡ เนƒเธ™เธเธฒเธฃเนƒเธซเน‰เธšเธฃเธดเธเธฒเธฃเธ‚เธญเธ‡ Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "เน€เธŠเธทเนˆเธญเธกเธ•เนˆเธญเนƒเธซเธกเนˆ" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "เน‚เธซเธฅเธ”เธเธฒเธฃเธชเธ™เธ—เธ™เธฒเนƒเธซเธกเนˆ" @@ -9766,7 +9765,7 @@ msgstr "เน‚เธซเธฅเธ”เธเธฒเธฃเธชเธ™เธ—เธ™เธฒเนƒเธซเธกเนˆ" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "เธฅเธš" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "เธฅเธšเธšเธฑเธเธŠเธต" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "เธฅเธšเธˆเธฒเธเธŸเธตเธ•เธ‚เธญเธ‡เธ‰เธฑเธ™" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "เธฅเธšเธเธฒเธฃเน€เธ‚เน‰เธฒเธ–เธถเธ‡เธ”เนˆเธงเธ™เนƒเธŠเนˆเน„เธซเธก" @@ -9862,7 +9861,7 @@ msgstr "เธฅเธšเธเธฒเธฃเน€เธ‚เน‰เธฒเธ–เธถเธ‡เธ”เนˆเธงเธ™เนƒเธŠเนˆเน„เธซเธก" msgid "Remove from saved feeds" msgstr "เธฅเธšเธˆเธฒเธเธŸเธตเธ•เธ—เธตเนˆเน€เธ‹เธŸเน„เธงเน‰" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "เธฅเธšเธฃเธนเธ›เธ เธฒเธž" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "เธฅเธšเธˆเธฒเธเธฅเธดเธชเธ•เนŒ" msgid "Removed from saved feeds" msgstr "เธฅเธšเธˆเธฒเธเธŸเธตเธ•เธ—เธตเนˆเน€เธ‹เธŸ" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "เธเธฒเธฃเธ•เธญเธšเธเธฅเธฑเธš" @@ -10037,7 +10037,7 @@ msgstr "เธเธฒเธฃเธ•เธญเธšเธเธฅเธฑเธšเน‚เธžเธชเธ•เนŒเธ™เธตเน‰เธ–เธนเธเธ›เธดเธ” msgid "Reply" msgstr "เธเธฒเธฃเธ•เธญเธšเธเธฅเธฑเธš" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "เธเธฒเธฃเธ•เธญเธšเธเธฅเธฑเธš" @@ -10098,8 +10098,8 @@ msgstr "เธฃเธฒเธขเธ‡เธฒเธ™เธเธฒเธฃเธชเธ™เธ—เธ™เธฒ" msgid "Report dialog" msgstr "เธฃเธฒเธขเธ‡เธฒเธ™เธเธฒเธฃเธชเธ™เธ—เธ™เธฒ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "เธฃเธฒเธขเธ‡เธฒเธ™เธŸเธตเธ”" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "เธฃเธตเน‚เธžเธชเธ•เนŒเน‚เธ”เธขเธ„เธธเธ“" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "เธฃเธตเน‚เธžเธชเธ•เนŒเธ‚เธญเธ‡เน‚เธžเธชเธ•เนŒเธ™เธตเน‰" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "เธฅเธญเธ‡เธ—เธณเธเธดเธˆเธเธฃเธฃเธกเธฅเนˆเธฒเธชเธธเธ”เธ‹เธถเนˆเธ‡เน€เธ #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "เธเธฅเธฑเธšเน„เธ›เธขเธฑเธ‡เธซเธ™เน‰เธฒเนเธฃเธ" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "เธเธฅเธฑเธšเน„เธ›เธขเธฑเธ‡เธซเธ™เน‰เธฒเธเนˆเธญเธ™เธซเธ™เน‰เธฒ" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "เธšเธฑเธ™เธ—เธถเธเธเธฒเธฃเน€เธ›เธฅเธตเนˆเธขเธ™เนเธ›เธฅเธ‡" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "เธšเธฑเธ™เธ—เธถเธเธ„เธดเธงเธญเธฒเธฃเนŒเน‚เธ„เน‰เธ”" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "เธšเธฑเธ™เธ—เธถเธเธ—เธตเนˆเธŸเธตเธ•เธ‚เธญเธ‡เธ‰เธฑเธ™" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "เธšเธฑเธ™เธ—เธถเธเธŸเธตเธ•" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "เธšเธฑเธ™เธ—เธถเธเน„เธ›เธ—เธตเนˆเธŸเธตเธ•เธ‚เธญเธ‡เธ„เธธเธ“" @@ -10520,8 +10520,8 @@ msgstr "เธšเธฑเธ™เธ—เธถเธเน„เธ›เธ—เธตเนˆเธŸเธตเธ•เธ‚เธญเธ‡เธ„เธธเธ“" msgid "Say hello!" msgstr "เธ—เธฑเธเธ—เธฒเธขเธชเธด!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "เธงเธดเธ—เธขเธฒเธจเธฒเธชเธ•เธฃเนŒ" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "เน€เธฅเธทเนˆเธญเธ™เน„เธ›เธ‚เน‰เธฒเธ‡เธšเธ™เธชเธธเธ”" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "เธ„เน‰เธ™เธซเธฒ" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "เธ„เน‰เธ™เธซเธฒเธชเธณเธซเธฃเธฑเธšเธŸเธตเธ•เธ—เธตเนˆเธ„เธธเธ“เธ•เน‰เธญเธ‡เธเธฒเธฃเนเธ™เธฐเธ™เธณเนƒเธซเน‰เธ„เธ™เธญเธทเนˆเธ™" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "เธ„เน‰เธ™เธซเธฒ GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "เธกเธญเธ‡เธซเธฒเธ‡เธฒเธ™เนƒเธ™ Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "เน€เธฅเธทเธญเธเธชเธต" @@ -10764,11 +10769,11 @@ msgstr "เน€เธฅเธทเธญเธเธšเธฑเธเธŠเธต" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "เน€เธฅเธทเธญเธเธญเธงเธฒเธ•เธฒเธฃเนŒ" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "เน€เธฅเธทเธญเธเธญเธตเน‚เธกเธˆเธด" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "เน€เธฅเธทเธญเธ GIF" msgid "Select GIF \"{0}\"" msgstr "เน€เธฅเธทเธญเธ GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "เน€เธฅเธทเธญเธเธญเธตเน‚เธกเธˆเธด {emojiName} เน€เธ›เน‡เธ™เธญเธงเธฒเธ•เธฒเธฃเนŒเธ‚เธญเธ‡เธ„เธธเธ“" @@ -10945,7 +10951,8 @@ msgstr "เธชเนˆเธ‡เธ‚เน‰เธญเธ„เธงเธฒเธก" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "เธชเนˆเธ‡เน‚เธžเธชเธ•เนŒเธ–เธถเธ‡..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "เธชเนˆเธ‡เธเธฒเธฃเธขเธทเธ™เธขเธฑเธ™เธœเนˆเธฒเธ™เธญเธตเน€เธกเธฅ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "เธชเนˆเธ‡เนƒเธ™เธ‚เน‰เธญเธ„เธงเธฒเธกเธชเนˆเธงเธ™เธ•เธฑเธง" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "เธ•เธฑเน‰เธ‡เธญเธตเน€เธกเธฅเน€เธžเธทเนˆเธญเธเธฒเธฃเธฃเธตเน€เธ‹เธ•เธฃเธซเธฑเธชเธœเนˆเธฒเธ™" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒ" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "เนเธŠเธฃเนŒเธ•เธฅเธญเธ”" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "เธเธฅเนˆเธญเธ‡เน‚เธ•เน‰เธ•เธญเธšเนเธŠเธฃเนŒเธฅเธดเธ‡เธเนŒ" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "เนเธŠเธฃเนŒเธฃเธซเธฑเธช QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "เนเธŠเธฃเนŒเธชเธ•เธฒเธฃเนŒเธ—เนเธžเน‡เธเธ™เธตเน‰" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "เนเธŠเธฃเนŒเธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เธ™เธตเน‰เนเธฅเธฐเธŠเนˆเธงเธขเนƒเธซเน‰เธœเธนเน‰เธ„เธ™เน€เธ‚เน‰เธฒเธฃเนˆเธงเธกเธŠเธธเธกเธŠเธ™เธ‚เธญเธ‡เธ„เธธเธ“เธšเธ™ Bluesky" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "เน‚เธ›เธฃเนเธเธฃเธกเธ—เธ”เธชเธญเธšเธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเนเธŠเธฃเนŒ" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "เนเธชเธ”เธ‡" msgid "Show alt text" msgstr "เนเธชเธ”เธ‡เธ‚เน‰เธญเธ„เธงเธฒเธกเนเธ—เธ™" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "เนเธชเธ”เธ‡เธญเธขเธนเนˆเธ”เธต" @@ -11274,9 +11281,9 @@ msgstr "เนเธชเธ”เธ‡เธฅเธดเธชเธ•เนŒเธญเธขเธนเนˆเธ”เธต" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "เนเธชเธ”เธ‡เน€เธžเธดเนˆเธกเน€เธ•เธดเธก" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "เนเธชเธ”เธ‡เธ„เธณเน€เธ•เธทเธญเธ™เนเธฅเธฐเธเธฃเธญเธ‡เธˆเธฒเธเธŸเธตเธ” msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "เธญเธญเธเธˆเธฒเธเธฃเธฐเธšเธš?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "เธ•เน‰เธญเธ‡เน€เธ‚เน‰เธฒเธชเธนเนˆเธฃเธฐเธšเธš" @@ -11469,7 +11476,7 @@ msgstr "เธ‚เน‰เธฒเธก" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "เน€เธฅเน‡เธ" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "เธŸเธตเธ”เธญเธทเนˆเธ™ เน† เธ—เธตเนˆเธ„เธธเธ“เธญเธฒเธˆเธŠเธญเธš" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "เน€เธเธดเธ”เธ‚เน‰เธญเธœเธดเธ”เธžเธฅเธฒเธ”เธšเธฒเธ‡เธญเธขเนˆเธฒเธ‡ เธเธฃเธธเธ“เธฒเธฅเธญเธ‡เธญเธตเธเธ„เธฃเธฑเน‰เธ‡" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "เธเธตเธฌเธฒ" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "เน€เธฃเธดเนˆเธกเนเธŠเธ—เนƒเธซเธกเนˆ" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "เน€เธฃเธดเนˆเธกเนเธŠเธ—เธเธฑเธš {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™" @@ -11715,12 +11722,16 @@ msgstr "เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เน‚เธ”เธขเธ„เธธเธ“" msgid "Starter pack is invalid" msgstr "เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เน„เธกเนˆเธ–เธนเธเธ•เน‰เธญเธ‡" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เธŠเนˆเธงเธขเนƒเธซเน‰เธ„เธธเธ“เนเธŠเธฃเนŒเธŸเธตเธ”เนเธฅเธฐเธœเธนเน‰เธ„เธ™เธ—เธตเนˆเธ„เธธเธ“เธŠเธทเนˆเธ™เธŠเธญเธšเธเธฑเธšเน€เธžเธทเนˆเธญเธ™เน† เน„เธ”เน‰เธญเธขเนˆเธฒเธ‡เธ‡เนˆเธฒเธขเธ”เธฒเธข" @@ -11728,7 +11739,7 @@ msgstr "เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เธŠเนˆเธงเธขเนƒเธซเน‰เธ„เธธเธ“เนเธŠเธฃ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "เธซเธ™เน‰เธฒเธชเธ–เธฒเธ™เธฐ" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "เธ‚เธฑเน‰เธ™เธ•เธญเธ™เธ—เธตเนˆ {0} เธˆเธฒเธ {1}" @@ -11754,7 +11765,7 @@ msgstr "เธฅเน‰เธฒเธ‡เธžเธทเน‰เธ™เธ—เธตเนˆเน€เธเน‡เธšเธ‚เน‰เธญเธกเธนเธฅเนเธฅเน‰ msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "เธชเธกเธฑเธ„เธฃเธชเธกเธฒเธŠเธดเธ @{0} เน€เธžเธทเนˆเธญเนƒเธŠเน‰เธ›เน‰เธฒเธขเธเธณเธเธฑเธšเน€เธซเธฅเนˆเธฒเธ™เธตเน‰:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "เนเธ™เธฐเธ™เธณเธชเธณเธซเธฃเธฑเธšเธ„เธธเธ“" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "เธฃเธฐเธšเธš" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "เธเธ”เน€เธžเธทเนˆเธญเธฅเธš" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "เธ เธฒเธฃเธเธดเธˆเธชเธณเน€เธฃเน‡เธˆ - เธเธฒเธฃเธเธ”เธ–เธนเธเนƒเธˆ 10!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "เธชเธญเธ™เธญเธฑเธฅเธเธญเธฃเธดเธ˜เธถเธกเธ‚เธญเธ‡เน€เธฃเธฒเน€เธเธตเนˆเธขเธงเธเธฑเธšเธชเธดเนˆเธ‡เธ—เธตเนˆเธ„เธธเธ“เธŠเธญเธš" @@ -12060,7 +12073,7 @@ msgstr "เน€เธ‡เธทเนˆเธญเธ™เน„เธ‚" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "เธซเธฒเธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เน„เธกเนˆเน€เธˆเธญ" msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "เธกเธตเนเธ„เนˆเธ™เธตเน‰เนเธซเธฅเธฐเธ—เนˆเธฒเธ™เธœเธนเน‰เธŠเธก!!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เธ—เธตเนˆเธ„เธธเธ“เธžเธขเธฒเธขเธฒเธกเธ”เธนเน„เธกเนˆเธ–เธนเธเธ•เน‰เธญเธ‡ เธ„เธธเธ“เธชเธฒเธกเธฒเธฃเธ–เธฅเธšเธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เธ™เธตเน‰เนเธ—เธ™เน„เธ”เน‰" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "เธฃเธซเธฑเธชเธขเธทเธ™เธขเธฑเธ™เธ—เธตเนˆเธ„เธธเธ“เนƒเธซเน‰เธกเธฒเธ™เธฑเน‰ msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "เธ˜เธตเธก" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "เน€เธเธดเธ”เธ›เธฑเธเธซเธฒเนƒเธ™เธเธฒเธฃเธ•เธดเธ”เธ•เนˆเธญเน€เธ‹เธดเธฃเนŒเธŸเน€เธงเธญเธฃเนŒ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -12283,8 +12296,8 @@ msgstr "" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "เน€เธเธดเธ”เธ›เธฑเธเธซเธฒเนƒเธ™เธเธฒเธฃเธ”เธถเธ‡เธเธฒเธฃเนเธˆเน‰เธ‡เน€เธ•เธทเธญเธ™ เธ„เธฅเธดเธเธ—เธตเนˆเธ™เธตเนˆเน€เธžเธทเนˆเธญเธฅเธญเธ‡เธญเธตเธเธ„เธฃเธฑเน‰เธ‡" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "เน€เธเธดเธ”เธ›เธฑเธเธซเธฒเนƒเธ™เธเธฒเธฃเธ”เธถเธ‡เน‚เธžเธชเธ•เนŒ เธ„เธฅเธดเธเธ—เธตเนˆเธ™เธตเนˆเน€เธžเธทเนˆเธญเธฅเธญเธ‡เธญเธตเธเธ„เธฃเธฑเน‰เธ‡" @@ -12309,7 +12322,7 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "" msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "เธซเธ™เน‰เธฒเธˆเธญ {screenDescription} เธ™เธตเน‰เธ–เธนเธเนเธˆเน‰เธ‡เน€เธ•เธทเธญเธ™ : " @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "เธšเธฑเธเธŠเธตเธ™เธตเน‰เน„เธ”เน‰เธฃเน‰เธญเธ‡เธ‚เธญเนƒเธซเน‰เธœเธนเน‰เนƒเธŠเน‰เธฅเธ‡เธŠเธทเนˆเธญเน€เธ‚เน‰เธฒเนƒเธŠเน‰เน€เธžเธทเนˆเธญเธ”เธนเน‚เธ›เธฃเน„เธŸเธฅเนŒเธ‚เธญเธ‡เธ•เธ™" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "" @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "" msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "" @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -12649,7 +12662,7 @@ msgstr "" msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "" @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "" msgid "This user is new here. Press for more info about when they joined." msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "เธ™เธตเนˆเธˆเธฐเธฅเธš @{0} เธญเธญเธเธˆเธฒเธเธฅเธดเธชเธ•เนŒเน€เธ‚เน‰เธฒเธ–เธถเธ‡เธ”เนˆเธงเธ™" @@ -12786,7 +12801,7 @@ msgstr "เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเน€เธ˜เธฃเธ”" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "" @@ -12858,7 +12873,7 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "เธ›เธฅเธ”เธšเธฅเน‡เธญเธเธšเธฑเธเธŠเธตเธซเธฃเธทเธญเน„เธกเนˆ?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "เน€เธฅเธดเธเธ•เธดเธ”เธ•เธฒเธก {0}" msgid "Unfollow account" msgstr "เน€เธฅเธดเธเธ•เธดเธ”เธ•เธฒเธกเธšเธฑเธเธŠเธต" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "เน€เธ›เธดเธ”เน€เธชเธตเธขเธ‡เธเธฃเธฐเธ—เธนเน‰" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "เน€เธ›เธดเธ”เน€เธชเธตเธขเธ‡เธงเธดเธ”เธตเน‚เธญ" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "เน€เธฅเธดเธเธ›เธฑเธเธซเธกเธธเธ”" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "เน€เธฅเธดเธเธ›เธฑเธเธซเธกเธธเธ”เธˆเธฒเธเธซเธ™เน‰เธฒเนเธฃเธ" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "เน€เธฅเธดเธเธ›เธฑเธเธซเธกเธธเธ”เธˆเธฒเธเธฅเธดเธชเธ•เนŒเธเธฒเธฃModerate" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "เน€เธฅเธดเธเธชเธกเธฑเธ„เธฃเธฃเธฑเธšเธ‚เน‰เธญเธกเธนเธฅเธˆเธฒเธเธœเธนเน‰ msgid "Unsubscribed from list" msgstr "เน€เธฅเธดเธเธชเธกเธฑเธ„เธฃเธฃเธฑเธšเธ‚เน‰เธญเธกเธนเธฅเธˆเธฒเธเธฅเธดเธชเธ•เนŒเนเธฅเน‰เธง" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "เธเธฒเธฃเธญเธฑเธ›เน€เธ”เธ•เธเธฒเธฃเธกเธญเธ‡เน€เธซเน‡เธ™เธเธฒเธฃเธ•เธญเธšเธเธฅเธฑเธšเธฅเน‰เธกเน€เธซเธฅเธง" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "เธญเธฑเธ›เน‚เธซเธฅเธ”เธฃเธนเธ›เธ เธฒเธžเนเธ—เธ™" @@ -13355,7 +13376,7 @@ msgstr "เธญเธฑเธ›เน‚เธซเธฅเธ”เธˆเธฒเธเน„เธŸเธฅเนŒ" msgid "Upload from Library" msgstr "เธญเธฑเธ›เน‚เธซเธฅเธ”เธˆเธฒเธเน„เธฅเธšเธฃเธฒเธฃเธต" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "" msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "" @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "เธงเธดเธ”เธตเน‚เธญ" msgid "Video failed to process" msgstr "เธเธฒเธฃเธ›เธฃเธฐเธกเธงเธฅเธœเธฅเธงเธดเธ”เธตเน‚เธญเน„เธกเนˆเธชเธณเน€เธฃเน‡เธˆ" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "เน€เธเธกเธงเธดเธ”เธตเน‚เธญ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "เน„เธกเนˆเธžเธšเธงเธดเธ”เธตเน‚เธญ" @@ -13653,7 +13674,7 @@ msgstr "เน„เธกเนˆเธžเธšเธงเธดเธ”เธตเน‚เธญ" msgid "Video settings" msgstr "เธเธฒเธฃเธ•เธฑเน‰เธ‡เธ„เนˆเธฒเธงเธดเธ”เธตเน‚เธญ" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "" @@ -13662,17 +13683,17 @@ msgstr "" msgid "Video: {0}" msgstr "เธงเธดเธ”เธตเน‚เธญ: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "เธ”เธนเธญเธงเธ•เธฒเธฃเนŒเธ‚เธญเธ‡ {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "เธ”เธนเน‚เธ›เธฃเน„เธŸเธฅเนŒเธ‚เธญเธ‡ {0}" @@ -13724,13 +13745,13 @@ msgstr "เธ”เธนเธšเธฅเน‡เธญเธเน‚เธžเธชเธ•เนŒเธชเธณเธซเธฃเธฑเธšเธฃเธฒเธขเธฅเธฐเน€ msgid "View debug entry" msgstr "เธ”เธนเธฅเธดเธชเธ•เนŒเธ”เธตเธšเธฑเธ" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "เธ”เธนเธฃเธฒเธขเธฅเธฐเน€เธญเธตเธขเธ”" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "เธ”เธนเน€เธ˜เธฃเธ”เน€เธ•เน‡เธก" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "เธ”เธนเธ‚เน‰เธญเธกเธนเธฅเน€เธเธตเนˆเธขเธงเธเธฑเธšเธ›เน‰เธฒเธขเธเธณเธเธฑเธšเน€เธซเธฅเนˆเธฒเธ™เธตเน‰" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "เธ”เธนเธšเธฃเธดเธเธฒเธฃเธ•เธดเธ”เธ›เน‰เธฒเธขเธเธณเธเธฑเธšเธ—เธตเนˆเธˆเธฑเธ”เธ—เธณเน‚เธ”เธข @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "เธ”เธนเธœเธนเน‰เนƒเธŠเน‰เธ—เธตเนˆเธŠเธญเธšเธŸเธตเธ”เธ™เธตเน‰" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "เธ”เธนเธฅเธดเธชเธ•เนŒเธเธฒเธฃModeration เธ‚เธญเธ‡เธ„เธธเธ“" msgid "View your muted accounts" msgstr "เธ”เธนเธšเธฑเธเธŠเธตเธ—เธตเนˆเธ„เธธเธ“เธ›เธดเธ”เน€เธชเธตเธขเธ‡" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "เน€เธฃเธฒเธเธณเธฅเธฑเธ‡เธ›เธฃเธฐเธชเธšเธ›เธฑเธเธซเธฒเน€เธ„เธฃเธทเธญเธ‚เนˆเธฒเธข เน‚เธ›เธฃเธ”เธฅเธญเธ‡เธญเธตเธเธ„เธฃเธฑเน‰เธ‡" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "เธ‚เธญเธญเธ เธฑเธข เน€เธฃเธฒเน„เธกเนˆเธชเธฒเธกเธฒเธฃเธ–เนเธเน‰เน„เธ‚ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "เธ‚เธญเธญเธ เธฑเธข เน€เธฃเธฒเน„เธกเนˆเธชเธฒเธกเธฒเธฃเธ–เน‚เธซเธฅเธ”เธ„เธณเธ—เธตเนˆเธ„เธธเธ“เธ›เธดเธ”เน€เธชเธตเธขเธ‡เนƒเธ™เธ‚เธ“เธฐเธ™เธตเน‰ เน‚เธ›เธฃเธ”เธฅเธญเธ‡เธญเธตเธเธ„เธฃเธฑเน‰เธ‡" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "เธ‚เธญเธญเธ เธฑเธข! เน‚เธžเธชเธ•เนŒเธ—เธตเนˆเธ„เธธเธ“เธ•เธญเธšเธเธฅเธฑเธšเธ–เธนเธเธฅเธšเน„เธ›เนเธฅเน‰เธง" @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "เธกเธตเธญเธฐเน„เธฃเนƒเธซเธกเนˆ?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "เธญเธธเนŠเธข!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "เน€เธ‚เธตเธขเธ™เน‚เธžเธชเธ•เนŒ" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "เน€เธ‚เธตเธขเธ™เธ„เธณเธ•เธญเธšเธ‚เธญเธ‡เธ„เธธเธ“" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "เธ„เธธเธ“เน„เธกเนˆเน„เธ”เน‰เธฃเธฑเธšเธญเธ™เธธเธเธฒเธ•เนƒเธซเน‰เธญเธฑเธ›เน‚เธซเธฅเธ”เธงเธดเธ”เธตเน‚เธญ." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "เธ„เธธเธ“เธชเธฒเธกเธฒเธฃเธ–เธฅเธ‡เธŠเธทเนˆเธญเน€เธ‚เน‰เธฒเนƒเธŠเน‰เธ”เน‰เธงเธขเธฃเธซเธฑเธชเธœเนˆเธฒเธ™เนƒเธซเธกเนˆเธ‚เธญเธ‡เธ„เธธเธ“เน„เธ”เน‰เนเธฅเน‰เธง" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "เธ„เธธเธ“เธ–เธถเธ‡เธ‚เธตเธ”เธˆเธณเธเธฑเธ”เธเธฒเธฃเธญเธฑเธ›เน‚เธซเธฅเธ”เธงเธดเธ”เธตเน‚เธญเธŠเธฑเนˆเธงเธ„เธฃเธฒเธงเนเธฅเน‰เธง เธเธฃเธธเธ“เธฒเธฅเธญเธ‡เธญเธตเธเธ„เธฃเธฑเน‰เธ‡เนƒเธ™เธ เธฒเธขเธซเธฅเธฑเธ‡" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "เธ„เธธเธ“เธขเธฑเธ‡เน„เธกเนˆเน„เธ”เน‰เธชเธฃเน‰เธฒเธ‡เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™!" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "เธ„เธธเธ“เธชเธฒเธกเธฒเธฃเธ–เน€เธžเธดเนˆเธกเน„เธ”เน‰เธชเธนเธ‡เธชเธธเธ” 3 เธŸเธตเธ”" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "เธ„เธธเธ“เธ•เน‰เธญเธ‡เธ•เธดเธ”เธ•เธฒเธกเธœเธนเน‰เธญเธทเนˆเธ™เธญเธขเนˆเธฒเธ‡เธ™เน‰เธญเธข 7 เธ„เธ™เธˆเธถเธ‡เธˆเธฐเธชเธฒเธกเธฒเธฃเธ–เธชเธฃเน‰เธฒเธ‡เธŠเธธเธ”เน€เธฃเธดเนˆเธกเธ•เน‰เธ™เน„เธ”เน‰" @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "เธ„เธธเธ“เธˆเธฐเธ•เธดเธ”เธ•เธฒเธกเธœเธนเน‰เนƒเธŠเน‰เนเธฅเธฐเธŸเธตเธ”เธ—เธตเนˆเนเธ™เธฐเธ™เธณเธ—เธฑเธ™เธ—เธตเธ—เธตเนˆเธชเธฃเน‰เธฒเธ‡เธšเธฑเธเธŠเธตเน€เธชเธฃเน‡เธˆ!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "เธ„เธธเธ“เธˆเธฐเธ•เธดเธ”เธ•เธฒเธกเธœเธนเน‰เนƒเธŠเน‰เธ—เธตเนˆเนเธ™เธฐเธ™เธณเธ—เธฑเธ™เธ—เธตเธ—เธตเนˆเธชเธฃเน‰เธฒเธ‡เธšเธฑเธเธŠเธตเน€เธชเธฃเน‡เธˆ!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "เธ„เธธเธ“เธกเธฒเธ–เธถเธ‡เธˆเธธเธ”เธชเธดเน‰เธ™เธชเธธเธ”เธŸเธตเธ”เธ‚เธญเธ‡เธ„เธธเธ“เนเธฅเน‰เธง! เธ„เน‰เธ™เธซเธฒเธšเธฑเธเธŠเธตเน€เธžเธดเนˆเธกเน€เธ•เธดเธกเน€เธžเธทเนˆเธญเธ•เธดเธ”เธ•เธฒเธก" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "เธ„เธธเธ“เธ–เธถเธ‡เธ‚เธตเธ”เธˆเธณเธเธฑเธ”เธเธฒเธฃเธญเธฑเธžเน‚เธซเธฅเธ” msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "เธ„เธธเธ“เธ–เธถเธ‡เธ‚เธตเธ”เธˆเธณเธเธฑเธ”เธเธฒเธฃเธญเธฑเธžเน‚เธซเธฅเธ”เธงเธดเธ”เธตเน‚เธญเธ•เนˆเธญเธงเธฑเธ™เนเธฅเน‰เธง (เธงเธดเธ”เธตเน‚เธญเธกเธฒเธเน€เธเธดเธ™เน„เธ›)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "เธšเธฑเธเธŠเธตเธ‚เธญเธ‡เธ„เธธเธ“" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "เธšเธฑเธเธŠเธตเธ‚เธญเธ‡เธ„เธธเธ“เธขเธฑเธ‡เธกเธตเธญเธฒเธขเธธเน„เธกเนˆเธกเธฒเธเธžเธญเธ—เธตเนˆเธˆเธฐเธญเธฑเธžเน‚เธซเธฅเธ”เธงเธดเธ”เธตเน‚เธญ เธเธฃเธธเธ“เธฒเธฅเธญเธ‡เนƒเธซเธกเนˆเธญเธตเธเธ„เธฃเธฑเน‰เธ‡เนƒเธ™เธ เธฒเธขเธซเธฅเธฑเธ‡" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "เธญเธตเน€เธกเธฅเธ‚เธญเธ‡เธ„เธธเธ“เธ”เธนเน€เธซเธกเธทเธญเธ™เธˆเธฐเน„เธกเนˆเธ–เธนเธเธ•เน‰เธญเธ‡" @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "เน‚เธ›เธฃเน„เธŸเธฅเนŒ เน‚เธžเธชเธ•เนŒ เธŸเธตเธ” เนเธฅเธฐเธฅเธดเธชเธ•เนŒเธ‚เธญเธ‡เธ„เธธเธ“เธˆเธฐเน„เธกเนˆเธ›เธฃเธฒเธเธเนƒเธซเน‰เธœเธนเน‰เนƒเธŠเน‰ Bluesky เธ„เธ™เธญเธทเนˆเธ™เน€เธซเน‡เธ™เธญเธตเธเธ•เนˆเธญเน„เธ› เธ„เธธเธ“เธชเธฒเธกเธฒเธฃเธ–เน€เธ›เธดเธ”เนƒเธŠเน‰เธ‡เธฒเธ™เธšเธฑเธเธŠเธตเธ‚เธญเธ‡เธ„เธธเธ“เธญเธตเธเธ„เธฃเธฑเน‰เธ‡เน„เธ”เน‰เธ•เธฅเธญเธ”เน€เธงเธฅเธฒเน‚เธ”เธขเธเธฒเธฃเน€เธ‚เน‰เธฒเธชเธนเนˆเธฃเธฐเธšเธš" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po index 2b1e855231..e4ab43bd8c 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" kategorisi (etkin)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "(engelli mesaj gizlenmiลŸ)" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(gรถmรผlรผ iรงerik iรงeriyor)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "(silinmiลŸ mesaj)" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "(geรงersiz sohbet davetiyesi baฤŸlantฤฑsฤฑ)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "(siz katฤฑlmadan รถnce gรถnderilen mesaj)" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, other {# saat}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "{0, plural, other {gรถnderinize # iลŸaret uygulandฤฑ}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "{0, plural, other {# iลŸaret uygulandฤฑ}}" @@ -119,6 +119,7 @@ msgstr "{0, plural, other {# beฤŸeni}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {# รผye}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, other {# katฤฑlma talebi}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, other {# kiลŸi}} tepki verdi โ€“ {1}" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0} (Hesap)" @@ -251,36 +252,13 @@ msgstr "{0} sohbete eklendi" msgid "{0} and {1} added to chat" msgstr "{0} ve {1} sohbete eklendi" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "{0} ve {1} bunu beฤŸendi" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "{0} ve {others, plural, other {{2} kiลŸi daha}} bunu beฤŸendi" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "{0} ve {othersLabel} bunu beฤŸendi" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} takip edilen" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} sizi engelliyor" @@ -324,14 +302,6 @@ msgstr "{0} ayrฤฑldฤฑ" msgid "{0} left the group" msgstr "{0} gruptan ayrฤฑldฤฑ" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "{0} bunu beฤŸendi" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "50'de {0}" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ลŸu tepkiyi verdi: {1}" @@ -388,21 +358,6 @@ msgstr "{0}, " msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}, {1} ve {memberCount, plural, other {# kiลŸi daha}} sohbete eklendi" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "{0}, {1}, ve {others, plural, other {{3} kiลŸi daha}} bunu beฤŸendi" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "{0}, {1} ve {othersLabel} bunu beฤŸendi" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} sizi doฤŸruladฤฑ" msgid "{following} following" msgstr "{following} takip ediliyor" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "{handle} eklenemez" @@ -698,7 +660,7 @@ msgstr "{handle} eklenemez" msgid "{handle} can't be messaged" msgstr "{handle} kullanฤฑcฤฑsฤฑna mesaj gรถnderilemez" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "{handle} kiลŸisine mesaj atฤฑlamaz" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, other {# okunmamฤฑลŸ รถฤŸe}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {# baฤŸlantฤฑ bulundu}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "{others, plural, other {{1} kiลŸi daha}}" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName} Bluesky'a {timeAgoString} รถnce katฤฑlmฤฑลŸ" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName} Bluesky'a {timeAgoString} รถnce bir baลŸlangฤฑรง paketi kullanarak katฤฑlmฤฑลŸ" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "{remaining, plural, other {# karakter kaldฤฑ}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} yanฤฑtladฤฑ" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName}, {originalName} adlฤฑ kiลŸiye yanฤฑt verdi" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} size yanฤฑt verdi" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, other {# talep}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ talep" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type}s รถnce" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} gรผvenilir bir doฤŸrulayฤฑcฤฑ" @@ -842,13 +795,13 @@ msgstr "{userName} kullanฤฑcฤฑsฤฑnฤฑn doฤŸrulamalarฤฑ" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, other {takip edilen}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {alฤฑntฤฑ}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {yeniden gรถnderi}}" @@ -903,7 +856,7 @@ msgstr "<0>{0} {1, plural, other {kaydedilme}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "<0>{0} {likeCount, plural, other {beฤŸeni}}" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> sizi ekledi" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<4>Bluesky'da haber, spor, siyaset ve diฤŸer olan biteni aramak iรงin<3> <0>giriลŸ yapฤฑn<1> veya <2>bir hesap oluลŸturun." @@ -971,7 +924,7 @@ msgstr "30 gรผn" msgid "7 days" msgstr "7 gรผn" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "Bluesky'da bulabileceฤŸiniz bazฤฑ popรผler akฤฑลŸlarฤฑn derlenmiลŸ hali" @@ -988,9 +941,11 @@ msgstr "Bir aฤŸ hatasฤฑ oluลŸtu. Lรผtfen internet baฤŸlantฤฑnฤฑzฤฑ kontrol edin" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "Yeni bir kod yollandฤฑ" msgid "A new form of verification" msgstr "Yeni bir doฤŸrulama biรงimi" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "Siz katฤฑlmadan รถnce gรถnderilen bir mesaja yanฤฑt" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "Gรถnderi dรผzenleyicisinin bir gรถnderi yanฤฑndaki yeni \"Taslaklar\" butonu ve gรถkkuลŸaฤŸฤฑ havai fiลŸek efekti barฤฑndฤฑran ekran gรถrรผntรผsรผ. Altฤฑnda, dรผzenleyicideki metinde \"Hey, haberleri duydunuz mu? Bluesky'da taslaklar var artฤฑk!!!\" yazฤฑyor." #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "SeรงilmiลŸ alฤฑcฤฑlardan biri gรถnderen tarafฤฑndan takip edilmiyor." -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "EriลŸim istendi! Grup sahibi talebinizi inceleyecek." msgid "Accessibility" msgstr "EriลŸilebilirlik" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "EriลŸilebilirlik Ayarlarฤฑ" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Liste Tarafฤฑndan Hesap Susturuldu" msgid "Account options" msgstr "Hesap seรงenekleri" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Hesap hฤฑzlฤฑ eriลŸimden kaldฤฑrฤฑldฤฑ" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "ร‡ฤฑkฤฑntฤฑlฤฑ onay tikine sahip hesaplar <0><1/> baลŸka hesaplarฤฑ doฤŸrulayabilir. Bu gรผvenilir doฤŸrulayฤฑcฤฑlar Bluesky tarafฤฑndan seรงilir." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "BaลŸkalarฤฑnฤฑn etkinlikleri" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "Etkinlik bildirimleri" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Alternatif metin ekle (isteฤŸe baฤŸlฤฑ)" msgid "Add another account" msgstr "BaลŸka hesap ekle" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "BaลŸka gรถnderi ekle" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "Konuya yeni bir gรถnderi ekle" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "BaลŸka bir arama filtresi ekle" @@ -1253,7 +1213,7 @@ msgstr "Hesaba otomasyon iลŸareti ekle" msgid "Add emoji reaction" msgstr "Emoji tepkisi ekle" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "Filtre ekle" @@ -1338,7 +1298,7 @@ msgstr "AkฤฑลŸlarฤฑnฤฑza bu akฤฑลŸฤฑ ekleyin" msgid "Add to lists" msgstr "Listelere ekle" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "Kayฤฑtlฤฑ gรถnderilere ekle" @@ -1400,7 +1360,7 @@ msgstr "YetiลŸkin" msgid "Adult content" msgstr "YetiลŸkin iรงerik" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "ayse@ornek.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Hepsi" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "Tรผm arkadaลŸlar takip edildi!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Tรผm Diller" @@ -1491,11 +1447,6 @@ msgstr "AkฤฑลŸlarฤฑnฤฑzda tรผm diller gรถsterilecek." msgid "All of these words" msgstr "Tรผm bu kelimeler" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "Tรผm gรถnderiler" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "KaydettiฤŸiniz akฤฑลŸlarฤฑn tรผmรผ bir yerde." @@ -1560,7 +1511,7 @@ msgstr "DoฤŸrudan mesajlara eriลŸime izin verir" msgid "Already have a code?" msgstr "Zaten bir kodunuz mu var?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "Zaten bir hesabฤฑnฤฑz mฤฑ var?" @@ -1614,7 +1565,7 @@ msgstr "{0} adresine bir e-posta gรถnderildi. AลŸaฤŸฤฑda girebileceฤŸiniz bir on msgid "An error has occurred" msgstr "Bir hata oluลŸtu" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "Bir hata oluลŸtu" @@ -1631,7 +1582,7 @@ msgstr "ร–nerilen hesaplar getirilemedi." msgid "An error occurred while fetching the feed." msgstr "AkฤฑลŸ getirilirken bir hata oluลŸtu." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "BaลŸlangฤฑรง paketiniz oluลŸturulurken bir hata oluลŸtu. Yeniden denemek ister misiniz?" @@ -1640,11 +1591,11 @@ msgstr "BaลŸlangฤฑรง paketiniz oluลŸturulurken bir hata oluลŸtu. Yeniden denemek msgid "An error occurred while hiding suggestion. {0}" msgstr "ร–neriyi gizlerken bir hata oluลŸtu. {0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "Video yรผklenirken bir hata oluลŸtu. Lรผtfen daha sonra tekrar deneyin." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "Video yรผklenirken bir hata oluลŸtu. Lรผtfen tekrar deneyin." @@ -1684,7 +1635,7 @@ msgstr "Bir hata oluลŸtu. {0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "Bir telefon rehberinden Bluesky uygulamasฤฑna akan kullanฤฑcฤฑ avatarlarฤฑnฤฑ gรถsteren bir illรผstrasyon" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Birkaรง Bluesky gรถnderisinin yeniden gรถnderi, beฤŸeni ve yorum yapma simgeleriyle beraber รงizimi" @@ -1705,17 +1656,15 @@ msgstr "Davetiye baฤŸlantฤฑsฤฑ insanlarฤฑn bu gruba doฤŸrudan eklenmeden katฤฑla msgid "An issue not included in these options" msgstr "Bu seรงeneklerde yer almayan bir sorun" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "Grup sohbetini oluลŸtururken bir sorun รงฤฑktฤฑ, lรผtfen tekrar deneyin." - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "Sohbeti baลŸlatฤฑrken bir sorun รงฤฑktฤฑ, lรผtfen tekrar deneyin." -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Sohbeti aรงmaya รงalฤฑลŸฤฑrken bir sorun oluลŸtu" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "Grup sohbetini oluลŸtururken bir sorun รงฤฑktฤฑ, lรผtfen tekrar deneyin." #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "Herhangi bir tarih" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "Herkes" @@ -1802,7 +1749,7 @@ msgstr "Beni takip eden herkes" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "Ona sahip olan kimse artฤฑk katฤฑlamayacak ya da katฤฑlmayฤฑ talep edemeyecek. ฤฐstediฤŸiniz zaman yeni bir tane oluลŸturabilirsiniz." -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Uygulama ลŸifresi isimleri en az 4 karakter uzunluฤŸunda olmalฤฑdฤฑr" msgid "App passwords" msgstr "Uygulama ลŸifreleri" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Uygulama ลžifreleri" @@ -1891,8 +1838,8 @@ msgstr "Bu karara itiraz et" msgid "Appeal this label" msgstr "Bu iลŸarete itiraz et" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "Pull Request'i uygula" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "{0} kaynaฤŸฤฑndan arลŸivlendi" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "ArลŸivlenmiลŸ gรถnderi" @@ -1980,7 +1927,7 @@ msgstr "Bunu akฤฑลŸlarฤฑnฤฑzdan รงฤฑkarmak istediฤŸinize emin misiniz?" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "{0} grubuna katฤฑlma talebinizi geri รงekmek istediฤŸinizden emin misiniz?" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Bu taslaฤŸฤฑ silmek istediฤŸinizden emin misiniz?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Kuzey IลŸฤฑklarฤฑ" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "Otomasyonlu hesap" @@ -2033,7 +1985,7 @@ msgstr "Otomatik" msgid "Automation label" msgstr "Otomasyon iลŸareti" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Otomasyon ฤฐลŸareti" @@ -2050,12 +2002,16 @@ msgstr "Videolarฤฑ ve GIFleri otomatik oynat" msgid "Available" msgstr "Kullanฤฑlabilir" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "Bir gรถnderi oluลŸturmadan ya da yanฤฑt vermeden รถnce e-postanฤฑzฤฑ doฤŸrulamanฤฑz gerekmektedir." #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Bir baลŸlangฤฑรง โ€‹โ€‹paketi oluลŸturmadan รถnce e-posta adresinizi doฤŸrulamanฤฑz gerekir." @@ -2135,10 +2091,10 @@ msgstr "{name} kullanฤฑcฤฑsฤฑnฤฑn gรถnderilerinden bildirim alabilmeniz iรงin รถ #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "AลŸaฤŸฤฑdaki alanlarฤฑ doldurarak yaลŸ gรผvencesi iลŸlemine baลŸlayฤฑn." msgid "Beta Feature" msgstr "Beta ร–zellik" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "Beta รถzellikler" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "Beta รถzellikler etkinleลŸtirildi" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "DoฤŸum tarihi" msgid "Birthday" msgstr "DoฤŸum gรผnรผ" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "Engellendi" msgid "Blocked accounts" msgstr "Engellenen hesaplar" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Engellenen Hesaplar" @@ -2282,7 +2244,7 @@ msgstr "Engellenen hesaplar, konularฤฑnฤฑza yanฤฑt veremez, sizi bahsedemez veya msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Engellenen hesaplar, konularฤฑnฤฑza yanฤฑt veremez, sizi bahsedemez veya baลŸka ลŸekilde sizinle etkileลŸime giremez. Onlarฤฑn iรงeriฤŸini gรถrmeyeceksiniz ve onlar da sizinkini gรถrmekten alฤฑkonulacaklar." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Engellemeniz bu iลŸaretleyicinin hesabฤฑnฤฑza iลŸaret koymasฤฑna engel olmayacaktฤฑr." @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky iddia edilen tarihin doฤŸruluฤŸunu onaylayamaz." @@ -2330,7 +2293,7 @@ msgstr "Bluesky, barฤฑndฤฑrma saฤŸlayฤฑcฤฑnฤฑzฤฑ seรงebileceฤŸiniz aรงฤฑk bir a msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky kendi saฤŸlayฤฑcฤฑnฤฑzฤฑ seรงebildiฤŸiniz aรงฤฑk bir aฤŸdฤฑr. EฤŸer burada yeniyseniz varsayฤฑlan \"Bluesky Social\" seรงeneฤŸinde kalmanฤฑzฤฑ รถneririz." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky arkadaลŸlarla daha gรผzel!" @@ -2358,7 +2321,7 @@ msgstr "Bluesky Social Hizmet ลžartlarฤฑ" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky baฤŸlantฤฑlarฤฑnฤฑzฤฑ ลŸifreli veri olarak tutar. BaฤŸlantฤฑlarฤฑnฤฑzฤฑ kaldฤฑrmanฤฑz bu veriyi anฤฑnda siler." -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky, aฤŸฤฑnฤฑzdaki kiลŸilerden bir dizi รถnerilen hesap seรงecektir." @@ -2403,20 +2366,20 @@ msgstr "50 adede kadar arkadaลŸฤฑnฤฑzฤฑ tek bir sohbette toplayฤฑn." msgid "Browse custom feeds" msgstr "ร–zelleลŸtirilmiลŸ akฤฑลŸlarฤฑ gรถster" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "DiฤŸer hesaplara gรถz at" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "KeลŸfet sayfasฤฑnda daha fazla akฤฑลŸ bul" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Daha รงok รถneriye gรถz at" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "KeลŸfet sayfasฤฑnda daha รงok รถneriye gรถz at" @@ -2425,24 +2388,25 @@ msgstr "KeลŸfet sayfasฤฑnda daha รงok รถneriye gรถz at" msgid "Browse other feeds" msgstr "DiฤŸer akฤฑลŸlara gรถz at" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "{displayName} hakkฤฑndaki gรถnderilere gรถz at" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "{displayName} etiketini barฤฑndฤฑran gรถnderilere gรถz at" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "{displayName} baลŸlangฤฑรง paketine gรถz at" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "{0} konusuna gรถz at" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "{displayName} konusunu gรถrรผntรผle" @@ -2461,8 +2425,8 @@ msgstr "Ana akฤฑลŸa geri dรถnรผลŸ butonu" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "{0} tarafฤฑndan" @@ -2473,9 +2437,9 @@ msgstr "@{0} tarafฤฑndan" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "<0>{0} tarafฤฑndan geliลŸtiriliyor" @@ -2504,11 +2468,11 @@ msgstr "Bir hesap oluลŸturarak <0>Hizmet ลžartlarฤฑ'nฤฑ ve <1>Gizlilik Polit msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Bir hesap oluลŸturarak <0>Hizmet ลžartlarฤฑ'nฤฑ kabul etmiลŸ sayฤฑlฤฑrsฤฑnฤฑz." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "Size ait" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Kamera" @@ -2534,7 +2498,7 @@ msgstr "Kamera eriลŸimi gerekli" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "Kamera eriลŸimi gerekli" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Yeniden etkinleลŸtirmeyi iptal et ve รงฤฑkฤฑลŸ yap" msgid "Cancel reply" msgstr "Yanฤฑtฤฑ iptal et" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Aramayฤฑ iptal et" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "BaลŸlangฤฑรง paketine yapฤฑlan deฤŸiลŸiklikler listeyi oluลŸturduktan sonra ona yansฤฑtฤฑlmayacaktฤฑr. Liste baฤŸฤฑmsฤฑz bir kopya olacaktฤฑr." #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "Sohbet sessize alฤฑndฤฑ" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "Sohbet bulunamadฤฑ." -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "Sohbet seรงenekleri" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "Sohbet sahipleri grup sohbetinden ayrฤฑlamaz." #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "Sohbet alฤฑcฤฑsฤฑ gรถnderici tarafฤฑndan takip edilmiyor." -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Sohbet istekleri gelen kutusu" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Sohbet istekleri" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "MesajlaลŸma ayarlarฤฑ" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "Sohbet sessizden รงฤฑkarฤฑldฤฑ" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Sohbetler" @@ -2837,7 +2802,7 @@ msgstr "Alan adฤฑ doฤŸrulama yรถntemini seรงin" msgid "Choose Feeds" msgstr "AkฤฑลŸlarฤฑ Seรงin" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Benim iรงin seรง" @@ -2854,7 +2819,7 @@ msgstr "KiลŸileri Seรง" msgid "Choose post languages" msgstr "Gรถnderi dillerini seรงin" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Bu rengi avatar olarak seรง" @@ -2879,7 +2844,7 @@ msgstr "Kendi zaman akฤฑลŸฤฑnฤฑzฤฑ seรงin! Topluluk tarafฤฑndan oluลŸturulan ak msgid "Choose your password" msgstr "ลžifrenizi seรงin" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Kullanฤฑcฤฑ adฤฑnฤฑz" @@ -2966,7 +2931,7 @@ msgstr "Bu grup sohbetinin davetiye baฤŸlantฤฑsฤฑnฤฑ gรถrรผntรผlemek iรงin buray msgid "Click to open tag menu for {0}" msgstr "{0} etiket menรผsรผnรผ aรงmak iรงin tฤฑklayฤฑn" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "ฤฐletilemeyen mesajฤฑ tekrar denemek iรงin tฤฑklayฤฑn" @@ -3003,7 +2968,7 @@ msgstr "ฤฐletilemeyen mesajฤฑ tekrar denemek iรงin tฤฑklayฤฑn" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "ฤฐletilemeyen mesajฤฑ tekrar denemek iรงin tฤฑklayฤฑn" msgid "Close" msgstr "Kapat" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "Etkin iletiลŸim kutusunu kapat" @@ -3047,7 +3012,7 @@ msgstr "Bildirimi kapat" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "Gรถrsel gรถstericiyi kapat" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "Menรผyรผ kapat" @@ -3090,7 +3055,7 @@ msgstr "Gelen talepler bildirimini kapat" msgid "Close this dialog" msgstr "Bu diyalogu kapat" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "HoลŸgeldiniz ekranฤฑnฤฑ kapat" @@ -3098,7 +3063,7 @@ msgstr "HoลŸgeldiniz ekranฤฑnฤฑ kapat" msgid "Closes password update alert" msgstr "ลžifre gรผncelleme uyarฤฑsฤฑnฤฑ kapatฤฑr" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "Gรถnderi dรผzenleyiciyi kapatฤฑr ve gรถnderi taslaฤŸฤฑnฤฑ siler" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "Renk" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Renk modu" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "ร‡izgi romanlar" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Topluluk Kurallarฤฑ" @@ -3141,7 +3106,7 @@ msgstr "Topluluk Kurallarฤฑ" msgid "Complete onboarding and start using your account" msgstr "Onboarding'i tamamlayฤฑn ve hesabฤฑnฤฑzฤฑ kullanmaya baลŸlayฤฑn" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Meydan okumayฤฑ tamamlayฤฑn" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Yeni gรถnderi oluลŸtur" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "{0, plural, other {# karakter}} uzunluฤŸuna kadar gรถnderiler oluลŸturun" @@ -3160,11 +3125,11 @@ msgstr "{0, plural, other {# karakter}} uzunluฤŸuna kadar gรถnderiler oluลŸturun msgid "Compose reply" msgstr "Yanฤฑt oluลŸtur" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "GIF sฤฑkฤฑลŸtฤฑrฤฑlฤฑyor..." -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "Video sฤฑkฤฑลŸtฤฑrฤฑlฤฑyor..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "Destek ekibimize ulaลŸฤฑn" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Destek ile iletiลŸime geรงin" @@ -3253,7 +3218,7 @@ msgstr "ฤฐรงerik ve Medya" msgid "Content and media" msgstr "ฤฐรงerik ve medya" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "ฤฐรงerik ve Medya" @@ -3265,10 +3230,6 @@ msgstr "ฤฐรงerik Engellendi" msgid "Content filters" msgstr "ฤฐรงerik filtreleri" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "AฤŸฤฑn genelinden beฤŸeneceฤŸinizi dรผลŸรผndรผฤŸรผmรผz iรงerik." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "ฤฐรงerik dilleri" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "Kendine zarar vermeyi รถzendiren ya da betimleyen iรงerik" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "ฤฐรงerik Uyarฤฑsฤฑ" msgid "Content warnings" msgstr "ฤฐรงerik uyarฤฑlarฤฑ" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "BaฤŸlam menรผsรผ arkaplanฤฑ, menรผyรผ kapatmak iรงin tฤฑklayฤฑn." @@ -3302,7 +3263,7 @@ msgstr "BaฤŸlam menรผsรผ arkaplanฤฑ, menรผyรผ kapatmak iรงin tฤฑklayฤฑn." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Konuya devam et..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "Grup adฤฑna devam et" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "YazฤฑลŸma bulunamadฤฑ." msgid "Copied build version to clipboard" msgstr "Sรผrรผm numarasฤฑ panoya kopyalandฤฑ" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "BaฤŸlantฤฑ panoya kopyalandฤฑ" @@ -3376,7 +3337,7 @@ msgstr "BaฤŸlantฤฑ panoya kopyalandฤฑ" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Uygulama ลžifresini Kopyala" msgid "Copy at:// URI" msgstr "Bu at:// URI'sini kopyala" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Yazar DID'ini kopyala" @@ -3449,10 +3410,10 @@ msgstr "BaฤŸlantฤฑyฤฑ Kopyala" msgid "Copy link to list" msgstr "Liste baฤŸlantฤฑsฤฑnฤฑ kopyala" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Gรถnderi baฤŸlantฤฑsฤฑnฤฑ kopyala" @@ -3470,8 +3431,8 @@ msgstr "BaลŸlangฤฑรง paketi baฤŸlantฤฑsฤฑnฤฑ kopyala" msgid "Copy message text" msgstr "Mesajฤฑ kopyala" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Gรถnderinin at:// URI'sini kopyala" @@ -3490,7 +3451,7 @@ msgstr "TXT kayฤฑt deฤŸerini kopyala" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Telif Hakkฤฑ Politikasฤฑ" @@ -3540,11 +3501,11 @@ msgstr "Tรผm tutan baฤŸlantฤฑlar takip edilemedi. {0}" msgid "Could not leave chat" msgstr "Sohbetten ayrฤฑlฤฑnamadฤฑ" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "Sohbet bฤฑrakฤฑlamadฤฑ." -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "AkฤฑลŸ yรผklenemedi" @@ -3562,7 +3523,7 @@ msgstr "Profil yรผklenemedi" msgid "Could not mute chat" msgstr "Sohbet sessize alฤฑnamadฤฑ" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "รœye รงฤฑkartฤฑlamadฤฑ." @@ -3606,8 +3567,8 @@ msgstr "inekler domuzlar" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "OluลŸtur" @@ -3624,26 +3585,26 @@ msgstr "Bu baลŸlangฤฑรง paketinden bir liste oluลŸtur" msgid "Create a QR code for a starter pack" msgstr "BaลŸlangฤฑรง paketi iรงin QR kod oluลŸturun" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Bir baลŸlangฤฑรง paketi oluลŸtur" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "BaลŸlangฤฑรง Paketi oluลŸtur" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Benim iรงin bir baลŸlangฤฑรง paketi oluลŸtur" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Kaydol" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Bir hesap oluลŸtur" @@ -3666,15 +3627,15 @@ msgstr "Bir hesap oluลŸtur" msgid "Create an account without using this starter pack" msgstr "Bu baลŸlangฤฑรง โ€‹โ€‹paketini kullanmadan bir hesap oluลŸturun" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Bunun yerine bir avatar oluลŸtur" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Bir tane daha oluลŸtur" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "Grup sohbeti oluลŸtur" @@ -3743,7 +3704,7 @@ msgstr "Kรผltรผr" msgid "Current beta features" msgstr "Gรผncel beta รถzellikler" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "Aktif sohbet" @@ -3770,8 +3731,8 @@ msgstr "Tehlikeli maddeler veya uyuลŸturucu istismarฤฑ" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Karanlฤฑk" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Karanlฤฑk" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Karanlฤฑk tema" @@ -3814,7 +3775,7 @@ msgstr "Bu dil รถnerisini reddet" msgid "Deepfake adult content" msgstr "Deepfake yetiลŸkin iรงerik" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Varsayฤฑlan" @@ -3894,7 +3855,7 @@ msgstr "Hesabฤฑmฤฑ sil" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Gรถnderiyi sil" @@ -3988,7 +3949,7 @@ msgstr "Diyalog: kimin bu gรถnderiyle etkileลŸebileceฤŸini ayarlayฤฑn" msgid "Dialog: Set search filters" msgstr "Diyalog: Arama filtrelerini ayarla" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Karart" @@ -4002,7 +3963,7 @@ msgstr "Devre dฤฑลŸฤฑ bฤฑrak" msgid "Disable 2FA" msgstr "ฤฐki adฤฑmlฤฑ doฤŸrulamayฤฑ devre dฤฑลŸฤฑ bฤฑrak" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "Altyazฤฑlarฤฑ kapat" @@ -4045,9 +4006,9 @@ msgstr "Devre dฤฑลŸฤฑ" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Sil" msgid "Discard changes?" msgstr "DeฤŸiลŸiklikler silinsin mi?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Taslak silinsin mi?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Gรถnderi silinsin mi?" @@ -4079,6 +4040,10 @@ msgstr "Germ DM baฤŸlantฤฑsฤฑnฤฑ kes" msgid "Discourage apps from showing my account to logged-out users" msgstr "Uygulamalarฤฑn hesabฤฑmฤฑ oturum aรงmamฤฑลŸ kullanฤฑcฤฑlara gรถstermesini engelle" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "AkฤฑลŸlarฤฑ keลŸfet" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Uygulamalarฤฑn hesabฤฑmฤฑ oturum aรงmamฤฑลŸ kullanฤฑcฤฑlara gรถstermesin msgid "Discover new custom feeds" msgstr "Yeni รถzel akฤฑลŸlarฤฑ keลŸfet" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "Yeni akฤฑลŸlar keลŸfedin" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Yeni AkฤฑลŸlar KeลŸfet" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Yok say" @@ -4103,28 +4064,28 @@ msgstr "Yok say" msgid "Dismiss banner" msgstr "Bildirimi gizle" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Hatayฤฑ yok say" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "BaลŸlangฤฑรง rehberini gizle" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "ฤฐlgi alanlarฤฑnฤฑ gizle" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "Canlฤฑ etkinlik panelini kapat" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "Bu bรถlรผmรผ gizle" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "Bu รถneriyi gizle" @@ -4142,7 +4103,7 @@ msgstr "Alternatif metin rozetlerini daha bรผyรผk gรถrรผntรผle" msgid "Display name" msgstr "Gรถrรผnen ad" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "Trolleri ve tฤฑk tuzaklarฤฑnฤฑ geride bฤฑrakฤฑn. Gerรงek insanlarฤฑ ve anlamlฤฑ sohbetleri bulun." @@ -4205,8 +4166,8 @@ msgstr "Merak etmeyin! Tรผm mesajlarฤฑnฤฑz ve ayarlarฤฑnฤฑz saklandฤฑ ve bir yet #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "Merak etmeyin! Tรผm mesajlarฤฑnฤฑz ve ayarlarฤฑnฤฑz saklandฤฑ ve bir yet msgid "Done" msgstr "Tamam" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Bir tepki eklemek iรงin mesaja รงift dokunun ya da uzun basฤฑn" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Bu diyalogu kapatmak iรงin รงift dokunun" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "BeฤŸenmek iรงin รงift dokunun" @@ -4328,6 +4289,7 @@ msgstr "Yeme bozukluklarฤฑ" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Resmi dรผzenle" msgid "Edit interaction settings" msgstr "EtkileลŸim ayarlarฤฑnฤฑ dรผzenle" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "ฤฐlgi alanlarฤฑnฤฑ dรผzenle" @@ -4397,7 +4359,7 @@ msgstr "Canlฤฑ yayฤฑn durumunu dรผzenle" msgid "Edit moderation list" msgstr "Moderasyon listesini dรผzenle" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "AkฤฑลŸlarฤฑmฤฑ Dรผzenle" @@ -4406,6 +4368,11 @@ msgstr "AkฤฑลŸlarฤฑmฤฑ Dรผzenle" msgid "Edit name" msgstr "ฤฐsmi dรผzenle" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "{0} kullanฤฑcฤฑsฤฑndan gelen bildirimleri dรผzenle" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "KiลŸileri Dรผzenle" @@ -4444,7 +4411,7 @@ msgstr "Kullanฤฑcฤฑ listesini dรผzenle" msgid "Edit who can reply" msgstr "Kimin yanฤฑtlayabileceฤŸini dรผzenle" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "BaลŸlangฤฑรง paketini dรผzenle" @@ -4500,8 +4467,8 @@ msgstr "Gรถmmek iรงin HTML kodu" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Gรถnderiyi gรถm" @@ -4509,7 +4476,7 @@ msgstr "Gรถnderiyi gรถm" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Bu gรถnderiyi web sitenize gรถmรผn. AลŸaฤŸฤฑdaki kod parรงasฤฑnฤฑ kopyalayฤฑn ve web sitenizin HTML kodunun iรงine yapฤฑลŸtฤฑrฤฑn." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Gรถmรผlรผ video oynatฤฑcฤฑ" @@ -4533,7 +4500,7 @@ msgstr "YetiลŸkin iรงeriฤŸi etkinleลŸtirin" msgid "Enable beta features" msgstr "Beta รถzellikleri etkinleลŸtir" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "Altyazฤฑlarฤฑ aรง" @@ -4550,12 +4517,13 @@ msgstr "Harici medyayฤฑ etkinleลŸtirin" msgid "Enable media players for" msgstr "Medya oynatฤฑcฤฑlarฤฑnฤฑ etkinleลŸtir" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Bir hesabฤฑn bildirimlerini etkinleลŸtirmek iรงin profilini ziyaret edin ve <0>zil simgesine <1/> basฤฑn." -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "Anฤฑnda bildirimleri etkinleลŸtir" @@ -4581,7 +4549,7 @@ msgstr "KeลŸif akฤฑลŸฤฑnda (\"Discover\") gรผndem videolarฤฑnฤฑ etkinleลŸtir" msgid "Enabled" msgstr "EtkinleลŸtirildi" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "AkฤฑลŸ sonu" @@ -4608,7 +4576,7 @@ msgstr "Bir sรถzcรผk veya etiket girin" msgid "Enter code" msgstr "Kodu girin" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Tam ekran yap" @@ -4650,11 +4618,11 @@ msgstr "Kullanฤฑcฤฑ adฤฑnฤฑzฤฑ ve ลŸifrenizi girin" msgid "Enters full screen" msgstr "Tam ekrana geรงer" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "EฤŸlence" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Hata" @@ -4684,7 +4652,7 @@ msgstr "Dosya kaydedilirken bir hata oluลŸtu" msgid "Error receiving captcha response." msgstr "Captcha yanฤฑtฤฑ alฤฑnฤฑrken bir hata oldu." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Hata: {error}" @@ -4696,8 +4664,8 @@ msgstr "Herkes yanฤฑtlayabilir" msgid "Everybody can reply to this post." msgstr "Bu gรถnderiyi herkes yanฤฑtlayabilir." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Herkes" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Herkes" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "Geri kalan her ลŸey" @@ -4738,7 +4706,7 @@ msgstr "Takip ettiฤŸim kullanฤฑcฤฑlarฤฑ hariรง tut" msgid "Excludes users you follow" msgstr "Takip ettiฤŸiniz kullanฤฑcฤฑlarฤฑ hariรง tutar" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Tam ekrandan รงฤฑk" @@ -4755,11 +4723,11 @@ msgstr "Kullanฤฑcฤฑ listesini geniลŸletir" msgid "Expand or collapse the full post you are replying to" msgstr "Yanฤฑt verdiฤŸiniz tam gรถnderiyi geniลŸletin veya daraltฤฑn" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "Gรถnderi metnini geniลŸlet" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "Gรถnderi metnini geniลŸletir ya da daraltฤฑr" @@ -4802,15 +4770,15 @@ msgstr "Aรงฤฑk veya rahatsฤฑz edici olabilecek medya." msgid "Explicit sexual images." msgstr "Aรงฤฑk cinsel iรงerikli gรถrseller." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "KeลŸfet" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "Uygulamayฤฑ keลŸfet" @@ -4844,7 +4812,7 @@ msgstr "Harici Medya" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Harici medya, web sitelerinin siz ve cihazฤฑnฤฑz hakkฤฑnda bilgi toplamasฤฑna izin verebilir. Bilgi, \"oynat\" dรผฤŸmesine basana kadar gรถnderilmez veya istenmez." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Harici Medya Tercihleri" @@ -4886,7 +4854,7 @@ msgstr "Kullanฤฑcฤฑ adฤฑ deฤŸiลŸtirilemedi. Lรผtfen tekrar deneyin." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "BaฤŸlantฤฑ kopyalanamadฤฑ" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "Grup sohbetinden รงฤฑkฤฑlamadฤฑ" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "YazฤฑลŸmalar yรผklenemedi" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "AkฤฑลŸlar yรผklenemedi" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "AkฤฑลŸ tercihleri โ€‹โ€‹yรผklenemedi" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "Bildirim ayarlarฤฑ yรผklenemedi." @@ -5012,14 +4981,14 @@ msgstr "Tercih yรผklenemedi." msgid "Failed to load profiles" msgstr "Profiller yรผklenemedi" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "ร–nerilen akฤฑลŸlar yรผklenemedi" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "ร–nerilen takipler yรผklenemedi" @@ -5027,12 +4996,12 @@ msgstr "ร–nerilen takipler yรผklenemedi" msgid "Failed to lock group chat" msgstr "Grup sohbeti kilitlenemedi" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "Sohbetlerin tรผmรผ okundu olarak iลŸaretlenemedi" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "Talebiniz geri รงekilemedi. Lรผtfen tekrar deneyin." msgid "Failed to resolve location. Please try again." msgstr "Konum รงรถzรผmlenemedi. Lรผtfen tekrar deneyin." -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "Taslak kaydedilemedi" @@ -5191,7 +5160,7 @@ msgstr "Sahte hesap ya da bot" msgid "False information about elections" msgstr "Seรงimler hakkฤฑnda yanlฤฑลŸ bilgi" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "AkฤฑลŸ" @@ -5212,7 +5181,7 @@ msgstr "AkฤฑลŸฤฑ oluลŸturan" msgid "Feed identifier" msgstr "AkฤฑลŸ tanฤฑmlayฤฑcฤฑsฤฑ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "AkฤฑลŸ menรผsรผ" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Geribildiriminiz akฤฑลŸ operatรถrรผne yollandฤฑ" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "AkฤฑลŸlar gรผncellendi!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "BeฤŸeneceฤŸinizi dรผลŸรผndรผฤŸรผmรผz akฤฑลŸlar." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Gรผncellemeyi al" @@ -5273,34 +5238,22 @@ msgstr "Gรผncellemeyi al" msgid "File saved successfully!" msgstr "Dosya baลŸarฤฑyla kaydedildi!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "Yazara gรถre filtrele" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "Yazara gรถre filtrele (ลŸu anda: {currentLabel})" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "Medyaya gรถre filtrele" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "Medyaya gรถre filtrele (ลŸu anda: {currentLabel})" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "AkฤฑลŸlardan filtrele" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Aramayฤฑ dile gรถre filtrele" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "Aramayฤฑ dile gรถre filtrele (ลŸu anda:{currentLanguageLabel})" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "Bu aramayฤฑ {0} ile filtrele" msgid "Filter who can opt to receive notifications for your activity" msgstr "EtkinliฤŸinizden kimlerin bildirim alabileceฤŸini filtreleyin" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "Kimden bildirim alacaฤŸฤฑnฤฑzฤฑ filtreleyin" @@ -5352,8 +5305,8 @@ msgstr "Takip edilecek hesaplar bul" msgid "Find and invite friends" msgstr "ArkadaลŸlarฤฑnฤฑzฤฑ bulun ve davet edin" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "BaฤŸlantฤฑlarฤฑnฤฑzฤฑ Bulun" @@ -5387,7 +5340,7 @@ msgstr "ArkadaลŸlarฤฑnฤฑzฤฑ bulun" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Telefon numaranฤฑzฤฑ doฤŸrulayarak ve rehberinizdeki kiลŸilerle eลŸleลŸtirerek arkadaลŸlarฤฑnฤฑzฤฑ bulun. Biz verilerinizi koruyoruz ve siz ne olacaฤŸฤฑnฤฑ belirliyorsunuz. <0>Daha fazla bilgi edinin" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "Kafa dengi insanlar bulun" @@ -5429,7 +5382,7 @@ msgstr "Arama alanฤฑna odaklan" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "{0} takip et" msgid "Follow {displayName}" msgstr "{displayName} kiลŸisini takip et" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "{handle} kullanฤฑcฤฑsฤฑnฤฑ takip et" @@ -5453,11 +5406,11 @@ msgstr "{handle} kullanฤฑcฤฑsฤฑnฤฑ takip et" msgid "Follow 10 accounts" msgstr "10 hesabฤฑ takip et" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "BaลŸlamak iรงin 10 kiลŸiyi takip edin" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "7 Hesabฤฑ takip et" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "Takipรงiler katฤฑlabilir" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "TanฤฑdฤฑฤŸฤฑnฤฑz @{0} takipรงileri" @@ -5544,7 +5497,7 @@ msgstr "TanฤฑdฤฑฤŸฤฑn takipรงiler" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "{0} takip ediliyor" msgid "Following {displayName}" msgstr "{displayName} takip ediliyor" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "{handle} takip ediliyor" @@ -5578,21 +5531,21 @@ msgstr "{handle} takip ediliyor" msgid "Following feed preferences" msgstr "Takip edilenler akฤฑลŸฤฑ tercihleri" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Takip Edilenler AkฤฑลŸฤฑ Tercihleri" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Sizi takip ediyor" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Yazฤฑ tipi" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Yazฤฑ boyutu" @@ -5612,13 +5565,13 @@ msgstr "Gรผvenlik gerekรงesiyle <0>{currentEmail} e-posta adresinize bir ona msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Gรผvenlik nedeniyle, bunu bir daha gรถrรผntรผleyemeyeceksiniz. EฤŸer bu uygulama ลŸifresini kaybederseniz, yeni bir tane oluลŸturmanฤฑz gerekecek." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "En iyi deneyim iรงin, tema yazฤฑ tipini kullanmanฤฑzฤฑ รถneriyoruz." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Sizin ฤฐรงin" @@ -5628,7 +5581,7 @@ msgstr "Sizin ฤฐรงin" msgid "Forever" msgstr "Sonsuza kadar" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "Gรผrรผltรผyรผ unutun" @@ -5647,11 +5600,11 @@ msgstr "ลžifrenizi mi unuttunuz?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "Grup sohbetini simgeleyen dรถrt mesaj balonu. ฤฐlk mesaj (ฤฐngilizce): \"Haberleri duydun mu? Bluesky'da grup sohbetleri var artฤฑk!\" ฤฐkinici mesaj (ฤฐngilizce): \"Yok artฤฑk!\" รœรงรผncรผ mesaj (ฤฐngilizce): \"Vay, hem de bir grupta 50 kiลŸi!\" Dรถrdรผncรผ mesaj (ฤฐngilizce): \"Davetiye baฤŸlantฤฑlarฤฑ bile yollayabiliyorsun!\"" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "AkฤฑลŸฤฑnฤฑzฤฑ รถzgรผrleลŸtirin" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "Kimden" @@ -5674,7 +5627,7 @@ msgstr "<0/> tarafฤฑndan" msgid "From these people" msgstr "Bu kiลŸilerden" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Bir baลŸlangฤฑรง โ€‹โ€‹paketi oluลŸturun" @@ -5718,39 +5671,39 @@ msgstr "Test etmekte olduฤŸumuz deneysel รถzelliklere erken eriลŸim edinin." msgid "Get help" msgstr "Yardฤฑm al" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "BaลŸlangฤฑรง paketi katฤฑlฤฑmlarฤฑ, doฤŸrulama ve diฤŸer etkinlikler iรงin bildirim alฤฑn." -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "Sizi takip ettiklerinde bildirim alฤฑn." -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "Gรถnderilerinizi beฤŸendiklerinde bildirim alฤฑn." -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "BaลŸkalarฤฑ yeniden gรถnderimlerinizi beฤŸendiฤŸinde bildirim alฤฑn." -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "Sizden bahsettiklerinde bildirim alฤฑn." -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "Gรถnderilerinizi alฤฑntฤฑladฤฑklarฤฑnda bildirim alฤฑn." -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "Gรถnderilerinize yanฤฑt verdiklerinde bildirim alฤฑn." -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "Gรถnderilerinizi yeniden gรถnderdiklerinde bildirim alฤฑn." -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "BaลŸkalarฤฑ yeniden gรถnderimlerinizi yeniden gรถnderdiฤŸinde bildirim alฤฑn." @@ -5762,15 +5715,15 @@ msgstr "KiลŸiler size mesaj talebi gรถnderdiฤŸinde bildirim alฤฑn." msgid "Get notifications when people send you messages." msgstr "KiลŸiler size mesaj gรถnderdiฤŸinde bildirim alฤฑn." -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "Abone olduฤŸunuz gรถnderilerle ilgili bir gรผncelleme olduฤŸunda bildirim alฤฑn." - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "Yeni gรถnderilerden bildirim al" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "SeรงtiฤŸiniz hesaplarฤฑn gรถnderileri ve yanฤฑtlarฤฑ hakkฤฑnda bildirim alฤฑn." + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "{name} kullanฤฑcฤฑsฤฑnฤฑn yeni gรถnderilerinden bildirim al" @@ -5799,11 +5752,11 @@ msgstr "BaลŸla" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF yรผklendi" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Profilinize bir yรผz ekleyin" @@ -5813,20 +5766,20 @@ msgstr "ลžiddete รถvgรผ" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "Canlฤฑ yayฤฑn sรผresi" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "{0} profiline git" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "Grup sohbeti ismi gรผncellendi" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Grup sohbeti ayarlarฤฑ" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "Grup sohbetlerinde en fazla {0, plural, other {# kiลŸi}} olabilir." #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "Grup kilitli" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Grup adฤฑ" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "Grup adฤฑ รงok uzun. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {Maksimum # karakter olabilir.}}" @@ -6077,7 +6031,7 @@ msgstr "Zararlฤฑ ya da yรผksek riskli eylemler" msgid "Harming or endangering minors" msgstr "Kรผรงรผklere zarar verme ya da tehlikeye atma" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Etiket" @@ -6098,7 +6052,7 @@ msgstr "Kodunuz var mฤฑ? <0>Buraya tฤฑklayฤฑn." msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "Konumunuzu tutturamadฤฑk mฤฑ? <0>Konumunuzu GPS'le gรผncellemek iรงin buraya dokunun." -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Sorun mu yaลŸฤฑyorsunuz?" @@ -6114,7 +6068,7 @@ msgstr "Bluesky tarafฤฑndan kรถtรผye kullanฤฑmฤฑ engellemek iรงin 7 gรผn tutulur msgid "Help" msgstr "Yardฤฑm" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Bir resim yรผkleyerek veya bir avatar oluลŸturarak insanlarฤฑn bot olmadฤฑฤŸฤฑnฤฑzฤฑ anlamalarฤฑna yardฤฑmcฤฑ olun." @@ -6135,12 +6089,12 @@ msgstr "Hey!" msgid "Hi there!" msgstr "Selam!" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Gizli" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Moderasyon ayarlarฤฑnฤฑz tarafฤฑndan gizlenmiลŸ." @@ -6148,9 +6102,10 @@ msgstr "Moderasyon ayarlarฤฑnฤฑz tarafฤฑndan gizlenmiลŸ." msgid "Hidden list" msgstr "Gizli liste" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Gizli liste" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "Gizle" @@ -6198,7 +6154,7 @@ msgstr "Yanฤฑtฤฑ herkesten gizle" msgid "Hide reply for me" msgstr "Yanฤฑtฤฑ benden gizle" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "Bu kartฤฑ gizle" @@ -6218,16 +6174,18 @@ msgstr "Bu yanฤฑtฤฑ gizle?" msgid "Hide translation" msgstr "ร‡eviriyi gizle" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "Gรผndem baลŸlฤฑklarฤฑnฤฑ gizle" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "Gรผndem baลŸlฤฑklarฤฑ gizlensin mi?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "Gรผndem olan videolar gizlensin mi?" @@ -6240,7 +6198,7 @@ msgstr "Kullanฤฑcฤฑ listesini gizle" msgid "Hide verification badges" msgstr "DoฤŸrulama rozetlerini gizle" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "ฤฐรงeriฤŸi gizler" @@ -6293,8 +6251,8 @@ msgstr "Hmmmm, o moderasyon hizmetini yรผkleyemedik." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Bekleyin! Videoya kademeli olarak eriลŸim veriyoruz ve siz hรขlรข sฤฑradasฤฑnฤฑz. Birazdan tekrar kontrol edin!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "Yer saฤŸlayฤฑcฤฑ: {0}" msgid "Hosting provider: Bluesky" msgstr "Yer saฤŸlayฤฑcฤฑ: Bluesky" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "ฤฐlgi รงeken" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "Nasฤฑl รงalฤฑลŸฤฑr:" @@ -6409,6 +6363,7 @@ msgstr "EฤŸer e-posta adresinizi gรผncellerseniz e-posta ile iki adฤฑmlฤฑ doฤŸru msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "ลžifrenizi deฤŸiลŸtirmek istiyorsanฤฑz, size hesabฤฑnฤฑzฤฑn sizin olduฤŸunu doฤŸrulamak iรงin bir kod gรถndereceฤŸiz." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "Hesabฤฑnฤฑzฤฑn etkinlik bildirimlerini kimlerin alabileceฤŸini sฤฑnฤฑrlamak istiyorsanฤฑz, bunu <0>Ayarlar โ†’ Gizlilik ve Gรผvenlik bรถlรผmรผnden deฤŸiลŸtirebilirsiniz." @@ -6548,7 +6503,7 @@ msgstr "Uygulama iรงi, anlฤฑk, herkes" msgid "In-app, push, people you follow" msgstr "Uygulama iรงi, anlฤฑk, takip ettikleriniz" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "Gelen kutusu boลŸ" @@ -6564,7 +6519,6 @@ msgstr "Gelen kutusu boลŸ!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "Dahil et" @@ -6573,7 +6527,7 @@ msgstr "Dahil et" msgid "Include or exclude matching posts (currently: {0})" msgstr "EลŸleลŸen gรถnderileri dahil et veya hariรง tut (ลŸu anda: {0})" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "Gรถnderileri ve/veya yanฤฑtlarฤฑ dahil et (ลŸu anda: {currentLabel})" @@ -6587,10 +6541,6 @@ msgstr "Bu tarihten itibaren paylaลŸฤฑlan gรถnderileri dahil et" msgid "Include posts made until this date" msgstr "Bu tarihe kadar yapฤฑlan gรถnderileri dahil et" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "Bu sonuรงlarฤฑ dahil et" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Geรงersiz kullanฤฑcฤฑ adฤฑ veya ลŸifre" @@ -6683,7 +6633,7 @@ msgstr "{name} kiลŸisini Bluesky'a katฤฑlmaya davet et" msgid "Invite code" msgstr "Davet kodu" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Davet kodu kabul edilmedi. DoฤŸru girdiฤŸinizden emin olun ve tekrar deneyin." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "ลžu anda yalnฤฑzca siz varsฤฑnฤฑz! Yukarฤฑdan arama yaparak baลŸlangฤฑรง โ€‹โ€‹paketinize daha รงok kiลŸi ekleyin." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ฤฐลŸ ID: {0}" @@ -6816,8 +6766,8 @@ msgstr "YazฤฑลŸmaya katฤฑl" msgid "Journalism" msgstr "Gazetecilik" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Dรผzenlemeye devam et" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "KWS web sitesi" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0} tarafฤฑndan iลŸaretlendi." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Yazarฤฑ tarafฤฑndan iลŸaretlendi." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "ฤฐลŸaretler" @@ -6852,7 +6802,7 @@ msgstr "ฤฐลŸaretler eklendi" msgid "Labels applied to this post" msgstr "Bu gรถnderiye eklenen iลŸaretler" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ฤฐลŸaretler, kullanฤฑcฤฑlar ve iรงerikler รผzerindeki aรงฤฑklamalardฤฑr. AฤŸฤฑn gizlenmesi, uyarฤฑlmasฤฑ ve kategorilendirilmesi iรงin kullanฤฑlabilirler." @@ -6864,7 +6814,7 @@ msgstr "Hesabฤฑnฤฑzdaki iลŸaretler" msgid "Language" msgstr "Dil" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Dil Ayarlarฤฑ" @@ -6874,7 +6824,7 @@ msgstr "Dil Ayarlarฤฑ" msgid "Languages" msgstr "Diller" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Daha bรผyรผk" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "En son az รถnce baลŸlatฤฑlmฤฑลŸ" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "En son" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "Daha fazla bilgi edinin" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Daha Fazla Bilgi Edinin" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "<0>GeliลŸmiลŸ aramayฤฑ nasฤฑl kullanacaฤŸฤฑnฤฑz hakkฤฑnda daha fazla bilgi edinin." @@ -6937,8 +6887,8 @@ msgstr "BaฤŸlantฤฑlarฤฑnฤฑzฤฑ yรผkleme hakkฤฑnda daha fazla bilgi edinin" msgid "Learn more about self hosting your PDS." msgstr "PDS'nizi kendiniz barฤฑndฤฑrmayla ilgili daha รงok bilgi edinin." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Bu iรงeriฤŸe uygulanan moderasyonla ilgili daha รงok bilgi edinin" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "Blog gรถnderimizi okuyarak bu deฤŸiลŸikliklerle ve dรผลŸรผncelerinizi bizle nasฤฑl paylaลŸacaฤŸฤฑnฤฑzla ilgili daha fazla bilgi edinin." #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Bu uyarฤฑ hakkฤฑnda daha fazla bilgi edinin" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "<0>Hesap ayarlarฤฑnฤฑzdan daha รงok bilgi edinin." #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Daha fazlasฤฑnฤฑ รถฤŸren." @@ -6993,8 +6943,8 @@ msgstr "Ayrฤฑl" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Bluesky'ฤฑ terk ediyorsunuz" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "Bu sohbetten ayrฤฑlmanฤฑz onu kalฤฑcฤฑ olarak kilitleyeceฤŸi gibi yeniden katฤฑlmanฤฑz da mรผmkรผn olmayacaktฤฑr." -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "Grup sohbetinden ayrฤฑldฤฑnฤฑz." @@ -7042,7 +6992,7 @@ msgstr "Grup sohbetinden ayrฤฑldฤฑnฤฑz." msgid "left to go." msgstr "kaldฤฑ." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "Bana seรงtir" @@ -7057,7 +7007,7 @@ msgstr "Hadi gidelim!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Aรงฤฑk" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Aydฤฑnlฤฑk" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "BeฤŸen" @@ -7076,7 +7026,7 @@ msgstr "BeฤŸen" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "BeฤŸen ({0, plural, other {# beฤŸeni}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "10 gรถnderiyi beฤŸen" @@ -7085,7 +7035,7 @@ msgstr "10 gรถnderiyi beฤŸen" msgid "Like 10 posts to train the Discover feed" msgstr "KeลŸif akฤฑลŸฤฑnฤฑ (\"Discover\") eฤŸitmek iรงin 10 gรถnderiyi beฤŸenin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Bu akฤฑลŸฤฑ beฤŸen" @@ -7093,8 +7043,8 @@ msgstr "Bu akฤฑลŸฤฑ beฤŸen" msgid "Like this labeler" msgstr "Bu iลŸaretleyiciyi beฤŸen" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "BeฤŸenenler" @@ -7111,27 +7061,45 @@ msgstr "BeฤŸenenler" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, other {# kullanฤฑcฤฑ}} tarafฤฑndan beฤŸenildi" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "{0} tarafฤฑndan beฤŸenildi" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "{0} ve {1} tarafฤฑndan beฤŸenildi" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, other {# kullanฤฑcฤฑ}} tarafฤฑndan beฤŸenildi" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "BeฤŸeniler" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "Yeniden gรถnderilerinize dair beฤŸeniler" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Bu gรถnderideki beฤŸeniler" @@ -7144,7 +7112,7 @@ msgstr "Dรผz" msgid "Link copied to clipboard" msgstr "BaฤŸlantฤฑ panoya kopyalandฤฑ" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Liste" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste sessizden รงฤฑkarฤฑldฤฑ" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "CANLI" msgid "Live event happening now: {0}" msgstr "ลžimdi gerรงekleลŸen canlฤฑ etkinlik: {0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "Canlฤฑ etkinlik gizlendi" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "Canlฤฑ etkinlik yeniden gรถrรผnรผr hale getirildi" @@ -7279,12 +7247,12 @@ msgstr "Canlฤฑ รถzelliฤŸi beta'dฤฑr" msgid "Live link" msgstr "Canlฤฑ yayฤฑn baฤŸlantฤฑsฤฑ" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Daha fazlasฤฑnฤฑ yรผkle" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Daha รงok รถnerilen akฤฑลŸ yรผkle" @@ -7292,8 +7260,8 @@ msgstr "Daha รงok รถnerilen akฤฑลŸ yรผkle" msgid "Load new notifications" msgstr "Yeni bildirimleri yรผkle" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "Bu grup sohbetini kilitle" msgid "Locked" msgstr "Kilitlendi" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Log" @@ -7387,7 +7355,7 @@ msgstr "Sevgi GIFleri" msgid "Make adjustments to email settings for your account" msgstr "Hesabฤฑnฤฑz iรงin e-posta ayarlarฤฑnฤฑzฤฑ dรผzenleyin" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Benim iรงin bir tane yap" @@ -7418,15 +7386,15 @@ msgstr "Kendiniz seรงin" msgid "Mark all as read" msgstr "Tรผmรผnรผ okunmuลŸ olarak iลŸaretle" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "Tรผm sohbetleri okundu olarak iลŸaretle" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "Okundu olarak iลŸaretle" msgid "Marked all as read" msgstr "Tรผmรผ okunmuลŸ olarak iลŸaretlendi" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "Tรผm sohbetler okundu olarak iลŸaretlendi" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "Tรผm talepler okundu olarak iลŸaretlendi" @@ -7456,8 +7424,12 @@ msgstr "Tรผm talepler okundu olarak iลŸaretlendi" msgid "Maybe later" msgstr "Belki daha sonra" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "Ben" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Medya" @@ -7475,7 +7447,7 @@ msgstr "BaลŸka cihazda depolanan gรถrsel" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Bazฤฑ gruplar iรงin rahatsฤฑz edici ya da uygunsuz olabilecek medya." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "รœye grup sohbetinden รงฤฑkarฤฑldฤฑ." @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "bahsedilen kullanฤฑcฤฑlar" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Bahsedenler" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "Mesaj silindi" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "Mesaj gรถnderilemedi." @@ -7563,15 +7535,15 @@ msgstr "Mesaj รงok uzun ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgid "Message options" msgstr "Mesaj seรงenekleri" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Mesajlar" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "Bu kiลŸiden gelen mesajlar o sizi engellediฤŸi sรผrece gรถrรผnmeyecektir." -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "Bu kiลŸiden gelen mesajlar siz onu engellediฤŸiniz sรผrece gรถrรผnmeyecektir." @@ -7592,7 +7564,7 @@ msgstr "Yanฤฑltฤฑcฤฑ" msgid "Missing media" msgstr "Kayฤฑp medya" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderasyon" @@ -7636,7 +7608,7 @@ msgstr "Moderasyon listesi gรผncellendi" msgid "Moderation lists" msgstr "Moderasyon listeleri" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderasyon Listeleri" @@ -7645,7 +7617,7 @@ msgstr "Moderasyon Listeleri" msgid "moderation settings" msgstr "moderasyon araรงlarฤฑ" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Moderasyon durumlarฤฑ" @@ -7786,7 +7758,7 @@ msgstr "Sessize alฤฑndฤฑ" msgid "Muted accounts" msgstr "Sessize alฤฑnan hesaplar" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Sessize Alฤฑnan Hesaplar" @@ -7867,7 +7839,6 @@ msgstr "Bir telif ihlali, hukuki talep ya da mevzuata uygunluk sorunu mu bildirm msgid "Nevermind, create a handle for me" msgstr "BoลŸver, bana bir kullanฤฑcฤฑ adฤฑ รผret" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Yeni" @@ -7893,11 +7864,11 @@ msgstr "{firstAuthorName} kullanฤฑcฤฑsฤฑndan yeni {postsCount, plural, one {gรถn #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Yeni sohbet" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Yeni ร–zellik" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "Yeni takipรงiler" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "Yeni grup sohbeti" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "Yeni grup sohbeti" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "Yeni grup sohbetinin รผyeleri:" @@ -7966,13 +7937,13 @@ msgstr "Yeni liste" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "Yeni mesaj talepleri" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "Yeni mesajlar" @@ -7982,12 +7953,12 @@ msgstr "Yeni mesajlar" msgid "New password" msgstr "Yeni ลŸifre" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Yeni gรถnderi" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "ร–nce en yeni yanฤฑtlar" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Haberler" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Sonraki gรถrsel" msgid "Night" msgstr "Gece" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Reklam yok, gizliliฤŸi ihlal eden kullanฤฑcฤฑ izleme mekanizmalarฤฑ yok, etkileลŸim tuzaklarฤฑ yok. Bluesky vaktinize ve ilginize saygฤฑ duyar." @@ -8065,6 +8036,11 @@ msgstr "Reklam yok, gizliliฤŸi ihlal eden kullanฤฑcฤฑ izleme mekanizmalarฤฑ yok, msgid "No app passwords yet" msgstr "Henรผz hiรง uygulama ลŸifresi yok" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "ลžu anda hiรง beta รถzellik yok." @@ -8098,7 +8074,7 @@ msgstr "Bir bitiลŸ sรผresi belirlenmemiลŸ" msgid "No feeds found. Try searching for something else." msgstr "Hiรง akฤฑลŸ bulunamadฤฑ. BaลŸka bir ลŸey aramayฤฑ deneyin." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "Henรผz bir takipรงi yok" @@ -8116,9 +8092,15 @@ msgstr "ลžu anda gรถrรผlecek bir GIF yok. Birazdan tekrar deneyin." msgid "No image" msgstr "Gรถrsel yok" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Henรผz beฤŸeni yok" @@ -8135,7 +8117,12 @@ msgstr "Liste yok" msgid "No longer following {0}" msgstr "{0} artฤฑk takip edilmiyor" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "Henรผz bir medya yok" @@ -8143,7 +8130,7 @@ msgstr "Henรผz bir medya yok" msgid "No messages yet" msgstr "Henรผz mesaj yok" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "ร‡รถp dolu algoritmalarla felaket kaydฤฑrmalarฤฑna son! Size karลŸฤฑ deฤŸil, sizin iรงin รงalฤฑลŸan akฤฑลŸlarฤฑ bulun." @@ -8180,16 +8167,21 @@ msgstr "Yazarฤฑ dฤฑลŸฤฑnda hiรงkimse bu gรถnderiyi alฤฑntฤฑlayamaz." msgid "No one can send messages" msgstr "Kimse mesaj yollayamaz" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "Burada gรถnderi yok" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "Henรผz bir gรถnderi yok" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Henรผz alฤฑntฤฑ yok" @@ -8198,11 +8190,7 @@ msgstr "Henรผz alฤฑntฤฑ yok" msgid "No recent GIFs yet. Pick one to see it here." msgstr "Henรผz son GIFler yok. Burada gรถrmek iรงin bir tane seรงin." -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "Yanฤฑtlar olmasฤฑn" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "Henรผz bir yanฤฑt yok" @@ -8217,13 +8205,13 @@ msgstr "Sonuรง yok" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sonuรง yok" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "\"{0}\" iรงin sonuรง bulunamadฤฑ." @@ -8236,23 +8224,23 @@ msgstr "Sonuรง bulunamadฤฑ" msgid "No results found for \"{query}\"" msgstr "\"{query}\" iรงin sonuรง bulunamadฤฑ" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "GeliลŸmiลŸ arama filtreleri uygulanmฤฑลŸ olarak โ€œ<0>{query}โ€ iรงin sonuรง bulunamadฤฑ." -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "\"<0>{query}\" iรงin sonuรง bulunamadฤฑ." -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "GeliลŸmiลŸ arama filtreleri uygulanmฤฑลŸ sorgunuz iรงin sonuรง bulunamadฤฑ." -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Sonuรง bulunamadฤฑ." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "Henรผz bir baลŸlangฤฑรง paketi yok" @@ -8265,7 +8253,7 @@ msgstr "TeลŸekkรผrler" msgid "No translation received from your device." msgstr "Cihazฤฑnฤฑzdan bir รงeviri alฤฑnmadฤฑ." -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "Henรผz bir video gรถnderisi yok" @@ -8278,7 +8266,7 @@ msgstr "Hiรง kimse" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Henรผz bunu kimse beฤŸenmedi. Belki de ilk sen olmalฤฑsฤฑn!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Henรผz bunu kimse alฤฑntฤฑlamadฤฑ. Belki de ilk sen olmalฤฑsฤฑn!" @@ -8298,6 +8286,10 @@ msgstr "Rฤฑzasฤฑz mahrem gรถrseller" msgid "Non-sexual Nudity" msgstr "Cinsel olmayan รงฤฑplaklฤฑk" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "Hiรงbiri" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "Bu platformda kullanฤฑlabilir deฤŸil." msgid "Not followed by anyone youโ€™re following" msgstr "Takip ettiฤŸiniz hiรงkimse tarafฤฑndan takip edilmiyor" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Bulunamadฤฑ" @@ -8333,7 +8325,7 @@ msgstr "PaylaลŸฤฑma dair dikkatinize" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Not: Bluesky aรงฤฑk ve kamusal bir aฤŸdฤฑr. Bu ayar yalnฤฑzca iรงeriฤŸinizin Bluesky uygulamasฤฑ ve web sitesindeki gรถrรผnรผrlรผฤŸรผnรผ sฤฑnฤฑrlar, diฤŸer uygulamalar bu ayarฤฑ dikkate almayabilir. ฤฐรงeriฤŸiniz hala diฤŸer uygulamalar ve web siteleri tarafฤฑndan รงฤฑkฤฑลŸ yapan kullanฤฑcฤฑlara gรถsterilebilir." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "Not: Bu gรถnderi yalnฤฑzca giriลŸ yapmฤฑลŸ kullanฤฑcฤฑlara gรถrรผnรผr." @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "Henรผz hiรงbir ลŸey kaydedilmedi" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Bildirim ayarlarฤฑ" @@ -8353,11 +8345,12 @@ msgstr "Bildirim ayarlarฤฑ" msgid "Notification sounds" msgstr "Bildirim sesleri" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "Oh hayฤฑr!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "Tamam" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "Tamam" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "Onboarding sฤฑfฤฑrlama" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "SeรงilmiลŸ alฤฑcฤฑlardan biri grup sohbetlerine izin vermiyor." #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "SeรงilmiลŸ alฤฑcฤฑlardan biri sizi engellediฤŸinden kendisiyle yazฤฑลŸฤฑlamaz." -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Bir veya daha fazla GIF iรงin alternatif metin eksik." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Bir ya da daha fazla gรถrselin alternatif metni eksik." @@ -8454,11 +8449,11 @@ msgstr "SeรงtiฤŸiniz dosyalardan bir ya da birden fazlasฤฑ desteklenmiyor." msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "SeรงtiฤŸiniz dosyalardan bir ya da daha fazlasฤฑ รงok bรผyรผk. En fazla {VIDEO_MAX_SIZE_MB}ย MB olabilir." -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "Gรถnderilerden bir ya da birkaรงฤฑ taslak olarak kaydetmek iรงin รงok uzun. {MAX_DRAFT_GRAPHEME_LENGTH, plural, other {Maksimum karakter sayฤฑsฤฑ # karakterdir.}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Bir veya daha fazla videoda alternatif metin eksik." @@ -8471,7 +8466,7 @@ msgstr "Yalnฤฑzca {0} yanฤฑtlayabilir." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "{1} gรถrselden sadece {0} {2, plural, other {adet}} eklendi; limit {MAX_GALLERY_IMAGES} adettir" @@ -8507,6 +8502,10 @@ msgstr "Sadece {0} kiลŸisinin takip ettikleri katฤฑlabilir." msgid "Only people the chat owner follows can join" msgstr "Sadece sohbet sahibinin takip ettikleri sohbete katฤฑlabilir" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "Yalnฤฑzca medya iรงeren gรถnderiler" @@ -8519,7 +8518,7 @@ msgstr "Yalnฤฑzca video iรงeren gรถnderiler" msgid "Only replies" msgstr "Yalnฤฑzca yanฤฑtlar" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Yalnฤฑzca WebVTT (.vtt) dosyalarฤฑ desteklenmektedir" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "Hay aksi, bu profil mevcut deฤŸil. BaลŸka bir tane taramayฤฑ deneyin." #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "Hata!" @@ -8544,7 +8543,7 @@ msgstr "Hata!" msgid "Open advanced search options" msgstr "GeliลŸmiลŸ arama seรงeneklerini aรง" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "Avatar oluลŸturucuyu aรง" @@ -8570,21 +8569,22 @@ msgstr "YazฤฑลŸma seรงeneklerini aรง" msgid "Open draft" msgstr "TaslaฤŸฤฑ aรง" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "ร‡ekmece menรผyรผ aรง" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "Emoji seรงiciyi aรง" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "AkฤฑลŸ bilgi ekranฤฑnฤฑ aรง" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "AkฤฑลŸ seรงenekleri menรผsรผnรผ aรง" @@ -8627,7 +8627,7 @@ msgstr "Moderasyon hata ayฤฑklama sayfasฤฑnฤฑ aรง" msgid "Open muted words and tags settings" msgstr "Sessize alฤฑnmฤฑลŸ kelime ve etiket ayarlarฤฑnฤฑ aรง" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "Paketi aรง" @@ -8699,7 +8699,7 @@ msgstr "Hata ayฤฑklama giriลŸi iรงin ek ayrฤฑntฤฑlarฤฑ aรงar" msgid "Opens alt text dialog" msgstr "Alt metin diyaloฤŸunu aรงar" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "Cihazdaki kamerayฤฑ aรงar" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "Yeni bir Bluesky hesabฤฑ oluลŸturma adฤฑmlarฤฑnฤฑ aรงar" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Var olan Bluesky hesabฤฑnฤฑza giriลŸ yapma adฤฑmlarฤฑnฤฑ aรงar" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "ลžifre gรผncellendi!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Duraklat" @@ -8925,12 +8925,12 @@ msgstr "Duraklat" msgid "Pause GIF" msgstr "GIF'i Durdur" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Videoyu duraklat" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "KiลŸiler" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "{ownerName} tarafฤฑndan takip edilenler katฤฑlmayฤฑ talep edebilir" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0} tarafฤฑndan takip edilenler" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "@{0} tarafฤฑndan takip edilenler" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "Takip ettiklerim" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "Takip ettiklerim katฤฑlmayฤฑ talep edebilir" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "Takip ettiฤŸiniz kiลŸiler" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "YetiลŸkinler iรงin resimler." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "AkฤฑลŸฤฑ sabitle" @@ -9034,7 +9034,7 @@ msgstr "AkฤฑลŸฤฑ sabitle" msgid "Pin to home" msgstr "Ana ekrana sabitle" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Ana Sayfaya Sabitle" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "Sabitlendi" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "{0} Ana Sayfaya Sabitlendi" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "AkฤฑลŸlarฤฑnฤฑza sabitlendi" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Oynat" @@ -9076,8 +9076,8 @@ msgstr "{0} oynat" msgid "Play GIF" msgstr "GIF'i Oynat" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Videoyu oynat" @@ -9109,11 +9109,11 @@ msgstr "Lรผtfen paylaลŸtฤฑฤŸฤฑnฤฑz medyaya uygun iรงerik uyarฤฑ iลŸaretlerini ek 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:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Kullanฤฑcฤฑ adฤฑnฤฑzฤฑ seรงin." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "ลžifrenizi seรงin." @@ -9122,7 +9122,7 @@ msgstr "ลžifrenizi seรงin." 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 "Yeni e-posta adresinizi doฤŸrulamak iรงin lรผtfen size ลŸimdi yolladฤฑฤŸฤฑmฤฑz e-postadaki baฤŸlantฤฑya tฤฑklayฤฑn. Bu, Bluesky'ฤฑn tรผm รถzelliklerinin tadฤฑnฤฑ รงฤฑkarabilmeniz iรงin รถnemli bir adฤฑmdฤฑr." -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Lรผtfen doฤŸrulama captcha'sฤฑnฤฑ tamamlayฤฑn." @@ -9179,7 +9179,7 @@ msgstr "Lรผtfen elinize geรงen kodu ve kullanmak istediฤŸiniz yeni ลŸifreyi giri 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:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "E-postanฤฑzฤฑ girin." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "Lรผtfen mesajฤฑnฤฑzฤฑ aลŸaฤŸฤฑya yazฤฑn:" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Politika" @@ -9269,7 +9269,7 @@ msgstr "Politika" msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "Gรถnder" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "Gรถnderi" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "Bir fotoฤŸraf gรถnder" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "Bir video gรถnder" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "Hepsini Gรถnder" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "Yine de gรถnder" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "Gรถnderi engellendi" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} tarafฤฑndan gรถnderi" @@ -9340,7 +9340,7 @@ msgstr "Gรถnderi Sizin Tarafฤฑnฤฑzdan GizlenmiลŸ" msgid "Post interaction settings" msgstr "Gรถnderi etkileลŸim ayarlarฤฑ" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Gรถnderi EtkileลŸim Ayarlarฤฑ" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "Gรถnderi sabitlendi" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "Gรถnderi kaydedildi" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "Gรถnderi sabitlemesi kaldฤฑrฤฑldฤฑ" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Gรถnderiler" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "Gรถnderiler ve yanฤฑtlar" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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." @@ -9398,6 +9396,10 @@ msgstr "Gรถnderiler metinleri, etiketleri veya ikisiyle beraber sessize alฤฑnabi msgid "Posts hidden" msgstr "Gรถnderiler gizlendi" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "Gรถnderiler, Yanฤฑtlar" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Muhtemelen yanฤฑltฤฑcฤฑ baฤŸlantฤฑ" @@ -9449,20 +9451,21 @@ msgstr "Gizlilik" msgid "Privacy and security" msgstr "Gizlilik ve gรผvenlik" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Gizlilik ve Gรผvenlik" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "Gizlilik ve Gรผvenlik ayarlarฤฑ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Gizlilik Politikasฤฑ" msgid "Privacy violation of a minor" msgstr "Bir kรผรงรผฤŸรผn gizliliฤŸini ihlal" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "GIF iลŸleniyor..." -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "Video iลŸleniyor..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Topluca sessize almak ya da engellemek iรงin herkese aรงฤฑk, paylaลŸฤฑlabilir listeler." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "Gรถnderiyi yayฤฑnla" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "Gรถnderileri yayฤฑnla" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "Yanฤฑtlarฤฑ yayฤฑnla" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "Yanฤฑtฤฑ yayฤฑnla" @@ -9599,12 +9602,12 @@ msgstr "Alฤฑntฤฑ gรถnderilen devre dฤฑลŸฤฑ bฤฑrakฤฑldฤฑ" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Alฤฑntฤฑlar" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Bu gรถnderinin alฤฑntฤฑlarฤฑ" @@ -9647,7 +9650,7 @@ msgstr "Hesabฤฑnฤฑzฤฑ yeniden etkinleลŸtirin" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "{0, plural, other {# yanฤฑt daha}} oku" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "GeliลŸmiลŸ arama filtrelerinin nasฤฑl kullanฤฑlacaฤŸฤฑnฤฑ okuyun" @@ -9657,11 +9660,11 @@ msgstr "GeliลŸmiลŸ arama filtrelerinin nasฤฑl kullanฤฑlacaฤŸฤฑnฤฑ okuyun" msgid "Read blog post" msgstr "Blog gรถnderisini oku" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Devamฤฑnฤฑ gizle" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Devamฤฑnฤฑ oku" @@ -9687,11 +9690,11 @@ msgstr "Bluesky Gizlilik Politikasฤฑnฤฑ Oku" msgid "Read the Bluesky Terms of Service" msgstr "Bluesky Hizmet ลžartlarฤฑnฤฑ Oku" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "Gerรงek sohbetler." -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "Gerรงek insanlar." @@ -9721,10 +9724,6 @@ msgstr "Son aramalar" msgid "Recently used" msgstr "Yakฤฑn zamanda kullanฤฑlmฤฑลŸ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "ร–neriler" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Yeniden baฤŸlan" @@ -9748,7 +9747,7 @@ msgstr "Sohbet isteฤŸini reddet" msgid "Reject join request" msgstr "Katฤฑlma talebini reddet" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "YazฤฑลŸmalarฤฑ yeniden yรผkle" @@ -9766,7 +9765,7 @@ msgstr "YazฤฑลŸmalarฤฑ yeniden yรผkle" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Kaldฤฑr" @@ -9792,8 +9791,8 @@ msgstr "{displayName} รงฤฑkarฤฑlsฤฑn mฤฑ?" msgid "Remove {q}" msgstr "{q} sorgusunu kaldฤฑr" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Hesabฤฑ kaldฤฑr" @@ -9845,15 +9844,15 @@ msgstr "Filtreyi kaldฤฑr" msgid "Remove from chat" msgstr "Sohbetten รงฤฑkar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "AkฤฑลŸlarฤฑmdan kaldฤฑr" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Hฤฑzlฤฑ eriลŸimden kaldฤฑrฤฑlsฤฑn mฤฑ?" @@ -9862,7 +9861,7 @@ msgstr "Hฤฑzlฤฑ eriลŸimden kaldฤฑrฤฑlsฤฑn mฤฑ?" msgid "Remove from saved feeds" msgstr "Kayฤฑtlฤฑ akฤฑลŸlardan kaldฤฑr" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "Kayฤฑtlฤฑ gรถnderilerden รงฤฑkar" @@ -9880,8 +9879,8 @@ msgstr "Resmi kaldฤฑr" msgid "Remove live status" msgstr "Canlฤฑ yayฤฑn durumunu kaldฤฑr" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "รœyeyi รงฤฑkar" @@ -9943,7 +9942,7 @@ msgstr "Listeden kaldฤฑrฤฑldฤฑ" msgid "Removed from saved feeds" msgstr "Kayฤฑtlฤฑ akฤฑลŸlardan kaldฤฑrฤฑldฤฑ" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "Kayฤฑtlฤฑ gรถnderilerden รงฤฑkarฤฑldฤฑ" @@ -9952,7 +9951,7 @@ msgstr "Kayฤฑtlฤฑ gรถnderilerden รงฤฑkarฤฑldฤฑ" msgid "Removed from starter pack" msgstr "BaลŸlangฤฑรง paketinden รงฤฑkartฤฑldฤฑ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "Size yanฤฑt" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "{senderName} kiลŸisinden yanฤฑtlanan mesaj, ona kaydฤฑrmak iรงin dokunun" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "Yanฤฑtlanan mesaj siz katฤฑlmadan รถnce gรถnderilmiลŸ" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "Yanฤฑtlanan mesaj, ona kaydฤฑrmak iรงin dokunun" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Yanฤฑtlar" @@ -10037,7 +10037,7 @@ msgstr "Bu gรถnderi yanฤฑtlara kapalฤฑ." msgid "Reply" msgstr "Yanฤฑtla" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Yanฤฑtla" @@ -10098,8 +10098,8 @@ msgstr "YazฤฑลŸmayฤฑ raporla" msgid "Report dialog" msgstr "Rapor diyaloฤŸu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "AkฤฑลŸฤฑ raporla" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "Siz yeniden gรถndermiลŸsiniz" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "Yeniden gรถnderiler" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Bu gรถnderinin yeniden gรถnderilmesi" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "Yeniden gรถnderilerinizin yeniden gรถnderileri" @@ -10253,7 +10253,7 @@ msgstr "Talep edildi" msgid "Requests" msgstr "Talepler" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Son hataya neden olan son eylemi tekrarlar" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "Ana sayfaya dรถner" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "ร–nceki sayfaya dรถner" @@ -10446,27 +10446,27 @@ msgstr "DoฤŸum tarihini kaydet" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "DeฤŸiลŸiklikleri kaydet" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "DeฤŸiลŸiklikler kaydedilsin mi?" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "TaslaฤŸฤฑ kaydet" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Taslak kaydedilsin mi?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "QR kodu kaydet" msgid "Save these options for next time" msgstr "Bu seรงimleri sonrasฤฑ iรงin sakla" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "AkฤฑลŸlarฤฑma kaydet" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Kayฤฑtlฤฑ AkฤฑลŸlar" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "Kayฤฑtlฤฑ Gรถnderiler" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "AkฤฑลŸlarฤฑnฤฑza kaydedildi" @@ -10520,8 +10520,8 @@ msgstr "AkฤฑลŸlarฤฑnฤฑza kaydedildi" msgid "Say hello!" msgstr "Merhaba de!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "Birine selam deyin" @@ -10535,7 +10535,7 @@ msgstr "Tara" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "Karekod tara" @@ -10543,15 +10543,15 @@ msgstr "Karekod tara" msgid "Science" msgstr "Bilim" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "Sola kaydฤฑr" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "SaฤŸa kaydฤฑr" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "Yanฤฑtlanan mesaja kaydฤฑr" @@ -10564,8 +10564,8 @@ msgstr "BaลŸa kaydฤฑr" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Ara" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "@{0} gรถnderilerini ara" @@ -10612,11 +10612,11 @@ msgstr "{q} ara" msgid "Search for feeds that you want to suggest to others." msgstr "BaลŸkalarฤฑna รถnermek istediฤŸiniz akฤฑลŸlarฤฑ aratฤฑn." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Daha fazla hesap arayฤฑn" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Daha fazla akฤฑลŸ arayฤฑn" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "GIF aratฤฑn" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "Arama ลŸu anda giriลŸ yapmamฤฑลŸ kullanฤฑcฤฑlarฤฑn eriลŸimine kapalฤฑdฤฑr" @@ -10707,17 +10707,22 @@ 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/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "Daha fazlasฤฑnฤฑ gรถr" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "Daha รงok รถnerilen profil gรถster" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "Daha fazla gรผndem baลŸlฤฑฤŸฤฑ gรถr" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "ร–nerilen hesaplarฤฑ gรถr" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Gezinme kaydฤฑrฤฑcฤฑsฤฑ. Yรถn tuลŸlarฤฑnฤฑ kullanarak ileri veya geri gezinin, ve boลŸluk tuลŸuyla oynatฤฑn/duraklatฤฑn" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "\"{interestsDisplayName}\" kategorisini seรง" @@ -10748,7 +10753,7 @@ msgstr "{0} kullanฤฑcฤฑ adฤฑnฤฑ seรง" msgid "Select {langName}" msgstr "{langName} dilini seรง" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Renk seรง" @@ -10764,11 +10769,11 @@ msgstr "Hesap seรง" msgid "Select an app language" msgstr "Bir uygulama dili seรงin" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Bir avatar seรง" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Emoji seรง" @@ -10780,12 +10785,13 @@ msgstr "Bir seรงenek seรงin" msgid "Select app language" msgstr "Uygulama dili seรงin" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "Altyazฤฑ dosyasฤฑ seรง (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "\"{name}\" sohbetini seรง" @@ -10826,7 +10832,7 @@ msgstr "GIF Seรง" msgid "Select GIF \"{0}\"" msgstr "GIF Seรง \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "Grup sohbeti รผyelerini seรงin" @@ -10864,7 +10870,7 @@ msgstr "ร–ncelikli dili seรงin" msgid "Select telephone code" msgstr "Telefon kodunu seรง" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "{emojiName} emojisini avatar olarak seรง" @@ -10945,7 +10951,8 @@ msgstr "Mesaj gรถnder" msgid "Send post to {name}" msgstr "Gรถnderiyi {name} kullanฤฑcฤฑsฤฑna gรถnder" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "ลžuraya gรถnder..." @@ -10963,12 +10970,12 @@ msgstr "Mesajฤฑ telefonunuzdan yollayฤฑn" msgid "Send verification email" msgstr "DoฤŸrulama e-postasฤฑ gรถnder" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "DoฤŸrudan mesaj yoluyla gรถnder" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "Sohbet ile gรถnder" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "Yer saฤŸlayฤฑcฤฑnฤฑzฤฑ kendiniz ayarlayฤฑn" msgid "Sets email for password reset" msgstr "ลžifre sฤฑfฤฑrlama iรงin e-posta ayarlar" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ayarlar" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "BaลŸkalarฤฑnฤฑn etkinliklerine dair ayarlar" @@ -11036,49 +11043,49 @@ msgstr "BaลŸkalarฤฑnฤฑn etkinliklerine dair ayarlar" msgid "Settings for allowing others to be notified of your posts" msgstr "Gรถnderilerinizden baลŸkalarฤฑnฤฑn bildirim almasฤฑna izin verme ayarlarฤฑ" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "BeฤŸeni bildirimi ayarlarฤฑ" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "Bahsetme bildirimleri ayarlarฤฑ" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "Yeni takipรงi bildirimleri ayarlarฤฑ" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "Geri kalan bildirimlerin ayarlarฤฑ" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "Yeniden gรถnderilerinizin beฤŸenilme bildirimleri ayarlarฤฑ" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "Yeni mesaj istekleri iรงin bildirim ayarlarฤฑ" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "Yeni mesajlar iรงin bildirim ayarlarฤฑ" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "Yeniden gรถnderilerinizin yeniden gรถnderim bildirimleri ayarlarฤฑ" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "Alฤฑntฤฑ bildirimleri ayarlarฤฑ" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "Yanฤฑt bildirimleri ayarlarฤฑ" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "Yeniden gรถnderim bildirimleri ayarlarฤฑ" @@ -11115,8 +11122,8 @@ msgstr "YaลŸ aralฤฑฤŸฤฑnฤฑ paylaลŸ" msgid "Share anyway" msgstr "Yine de paylaลŸ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "Yazar DID'ini paylaลŸ" @@ -11127,7 +11134,7 @@ msgstr "Yazar DID'ini paylaลŸ" msgid "Share feedback" msgstr "Geribildirim paylaลŸ" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "BaฤŸlantฤฑ paylaลŸma diyalogu" msgid "Share my profile" msgstr "Profilimi paylaลŸ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "Gรถnderinin at:// URI'sini paylaลŸ" @@ -11169,12 +11176,12 @@ msgstr "Profili PaylaลŸ" msgid "Share QR code" msgstr "QR kod paylaลŸ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Bu akฤฑลŸฤฑ paylaลŸ" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "Bu aramayฤฑ paylaลŸ" @@ -11186,8 +11193,8 @@ msgstr "Bu baลŸlangฤฑรง paketini paylaลŸ" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Bu baลŸlangฤฑรง paketini paylaลŸ ve insanlarฤฑn Bluesky'deki topluluฤŸunuza katฤฑlmasฤฑna yardฤฑmcฤฑ ol." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "ArkadaลŸlarฤฑnฤฑzฤฑ bulmak iรงin baฤŸlantฤฑlarฤฑnฤฑzฤฑ paylaลŸฤฑn" msgid "Share your thoughtsโ€ฆ" msgstr "DรผลŸรผncelerinizi paylaลŸฤฑnโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "PaylaลŸฤฑlan Tercihler Test Edicisi" @@ -11219,7 +11226,7 @@ msgstr "YaลŸ aralฤฑฤŸฤฑnฤฑzฤฑ paylaลŸmak yalnฤฑzca Apple Hesabฤฑnฤฑzla iliลŸkile msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "YaลŸ aralฤฑฤŸฤฑnฤฑzฤฑ paylaลŸmak, yalnฤฑzca Google Hesabฤฑnฤฑzla iliลŸkili aralฤฑฤŸฤฑ gรถsterir โ€“ รถrneฤŸin, en az 18 yaลŸฤฑnda olduฤŸunuzu. <0>Tam yaลŸฤฑnฤฑz ve doฤŸum tarihiniz asla paylaลŸฤฑlmaz, ve bu veriler bu cihazdan asla ayrฤฑlmaz. Bu nedenle, yalnฤฑzca bu cihazda eriลŸim saฤŸlar. Alternatif olarak, doฤŸrulamanฤฑzฤฑ tamamlamak ve tรผm platformlarda eriลŸimi etkinleลŸtirmek iรงin <1>gรผvenilir ortaฤŸฤฑmฤฑz KWS'yi kullanabilirsiniz." -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Gรถster" msgid "Show alt text" msgstr "Alt metni gรถster" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Yine de gรถster" @@ -11274,9 +11281,9 @@ msgstr "Yine de listeyi gรถster" msgid "Show lists of users to select from" msgstr "Kullanฤฑcฤฑlarฤฑn seรงileceฤŸi listeleri gรถster" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Daha Fazla Gรถster" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "Daha fazla gรถster" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Uyarฤฑ gรถster ve akฤฑลŸlardan filtrele" msgid "Show when youโ€™re live" msgstr "Canlฤฑ yayฤฑna รงฤฑktฤฑฤŸฤฑnฤฑzฤฑ gรถsterin" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Bu gรถnderinin ne zaman oluลŸturulduฤŸuna dair bilgileri gรถsterir" @@ -11341,15 +11348,15 @@ msgstr "Bu gรถnderinin ne zaman oluลŸturulduฤŸuna dair bilgileri gรถsterir" msgid "Shows other accounts you can switch to" msgstr "GeรงiลŸ yapabileceฤŸiniz diฤŸer hesaplarฤฑ gรถsterir" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "ฤฐรงeriฤŸi gรถsterir" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "ฤฐรงeriฤŸi gรถsterir" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "ร‡ฤฑkฤฑลŸ yap?" msgid "Sign up" msgstr "Kaydol" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "GiriลŸ Yapฤฑlmasฤฑ Gerekiyor" @@ -11469,7 +11476,7 @@ msgstr "Atla" msgid "Skip contact sharing and continue to the app" msgstr "BaฤŸlantฤฑlarฤฑ paylaลŸmayฤฑ atla ve uygulamaya devam et" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "BoลŸ gรถnderiler atlansฤฑn mฤฑ?" @@ -11487,7 +11494,7 @@ msgstr "Sonraki adฤฑma atla" msgid "slide" msgstr "slayt" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Daha kรผรงรผk" @@ -11499,14 +11506,14 @@ msgstr "Hatฤฑrlatmayฤฑ erteler" msgid "So many thoughts, you should post one" msgstr "Ne kadar รงok dรผลŸรผnce, birini gรถnderseniz mi acaba" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "Sizin yรถnettiฤŸiniz sosyal medya." #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "Gรถnderilerde sosyal aรงฤฑklayฤฑcฤฑlar" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11520,7 +11527,7 @@ msgstr "Listenizdeki bazฤฑ moderasyon hizmetleri kullanฤฑm dฤฑลŸฤฑdฤฑr." msgid "Some of your verifications are invalid." msgstr "DoฤŸrulamalarฤฑnฤฑzdan bazฤฑlarฤฑ geรงersiz." -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "BeฤŸenebileceฤŸiniz diฤŸer akฤฑลŸlar" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "Biri gruptan รงฤฑktฤฑ" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Birisi {0} tepkisi verdi" @@ -11554,7 +11561,7 @@ msgstr "Birisi {0} tepkisi verdi" msgid "Someone reacted {0} to {target}" msgstr "Biri {target} iรงin {0} tepkisi verdi" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "Birisi yanฤฑtladฤฑ" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Bir ลŸeyler ters gitti, lรผtfen tekrar deneyin" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "Bir ลŸeyler ters gitti. Lรผtfen biraz sonra tekrar deneyin." msgid "Something went wrong. Please try again." msgstr "Bir ลŸeyler ters gitti. Lรผtfen tekrar deneyin." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Bir sorun mu var? Bize bildirin." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "Spam veya baลŸka bir samimiyetsiz davranฤฑลŸ veya kandฤฑrma" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Spor" @@ -11668,7 +11675,7 @@ msgstr "Bir yazฤฑลŸma baลŸlatฤฑrsanฤฑz burada gรถrรผnecektir." msgid "Start a group chat" msgstr "Bir grup sohbeti baลŸlat" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Yeni bir sohbet baลŸlat" @@ -11682,17 +11689,17 @@ msgstr "KiลŸileri eklemeye baลŸla" msgid "Start adding people!" msgstr "KiลŸileri eklemeye baลŸla!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "Sohbete baลŸla" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "{displayName} ile sohbet baลŸlat" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "BaลŸlangฤฑรง Paketi" @@ -11715,12 +11722,16 @@ msgstr "Sizin oluลŸturduฤŸunuz baลŸlangฤฑรง paketi" msgid "Starter pack is invalid" msgstr "BaลŸlangฤฑรง paketi geรงersiz" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "BaลŸlangฤฑรง paketleri" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "BaลŸlangฤฑรง Paketleri" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "BaลŸlangฤฑรง paketleri favori kiลŸilerinizi ve akฤฑลŸlarฤฑnฤฑzฤฑ arkadaลŸlarฤฑnฤฑzla kolaylฤฑkla paylaลŸmanฤฑzฤฑ saฤŸlar." @@ -11728,7 +11739,7 @@ msgstr "BaลŸlangฤฑรง paketleri favori kiลŸilerinizi ve akฤฑลŸlarฤฑnฤฑzฤฑ arkada msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "BaลŸlangฤฑรง paketleri favori akฤฑลŸlarฤฑnฤฑzฤฑ ve kiลŸilerinizi arkadaลŸlarฤฑnฤฑzla paylaลŸabilmenizi saฤŸlar." -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "BaลŸlangฤฑรง Paketleri favori akฤฑลŸlarฤฑnฤฑzฤฑ ve kiลŸilerinizi arkadaลŸlarฤฑnฤฑzla paylaลŸabilmenizi saฤŸlar." @@ -11742,7 +11753,7 @@ msgstr "Durum Sayfasฤฑ" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Adฤฑm {0} / {1}" @@ -11754,7 +11765,7 @@ msgstr "Depolama temizlendi, ลŸimdi uygulamayฤฑ yeniden baลŸlatmanฤฑz gerekiyor. msgid "Stored as part of a secure code for matching with others" msgstr "BaลŸkalarฤฑyla eลŸleลŸme amaรงlฤฑ gรผvenli bir kodun parรงasฤฑ olarak depolanฤฑr" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "{0} kaynaฤŸฤฑnฤฑn {publicationTitle} yayฤฑnฤฑna abone ol" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "Bu etiketleri kullanmak iรงin @{0} hesabฤฑna abone olun:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "BaลŸarฤฑyla doฤŸrulandฤฑ" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "ร–nerilen" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "ร–nerilen hesaplar" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "Size รถnerilenler" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Gรผn batฤฑmฤฑ" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "Bu รถzellik รผlkenizde henรผz etkin deฤŸil! Lรผtfen daha sonra tekrar kontrol edin." #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "Askฤฑya alฤฑnmฤฑลŸ hesaplar grup sohbetlerine katฤฑlamaz." #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "Askฤฑya alฤฑnmฤฑลŸ hesaplar bu sohbete katฤฑlamaz." @@ -11921,8 +11934,8 @@ msgstr "{0} hesabฤฑna geรง" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Sistem" @@ -11945,7 +11958,7 @@ msgstr "KonuลŸmalarฤฑ รถzele alฤฑn." msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "Bluesky'ฤฑn GPS konumunuza eriลŸmesine izin vermek iรงin aลŸaฤŸฤฑya dokunun. Sonrasฤฑnda bu veriyi bรถlgenizde eriลŸilebilir iรงerik ve รถzelliklerin daha isabetli belirlenebilmesi iรงin kullanacaฤŸฤฑz." -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "Ayrฤฑntฤฑlar iรงin dokunun" @@ -11976,7 +11989,7 @@ msgstr "BaฤŸlam menรผsรผnรผ kapatmak iรงin dokunun" msgid "Tap to copy this invite link" msgstr "Bu davetiye baฤŸlantฤฑsฤฑnฤฑ kopyalamak iรงin dokunun" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Gizlemek iรงin dokunun" @@ -12003,7 +12016,7 @@ msgstr "{0} tepkinizi geri almak iรงin dokunun" msgid "Tap to request access to join this group chat" msgstr "Bu grup sohbetine katฤฑlmak iรงin eriลŸim talep etmek รผzere dokunun" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "Yeniden denemek iรงin dokunun" @@ -12016,7 +12029,7 @@ msgstr "{0} tepkilerini gรถrmek iรงin dokunun" msgid "Tap to show all reactions" msgstr "Tรผm tepkileri gรถstermek iรงin dokunun" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "Tepkileri gรถrmek iรงin dokunun" @@ -12032,7 +12045,7 @@ msgstr "Gรถrev tamam - 10 takip!" msgid "Task complete - 10 likes!" msgstr "Gรถrev tamamlandฤฑ - 10 beฤŸeni!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Algoritmamฤฑza nelerden hoลŸlandฤฑฤŸฤฑnฤฑzฤฑ รถฤŸretin" @@ -12060,7 +12073,7 @@ msgstr "ลžartlar" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Bu baลŸlangฤฑรง paketi bulunamadฤฑ." msgid "That username is already taken" msgstr "Bu kullanฤฑcฤฑ adฤฑ zaten alฤฑnmฤฑลŸ" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Hepsi bu kadar!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Hepsi bu kadar!" @@ -12216,7 +12229,7 @@ msgstr "Sunucu bazฤฑ sฤฑkฤฑntฤฑlar yaลŸฤฑyor. Lรผtfen biraz sonra tekrar deneyin msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Gรถrmek istediฤŸiniz baลŸlangฤฑรง paketi geรงersiz. Bu baลŸlangฤฑรง paketini silmeyi tercih edebilirsiniz." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "BaฤŸlam menรผsรผnรผn konusu" @@ -12238,7 +12251,7 @@ msgstr "VerdiฤŸiniz onay kodu geรงersiz. Lรผtfen doฤŸru onay baฤŸlantฤฑsฤฑnฤฑ ku msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "DoฤŸrulama saฤŸlayฤฑcฤฑsฤฑ telefon numaranฤฑza kodu yollayamadฤฑ. Lรผtfen telefon numaranฤฑzฤฑ kontrol edip tekrar deneyin." -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Tema" @@ -12266,7 +12279,7 @@ msgstr "GIFler yรผklenemedi. BaฤŸlantฤฑnฤฑzฤฑ kontrol edin ve tekrar deneyin." msgid "There was a problem with your internet connection, please try again" msgstr "ฤฐnternet baฤŸlantฤฑnฤฑzla ilgili bir problem oldu, lรผtfen tekrar deneyin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "ฤฐnternet baฤŸlantฤฑnฤฑzla ilgili bir problem oldu, lรผtfen tekrar deney msgid "There was an issue contacting the server" msgstr "Sunucuya ulaลŸma konusunda bir sorun oluลŸtu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Sunucuya baฤŸlanฤฑrken bir sorun oldu, lรผtfen internet baฤŸlantฤฑnฤฑzฤฑ kontrol edin ve tekrar deneyin." @@ -12283,8 +12296,8 @@ msgstr "Sunucuya baฤŸlanฤฑrken bir sorun oldu, lรผtfen internet baฤŸlantฤฑnฤฑzฤฑ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bildirimleri almakta bir sorun oluลŸtu. Tekrar denemek iรงin buraya dokunun." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Gรถnderileri almakta bir sorun oluลŸtu. Tekrar denemek iรงin buraya dokunun." @@ -12309,7 +12322,7 @@ msgstr "Servis bilginizi getirirken bir sorun oldu" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Bu akฤฑลŸฤฑ kaldฤฑrฤฑrken bir sorun oldu. Lรผtfen internet baฤŸlantฤฑnฤฑzฤฑ kontrol edin ve tekrar deneyin." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Bu ayarlar yalnฤฑzca takip akฤฑลŸฤฑna (\"Following\") uygulanฤฑr." msgid "These URLs" msgstr "Bu URL'ler" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "Bu sohbetin sahibi onlar" @@ -12392,7 +12405,7 @@ msgstr "Bu sohbetin sahibi onlar" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "Onlarฤฑ tekrar davet etmediฤŸiniz sรผrece yeniden katฤฑlamayacaklar." -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "Bu {screenDescription} iลŸaretlendi:" @@ -12408,7 +12421,7 @@ msgstr "Bu hesap zaten sahibi tarafฤฑndan otomasyonlu olarak iลŸaretlenmiลŸ." msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Bu hesap bir ya da birden fazla doฤŸrulanma giriลŸimine sahip ama henรผz doฤŸrulanmฤฑลŸ deฤŸil." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Bu hesap, kullanฤฑcฤฑlarฤฑn profilini gรถrรผntรผlemek iรงin giriลŸ yapmalarฤฑnฤฑ istedi." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Bu akฤฑลŸ boลŸ! Daha fazla kullanฤฑcฤฑ takip etmeniz veya dil ayarlarฤฑnฤฑzฤฑ ayarlamanฤฑz gerekebilir." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Bu akฤฑลŸ boลŸ." @@ -12554,7 +12567,7 @@ msgstr "Bu grup, sahibine uygulanan bir moderasyon iลŸlemi nedeniyle kilitlenmi msgid "This handle is reserved. Please try a different one." msgstr "Bu kullanฤฑcฤฑ adฤฑ kullanฤฑlamaz. Lรผtfen baลŸka bir tane deneyin." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "Bu gรถrsel kullanฤฑlamaz. Farklฤฑ bir format deneyin, .jpg ya da .png gibi." @@ -12596,7 +12609,7 @@ msgstr "Bu iลŸaret sizin tarafฤฑnฤฑzdan uygulandฤฑ." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "Bu iลŸaret tรผm hesaba uygulandฤฑฤŸฤฑndan tรผm gรถnderilerde gรถrรผnecektir." -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Bu iลŸaretleyici hangi iลŸaretleri yayฤฑnladฤฑฤŸฤฑnฤฑ ลŸimdilik bildirmedi ve etkin olmayabilir." @@ -12621,13 +12634,13 @@ msgstr "Bu liste boลŸ." msgid "This message is hidden" msgstr "Bu mesaj gizli" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "Bu mesaj gizli รงรผnkรผ bu kullanฤฑcฤฑ sizi engelliyor." -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "Bu mesaj gizli รงรผnkรผ bu kullanฤฑcฤฑyฤฑ engelliyorsunuz." @@ -12641,7 +12654,7 @@ msgstr "Bu kiลŸi sizi engelliyor" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Bu gรถnderi <0>{0} tarihinde oluลŸturulduฤŸunu beyan ediyor, ancak Bluesky'da ilk olarak <1>{1} tarihinde gรถrรผldรผ." @@ -12649,7 +12662,7 @@ msgstr "Bu gรถnderi <0>{0} tarihinde oluลŸturulduฤŸunu beyan ediyor, ancak B msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Bu gรถnderide bilinmeyen bir threadgate tรผrรผ var. Uygulamanฤฑz gรผncel olmayabilir." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "Bu gรถnderi yalnฤฑzca giriลŸ yapmฤฑลŸ kullanฤฑcฤฑlara gรถrรผnรผr." @@ -12661,7 +12674,7 @@ msgstr "Bu gรถnderi yazarฤฑ tarafฤฑndan silinmiลŸ" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Bu gรถnderi akฤฑลŸlarฤฑnฤฑzdan ve konularฤฑnฤฑzdan gizlenecektir. Bu iลŸlem geri alฤฑnamaz." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Bu gรถnderinin yazarฤฑ alฤฑntฤฑlanmasฤฑnฤฑ engellemiลŸ." @@ -12698,11 +12711,12 @@ msgstr "Bu sadece birkaรง dakika alacaktฤฑr." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Bir gรถrรผnรผr adฤฑ olmadฤฑฤŸฤฑndan bu kullanฤฑcฤฑ doฤŸrulanamaz." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Bu kullanฤฑcฤฑnฤฑn hiรง takipรงisi yok." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "Bu kullanฤฑcฤฑ sizi engellediฤŸinden kendisiyle mesajlaลŸฤฑlamaz." @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Bu kullanฤฑcฤฑ sizi engelledi. ฤฐรงeriklerini gรถremezsiniz." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "Bu kullanฤฑcฤฑ sohbeti devre dฤฑลŸฤฑ bฤฑraktฤฑฤŸฤฑndan kendisiyle mesajlaลŸฤฑlamaz." @@ -12733,11 +12748,11 @@ msgstr "Bu kullanฤฑcฤฑ sessize aldฤฑฤŸฤฑnฤฑz <0>{0} listesinde yer alฤฑyor." msgid "This user is new here. Press for more info about when they joined." msgstr "Bu kullanฤฑcฤฑ burada yeni. Ne zaman katฤฑldฤฑฤŸฤฑna dair daha รงok bilgi iรงin basฤฑn." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Bu kullanฤฑcฤฑ kimseyi takip etmiyor." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "Bu video cihazฤฑnฤฑzda oynatฤฑlamฤฑyor. Tarayฤฑcฤฑnฤฑz ya da sisteminiz gerekli video kodlayฤฑcฤฑlarฤฑnฤฑ (H.264/AAC) barฤฑndฤฑrmฤฑyor olabilir." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "Bu, geri dรถnรผlemez ลŸekilde <0>{currentHandle} Bluesky hesabฤฑnฤฑzฤฑ ve onla iliลŸkilendirilen tรผm verileri silecektir. Bunun bu hesapla kullandฤฑฤŸฤฑnฤฑz diฤŸer <1>AT Protokolรผ servislerini de etkileyeceฤŸini dikkate alฤฑnฤฑz." #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Bu @{0} kullanฤฑcฤฑsฤฑnฤฑ รงabuk eriลŸim listesinden kaldฤฑracak." @@ -12786,7 +12801,7 @@ msgstr "Konu Tercihleri" msgid "Threaded" msgstr "Dallanmalฤฑ" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Konu Tercihleri" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "ร‡ok sayฤฑda baฤŸlantฤฑ - arkadaลŸlarฤฑnฤฑzฤฑ bulmak iรงin baฤŸlantฤฑlarฤฑnฤฑzdan yรผkleyebileceฤŸiniz kiลŸi sayฤฑsฤฑnฤฑ aลŸtฤฑnฤฑz" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "En รถne รงฤฑkan" @@ -12858,7 +12873,7 @@ msgstr "En รถne รงฤฑkan" msgid "Top replies first" msgstr "ร–nce en รถne รงฤฑkan yanฤฑtlar" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Konu baลŸlฤฑฤŸฤฑ" @@ -12893,7 +12908,9 @@ msgstr "Cihazฤฑnฤฑzda aynฤฑ dile รงeviri imkanฤฑ mevcut deฤŸil." msgid "Tree view" msgstr "AฤŸaรง gรถrรผnรผmรผ" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Gรผndem" @@ -12902,13 +12919,15 @@ msgstr "Gรผndem" msgid "Trending GIFs" msgstr "Gรผndem GIFler" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "Gรผndem seรงenekleri" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Gรผndemdeki Videolar" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "Trolleme" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Gรผven iliลŸkilerden, topluluklardan ve paylaลŸฤฑlan baฤŸlamdan gelir. Dolayฤฑsฤฑyla <0>gรผvenilir doฤŸrulayฤฑcฤฑlarฤฑ yani direkt doฤŸrulama yapabilen kurumlarฤฑ devreye alฤฑyoruz." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "Farklฤฑ bir arama terimi deneyin veya bazฤฑ filtreleri kaldฤฑrฤฑn." -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "Farklฤฑ bir arama terimi deneyin." @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "Katฤฑlฤฑm talepleri รงekilemedi." #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "SeรงilmiลŸ alฤฑcฤฑlardan biri bulunamadฤฑ." #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "SeรงilmiลŸ alฤฑcฤฑ bulunamadฤฑ." @@ -13024,12 +13045,12 @@ msgstr "EriลŸilmez" msgid "Unavailable feed information" msgstr "EriลŸilemeyen akฤฑลŸ bilgisi" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Hesabฤฑ Engelle?" msgid "Unblock list" msgstr "Listeden engeli kaldฤฑr" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "{0} adresini takibi bฤฑrak" msgid "Unfollow account" msgstr "Hesabฤฑ takibi bฤฑrak" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Kullanฤฑcฤฑyฤฑ takipten รงฤฑkarฤฑr" @@ -13132,7 +13153,7 @@ msgstr "EtiketlenmemiลŸ yetiลŸkin iรงerik" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "EtiketlenmemiลŸ, istismarcฤฑ veya rฤฑzasฤฑz yetiลŸkin iรงerik" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "BeฤŸenmeyi geri al" @@ -13192,7 +13213,7 @@ msgstr "Bu grup sohbetini sessizden รงฤฑkar" msgid "Unmute thread" msgstr "Konuyu sessizden รงฤฑkar" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Videonun sesini aรง" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Sabitlemeyi kaldฤฑr" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "AkฤฑลŸฤฑ sabitlemeyi kaldฤฑr" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Ana sayfadan sabitlemeyi kaldฤฑr" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Moderasyon listesini sabitlemeyi kaldฤฑr" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "{0} akฤฑลŸฤฑnฤฑn ana sayfadan sabitlemesi kaldฤฑrฤฑldฤฑ" @@ -13258,11 +13279,11 @@ msgstr "Bu iลŸaretleyicinin aboneliฤŸinden ayrฤฑl" msgid "Unsubscribed from list" msgstr "Liste aboneliฤŸinden รงฤฑktฤฑnฤฑz" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "Desteklenmeyen pano iรงeriฤŸi" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "Desteklenmeyen video tรผrรผ: {mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Yanฤฑt gรถrรผnรผrlรผฤŸรผnรผ gรผncelleme baลŸarฤฑsฤฑz oldu" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Bunun yerine bir gรถrsel ekle" @@ -13355,7 +13376,7 @@ msgstr "Dosyalardan Yรผkle" msgid "Upload from Library" msgstr "Kรผtรผphaneden Yรผkle" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "GIF yรผkleniyor..." @@ -13369,7 +13390,7 @@ msgstr "Gรถrseller yรผkleniyor..." msgid "Uploading link thumbnail..." msgstr "Web baฤŸlantฤฑsฤฑnฤฑn gรถrseli gรถnderiliyor..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "Video yรผkleniyor..." @@ -13408,7 +13429,7 @@ msgstr "Bunu, kullanฤฑcฤฑ adฤฑnฤฑzla birlikte diฤŸer uygulamada giriลŸ yapmak i msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "KWS veya Bluesky'ฤฑn size ulaลŸma ihtimaline karลŸฤฑn hesabฤฑnฤฑzฤฑn e-posta adresini ya da sizin kontrolรผnรผzde olan baลŸka bir gerรงek e-posta adresi kullanฤฑn." -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "kullanฤฑcฤฑ" @@ -13510,7 +13531,7 @@ msgstr "DoฤŸrulama baลŸarฤฑsฤฑz, lรผtfen tekrar deneyin." msgid "Verification settings" msgstr "DoฤŸrulama ayarlarฤฑ" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "DoฤŸrulama Ayarlarฤฑ" @@ -13618,34 +13639,34 @@ msgstr "Video" msgid "Video failed to process" msgstr "Video iลŸlenemedi" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Video AkฤฑลŸฤฑ" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "{0} videosu: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "{0} videosu. Videoyu oynatmak ya da durdurmak iรงin basฤฑn" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Video Oyunlarฤฑ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "Video duraklatฤฑldฤฑ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "Video oynatฤฑlฤฑyor" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Video bulunamadฤฑ." @@ -13653,7 +13674,7 @@ msgstr "Video bulunamadฤฑ." msgid "Video settings" msgstr "Video ayarlarฤฑ" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "Video yรผklendi" @@ -13662,17 +13683,17 @@ msgstr "Video yรผklendi" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Videolar" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "Videolar 3 dakikadan kฤฑsa olmalฤฑdฤฑr." -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Gรถz at" @@ -13691,9 +13712,9 @@ msgstr "{0}'ฤฑn avatarฤฑnฤฑ gรถrรผntรผle" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "{0} kullanฤฑcฤฑsฤฑnฤฑn profilini gรถrรผntรผle" @@ -13724,13 +13745,13 @@ msgstr "Daha fazla detay iรงin blog yazฤฑsฤฑnฤฑ gรถr" msgid "View debug entry" msgstr "Hata ayฤฑklama giriลŸini gรถrรผntรผle" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Ayrฤฑntฤฑlarฤฑ gรถrรผntรผle" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Tam konuyu gรถrรผntรผle" @@ -13750,18 +13771,18 @@ msgstr "Bu grup sohbetine katฤฑlma taleplerini gรถr" msgid "View information about these labels" msgstr "Bu iลŸaretler hakkฤฑnda bilgi al" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Daha fazlasฤฑnฤฑ gรถrรผntรผle" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "Daha รงok gรผndem olan video gรถster" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "Gรถnderiyi gรถster" @@ -13798,15 +13819,15 @@ msgstr "Bu grup sohbeti iรงin davetiye baฤŸlantฤฑsฤฑnฤฑ gรถrรผntรผle" msgid "View the labeling service provided by @{0}" msgstr "@{0} tarafฤฑndan saฤŸlanan iลŸaretleme hizmetini gรถr" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Bu kullanฤฑcฤฑnฤฑn doฤŸrulamalarฤฑnฤฑ gรถrรผntรผle" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Bu akฤฑลŸฤฑ beฤŸenen kullanฤฑcฤฑlarฤฑ gรถrรผn" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Videoyu izle" @@ -13831,7 +13852,7 @@ msgstr "Moderasyon listelerini gรถrรผn" msgid "View your muted accounts" msgstr "Sessize aldฤฑฤŸฤฑnฤฑz hesaplarฤฑ gรถrรผn" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "DoฤŸrulamalarฤฑnฤฑzฤฑ gรถrรผntรผleyin" @@ -13840,7 +13861,7 @@ msgstr "DoฤŸrulamalarฤฑnฤฑzฤฑ gรถrรผntรผleyin" msgid "Views full image" msgstr "Gรถrseli tam boy gรถsterir" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Videoyu iรงine dalฤฑnan modda gรถsterir" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "AฤŸ sorunlarฤฑ yaลŸฤฑyoruz, tekrar deneyin" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "AฤŸ sorunlarฤฑ yaลŸฤฑyoruz, tekrar deneyin" @@ -14043,7 +14064,7 @@ msgstr "AฤŸ sorunlarฤฑ yaลŸฤฑyoruz, tekrar deneyin" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Bluesky'da yeni bir doฤŸrulama katmanฤฑ sunuyoruz - kolay gรถrรผlebilen bir onay iลŸareti." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "Sizi aramฤฑzda gรถrmekten dolayฤฑ รงok heyecanlฤฑyฤฑz!" @@ -14064,13 +14085,15 @@ msgstr "รœzgรผnรผz, ancak bu listeyi รงรถzemedik. Bu durum devam ederse, lรผtfen msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "รœzgรผnรผz, ancak sessize alฤฑnmฤฑลŸ kelimelerinizi ลŸu anda yรผkleyemedik. Lรผtfen tekrar deneyin." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "รœzgรผnรผz ancak aramanฤฑz tamamlanamadฤฑ." -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Maalesef arama iลŸleminiz tamamlanamadฤฑ. Lรผtfen birkaรง dakika iรงinde tekrar deneyin." @@ -14078,7 +14101,7 @@ msgstr "Maalesef arama iลŸleminiz tamamlanamadฤฑ. Lรผtfen birkaรง dakika iรงinde msgid "We're sorry, you cannot access this screen at this time." msgstr "รœzgรผnรผz, ลŸu anda bu ekrana eriลŸemezsiniz." -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "รœzgรผnรผz! YanฤฑtladฤฑฤŸฤฑnฤฑz gรถnderi silindi." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "naber" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Nasฤฑlsฤฑnฤฑz?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Kim doฤŸrulayabilir?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "Ay ay!" @@ -14220,21 +14243,21 @@ msgstr "Bu kullanฤฑcฤฑyฤฑ engellemek ve/veya bu yazฤฑลŸmadan ayrฤฑlmak istiyor m msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Taslaklarฤฑnฤฑza gรถz atmadan รถnce bunu taslak olarak kaydetmek ister misiniz?" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "Bunu sonradan dรผzenlemek iรงin taslak olarak kaydetmek ister misiniz?" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "Bir gรถnderi yaz" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Gรถnderi yaz" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Yanฤฑtฤฑnฤฑzฤฑ yazฤฑn" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "Bluesky'a yasal olarak sizin yaลŸฤฑnฤฑzฤฑ uygulamaya eriลŸmeden รถnce onaylamamฤฑzฤฑ gerektiren bir bรถlgeden ulaลŸฤฑyorsunuz." #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "{0} kiลŸisini engelliyorsunuz" @@ -14342,7 +14365,7 @@ msgstr "Artฤฑk canlฤฑ yayฤฑnda deฤŸilsiniz" msgid "You are not allowed to upload videos." msgstr "Video yรผkleme izniniz yok." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "Henรผz kimseyi takip etmiyorsunuz" @@ -14362,7 +14385,7 @@ msgstr "DoฤŸrulanmฤฑลŸsฤฑnฤฑz. Gรถrรผnen adฤฑnฤฑzฤฑ deฤŸiลŸtirirseniz doฤŸrulama msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "DoฤŸrulanmฤฑลŸsฤฑnฤฑz. Kullanฤฑcฤฑ adฤฑnฤฑzฤฑ deฤŸiลŸtirirseniz doฤŸrulama durumunuzu kaybedeceksiniz.<0>Daha fazla bilgi edinin." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "ฤฐlgi alanlarฤฑnฤฑzฤฑ istediฤŸiniz zaman \"ฤฐรงerik ve medya\" ayarlarฤฑndan deฤŸiลŸtirebilirsiniz." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Artฤฑk yeni ลŸifrenizle giriลŸ yapabilirsiniz." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "Gรถnderi baลŸฤฑna en fazla {MAX_GALLERY_IMAGES, plural, other {# gรถrsel}} ekleyebilirsiniz" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "Yalnฤฑzca 1000 karaktere kadar taslak kaydedebilirsiniz." @@ -14439,9 +14462,11 @@ msgstr "Sohbet geรงmiลŸini okuyabilirsiniz ancak yeni mesaj gรถnderemezsiniz." msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "Toplamda en fazla {MAX_GALLERY_IMAGES, plural, other {# gรถrsel}} seรงebilirsiniz." -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Bunu daha sonra ayarlarฤฑnฤฑzdan gรผncelleyebilirsiniz." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "{EMOJI_REACTION_LIMIT, plural, other {# emoji tepkisinden}} fazla tepki veremezsiniz" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "Henรผz bir grup sohbeti oluลŸturamazsฤฑnฤฑz." @@ -14555,7 +14581,7 @@ msgstr "E-posta adresinizi baลŸarฤฑyla doฤŸruladฤฑnฤฑz. Bu diyaloฤŸu kapatabilir msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Video yรผkleme sฤฑnฤฑrฤฑna geรงici olarak ulaลŸtฤฑnฤฑz. Lรผtfen daha sonra tekrar deneyin." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Bu taslakta kaydedilmemiลŸ deฤŸiลŸiklikleriniz var, onlarฤฑ kaydetmek ister misiniz?" @@ -14563,7 +14589,7 @@ msgstr "Bu taslakta kaydedilmemiลŸ deฤŸiลŸiklikleriniz var, onlarฤฑ kaydetmek is msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "KaydedilmemiลŸ deฤŸiลŸiklikleriniz var. Taslaklarฤฑnฤฑza gรถz atmadan รถnce onlarฤฑ kaydetmek ister misiniz?" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Henรผz bir baลŸlangฤฑรง โ€‹โ€‹paketi oluลŸturmadฤฑnฤฑz!" @@ -14614,7 +14640,7 @@ msgstr "En fazla {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_MAX_SIZE} msgid "You may only add up to 3 feeds" msgstr "En fazla 3 akฤฑลŸ ekleyebilirsiniz" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "Bir รผye รงฤฑkarmak iรงin sohbet sahibi olmanฤฑz gerekmektedir." @@ -14622,7 +14648,7 @@ msgstr "Bir รผye รงฤฑkarmak iรงin sohbet sahibi olmanฤฑz gerekmektedir." msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Bluesky'ฤฑ kullanmak iรงin en az 13 yaลŸฤฑnda olmanฤฑz gerekmektedir. Daha fazla ilgi iรงin <0>Hizmet ลžartlarฤฑ'nฤฑ okuyun." -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "BaลŸlangฤฑรง โ€‹โ€‹paketi oluลŸturmak iรงin en az yedi kiลŸiyi takip etmeniz gerekir." @@ -14639,7 +14665,7 @@ msgstr "Medya galerinize eriลŸim izni vermeniz gerekmektedir." msgid "You need to verify your email address before you can enable email 2FA." msgstr "E-posta iki adฤฑmlฤฑ doฤŸrulamasฤฑnฤฑ etkinleลŸtirebilmeniz iรงin รถncelikle e-posta adresinizi doฤŸrulamanฤฑz gerekmektedir." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "Bu sohbetin sahibisiniz" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "ลžimdi uygulamayฤฑ yeniden baลŸlatmak isteyebilirsiniz." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "{0} tepkisi verdiniz" @@ -14667,15 +14693,15 @@ msgstr "{target} iรงin {0} tepkisi verdiniz" msgid "You recently changed your birthdate" msgstr "DoฤŸum tarihinizi yakฤฑn zamanda deฤŸiลŸtirdiniz" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "Yanฤฑtladฤฑnฤฑz" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "{originalName} kullanฤฑcฤฑsฤฑna yanฤฑt verdiniz" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "Kendinize yanฤฑt verdiniz" @@ -14715,11 +14741,11 @@ msgstr "Davet edilmedikรงe tekrar katฤฑlamayacaksฤฑnฤฑz." msgid "You: {message}" msgstr "Siz: {message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Hesabฤฑnฤฑzฤฑ oluลŸturmayฤฑ tamamladฤฑฤŸฤฑnฤฑzda รถnerilen kullanฤฑcฤฑlarฤฑ ve akฤฑลŸlarฤฑ takip edeceksiniz!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Hesabฤฑnฤฑzฤฑ oluลŸturmayฤฑ tamamladฤฑฤŸฤฑnฤฑzda รถnerilen kullanฤฑcฤฑlarฤฑ takip edeceksiniz!" @@ -14791,7 +14817,7 @@ msgstr "Aktif iรงeriฤŸin sonuna ulaลŸtฤฑnฤฑz." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "AkฤฑลŸฤฑnฤฑzฤฑn sonuna ulaลŸtฤฑnฤฑz! Takip edebileceฤŸiniz daha fazla hesap bulun." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "En fazla taslak sayฤฑsฤฑna ulaลŸtฤฑnฤฑz" @@ -14799,7 +14825,7 @@ msgstr "En fazla taslak sayฤฑsฤฑna ulaลŸtฤฑnฤฑz" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "ฤฐzin verilen en fazla istek sayฤฑsฤฑna ulaลŸtฤฑnฤฑz. Lรผtfen daha sonra tekrar deneyin." -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "Maksimum {MAX_FILTERS, plural, other {# filtre}} sayฤฑsฤฑna ulaลŸtฤฑnฤฑz. Yeni filtreler oluลŸturmak yerine mevcut bir filtreye daha fazla deฤŸer ekleyin." @@ -14815,11 +14841,11 @@ msgstr "Gรผnlรผk video yรผkleme limitinize ulaลŸtฤฑnฤฑz (รงok fazla bayt)" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Gรผnlรผk video yรผkleme limitinize ulaลŸtฤฑnฤฑz (รงok sayฤฑda video)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "ฤฐzleyebileceฤŸiniz video kalmadฤฑ. Belki de bir mola vermenin zamanฤฑ gelmiลŸtir?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Hesabฤฑnฤฑz" @@ -14835,11 +14861,11 @@ msgstr "Hesabฤฑnฤฑz askฤฑya alฤฑndฤฑ" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Hesabฤฑnฤฑz video yรผklemek iรงin yeterince eski deฤŸil. Lรผtfen daha sonra tekrar deneyin." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "Hesabฤฑnฤฑz รงok yeni" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "Yeni bir grup sohbeti oluลŸturmak iรงin hesabฤฑnฤฑzฤฑn en az 7 gรผnlรผk olmasฤฑ gerekmektedir." @@ -14896,7 +14922,7 @@ msgstr "E-posta adresiniz" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "E-postanฤฑz geรงersiz gibi gรถrรผnรผyor." @@ -14930,8 +14956,8 @@ msgstr "Yer saฤŸlayฤฑcฤฑnฤฑz bir e-posta adresinden tespit edilemez, bu yรผzden msgid "Your hosting provider is detected automatically from the username you enter." msgstr "Yer saฤŸlayฤฑcฤฑnฤฑz girdiฤŸiniz kullanฤฑcฤฑ adฤฑndan otomatik olarak algฤฑlanฤฑr." -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "ฤฐlgi alanlarฤฑnฤฑz gรผncellendi!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "ฤฐlgi alanlarฤฑnฤฑz, neyi sevdiฤŸinizi bulmamฤฑza yardฤฑmcฤฑ oluyor!" @@ -14967,11 +14993,11 @@ msgstr "ลžifreniz baลŸarฤฑyla deฤŸiลŸtirildi! Lรผtfen bundan sonra Bluesky'a gir msgid "Your password must be at least 8 characters long." msgstr "ลžifreniz en az 8 karakter uzunluฤŸunda olmalฤฑdฤฑr." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "Gรถnderiniz yollandฤฑ" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "Gรถnderileriniz yollandฤฑ" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "Tercih ettiฤŸiniz dil" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "Profil resminiz" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "BaลŸka kullanฤฑcฤฑlarฤฑn profil resimleri tarafฤฑndan รงerรงevelenmiลŸ profil resminiz" @@ -14992,7 +15018,7 @@ msgstr "BaลŸka kullanฤฑcฤฑlarฤฑn profil resimleri tarafฤฑndan รงerรงevelenmiลŸ p msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Profiliniz, gรถnderileriniz, akฤฑลŸlarฤฑnฤฑz ve listeleriniz artฤฑk diฤŸer Bluesky kullanฤฑcฤฑlarฤฑ tarafฤฑndan gรถrรผlemeyecek. Hesabฤฑnฤฑzฤฑ istediฤŸiniz zaman oturum aรงarak yeniden etkinleลŸtirebilirsiniz." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "Yanฤฑtฤฑnฤฑz yollandฤฑ" @@ -15005,7 +15031,7 @@ msgstr "Raporunuz <0>{0} iลŸaretleyicisine gรถnderilecektir." msgid "Your selected interests help us serve you content you care about." msgstr "SeรงtiฤŸiniz ilgi alanlarฤฑ, รถnemsediฤŸiniz iรงerikleri size sunmamฤฑza yardฤฑmcฤฑ olur." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Konunuzdaki boลŸ gรถnderiler atlanacak, geride kalan gรถnderiler ise bir konu olarak yayฤฑnlanacaktฤฑr." diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po index 7c1c288170..e17c32cc01 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(ะผั–ัั‚ะธั‚ัŒ ะฒะฑัƒะดะพะฒะฐะฝะธะน ะฒะผั–ัั‚)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# ะณะพะดะธะฝะฐ} few {# ะณะพะดะธะฝะธ} many {# ะณะพะดะธะฝ} other {# ะณะพะดะธะฝ}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "" msgid "{following} following" msgstr "{following} ะฟั–ะดะฟะธัะพะบ" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} ะฝะตะผะพะถะปะธะฒะพ ะฝะฐะฟะธัะฐั‚ะธ" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "" @@ -799,15 +757,15 @@ msgstr "" msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "" @@ -842,13 +795,13 @@ msgstr "" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {ั‡ะธั‚ะฐั”ั‚ะต} few {ั‡ะธั‚ะฐั”ั‚ะต} many { #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {ั†ะธั‚ะฐั‚ะฐ} few {ั†ะธั‚ะฐั‚ะธ} many {ั†ะธั‚ะฐั‚ะธ} other {ั†ะธั‚ะฐั‚ะฐ}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {ั€ะตะฟะพัั‚} few {ั€ะตะฟะพัั‚ะธ} many {ั€ะตะฟะพัั‚ั–ะฒ} other {ั€ะตะฟะพัั‚ั–ะฒ}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 ะดะฝั–ะฒ" msgid "7 days" msgstr "7 ะดะฝั–ะฒ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "ะ”ะพัั‚ัƒะฟะฝั–ัั‚ัŒ" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะดะพัั‚ัƒะฟะฝะพัั‚ั–" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "ะžะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั ั–ะณะฝะพั€ะพะฒะฐะฝะพ ัะฟะธัะบะพะผ" msgid "Account options" msgstr "ะŸะฐั€ะฐะผะตั‚ั€ะธ ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "ะžะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั ะฒะธะปัƒั‡ะตะฝะพ ะทั– ัˆะฒะธะดะบะพะณะพ ะดะพัั‚ัƒะฟัƒ" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "ะ”ะพะดะฐั‚ะธ ะฐะปัŒั‚ะตั€ะฝะฐั‚ะธะฒะฝะธะน ั‚ะตะบัั‚ (ะทะฐ ะฑะฐะถะฐะฝะฝ msgid "Add another account" msgstr "ะ”ะพะดะฐั‚ะธ ั–ะฝัˆะธะน ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "ะะฐะฟะธัะฐั‚ะธ ั‰ะต" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "ะ”ะพะดะฐั‚ะธ ั†ัŽ ัั‚ั€ั–ั‡ะบัƒ ะดะพ ะฒะฐัˆะพั— ัั‚ั€ั–ั‡ะบะธ" msgid "Add to lists" msgstr "ะ”ะพะดะฐั‚ะธ ะดะพ ัะฟะธัะบัƒ" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "ะ”ะพั€ะพัะปะธะน" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "ะฃัะต" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "ะฃัั– ะทะฑะตั€ะตะถะตะฝั– ัั‚ั€ั–ั‡ะบะธ ะฒ ะพะดะฝะพะผัƒ ะผั–ัั†ั–." @@ -1560,7 +1511,7 @@ msgstr "ะะฐะดะฐั‚ะธ ะดะพัั‚ัƒะฟ ะดะพ ะพัะพะฑะธัั‚ะธั… ะฟะพะฒั–ะดะพะผะปะตะฝัŒ msgid "Already have a code?" msgstr "ะ’ะถะต ะผะฐั”ั‚ะต ะบะพะด?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "ะ‘ัƒะปะพ ะฝะฐะดั–ัะปะฐะฝะพ ะปะธัั‚ ะฝะฐ ะฐะดั€ะตััƒ {0}. ะ’ั–ะฝ ะผั– msgid "An error has occurred" msgstr "ะ’ะธะฝะธะบะปะฐ ะฟะพะผะธะปะบะฐ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "ะ’ะธะฝะธะบะปะฐ ะฟะพะผะธะปะบะฐ" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "ะกั‚ะฐะปะฐัั ะฟะพะผะธะปะบะฐ ะฟั–ะด ั‡ะฐั ะณะตะฝะตั€ะฐั†ั–ั— ะฒะฐัˆะพั— ะฟั–ะดะฑั–ั€ะบะธ. ะฅะพั‡ะตั‚ะต ัะฟั€ะพะฑัƒะฒะฐั‚ะธ ั‰ะต ั€ะฐะท?" @@ -1640,11 +1591,11 @@ msgstr "ะกั‚ะฐะปะฐัั ะฟะพะผะธะปะบะฐ ะฟั–ะด ั‡ะฐั ะณะตะฝะตั€ะฐั†ั–ั— ะฒะฐัˆะพ msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "ะกั‚ะฐะปะฐัั ะฟะพะผะธะปะบะฐ ะฟั–ะด ั‡ะฐั ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะฝั ะฒั–ะดะตะพ. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ัะฟั€ะพะฑัƒะนั‚ะต ะฟั–ะทะฝั–ัˆะต." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "ะกั‚ะฐะปะฐัั ะฟะพะผะธะปะบะฐ ะฟั–ะด ั‡ะฐั ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะฝั ะฒั–ะดะตะพ. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ัะฟั€ะพะฑัƒะนั‚ะต ั‰ะต." @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "ะŸั€ะพะฑะปะตะผะฐ ะฝะต ะฒะบะปัŽั‡ะตะฝะฐ ะดะพ ั†ะธั… ะฒะฐั€ั–ะฐะฝั‚ั–ะฒ" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "ะกั‚ะฐะปะฐัั ะฟะพะผะธะปะบะฐ ะฟั€ะธ ัะฟั€ะพะฑั– ะฒั–ะดะบั€ะธั‚ะธ ั‡ะฐั‚" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "ะะฐะทะฒะฐ ะฟะพะฒะธะฝะฝะฐ ะฑัƒั‚ะธ ะฝะต ะผะตะฝัˆะต 4 ัะธะผะฒะพะปั–ะฒ ัƒ msgid "App passwords" msgstr "ะŸะฐั€ะพะปั– ะทะฐัั‚ะพััƒะฝะบัƒ" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "ะŸะฐั€ะพะปั– ะดะปั ะทะฐัั‚ะพััƒะฝะบั–ะฒ" @@ -1891,8 +1838,8 @@ msgstr "ะžัะบะฐั€ะถะธั‚ะธ ั†ะต ั€ั–ัˆะตะฝะฝั" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "ะั€ั…ั–ะฒะพะฒะฐะฝะพ {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "ะั€ั…ั–ะฒะพะฒะฐะฝะธะน ะฟะพัั‚" @@ -1980,7 +1927,7 @@ msgstr "ะ’ะธ ะฒะฟะตะฒะฝะตะฝั–, ั‰ะพ ะฑะฐะถะฐั”ั‚ะต ะฒะธะปัƒั‡ะธั‚ะธ ั†ะต ะทั– ั msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "ะ’ะธ ัะฟั€ะฐะฒะดั– ั…ะพั‡ะตั‚ะต ะฝะต ะฟัƒะฑะปั–ะบัƒะฒะฐั‚ะธ ะฟะพัั‚?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "ะะฒั‚ะพะฒั–ะดั‚ะฒะพั€ะตะฝะฝั ะฒั–ะดะตะพ ั‚ะฐ GIF" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "ะŸะตั€ะตะด ัั‚ะฒะพั€ะตะฝะฝัะผ ะฟะพั‡ะฐั‚ะบะพะฒะพะณะพ ะฝะฐะฑะพั€ัƒ ะฒะธ ัะฟะพั‡ะฐั‚ะบัƒ ะผะฐั”ั‚ะต ะฟั–ะดั‚ะฒะตั€ะดะธั‚ะธ ะฐะดั€ะตััƒ ะตะปะตะบั‚ั€ะพะฝะฝะพั— ะฟะพัˆั‚ะธ." @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "ะ”ะฐั‚ะฐ ะฝะฐั€ะพะดะถะตะฝะฝั" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "ะ—ะฐะฑะปะพะบะพะฒะฐะฝะพ" msgid "Blocked accounts" msgstr "ะ—ะฐะฑะปะพะบะพะฒะฐะฝั– ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "ะ—ะฐะฑะปะพะบะพะฒะฐะฝั– ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ" @@ -2282,7 +2244,7 @@ msgstr "ะ—ะฐะฑะปะพะบะพะฒะฐะฝั– ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ ะฝะต ะผะพะถัƒั‚ัŒ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "ะ—ะฐะฑะปะพะบะพะฒะฐะฝั– ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ ะฝะต ะผะพะถัƒั‚ัŒ ะฒะฐะผ ะฒั–ะดะฟะพะฒั–ะดะฐั‚ะธ, ะทะณะฐะดัƒะฒะฐั‚ะธ ะฒะฐั ัƒ ัะฒะพั—ั… ะฟะพัั‚ะฐั…, ั– ะฒะทะฐั”ะผะพะดั–ัั‚ะธ ะท ะฒะฐะผะธ ะฑัƒะดัŒ-ัะบะธะผ ั–ะฝัˆะธะผ ั‡ะธะฝะพะผ. ะ’ะธ ะฝะต ะฑัƒะดะตั‚ะต ะฑะฐั‡ะธั‚ะธ ั—ั…ะฝั– ะฟะพัั‚ะธ ั– ะฒะพะฝะธ ะฝะต ะฑัƒะดัƒั‚ัŒ ะฑะฐั‡ะธั‚ะธ ะฒะฐัˆั–." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ะ‘ะปะพะบัƒะฒะฐะฝะฝั ะฝะต ะฟะตั€ะตัˆะบะพะดะถะฐั” ะผั–ั‚ะฝะธะบัƒ ั€ะพะทะผั–ั‰ัƒะฒะฐั‚ะธ ะผั–ั‚ะบะธ ะฝะฐ ะฒะฐัˆ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ะฝะต ะผะพะถะต ะฟั–ะดั‚ะฒะตั€ะดะธั‚ะธ ะฐะฒั‚ะตะฝั‚ะธั‡ะฝั–ัั‚ัŒ ะทะฐะทะฝะฐั‡ะตะฝะพั— ะดะฐั‚ะธ." @@ -2330,7 +2293,7 @@ msgstr "Bluesky โ€” ะฒั–ะดะบั€ะธั‚ะฐ ะผะตั€ะตะถะฐ, ะฒ ัะบั–ะน ะฒะธ ะผะพะถะตั‚ะต msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky ะฝะฐะนะบั€ะฐั‰ะธะน ะท ะดั€ัƒะทัะผะธ!" @@ -2358,7 +2321,7 @@ msgstr "" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky ะพะฑะตั€ะต ะฝะฐะฑั–ั€ ั€ะตะบะพะผะตะฝะดะพะฒะฐะฝะธั… ะพะฑะปั–ะบะพะฒะธั… ะทะฐะฟะธัั–ะฒ ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ัƒ ะฒะฐัˆั–ะน ะผะตั€ะตะถั–." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะฑั–ะปัŒัˆะต ัั‚ั€ั–ั‡ะพะบ ะฝะฐ ัั‚ะพั€ั–ะฝั†ั– ะ’ั–ะดะบั€ะธั‚ั‚ั" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะฑั–ะปัŒัˆะต ะฟั€ะพะฟะพะทะธั†ั–ะน" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะฑั–ะปัŒัˆะต ะทะฐะฟั€ะพะฟะพะฝะพะฒะฐะฝะพะณะพ ะฝะฐ ัั‚ะพั€ั–ะฝั†ั– ะ’ั–ะดะบั€ะธั‚ั‚ั" @@ -2425,24 +2388,25 @@ msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะฑั–ะปัŒัˆะต ะทะฐะฟั€ะพะฟะพะฝะพะฒะฐะฝะพะณะพ ะฝะฐ msgid "Browse other feeds" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ั–ะฝัˆั– ัั‚ั€ั–ั‡ะบะธ" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "ะ’ั–ะด {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "" @@ -2504,11 +2468,11 @@ msgstr "ะ—ั– ัั‚ะฒะพั€ะตะฝะฝัะผ ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ ะฒะธ ะฟะพะณ msgid "By creating an account you agree to the <0>Terms of Service." msgstr "ะ—ั– ัั‚ะฒะพั€ะตะฝะฝัะผ ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ ะฒะธ ะฟะพะณะพะดะถัƒั”ั‚ะตัั ะท <0>ะฃะผะพะฒะฐะผะธ ะฝะฐะดะฐะฝะฝั ะฟะพัะปัƒะณ." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "ะšะฐะผะตั€ะฐ" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "ะกะบะฐััƒะฒะฐั‚ะธ ะฟะพัˆัƒะบ" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "ะงะฐั‚ ัั‚ะธัˆะตะฝะพ" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ั‡ะฐั‚ัƒ" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "ะกะฟะพะฒั–ั‰ะตะฝะฝั ั‡ะฐั‚ัƒ ัƒะฒั–ะผะบะฝะตะฝะพ" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "" @@ -2837,7 +2802,7 @@ msgstr "ะ—ะผั–ะฝะธั‚ะธ ะผะตั‚ะพะด ะฟั–ะดั‚ะฒะตั€ะดะถะตะฝะฝั ะดะพะผะตะฝัƒ" msgid "Choose Feeds" msgstr "ะžะฑั€ะฐั‚ะธ ัั‚ั€ั–ั‡ะบะธ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "ะžะฑั€ะฐั‚ะธ ะดะปั ะผะตะฝะต" @@ -2854,7 +2819,7 @@ msgstr "ะžะฑั€ะฐั‚ะธ ะปัŽะดะตะน" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "ะžะฑั€ะฐั‚ะธ ั†ะตะน ะบะพะปั–ั€ ะดะปั ัะฒะพะณะพ ะฐะฒะฐั‚ะฐั€ัƒ" @@ -2879,7 +2844,7 @@ msgstr "" msgid "Choose your password" msgstr "ะ’ะบะฐะถั–ั‚ัŒ ะฟะฐั€ะพะปัŒ" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "ะ’ะฐัˆ ะฟัะตะฒะดะพะฝั–ะผ" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "ะขะพั€ะบะฝั–ั‚ัŒัั, ั‰ะพะฑ ัะฟั€ะพะฑัƒะฒะฐั‚ะธ ะฝะฐะดั–ัะปะฐั‚ะธ ะฟะพะฒั–ะดะพะผะปะตะฝะฝั ะทะฝะพะฒ" @@ -3003,7 +2968,7 @@ msgstr "ะขะพั€ะบะฝั–ั‚ัŒัั, ั‰ะพะฑ ัะฟั€ะพะฑัƒะฒะฐั‚ะธ ะฝะฐะดั–ัะปะฐั‚ะธ ะฟ #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "ะขะพั€ะบะฝั–ั‚ัŒัั, ั‰ะพะฑ ัะฟั€ะพะฑัƒะฒะฐั‚ะธ ะฝะฐะดั–ัะปะฐั‚ะธ ะฟ msgid "Close" msgstr "ะ—ะฐะบั€ะธั‚ะธ" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "ะ—ะฐะบั€ะธั‚ะธ ะดั–ะฐะปะพะณะพะฒะต ะฒั–ะบะฝะพ" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "ะ—ะฐะบั€ะธั‚ะธ ะดั–ะฐะปะพะณะพะฒะต ะฒั–ะบะฝะพ" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "ะ—ะฐะบั€ะธะฒะฐั” ัะฟะพะฒั–ั‰ะตะฝะฝั ะฟั€ะพ ะพะฝะพะฒะปะตะฝะฝั ะฟะฐั€ะพะปั" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "ะšะพะปั–ั€ะฝะธะน ั€ะตะถะธะผ" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "ะšะพะผั–ะบัะธ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "ะŸั€ะฐะฒะธะปะฐ ัะฟั–ะปัŒะฝะพั‚ะธ" @@ -3141,7 +3106,7 @@ msgstr "ะŸั€ะฐะฒะธะปะฐ ัะฟั–ะปัŒะฝะพั‚ะธ" msgid "Complete onboarding and start using your account" msgstr "ะ—ะฐะฒะตั€ัˆะธั‚ะธ ะพะทะฝะฐะนะพะผะปะตะฝะฝั ั‚ะฐ ั€ะพะทะฟะพั‡ะฐั‚ะธ ะบะพั€ะธัั‚ัƒะฒะฐั‚ะธัั ะพะฑะปั–ะบะพะฒะธะผ ะทะฐะฟะธัะพะผ" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "ะ—ะฐะฒะตั€ัˆะธั‚ะธ ะทะฐะฒะดะฐะฝะฝั" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "ะะพะฒะธะน ะฟะพัั‚" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -3160,11 +3125,11 @@ msgstr "" msgid "Compose reply" msgstr "ะ’ั–ะดะฟะพะฒั–ัั‚ะธ" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "ะกั‚ะธัะบะฐะฝะฝั ะฒั–ะดะตะพ..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "ะกะปัƒะถะฑะฐ ะฟั–ะดั‚ั€ะธะผะบะธ" @@ -3253,7 +3218,7 @@ msgstr "" msgid "Content and media" msgstr "ะ’ะผั–ัั‚ ั‚ะฐ ะผะตะดั–ะฐ" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "ะ’ะผั–ัั‚ ั‚ะฐ ะผะตะดั–ะฐ" @@ -3265,10 +3230,6 @@ msgstr "ะ’ะผั–ัั‚ ะทะฐะฑะปะพะบะพะฒะฐะฝะพ" msgid "Content filters" msgstr "ะคั–ะปัŒั‚ั€ะธ ะบะพะฝั‚ะตะฝั‚ัƒ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "ะŸะพะฟะตั€ะตะดะถะตะฝะฝั ะฟั€ะพ ะฒะผั–ัั‚" msgid "Content warnings" msgstr "ะŸะพะฟะตั€ะตะดะถะตะฝะฝั ะฟั€ะพ ะฒะผั–ัั‚" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "ะขะปะพ ะบะพะฝั‚ะตะบัั‚ะฝะพะณะพ ะผะตะฝัŽ ะฝะฐั‚ะธัะฝั–ั‚ัŒ, ั‰ะพะฑ ะทะฐะบั€ะธั‚ะธ ะผะตะฝัŽ." @@ -3302,7 +3263,7 @@ msgstr "ะขะปะพ ะบะพะฝั‚ะตะบัั‚ะฝะพะณะพ ะผะตะฝัŽ ะฝะฐั‚ะธัะฝั–ั‚ัŒ, ั‰ะพะฑ ะทะฐ #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "ะŸั€ะพะดะพะฒะถะธั‚ะธ ะณั–ะปะบัƒ..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "ะกะบะพะฟั–ะนะพะฒะฐะฝะพ ะฒะตั€ัั–ัŽ ะทะฑั–ั€ะบะธ ะดะพ ะฑัƒั„ะตั€ะฐ ะพะฑะผั–ะฝัƒ" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "ะšะพะฟั–ัŽะฒะฐั‚ะธ ะฟะฐั€ะพะปัŒ ะทะฐัั‚ะพััƒะฝะบัƒ" msgid "Copy at:// URI" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "" @@ -3449,10 +3410,10 @@ msgstr "ะšะพะฟั–ัŽะฒะฐั‚ะธ ะฟะพัะธะปะฐะฝะฝั" msgid "Copy link to list" msgstr "ะšะพะฟั–ัŽะฒะฐั‚ะธ ะฟะพัะธะปะฐะฝะฝั ะฝะฐ ัะฟะธัะพะบ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "ะšะพะฟั–ัŽะฒะฐั‚ะธ ะฟะพัะธะปะฐะฝะฝั ะฝะฐ ะฟะพัั‚" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "ะšะพะฟั–ัŽะฒะฐั‚ะธ ั‚ะตะบัั‚ ะฟะพะฒั–ะดะพะผะปะตะฝะฝั" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "" @@ -3490,7 +3451,7 @@ msgstr "ะšะพะฟั–ัŽะฒะฐั‚ะธ ะทะฝะฐั‡ะตะฝะฝั ะทะฐะฟะธััƒ TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "ะŸะพะปั–ั‚ะธะบะฐ ะทะฐั…ะธัั‚ัƒ ะฐะฒั‚ะพั€ััŒะบะพะณะพ ะฟั€ะฐะฒะฐ" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "ะะต ะฒะดะฐะปะพััŒ ะทะฐะปะธัˆะธั‚ะธ ั‡ะฐั‚" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "ะะต ะฒะดะฐะปะพัั ะทะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ัั‚ั€ั–ั‡ะบัƒ" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "ะะต ะฒะดะฐะปะพััŒ ัั‚ะธัˆะธั‚ะธ ั‡ะฐั‚" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "ะกั‚ะฒะพั€ะธั‚ะธ" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "ะกั‚ะฒะพั€ะธั‚ะธ QR-ะบะพะด ะดะปั ะฟั–ะดะฑั–ั€ะบะธ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "ะกั‚ะฒะพั€ะธั‚ะธ ะฒะปะฐัะฝัƒ ะฟั–ะดะฑั–ั€ะบัƒ" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "ะกั‚ะฒะพั€ะตะฝะฝั ะฒะปะฐัะฝะพั— ะฟั–ะดะฑั–ั€ะบะธ ะดะปั ะผะตะฝะต" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "ะ ะตั”ัั‚ั€ะฐั†ั–ั" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "ะกั‚ะฒะพั€ะธั‚ะธ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั" @@ -3666,15 +3627,15 @@ msgstr "ะกั‚ะฒะพั€ะธั‚ะธ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "ะะฐั‚ะพะผั–ัั‚ัŒ ัั‚ะฒะพั€ะธั‚ะธ ะฐะฒะฐั‚ะฐั€" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "ะกั‚ะฒะพั€ะธั‚ะธ ั–ะฝัˆะธะน" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "ะšัƒะปัŒั‚ัƒั€ะฐ" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "ะขะตะผะฝะฐ" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "ะขะตะผะฝะฐ" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "ะขะตะผะฝะฐ ั‚ะตะผะฐ" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "ะขะธะฟะพะฒะพ" @@ -3894,7 +3855,7 @@ msgstr "ะ’ะธะดะฐะปะธั‚ะธ ะผั–ะน ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "ะ’ะธะดะฐะปะธั‚ะธ ะฟะพัั‚" @@ -3988,7 +3949,7 @@ msgstr "ะ”ั–ะฐะปะพะณ: ะฝะฐะปะฐัˆั‚ัƒะฒะฐั‚ะธ, ั…ั‚ะพ ะผะพะถะต ะฒะทะฐั”ะผะพะดั–ั msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "ะขัŒะผัะฝะฐ" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "ะ’ะธะผะบะฝะตะฝะพ" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "ะ’ะธะดะฐะปะธั‚ะธ" msgid "Discard changes?" msgstr "ะ’ั–ะดั…ะธะปะธั‚ะธ ะทะผั–ะฝะธ?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "ะ’ั–ะดั…ะธะปะธั‚ะธ ั‡ะตั€ะฝะตั‚ะบัƒ?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "ะะต ะทะฑะตั€ั–ะณะฐั‚ะธ ะฟะพัั‚?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "ะŸะพะฟั€ะพัะธั‚ะธ ะทะฐัั‚ะพััƒะฝะบะธ ะฝะต ะฟะพะบะฐะทัƒะฒะฐั‚ะธ ะผั–ะน ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั ะฑะตะท ะฒั…ะพะดัƒ" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "ะŸะพะฟั€ะพัะธั‚ะธ ะทะฐัั‚ะพััƒะฝะบะธ ะฝะต ะฟะพะบะฐะทัƒะฒะฐั‚ะธ ะผั–ะน msgid "Discover new custom feeds" msgstr "ะ’ั–ะดะบั€ะธั‚ะธ ะดะปั ัะตะฑะต ะฝะพะฒั– ัั‚ั€ั–ั‡ะบะธ" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "ะ’ั–ะดะบั€ะธั‚ะธ ะดะปั ัะตะฑะต ะฝะพะฒั– ัั‚ั€ั–ั‡ะบะธ" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "ะ’ั–ะดั…ะธะปะธั‚ะธ" @@ -4103,28 +4064,28 @@ msgstr "ะ’ั–ะดั…ะธะปะธั‚ะธ" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "ะŸั€ะพะฟัƒัั‚ะธั‚ะธ ะฟะพะผะธะปะบัƒ" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "ะŸั€ะพะฟัƒัั‚ะธั‚ะธ ะฟะพัั–ะฑะฝะธะบ ะฝะพะฒะพะณะพ ะบะพั€ะธัั‚ัƒะฒะฐั‡ะฐ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "ะŸะพะบะฐะทัƒะฒะฐั‚ะธ ะฑั–ะปัŒัˆั– ะผั–ั‚ะบะธ ะฐะปัŒั‚ะตั€ะฝะฐั‚ะธะฒะฝะพ msgid "Display name" msgstr "ะ†ะผ'ั" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "ะ“ะพั‚ะพะฒะพ" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "ะขะพั€ะบะฝั–ั‚ัŒัั ะดะฒั–ั‡ั– ะดะปั ะทะฐะบั€ะธั‚ั‚ั ะดั–ะฐะปะพะณัƒ" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ ะทะพะฑั€ะฐะถะตะฝะฝั" msgid "Edit interaction settings" msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ ะฝะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะฒะทะฐั”ะผะพะดั–ั—" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ ะผะพั— ัั‚ั€ั–ั‡ะบะธ" @@ -4406,6 +4368,11 @@ msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ ะผะพั— ัั‚ั€ั–ั‡ะบะธ" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ, ั…ั‚ะพ ะผะพะถะต ะฒั–ะดะฟะพะฒั–ะดะฐั‚ะธ" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "ะ ะตะดะฐะณัƒะฒะฐั‚ะธ ะฒะฐัˆัƒ ะฒะปะฐัะฝัƒ ะฟั–ะดะฑั–ั€ะบัƒ" @@ -4500,8 +4467,8 @@ msgstr "ะ’ะฑัƒะดะพะฒะฐะฝะธะน HTML ะบะพะด" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "ะ’ะฑัƒะดะพะฒะฐะฝะธะน ะฟะพัั‚" @@ -4509,7 +4476,7 @@ msgstr "ะ’ะฑัƒะดะพะฒะฐะฝะธะน ะฟะพัั‚" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "ะ’ัั‚ะฐะฒั‚ะต ั†ะตะน ะฟะพัั‚ ัƒ ะ’ะฐัˆ ัะฐะนั‚. ะŸั€ะพัั‚ะพ ัะบะพะฟั–ัŽะนั‚ะต ั†ะตะน ัะบั€ะธะฟั‚ ั– ะฒัั‚ะฐะฒั‚ะต ะนะพะณะพ ะฒ HTML ะบะพะด ะฒะฐัˆะพะณะพ ัะฐะนั‚ัƒ." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "ะ’ะฑัƒะดะพะฒะฐะฝะธะน ะฒั–ะดะตะพะฟะปะตั”ั€" @@ -4533,7 +4500,7 @@ msgstr "ะ”ะพะทะฒะพะปะธั‚ะธ ะฒะผั–ัั‚ ะดะปั ะดะพั€ะพัะปะธั…" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "ะฃะฒั–ะผะบะฝัƒั‚ะธ ะทะพะฒะฝั–ัˆะฝั– ะผะตะดั–ะฐ" msgid "Enable media players for" msgstr "ะฃะฒั–ะผะบะฝัƒั‚ะธ ะผะตะดั–ะฐะฟั€ะพะณั€ะฐะฒะฐั‡ั– ะดะปั" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "" msgid "Enabled" msgstr "ะฃะฒั–ะผะบะฝะตะฝะพ" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "ะšั–ะฝะตั†ัŒ ัั‚ั€ั–ั‡ะบะธ" @@ -4608,7 +4576,7 @@ msgstr "ะ’ะฒะตะดั–ั‚ัŒ ัะปะพะฒะพ ะฐะฑะพ ะผั–ั‚ะบัƒ" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "ะŸะพะฒะฝะพะตะบั€ะฐะฝะฝะธะน ั€ะตะถะธะผ" @@ -4650,11 +4618,11 @@ msgstr "ะ’ะฒะตะดั–ั‚ัŒ ะฟัะตะฒะดะพะฝั–ะผ ั‚ะฐ ะฟะฐั€ะพะปัŒ" msgid "Enters full screen" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "ะŸะพะผะธะปะบะฐ" @@ -4684,7 +4652,7 @@ msgstr "ะกั‚ะฐะปะฐัั ะฟะพะผะธะปะบะฐ ะฟั–ะด ั‡ะฐั ะทะฑะตั€ะตะถะตะฝะฝั" msgid "Error receiving captcha response." msgstr "ะŸะพะผะธะปะบะฐ ะพั‚ั€ะธะผะฐะฝะฝั ะฒั–ะดะฟะพะฒั–ะดั– Captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "" @@ -4696,8 +4664,8 @@ msgstr "ะ’ัั– ะผะพะถัƒั‚ัŒ ะฒั–ะดะฟะพะฒั–ะดะฐั‚ะธ" msgid "Everybody can reply to this post." msgstr "ะ’ัั– ะผะพะถัƒั‚ัŒ ะฒั–ะดะฟะพะฒั–ะดะฐั‚ะธ ะฝะฐ ั†ะตะน ะฟะพัั‚." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "ะ‘ัƒะดัŒ-ั…ั‚ะพ" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "ะ‘ัƒะดัŒ-ั…ั‚ะพ" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "ะžะบั€ั–ะผ ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ, ะฝะฐ ัะบะธั… ะฒะธ ะฟั–ะดะฟะธัะฐะฝ msgid "Excludes users you follow" msgstr "ะžะบั€ั–ะผ ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ, ะฝะฐ ัะบะธั… ะฒะธ ะฟั–ะดะฟะธัะฐะฝั–" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "ะ’ะธะนั‚ะธ ะท ะฟะพะฒะฝะพะตะบั€ะฐะฝะฝะพะณะพ ั€ะตะถะธะผัƒ" @@ -4755,11 +4723,11 @@ msgstr "ะ ะพะทะณะพั€ะฝัƒั‚ะธ ัะฟะธัะพะบ ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ" msgid "Expand or collapse the full post you are replying to" msgstr "ะ ะพะทะณะพั€ะฝัƒั‚ะธ ะฐะฑะพ ะทะณะพั€ะฝัƒั‚ะธ ะฒะตััŒ ะฟะพัั‚, ะฝะฐ ัะบะธะน ะฒะธ ะฒั–ะดะฟะพะฒั–ะดะฐั”ั‚ะต" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "" @@ -4802,15 +4770,15 @@ msgstr "ะ’ั–ะดะฒะตั€ั‚ะพ ะฐะฑะพ ะฟะพั‚ะตะฝั†ั–ะนะฝะพ ะฟั€ะพะฑะปะตะผะฝะธะน ะฒะผั– msgid "Explicit sexual images." msgstr "ะ’ั–ะดะฒะตั€ั‚ั– ัะตะบััƒะฐะปัŒะฝั– ะทะพะฑั€ะฐะถะตะฝะฝั." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "ะ—ะพะฒะฝั–ัˆะฝั– ะผะตะดั–ะฐ" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ะ—ะพะฒะฝั–ัˆะฝั– ะผะตะดั–ะฐ ะผะพะถัƒั‚ัŒ ะดะพะทะฒะพะปัั‚ะธ ะฒะตะฑัะฐะนั‚ะฐะผ ะทะฑะธั€ะฐั‚ะธ ั–ะฝั„ะพั€ะผะฐั†ั–ัŽ ะฟั€ะพ ะฒะฐั ั‚ะฐ ะฒะฐัˆ ะฟั€ะธัั‚ั€ั–ะน. ะ†ะฝั„ะพั€ะผะฐั†ั–ั ะฝะต ะฝะฐะดัะธะปะฐั”ั‚ัŒัั ั‚ะฐ ะฝะต ะทะฐะฟะธั‚ัƒั”ั‚ัŒัั, ะดะพะฟะพะบะธ ะฝะต ะฝะฐั‚ะธัะฝัƒั‚ะพ ะบะฝะพะฟะบัƒ ยซะ’ั–ะดั‚ะฒะพั€ะธั‚ะธยป." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะทะพะฒะฝั–ัˆะฝั–ั… ะผะตะดั–ะฐ" @@ -4886,7 +4854,7 @@ msgstr "ะะต ะฒะดะฐะปะพััŒ ะทะผั–ะฝะธั‚ะธ ะฟัะตะฒะดะพะฝั–ะผ. ะ‘ัƒะดัŒ ะปะฐัะบ #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "ะะต ะฒะดะฐะปะพัั ะทะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ะฟะฐั€ะฐะผะตั‚ั€ะธ ัั‚ั€ั–ั‡ะพะบ" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "ะะต ะฒะดะฐะปะพัั ะทะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ั€ะตะบะพะผะตะฝะดะพะฒะฐะฝั– ัั‚ั€ั–ั‡ะบะธ" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "ะะต ะฒะดะฐะปะพัั ะทะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ะทะฐะฟั€ะพะฟะพะฝะพะฒะฐะฝั– ะดะปั ั‡ะธั‚ะฐะฝะฝั ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ" @@ -5027,12 +4996,12 @@ msgstr "ะะต ะฒะดะฐะปะพัั ะทะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ะทะฐะฟั€ะพะฟะพะฝะพะฒะฐะฝั– ะด msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "ะกั‚ั€ั–ั‡ะบะฐ" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "ะกั‚ั€ั–ั‡ะบะธ ะพะฝะพะฒะปะตะฝะพ!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "" @@ -5273,34 +5238,22 @@ msgstr "" msgid "File saved successfully!" msgstr "ะคะฐะนะป ัƒัะฟั–ัˆะฝะพ ะทะฑะตั€ะตะถะตะฝะพ!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "ะคั–ะปัŒั‚ั€ัƒะฒะฐั‚ะธ ะทั– ัั‚ั€ั–ั‡ะพะบ" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "ะ—ะฝะฐะนั‚ะธ ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ ะดะปั ะฟั–ะดะฟะธัะบะธ" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "ะŸั–ะดะฟะธัะฐั‚ะธัั ะฝะฐ {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "" @@ -5453,11 +5406,11 @@ msgstr "" msgid "Follow 10 accounts" msgstr "" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "ะงะธั‚ะฐั‚ะธ 7 ะพะฑะปั–ะบะพะฒะธั… ะทะฐะฟะธัั–ะฒ" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "ะงะธั‚ะฐั‡ั– @{0}, ัะบะธั… ั‡ะธั‚ะฐั”ั‚ะต ะฒะธ" @@ -5544,7 +5497,7 @@ msgstr "ะงะธั‚ะฐั‡ั–, ัะบะธั… ั‡ะธั‚ะฐั”ั‚ะต ะฒะธ" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "ะงะธั‚ะฐัŽั‚ัŒ {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "" @@ -5578,21 +5531,21 @@ msgstr "" msgid "Following feed preferences" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ัั‚ั€ั–ั‡ะบะธ ั‚ะธั…, ะบะพะณะพ ะฒะธ ั‡ะธั‚ะฐั”ั‚ะต" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ัั‚ั€ั–ั‡ะบะธ ั‚ะธั…, ะบะพะณะพ ะฒะธ ั‡ะธั‚ะฐั”ั‚ะต" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "ะŸั–ะดะฟะธัะฐะฝะธะน(-ะฝะฐ) ะฝะฐ ะฒะฐั" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "ะจั€ะธั„ั‚" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "ะ ะพะทะผั–ั€ ัˆั€ะธั„ั‚ัƒ" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "ะ— ะผั–ั€ะบัƒะฒะฐะฝัŒ ะฑะตะทะฟะตะบะธ ะฒะธ ะฑะฐั‡ะธั‚ะต ั†ะตะน ะฟะฐั€ะพะปัŒ ะปะธัˆะต ะพะดะธะฝ ั€ะฐะท. ะฏะบั‰ะพ ะฒะธ ะฒั‚ั€ะฐั‚ะธั‚ะต ั†ะตะน ะฟะฐั€ะพะปัŒ ะทะฐัั‚ะพััƒะฝะบัƒ, ะฒะฐะผ ะฟะพั‚ั€ั–ะฑะฝะพ ะฑัƒะดะต ะทะณะตะฝะตั€ัƒะฒะฐั‚ะธ ะฝะพะฒะธะน." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "ะ”ะปั ะพั‚ั€ะธะผะฐะฝะฝั ะฝะฐะนะบั€ะฐั‰ะพะณะพ ะบะพั€ะธัั‚ัƒะฒะฐั†ัŒะบะพะณะพ ะดะพัะฒั–ะดัƒ ั€ะตะบะพะผะตะฝะดัƒั”ั‚ัŒัั ะฒะธะบะพั€ะธัั‚ะพะฒัƒะฒะฐั‚ะธ ัˆั€ะธั„ั‚ ั‚ะตะผะธ." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "" @@ -5628,7 +5581,7 @@ msgstr "" msgid "Forever" msgstr "ะะฐะทะฐะฒะถะดะธ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "ะ—ะฐะฑัƒะปะธ ะฟะฐั€ะพะปัŒ?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "ะ’ั–ะด <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "ะ—ะณะตะฝะตั€ัƒะฒะฐั‚ะธ ะพัะพะฑะธัั‚ัƒ ะฟั–ะดะฑั–ั€ะบัƒ" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "ะ”ะพะฟะพะผะพะณะฐ" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "" msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "ะกั‚ะฒะพั€ะธั‚ะธ ะพะฑะปะธั‡ั‡ั ะดะปั ะฒะฐัˆะพะณะพ ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "ะฅะตัˆั‚ะตะณ" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "ะ’ะธะฝะธะบะปะธ ะฟั€ะพะฑะปะตะผะธ?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "ะ”ะพะฒั–ะดะบะฐ" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "ะ”ะฐะนั‚ะต ะปัŽะดัะผ ะทะฝะฐั‚ะธ, ั‰ะพ ะฒะธ ะฝะต ะฑะพั‚, ะทะฐะฒะฐะฝั‚ะฐะถะธะฒัˆะธ ะทะพะฑั€ะฐะถะตะฝะฝั ะฐะฑะพ ัั‚ะฒะพั€ะธะฒัˆะธ ะฐะฒะฐั‚ะฐั€." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "" @@ -6148,9 +6102,10 @@ msgstr "" msgid "Hidden list" msgstr "ะŸั€ะธั…ะพะฒะฐะฝะธะน ัะฟะธัะพะบ" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "ะŸั€ะธั…ะพะฒะฐะฝะธะน ัะฟะธัะพะบ" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "ะŸั€ะธั…ะพะฒะฐั‚ะธ" @@ -6198,7 +6154,7 @@ msgstr "ะŸั€ะธั…ะพะฒะฐั‚ะธ ะฒั–ะดะฟะพะฒั–ะดัŒ ะฒั–ะด ัƒัั–ั…" msgid "Hide reply for me" msgstr "ะŸั€ะธั…ะพะฒะฐั‚ะธ ะฒั–ะดะฟะพะฒั–ะดัŒ ะฒั–ะด ะผะตะฝะต" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "" @@ -6218,16 +6174,18 @@ msgstr "ะŸั€ะธั…ะพะฒะฐั‚ะธ ั†ัŽ ะฒั–ะดะฟะพะฒั–ะดัŒ?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "" @@ -6240,7 +6198,7 @@ msgstr "ะŸั€ะธั…ะพะฒะฐั‚ะธ ัะฟะธัะพะบ ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ" msgid "Hide verification badges" msgstr "" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "" @@ -6293,8 +6251,8 @@ msgstr "ะฅะผ, ะผะธ ะฝะต ะทะผะพะณะปะธ ะทะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ั†ะตะน ัะตั€ะฒั–ั msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "ะงะตะบะฐะน-ะฝะพ! ะœะธ ะฟะพัั‚ัƒะฟะพะฒะพ ะดะฐั”ะผะพ ะดะพัั‚ัƒะฟ ะดะพ ะฒั–ะดะตะพ, ะฐ ะฒะธ ะฟะพะบะธ ั‰ะพ ั‡ะตะบะฐั”ั‚ะต ะฒ ั‡ะตั€ะทั–. ะกะฟั€ะพะฑัƒะนั‚ะต ะฟั–ะทะฝั–ัˆะต!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "ะฏะบั‰ะพ ะฒะธ ั…ะพั‡ะตั‚ะต ะทะผั–ะฝะธั‚ะธ ะฟะฐั€ะพะปัŒ, ะผะธ ะฝะฐะดั–ัˆะปะตะผะพ ะฒะฐะผ ะบะพะด, ั‰ะพะฑ ะฟะตั€ะตะบะพะฝะฐั‚ะธัั, ั‰ะพ ั†ะต ะฒะฐัˆ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "ะะตะฒั–ั€ะฝะต ั–ะผ'ั ะบะพั€ะธัั‚ัƒะฒะฐั‡ะฐ ะฐะฑะพ ะฟะฐั€ะพะปัŒ" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "ะšะพะด ะทะฐะฟั€ะพัˆะตะฝะฝั" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "ะšะพะด ะทะฐะฟั€ะพัˆะตะฝะฝั ะฝะต ะฟั€ะธะนะฝัั‚ะพ. ะŸะตั€ะตะบะพะฝะฐะนั‚ะตัั ะฒ ะนะพะณะพ ะฟั€ะฐะฒะธะปัŒะฝะพัั‚ั– ั‚ะฐ ะฟะพะฒั‚ะพั€ั–ั‚ัŒ ัะฟั€ะพะฑัƒ." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "ะ—ะฐั€ะฐะท ะฒะธ ะฝะฐ ัะฐะผะพั‚ั–. ะ”ะพะดะฐะนั‚ะต ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ะดะพ ะฒะปะฐัะฝะพั— ะฟั–ะดะฑั–ั€ะบะธ ัˆัƒะบะฐัŽั‡ะธ ั—ั… ะฒะธั‰ะต." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ะ’ะฐะบะฐะฝัั–ั: {0}" @@ -6816,8 +6766,8 @@ msgstr "ะŸั€ะธั”ะดะฝะฐั‚ะธัั ะดะพ ั€ะพะทะผะพะฒะธ" msgid "Journalism" msgstr "ะ–ัƒั€ะฝะฐะปั–ัั‚ะธะบะฐ" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0} ะดะพะดะฐะฒ ะผั–ั‚ะบะธ." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "ะะฒั‚ะพั€ ะดะพะดะฐะฒ ะผั–ั‚ะบะธ." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "ะœั–ั‚ะบะธ" @@ -6852,7 +6802,7 @@ msgstr "ะœั–ั‚ะบะธ ะดะพะดะฐะฝะพ" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ะœั–ั‚ะบะธ ั” ะฐะฝะพั‚ะฐั†ั–ัะผะธ ะฝะฐ ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ั– ะฒะผั–ัั‚. ะ’ะพะฝะธ ะผะพะถัƒั‚ัŒ ะฒะธะบะพั€ะธัั‚ะฐะฝั– ะดะปั ะฟั€ะธั…ะพะฒะฐะฝะฝั, ะฟะพะฟะตั€ะตะดะถะตะฝะฝั ั‚ะฐ ะบะฐั‚ะตะณะพั€ะธะทะฐั†ั–ั— ะผะตั€ะตะถั–." @@ -6864,7 +6814,7 @@ msgstr "ะœั–ั‚ะบะธ ะฝะฐ ะฒะฐัˆะพะผัƒ ะพะฑะปั–ะบะพะฒะพะผัƒ ะทะฐะฟะธัั–" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะผะพะฒะธ" @@ -6874,7 +6824,7 @@ msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะผะพะฒะธ" msgid "Languages" msgstr "ะœะพะฒะธ" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "ะ‘ั–ะปัŒัˆะต" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "ะะตั‰ะพะดะฐะฒะฝั–" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "ะ”ั–ะทะฝะฐั‚ะธัั ะฑั–ะปัŒัˆะต" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "ะ”ั–ะทะฝะฐั‚ะธัั ะฑั–ะปัŒัˆะต ะฟั€ะพ ั†ะต ะฟะพะฟะตั€ะตะดะถะตะฝะฝั" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "ะ”ั–ะทะฝะฐั‚ะธัั ะฑั–ะปัŒัˆะต." @@ -6993,8 +6943,8 @@ msgstr "ะ’ะธะนั‚ะธ" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "ะ—ะฐะปะธัˆะธั‚ะธ Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "ั‰ะต ะทะฐะปะธัˆะธะปะพัั." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "ะ”ะพะทะฒะพะปัŒั‚ะต ะพะฑั€ะฐั‚ะธ ะผะตะฝั–" @@ -7057,7 +7007,7 @@ msgstr "ะ—ะปั–ั‚ะฐั”ะผะพ!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "ะกะฒั–ั‚ะปะฐ" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "ะกะฒั–ั‚ะปะฐ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "ะ’ะฟะพะดะพะฑะฐั‚ะธ" @@ -7076,7 +7026,7 @@ msgstr "ะ’ะฟะพะดะพะฑะฐั‚ะธ" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "ะ’ะฟะพะดะพะฑะฐั‚ะธ 10 ะฟะพัั‚ั–ะฒ" @@ -7085,7 +7035,7 @@ msgstr "ะ’ะฟะพะดะพะฑะฐั‚ะธ 10 ะฟะพัั‚ั–ะฒ" msgid "Like 10 posts to train the Discover feed" msgstr "ะ’ะฟะพะดะพะฑะฐั‚ะธ 10 ะฟะพัั‚ั–ะฒ ะทะฐะดะปั ั‚ั€ะตะฝัƒะฒะฐะฝะฝั ะกั‚ั€ั–ั‡ะบะธ ะฒั–ะดะบั€ะธั‚ั‚ั" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "ะ’ะฟะพะดะพะฑะฐั‚ะธ ั†ัŽ ัั‚ั€ั–ั‡ะบัƒ" @@ -7093,8 +7043,8 @@ msgstr "ะ’ะฟะพะดะพะฑะฐั‚ะธ ั†ัŽ ัั‚ั€ั–ั‡ะบัƒ" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "ะ’ะฟะพะดะพะฑะฐะฝะพ" @@ -7111,27 +7061,45 @@ msgstr "ะ’ะฟะพะดะพะฑะฐะฝะพ" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "ะฃะฟะพะดะพะฑะฐะฝะฝั" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "ะฃะฟะพะดะพะฑะฐะฝะฝั ั†ัŒะพะณะพ ะฟะพัั‚ัƒ" @@ -7144,7 +7112,7 @@ msgstr "" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "ะกะฟะธัะพะบ" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "ะกะฟะธัะพะบ ะฑั–ะปัŒัˆะต ะฝะต ั–ะณะฝะพั€ะพะฒะฐะฝะพ" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "ะ—ะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ะฑั–ะปัŒัˆะต" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "ะ—ะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ะฑั–ะปัŒัˆะต ะทะฐะฟั€ะพะฟะพะฝะพะฒะฐะฝะธั… ัั‚ั€ั–ั‡ะพะบ" @@ -7292,8 +7260,8 @@ msgstr "ะ—ะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ะฑั–ะปัŒัˆะต ะทะฐะฟั€ะพะฟะพะฝะพะฒะฐะฝะธั… ัั‚ั€ msgid "Load new notifications" msgstr "ะ—ะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ะฝะพะฒั– ัะฟะพะฒั–ั‰ะตะฝะฝั" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "ะ—ะฒั–ั‚" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "ะ—ะณะตะฝะตั€ัƒะฒะฐั‚ะธ ะดะปั ะผะตะฝะต" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "ะ’ั–ะดะผั–ั‚ะธั‚ะธ ัะบ ะฟั€ะพั‡ะธั‚ะฐะฝะต" msgid "Marked all as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "ะœะตะดั–ะฐ" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "ะœะตะดั–ะฐะฒะผั–ัั‚, ัะบะธะน ะผะพะถะต ะฑัƒั‚ะธ ั‚ั€ะธะฒะพะถะฝะธะผ ะฐะฑะพ ะฝะตะดะพั€ะตั‡ะฝะธะผ ะดะปั ะฟะตะฒะฝะธั… ะณะปัะดะฐั‡ั–ะฒ." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "ะทะณะฐะดะฐะฝั– ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "ะ—ะณะฐะดัƒะฒะฐะฝะฝั" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "ะŸะพะฒั–ะดะพะผะปะตะฝะฝั ะฒะธะดะฐะปะตะฝะพ" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "ะŸะพะฒั–ะดะพะผะปะตะฝะฝั" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "ะœะพะดะตั€ะฐั†ั–ั" @@ -7636,7 +7608,7 @@ msgstr "ะกะฟะธัะพะบ ะผะพะดะตั€ะฐั†ั–ั— ะพะฝะพะฒะปะตะฝะพ" msgid "Moderation lists" msgstr "ะกะฟะธัะบะธ ะดะปั ะผะพะดะตั€ะฐั†ั–ั—" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "ะกะฟะธัะบะธ ะดะปั ะผะพะดะตั€ะฐั†ั–ั—" @@ -7645,7 +7617,7 @@ msgstr "ะกะฟะธัะบะธ ะดะปั ะผะพะดะตั€ะฐั†ั–ั—" msgid "moderation settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะผะพะดะตั€ะฐั†ั–ั—" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "ะกั‚ะฐั‚ัƒั ะผะพะดะตั€ะฐั†ั–ั—" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "ะ†ะณะฝะพั€ะพะฒะฐะฝั– ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "ะ†ะณะฝะพั€ะพะฒะฐะฝั– ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "ะะตะฒะฐะถะปะธะฒะพ, ัั‚ะฒะพั€ั–ั‚ัŒ ะดะปั ะผะตะฝะต ะฟัะตะฒะดะพะฝั–ะผ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "ะะพะฒะธะน" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "ะะพะฒะธะน ั‡ะฐั‚" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "ะะพะฒะธะน ะฟะฐั€ะพะปัŒ" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "ะะพะฒะธะน ะฟะพัั‚" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "ะกะฟะพั‡ะฐั‚ะบัƒ ะฝะฐะนะฝะพะฒั–ัˆั–" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "ะะพะฒะธะฝะธ" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "ะะฐัั‚ัƒะฟะฝะต ะทะพะฑั€ะฐะถะตะฝะฝั" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "ะฉะต ะฝะตะผะฐั” ะฟะฐั€ะพะปั–ะฒ ะทะฐัั‚ะพััƒะฝะบัƒ" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "ะกั‚ั€ั–ั‡ะพะบ ะฝะต ะทะฝะฐะนะดะตะฝะพ. ะกะฟั€ะพะฑัƒะนั‚ะต ะฟะพัˆัƒะบะฐั‚ะธ ั‰ะพััŒ ั–ะฝัˆะต." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "ะฉะต ะฝะตะผะฐั” ะฒะฟะพะดะพะฑะฐะฝัŒ" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "ะ’ะธ ะฑั–ะปัŒัˆะต ะฝะต ั‡ะธั‚ะฐั”ั‚ะต {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "ะฉะต ะฝะตะผะฐั” ะฟะพะฒั–ะดะพะผะปะตะฝัŒ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "ะั–ั…ั‚ะพ, ะพะบั€ั–ะผ ะฐะฒั‚ะพั€ะฐ, ะฝะต ะผะพะถะต ั†ะธั‚ัƒะฒะฐั‚ะธ ั†ะต msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "ะฉะต ะฝะตะผะฐั” ั†ะธั‚ัƒะฒะฐะฝัŒ" @@ -8198,11 +8190,7 @@ msgstr "ะฉะต ะฝะตะผะฐั” ั†ะธั‚ัƒะฒะฐะฝัŒ" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "ะ ะตะทัƒะปัŒั‚ะฐั‚ะธ ะฒั–ะดััƒั‚ะฝั–" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "ะั–ั‡ะพะณะพ ะฝะต ะทะฝะฐะนะดะตะฝะพ" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "" @@ -8236,23 +8224,23 @@ msgstr "ะั–ั‡ะพะณะพ ะฝะต ะทะฝะฐะนะดะตะฝะพ" msgid "No results found for \"{query}\"" msgstr "ะั–ั‡ะพะณะพ ะฝะต ะทะฝะฐะนะดะตะฝะพ ะทะฐ ะทะฐะฟะธั‚ะพะผ ยซ{query}ยป" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "ะั–, ะดัะบัƒัŽ" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "ะั–ั…ั‚ะพ" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "ะŸะพะบะธ ั‰ะพ ั†ะต ะฝั–ะบะพะผัƒ ะฝะต ัะฟะพะดะพะฑะฐะปะพัั. ะœะพะถะปะธะฒะพ, ะฒะธ ะฟะพะฒะธะฝะฝั– ะฑัƒั‚ะธ ะฟะตั€ัˆะธะผ!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "ะั–ั…ั‚ะพ ั‰ะต ั†ะต ะฝะต ั†ะธั‚ัƒะฒะฐะฒ. ะ™ะผะพะฒั–ั€ะฝะพ, ะฒะธ ะผะฐั”ั‚ะต ะฑัƒั‚ะธ ะฟะตั€ัˆะธะผ!" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "ะะตัะตะบััƒะฐะปัŒะฝะฐ ะพะณะพะปะตะฝั–ัั‚ัŒ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "ะะต ะทะฝะฐะนะดะตะฝะพ" @@ -8333,7 +8325,7 @@ msgstr "ะŸั€ะธะผั–ั‚ะบะฐ ั‰ะพะดะพ ะฟะพัˆะธั€ะตะฝะฝั" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "ะŸั€ะธะผั–ั‚ะบะฐ: Bluesky ั” ะฒั–ะดะบั€ะธั‚ะพัŽ ั– ะฟัƒะฑะปั–ั‡ะฝะพัŽ ะผะตั€ะตะถะตัŽ. ะฆะตะน ะฟะฐั€ะฐะผะตั‚ั€ ะพะฑะผะตะถัƒั” ะฒะธะดะธะผั–ัั‚ัŒ ะฒะฐัˆะพะณะพ ะฒะผั–ัั‚ัƒ ะปะธัˆะต ัƒ ะทะฐัั‚ะพััƒะฝะบะฐั… ั– ะฝะฐ ัะฐะนั‚ั– Bluesky, ะฐะปะต ั–ะฝัˆั– ะทะฐัั‚ะพััƒะฝะบะธ ะผะพะถัƒั‚ัŒ ั†ัŒะพะณะพ ะฝะต ะดะพั‚ั€ะธะผัƒะฒะฐั‚ะธัั. ะ’ะฐัˆ ะฒะผั–ัั‚ ะฒัะต ั‰ะต ะผะพะถะต ะฑัƒั‚ะธ ะฟะพะบะฐะทะฐะฝะธะน ะฒั–ะดะฒั–ะดัƒะฒะฐั‡ะฐะผ ะฑะตะท ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ ั–ะฝัˆะธะผะธ ะทะฐัั‚ะพััƒะฝะบะฐะผะธ ั– ะฒะตะฑัะฐะนั‚ะฐะผะธ." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ัะฟะพะฒั–ั‰ะตะฝัŒ" @@ -8353,11 +8345,12 @@ msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ัะฟะพะฒั–ั‰ะตะฝัŒ" msgid "Notification sounds" msgstr "ะ—ะฒัƒะบะธ ัะฟะพะฒั–ั‰ะตะฝัŒ" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "ะž, ะฝั–!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "ะ”ะพะฑั€ะต" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "ะกะบะธะฝัƒั‚ะธ ะพะทะฝะฐะนะพะผะปะตะฝะฝั" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "ะžะดะฝะฐ ะฐะฑะพ ะดะตะบั–ะปัŒะบะฐ GIF ะฝะต ะผะฐัŽั‚ัŒ ะพะฟะธัะพะฒะพะณะพ ั‚ะตะบัั‚ัƒ." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "ะ”ะปั ะพะดะฝะพะณะพ ะฐะฑะพ ะบั–ะปัŒะบะพั… ะทะพะฑั€ะฐะถะตะฝัŒ ะฒั–ะดััƒั‚ะฝั–ะน ะพะฟะธั." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "ะžะดะฝะต ะฐะฑะพ ะฑั–ะปัŒัˆะต ะฒั–ะดะตะพ ะฝะต ะผะฐัŽั‚ัŒ ะพะฟะธัะพะฒะพะณะพ ั‚ะตะบัั‚ัƒ." @@ -8471,7 +8466,7 @@ msgstr "ะขั–ะปัŒะบะธ {0} ะผะพะถัƒั‚ัŒ ะฒั–ะดะฟะพะฒั–ะดะฐั‚ะธ." #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "ะŸั–ะดั‚ั€ะธะผัƒัŽั‚ัŒัั ะปะธัˆะต ั„ะฐะนะปะธ WebVTT (.vtt)" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "ะžะน!" @@ -8544,7 +8543,7 @@ msgstr "ะžะน!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "ะ’ั–ะดะบั€ะธั‚ะธ ัั‚ะฒะพั€ัŽะฒะฐั‡ ะฐะฒะฐั‚ะฐั€ั–ะฒ" @@ -8570,21 +8569,22 @@ msgstr "ะ’ั–ะดะบั€ะธั‚ะธ ะฝะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ั€ะพะทะผะพะฒะธ" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "ะ•ะผะพะดะถั–" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "ะ’ั–ะดะบั€ะธั‚ะธ ะผะตะฝัŽ ะฝะฐะปะฐัˆั‚ัƒะฒะฐะฝัŒ ัั‚ั€ั–ั‡ะบะธ" @@ -8627,7 +8627,7 @@ msgstr "" msgid "Open muted words and tags settings" msgstr "ะ’ั–ะดะบั€ะธั‚ะธ ะฝะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ั–ะณะฝะพั€ัƒะฒะฐะฝะฝั ัะปั–ะฒ ั– ะผั–ั‚ะพะบ" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "" @@ -8699,7 +8699,7 @@ msgstr "ะ’ั–ะดะบั€ะธั” ะดะพะดะฐั‚ะบะพะฒัƒ ั–ะฝั„ะพั€ะผะฐั†ั–ัŽ ะฟั€ะพ ะทะฐะฟะธั msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "ะ’ั–ะดะบั€ะธั” ะบะฐะผะตั€ัƒ ะฝะฐ ะฟั€ะธัั‚ั€ะพั—" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "ะ’ั–ะดะบั€ะธั” ะฟั€ะพั†ะตั ัั‚ะฒะพั€ะตะฝะฝั ะฝะพะฒะพะณะพ ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ Bluesky" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "ะŸะฐั€ะพะปัŒ ะทะผั–ะฝะตะฝะพ!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "ะŸะฐัƒะทะฐ" @@ -8925,12 +8925,12 @@ msgstr "ะŸะฐัƒะทะฐ" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "ะŸั€ะธะทัƒะฟะธะฝะธั‚ะธ ะฒั–ะดะตะพ" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "ะ›ัŽะดะธ" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "ะ›ัŽะดะธ, ัะบะธั… ั‡ะธั‚ะฐั” @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "ะ›ัŽะดะธ, ัะบั– ั‡ะธั‚ะฐัŽั‚ัŒ @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "ะ—ะพะฑั€ะฐะถะตะฝะฝั, ะฟั€ะธะทะฝะฐั‡ะตะฝั– ะดะปั ะดะพั€ะพัะปะธั…." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -9034,7 +9034,7 @@ msgstr "" msgid "Pin to home" msgstr "ะ—ะฐะบั€ั–ะฟะธั‚ะธ ะฝะฐ ะณะพะปะพะฒะฝั–ะน" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "ะ—ะฐะบั€ั–ะฟะธั‚ะธ ะฝะฐ ะณะพะปะพะฒะฝั–ะน" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "ะ—ะฐะบั€ั–ะฟะปะตะฝั–" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "ะŸั€ะธะบั€ั–ะฟะปะตะฝะพ ะดะพ ะฒะฐัˆะธั… ัั‚ั€ั–ั‡ะพะบ" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "ะ’ั–ะดั‚ะฒะพั€ะธั‚ะธ" @@ -9076,8 +9076,8 @@ msgstr "ะ’ั–ะดั‚ะฒะพั€ะธั‚ะธ {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "ะ’ั–ะดั‚ะฒะพั€ะธั‚ะธ ะฒั–ะดะตะพ" @@ -9109,11 +9109,11 @@ msgstr "" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "ะŸั€ะพัะธะผะพ ะพะฑั€ะฐั‚ะธ ะฟัะตะฒะดะพะฝั–ะผ." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "ะŸั€ะพัะธะผะพ ะพะฑั€ะฐั‚ะธ ะฒะฐัˆ ะฟะฐั€ะพะปัŒ." @@ -9122,7 +9122,7 @@ 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:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "ะŸั€ะพัะธะผะพ ะทะฐะฒะตั€ัˆะธั‚ะธ ะฟะตั€ะตะฒั–ั€ะบัƒ Captcha." @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "ะŸั€ะพัะธะผะพ ะฒะฒะตัั‚ะธ ะฐะดั€ะตััƒ ะตะป. ะฟะพัˆั‚ะธ." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "ะŸะพะปั–ั‚ะธะบะฐ" @@ -9269,7 +9269,7 @@ msgstr "ะŸะพะปั–ั‚ะธะบะฐ" msgid "Porn" msgstr "ะŸะพั€ะฝะพะณั€ะฐั„ั–ั" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "ะ—ะฐะฟะพัั‚ะธั‚ะธ" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "ะ—ะฐะฟะพัั‚ะธั‚ะธ" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "ะžะฟัƒะฑะปั–ะบัƒะฒะฐั‚ะธ ะฒัะต" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "ะŸะพัั‚ ะฒั–ะด @{0}" @@ -9340,7 +9340,7 @@ msgstr "ะŸะพัั‚ ะฟั€ะธั…ะพะฒะฐะฝะพ ะฒะฐะผะธ" msgid "Post interaction settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะฒะทะฐั”ะผะพะดั–ั— ะท ะฟะพัั‚ะพะผ" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "ะŸะพัั‚ ะทะฐะบั€ั–ะฟะปะตะฝะพ" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "ะŸะพัั‚ ะฒั–ะดะบั€ั–ะฟะปะตะฝะพ" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "ะŸะพัั‚ะธ" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "ะŸะพัั‚ะธ ะผะพะถัƒั‚ัŒ ะฑัƒั‚ะธ ะฟั€ะธะณะปัƒัˆะตะฝั– ะทะฐะปะตะถะฝะพ ะฒั–ะด ั—ั…ะฝัŒะพะณะพ ั‚ะตะบัั‚ัƒ, ั‚ะตะณั–ะฒ ะฐะฑะพ ะพะฑะพั…. ะœะธ ั€ะตะบะพะผะตะฝะดัƒั”ะผะพ ัƒะฝะธะบะฐั‚ะธ ะทะฐะณะฐะปัŒะฝะธั… ัะปั–ะฒ, ั‰ะพ ะท'ัะฒะปััŽั‚ัŒัั ัƒ ะฑะฐะณะฐั‚ัŒะพั… ะฟะพัั‚ะฐั…, ะพัะบั–ะปัŒะบะธ ั†ะต ะผะพะถะต ะฟั€ะธะทะฒะตัั‚ะธ ะดะพ ั‚ะพะณะพ, ั‰ะพ ะถะพะดะตะฝ ะฟะพัั‚ ะฝะต ะฟะพะบะฐะทัƒะฒะฐั‚ะธะผะตั‚ัŒัั." @@ -9398,6 +9396,10 @@ msgstr "ะŸะพัั‚ะธ ะผะพะถัƒั‚ัŒ ะฑัƒั‚ะธ ะฟั€ะธะณะปัƒัˆะตะฝั– ะทะฐะปะตะถะฝะพ ะฒ msgid "Posts hidden" msgstr "ะŸะพัั‚ะธ ะฟั€ะธั…ะพะฒะฐะฝะพ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "ะšะพะฝั„ั–ะดะตะฝั†ั–ะนะฝั–ัั‚ัŒ" msgid "Privacy and security" msgstr "ะšะพะฝั„ั–ะดะตะฝั†ั–ะนะฝั–ัั‚ัŒ ั‚ะฐ ะฑะตะทะฟะตะบะฐ" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "ะšะพะฝั„ั–ะดะตะฝั†ั–ะนะฝั–ัั‚ัŒ ั‚ะฐ ะฑะตะทะฟะตะบะฐ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "ะŸะพะปั–ั‚ะธะบะฐ ะบะพะฝั„ั–ะดะตะฝั†ั–ะนะฝะพัั‚ั–" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "ะžะฑั€ะพะฑะบะฐ ะฒั–ะดะตะพ..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "" @@ -9599,12 +9602,12 @@ msgstr "ะฆะธั‚ัƒะฒะฐะฝะฝั ะฟะพัั‚ั–ะฒ ะฒะธะผะบะฝะตะฝะพ" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "ะฆะธั‚ัƒะฒะฐะฝะฝั" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "ะฆะธั‚ัƒะฒะฐะฝะฝั ั†ัŒะพะณะพ ะฟะพัั‚ะฐ" @@ -9647,7 +9650,7 @@ msgstr "ะŸะพะฒั‚ะพั€ะฝะฐ ะฐะบั‚ะธะฒะฐั†ั–ั ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "" @@ -9687,11 +9690,11 @@ msgstr "ะงะธั‚ะฐั‚ะธ ะŸะพะปั–ั‚ะธะบัƒ ะบะพะฝั„ั–ะดะตะฝั†ั–ะนะฝะพัั‚ั– Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "ะงะธั‚ะฐั‚ะธ ะฃะผะพะฒะธ ะฒะธะบะพั€ะธัั‚ะฐะฝะฝั Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "ะŸะพะฒั‚ะพั€ะฝะต ะท'ั”ะดะฝะฐะฝะฝั" @@ -9748,7 +9747,7 @@ msgstr "" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "ะŸะตั€ะตะทะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ั€ะพะทะผะพะฒะธ" @@ -9766,7 +9765,7 @@ msgstr "ะŸะตั€ะตะทะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ั€ะพะทะผะพะฒะธ" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "ะ’ะธะดะฐะปะธั‚ะธ" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "ะ’ะธะดะฐะปะธั‚ะธ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "ะ’ะธะปัƒั‡ะธั‚ะธ ะท ะผะพั—ั… ัั‚ั€ั–ั‡ะพะบ" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "ะŸั€ะธะฑั€ะฐั‚ะธ ะทั– ัˆะฒะธะดะบะพะณะพ ะดะพัั‚ัƒะฟัƒ?" @@ -9862,7 +9861,7 @@ msgstr "ะŸั€ะธะฑั€ะฐั‚ะธ ะทั– ัˆะฒะธะดะบะพะณะพ ะดะพัั‚ัƒะฟัƒ?" msgid "Remove from saved feeds" msgstr "ะŸั€ะธะฑั€ะฐั‚ะธ ะทั– ะทะฑะตั€ะตะถะตะฝะธั… ัั‚ั€ั–ั‡ะพะบ" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "ะ’ะธะดะฐะปะธั‚ะธ ะทะพะฑั€ะฐะถะตะฝะฝั" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "ะ’ะธะดะฐะปะตะฝะพ ะทั– ัะฟะธัะบัƒ" msgid "Removed from saved feeds" msgstr "ะ’ะธะปัƒั‡ะตะฝะพ ะทั– ะทะฑะตั€ะตะถะตะฝะธั… ัั‚ั€ั–ั‡ะพะบ" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "ะ’ั–ะดะฟะพะฒั–ะดั–" @@ -10037,7 +10037,7 @@ msgstr "ะ’ั–ะดะฟะพะฒั–ะดั– ะฒ ั†ัŒะพะผัƒ ะฟะพัั‚ั– ะฒะธะผะบะฝะตะฝะพ." msgid "Reply" msgstr "ะ’ั–ะดะฟะพะฒั–ัั‚ะธ" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "ะ’ั–ะดะฟะพะฒั–ัั‚ะธ" @@ -10098,8 +10098,8 @@ msgstr "ะŸะพัะบะฐั€ะถะธั‚ะธัั ะฝะฐ ั€ะพะทะผะพะฒัƒ" msgid "Report dialog" msgstr "ะ”ั–ะฐะปะพะณะพะฒะต ะฒั–ะบะฝะพ ะดะปั ัะบะฐั€ะณ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "ะŸะพัะบะฐั€ะถะธั‚ะธััŒ ะฝะฐ ัั‚ั€ั–ั‡ะบัƒ" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "ะ’ะธ ะทั€ะพะฑะธะปะธ ั€ะตะฟะพัั‚" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "ะ ะตะฟะพัั‚ะธ ั†ัŒะพะณะพ ะฟะพัั‚ะฐ" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "ะŸะพะฒั‚ะพั€ะธั‚ะธ ะพัั‚ะฐะฝะฝัŽ ะดั–ัŽ, ัะบะฐ ัะฟั€ะธั‡ะธะฝะธะปะฐ ะฟ #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "ะŸะพะฒะตั€ั‚ะฐั” ะดะพ ะณะพะปะพะฒะฝะพั— ัั‚ะพั€ั–ะฝะบะธ" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "ะŸะพะฒะตั€ั‚ะฐั” ะดะพ ะฟะพะฟะตั€ะตะดะฝัŒะพั— ัั‚ะพั€ั–ะฝะบะธ" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "ะ—ะฑะตั€ะตะณั‚ะธ ะทะผั–ะฝะธ" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "ะ—ะฑะตั€ะตะณั‚ะธ QR-ะบะพะด" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "ะ—ะฑะตั€ะตะณั‚ะธ ะดะพ ะผะพั—ั… ัั‚ั€ั–ั‡ะพะบ" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "ะ—ะฑะตั€ะตะถะตะฝั– ัั‚ั€ั–ั‡ะบะธ" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "ะ—ะฑะตั€ะตะถะตะฝะพ ะดะพ ะฒะฐัˆะธั… ัั‚ั€ั–ั‡ะพะบ" @@ -10520,8 +10520,8 @@ msgstr "ะ—ะฑะตั€ะตะถะตะฝะพ ะดะพ ะฒะฐัˆะธั… ัั‚ั€ั–ั‡ะพะบ" msgid "Say hello!" msgstr "ะŸั€ะธะฒั–ั‚ะฐะนั‚ะตััŒ!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "ะะฐัƒะบะฐ" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "ะŸั€ะพะณะพั€ะฝัƒั‚ะธ ะฒะณะพั€ัƒ" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "ะŸะพัˆัƒะบ" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "ะจัƒะบะฐั‚ะธ ัั‚ั€ั–ั‡ะบะธ, ัะบะธะผะธ ะฒะธ ะฑ ั…ะพั‚ั–ะปะธ ะฟะพะดั–ะปะธั‚ะธััŒ ะท ั–ะฝัˆะธะผะธ." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "ะŸะพัˆัƒะบ GIF-ั„ะฐะนะปั–ะฒ" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ msgstr "" msgid "See jobs at Bluesky" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะฒะฐะบะฐะฝัั–ั— ัƒ Bluesky" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "ะŸะพะฒะทัƒะฝะพะบ ะฟะพัˆัƒะบัƒ. ะ’ะธะบะพั€ะธัั‚ะพะฒัƒะนั‚ะต ะบะปะฐะฒั–ัˆั– ะทั– ัั‚ั€ั–ะปะบะฐะผะธ ะดะปั ะฟะพัˆัƒะบัƒ ะฒะฟะตั€ะตะด ั– ะฝะฐะทะฐะด ั‚ะฐ ะฟั€ะพะฑั–ะป ะดะปั ะฒั–ะดั‚ะฒะพั€ะตะฝะฝั ะฐะฑะพ ะฟะฐัƒะทะธ" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "ะ’ะธะฑั€ะฐั‚ะธ ะบะพะปั–ั€" @@ -10764,11 +10769,11 @@ msgstr "ะ’ะธะฑั€ะฐั‚ะธ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "ะ’ะธะฑะตั€ั–ั‚ัŒ ะฐะฒะฐั‚ะฐั€" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "ะ’ะธะฑะตั€ั–ั‚ัŒ ะตะผะพะดะทั–" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "ะ’ะธะฑั€ะฐั‚ะธ GIF" msgid "Select GIF \"{0}\"" msgstr "ะ’ะธะฑั€ะฐั‚ะธ GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "ะžะฑั€ะฐั‚ะธ {emojiName} ะตะผะพะดะทั– ัะบ ะฒะฐัˆ ะฐะฒะฐั‚ะฐั€" @@ -10945,7 +10951,8 @@ msgstr "ะะฐะดั–ัะปะฐั‚ะธ ะฟะพะฒั–ะดะพะผะปะตะฝะฝั" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "ะะฐะดั–ัะปะฐั‚ะธ ะฟะพัั‚ ะดะพ..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "ะะฐะดั–ัะปะฐั‚ะธ ะตะปะตะบั‚ั€ะพะฝะฝะธะน ะปะธัั‚ ะฟั–ะดั‚ะฒะตั€ะดะถะตะฝะฝั" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "ะะฐะดั–ัะปะฐั‚ะธ ะฒ ะพัะพะฑะธัั‚ั– ะฟะพะฒั–ะดะพะผะปะตะฝะฝั" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "ะ’ัั‚ะฐะฝะพะฒะปัŽั” ะตะป. ะฐะดั€ะตััƒ ะดะปั ัะบะธะดะฐะฝะฝั ะฟะฐั€ะพะปั" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "ะ’ัะต ะพะดะฝะพ ะฟะพัˆะธั€ะธั‚ะธ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "ะŸะพะดั–ะปะธั‚ะธััŒ ะฟะพัะธะปะฐะฝะฝัะผ ะฝะฐ ะดั–ะฐะปะพะณ" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "ะŸะพัˆะธั€ะธั‚ะธ QR-ะบะพะด" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "ะŸะพะดั–ะปะธั‚ะธััŒ ั†ั–ั”ัŽ ะฟั–ะดะฑั–ั€ะบะพัŽ" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "ะŸะพะดั–ะปั–ั‚ัŒัั ั†ั–ั”ัŽ ะฟั–ะดะฑั–ั€ะบะพัŽ ั‚ะฐ ะดะพะฟะพะผะพะถั–ั‚ัŒ ะปัŽะดัะผ ะดะพะปัƒั‡ะธั‚ะธััŒ ะดะพ ัะฒะพั”ั— ัะฟั–ะปัŒะฝะพัั‚ะธ ัƒ Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "ะขะตัั‚ัƒะฒะฐะปัŒะฝะธะบ ัะฟั–ะปัŒะฝะธั… ะฝะฐะปะฐัˆั‚ัƒะฒะฐะฝัŒ" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "ะŸะพะบะฐะทะฐั‚ะธ" msgid "Show alt text" msgstr "ะŸะพะบะฐะทะฐั‚ะธ ะฐะปัŒั‚ะตั€ะฝะฐั‚ะธะฒะฝะธะน ั‚ะตะบัั‚" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "ะŸะพะบะฐะทะฐั‚ะธ ะฒัะต ะพะดะฝะพ" @@ -11274,9 +11281,9 @@ msgstr "ะ’ัะต ะพะดะฝะพ ะฟะพะบะฐะทะฐั‚ะธ ัะฟะธัะพะบ" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "ะŸะพะบะฐะทะฐั‚ะธ ะฑั–ะปัŒัˆะต" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "ะŸะพะบะฐะทะฐั‚ะธ ะฟะพะฟะตั€ะตะดะถะตะฝะฝั ั– ั„ั–ะปัŒั‚ั€ัƒะฒะฐั‚ะธ ะทั– msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "" @@ -11341,15 +11348,15 @@ msgstr "" msgid "Shows other accounts you can switch to" msgstr "" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "ะ’ะธะนั‚ะธ?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "ะะตะพะฑั…ั–ะดะฝะพ ัƒะฒั–ะนั‚ะธ ะดะปั ะฟะตั€ะตะณะปัะดัƒ" @@ -11469,7 +11476,7 @@ msgstr "ะŸั€ะพะฟัƒัั‚ะธั‚ะธ" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "ะœะตะฝัˆะต" @@ -11499,7 +11506,7 @@ msgstr "" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" msgid "Some of your verifications are invalid." msgstr "" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "ะ†ะฝัˆั– ัั‚ั€ั–ั‡ะบะธ, ัะบั– ะผะพะถัƒั‚ัŒ ะฒะฐะผ ัะฟะพะดะพะฑะฐั‚ะธัั" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "" @@ -11554,7 +11561,7 @@ msgstr "" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "ะฉะพััŒ ะฟั–ัˆะปะพ ะฝะต ั‚ะฐะบ. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ัะฟั€ะพะฑัƒะนั‚ะต ั‰ะต ั€ะฐะท" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "" @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "ะกะฟะพั€ั‚" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "ะ ะพะทะฟะพั‡ะฐั‚ะธ ะฝะพะฒะธะน ั‡ะฐั‚" @@ -11682,17 +11689,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "ะ ะพะทะฟะพั‡ะฐั‚ะธ ั‡ะฐั‚ ะท {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "ะะฐะฑั–ั€ ะฟะพั‡ะฐั‚ะบั–ะฒั†ั" @@ -11715,12 +11722,16 @@ msgstr "ะŸะพั‡ะฐั‚ะบะพะฒั– ะฝะฐะฑะพั€ะธ, ัั‚ะฒะพั€ะตะฝั– ะฒะฐะผะธ" msgid "Starter pack is invalid" msgstr "ะฅะธะฑะฝะธะน ะฝะฐะฑั–ั€ ะฟะพั‡ะฐั‚ะบั–ะฒั†ั" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "ะะฐะฑะพั€ะธ ะฟะพั‡ะฐั‚ะบั–ะฒั†ั" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "ะ’ะปะฐัะฝั– ะฟั–ะดะฑั–ั€ะบะธ ะดะพะทะฒะพะปััŽั‚ัŒ ะปะตะณะบะพ ะดั–ะปะธั‚ะธััŒ ะท ะดั€ัƒะทัะผะธ ัƒะปัŽะฑะปะตะฝะธะผะธ ัั‚ั€ั–ั‡ะบะฐะผะธ ั‚ะฐ ะบะพั€ะธัั‚ัƒะฒะฐั‡ะฐะผะธ." @@ -11728,7 +11739,7 @@ msgstr "ะ’ะปะฐัะฝั– ะฟั–ะดะฑั–ั€ะบะธ ะดะพะทะฒะพะปััŽั‚ัŒ ะปะตะณะบะพ ะดั–ะปะธั‚ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "ะกั‚ะพั€ั–ะฝะบะฐ ัั‚ะฐะฝัƒ" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "ะšั€ะพะบ {0} ะท {1}" @@ -11754,7 +11765,7 @@ msgstr "ะกั…ะพะฒะธั‰ะต ะพั‡ะธั‰ะตะฝะพ, ั‚ะตะฟะตั€ ะฒะฐะผ ั‚ั€ะตะฑะฐ ะฟะตั€ะตะทะฐ msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "ะŸั–ะดะฟะธัะฐั‚ะธัั ะฝะฐ @{0}, ั‰ะพะฑ ะฒะธะบะพั€ะธัั‚ะพะฒัƒะฒะฐั‚ะธ ั†ั– ะผั–ั‚ะบะธ:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "ะŸั€ะพะฟะพะฝะพะฒะฐะฝะพ ะดะปั ะฒะฐั" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "ะกะธัั‚ะตะผะฝะฐ" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "ะขะพั€ะบะฝั–ั‚ัŒัั, ั‰ะพะฑ ะฟั€ะพะฟัƒัั‚ะธั‚ะธ" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "" msgid "Task complete - 10 likes!" msgstr "ะ—ะฐะฒะดะฐะฝะฝั ะฒะธะบะพะฝะฐะฝะพ โ€” 10 ะฒะฟะพะดะพะฑะฐะนะพะบ!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "ะŸะพะบะฐะถั–ั‚ัŒ ะฝะฐัˆะพะผัƒ ะฐะปะณะพั€ะธั‚ะผัƒ, ั‰ะพ ะฒะธ ะปัŽะฑะธั‚ะต" @@ -12060,7 +12073,7 @@ msgstr "ะฃะผะพะฒะธ" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "ะŸั–ะดะฑั–ั€ะบัƒ ะฝะต ะฒะดะฐะปะพััŒ ะทะฝะฐะนั‚ะธ." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "ะะฐ ั†ัŒะพะผัƒ ะฒัะต!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "" @@ -12216,7 +12229,7 @@ msgstr "ะกั…ะพะถะต, ะฝะฐ ัะตั€ะฒะตั€ั– ะฟะตะฒะฝั– ะฟั€ะพะฑะปะตะผะธ. ะ‘ัƒะดัŒ ะป msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "ะŸั–ะดะฑั–ั€ะบะฐ, ัะบัƒ ะฒะธ ะฝะฐะผะฐะณะฐั”ั‚ะตััŒ ะฟะตั€ะตะณะปัะฝัƒั‚ะธ, ั…ะธะฑะฝะฐ. ะ’ะธ ะผะพะถะตั‚ะต ั—ั— ะฒะธะดะฐะปะธั‚ะธ." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "" @@ -12238,7 +12251,7 @@ msgstr "ะ’ะฒะตะดะตะฝะธะน ะฒะฐะผะธ ะบะพะด ะฟั–ะดั‚ะฒะตั€ะดะถะตะฝะฝั ั…ะธะฑะฝะธะน msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "ะขะตะผะฐ" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "ะŸั€ะธ ะท'ั”ะดะฝะฐะฝะฝั– ะท ัะตั€ะฒะตั€ะพะผ ะฒะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ะทั– ะท'ั”ะดะฝะฐะฝะฝัะผ ะท ัะตั€ะฒะตั€ะพะผ. ะŸะตั€ะตะฒั–ั€ั‚ะต ะฟั–ะดะบะปัŽั‡ะตะฝะฝั ะดะพ ะ†ะฝั‚ะตั€ะฝะตั‚ัƒ ั– ะฟะพะฒั‚ะพั€ั–ั‚ัŒ ัะฟั€ะพะฑัƒ ะทะฝะพะฒัƒ." @@ -12283,8 +12296,8 @@ msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ะทั– ะท'ั”ะดะฝะฐะฝะฝัะผ ะท ัะตั€ะฒะตั€ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ะท ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะฝัะผ ัะฟะพะฒั–ั‰ะตะฝัŒ. ะะฐั‚ะธัะฝั–ั‚ัŒ ั‚ัƒั‚, ั‰ะพะฑ ะฟะพะฒั‚ะพั€ะธั‚ะธ ัะฟั€ะพะฑัƒ." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ะท ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะฝัะผ ะฟะพัั‚ั–ะฒ. ะะฐั‚ะธัะฝั–ั‚ัŒ ั‚ัƒั‚, ั‰ะพะฑ ะฟะพะฒั‚ะพั€ะธั‚ะธ ัะฟั€ะพะฑัƒ." @@ -12309,7 +12322,7 @@ msgstr "ะŸั–ะด ั‡ะฐั ะพั‚ั€ะธะผะฐะฝะฝั ั–ะฝั„ะพั€ะผะฐั†ั–ั— ะฟั€ะพ ะฒะธะบะพั€ msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "ะ’ะธะฝะธะบะปะฐ ะฟั€ะพะฑะปะตะผะฐ ะฟั–ะด ั‡ะฐั ะฒะธะดะฐะปะตะฝะฝั ั†ั–ั”ั— ัั‚ั€ั–ั‡ะบะธ. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ะฟะตั€ะตะฒั–ั€ั‚ะต ะท'ั”ะดะฝะฐะฝะฝั ะท ั–ะฝั‚ะตั€ะฝะตั‚ะพะผ ั‚ะฐ ัะฟั€ะพะฑัƒะนั‚ะต ะทะฝะพะฒ." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "ะฆั– ะฝะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะทะฐัั‚ะพัะพะฒัƒัŽั‚ัŒัั ะปะธัˆะต ะดะป msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "ะฆะตะน {screenDescription} ะฑัƒะฒ ะฟะพะทะฝะฐั‡ะตะฝะธะน:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "ะฆะตะน ะบะพั€ะธัั‚ัƒะฒะฐั‡ ะฒะบะฐะทะฐะฒ, ั‰ะพ ะฝะต ั…ะพั‡ะต, ะฐะฑะธ ะนะพะณะพ ะฟั€ะพั„ั–ะปัŒ ะฑะฐั‡ะธะปะธ ะฒั–ะดะฒั–ะดัƒะฒะฐั‡ั– ะฑะตะท ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "ะฆั ัั‚ั€ั–ั‡ะบะฐ ะฟะพั€ะพะถะฝั! ะœะพะถะปะธะฒะพ, ะฒะฐะผ ั‚ั€ะตะฑะฐ ะฟั–ะดะฟะธัะฐั‚ะธัั ะฝะฐ ะฑั–ะปัŒัˆัƒ ะบั–ะปัŒะบั–ัั‚ัŒ ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ะฐะฑะพ ะทะผั–ะฝะธั‚ะธ ะฒะฐัˆั– ะฝะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะผะพะฒะธ." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "ะกั‚ั€ั–ั‡ะบะฐ ะฟะพั€ะพะถะฝั." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "ะฆะตะน ะฟัะตะฒะดะพะฝั–ะผ ะฒะธะบะพั€ะธัั‚ะพะฒัƒั”ั‚ัŒัั. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ัะฟั€ะพะฑัƒะนั‚ะต ั–ะฝัˆะธะน." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "ะฆั ะผั–ั‚ะบะฐ ะฑัƒะปะฐ ะดะพะดะฐะฝะฐ ะฒะฐะผะธ." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "ะฆะตะน ะผั–ั‚ะฝะธะบ ั‰ะต ะฝะต ะทะฐัะฒะธะฒ, ัะบั– ะผั–ั‚ะบะธ ะฒั–ะฝ ะฟัƒะฑะปั–ะบัƒั”, ั– ะผะพะถะต ะฑัƒั‚ะธ ะฝะตะฐะบั‚ะธะฒะฝะธะผ." @@ -12621,13 +12634,13 @@ msgstr "" msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "ะ—ะฐะทะฝะฐั‡ะฐั”ั‚ัŒัั, ั‰ะพ ะฟะพัั‚ ะฑัƒะปะพ ัั‚ะฒะพั€ะตะฝะพ โ€” <0>{0}, ะฐะปะต ะฒะฟะตั€ัˆะต ั†ะตะน ะฟะพัั‚ ะฑัƒะปะพ ะพะฟั€ะธะปัŽะดะฝะตะฝะพ ะฝะฐ Bluesky โ€” <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "ะ—ะฐะทะฝะฐั‡ะฐั”ั‚ัŒัั, ั‰ะพ ะฟะพัั‚ ะฑัƒะปะพ ัั‚ะฒะพั€ะตะฝะพ โ€” <0 msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "ะฆะตะน ะฟะพัั‚ ะฑัƒะดะต ะฟั€ะธั…ะพะฒะฐะฝะพ ะฒั–ะด ัั‚ั€ั–ั‡ะพะบ ั‚ะฐ ะณั–ะปะพะบ. ะฆัŽ ะดั–ัŽ ะฝะต ะผะพะถะฝะฐ ัะบะฐััƒะฒะฐั‚ะธ." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "ะะฒั‚ะพั€ ั†ัŒะพะณะพ ะฟะพัั‚ะฐ ะฒะธะผะบะฝัƒะฒ ะผะพะถะปะธะฒั–ัั‚ัŒ ะนะพะณะพ ั†ะธั‚ัƒะฒะฐั‚ะธ." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "ะั–ั…ั‚ะพ ะฝะต ะฟั–ะดะฟะธัะฐะฝะธะน ะฝะฐ ะบะพั€ะธัั‚ัƒะฒะฐั‡ะฐ." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "ะฆะตะน ะบะพั€ะธัั‚ัƒะฒะฐั‡ ะทะฐะฑะปะพะบัƒะฒะฐะฒ ะฒะฐั. ะ’ะธ ะฝะต ะผะพะถะตั‚ะต ะฑะฐั‡ะธั‚ะธ ั—ั… ะฟะพัั‚ะธ." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "ะฆะตะน ะบะพั€ะธัั‚ัƒะฒะฐั‡ ั” ะฒ ัะฟะธัะบัƒ <0>{0}, ัะบะธะน ะฒะธ msgid "This user is new here. Press for more info about when they joined." msgstr "ะฆะต ะฝะพะฒะธะน ะบะพั€ะธัั‚ัƒะฒะฐั‡. ะะฐั‚ะธัะฝั–ั‚ัŒ ะดะปั ะดะตั‚ะฐะปัŒะฝั–ัˆะพั— ั–ะฝั„ะพั€ะผะฐั†ั–ั— ะฟั€ะพ ะดะฐั‚ัƒ ะฟั€ะธั”ะดะฝะฐะฝะฝั." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "ะฆะตะน ะบะพั€ะธัั‚ัƒะฒะฐั‡ ะฝะต ะฟั–ะดะฟะธัะฐะฝะธะน ะฝั– ะฝะฐ ะบะพะณะพ." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "ะฆะต ะฟั€ะธะฑะตั€ะต @{0} ะทั– ัะฟะธัะบัƒ ัˆะฒะธะดะบะพะณะพ ะดะพัั‚ัƒะฟัƒ." @@ -12786,7 +12801,7 @@ msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะณั–ะปะพะบ" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะพะฑะณะพะฒะพั€ะตะฝัŒ" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "ะขะพะฟ" @@ -12858,7 +12873,7 @@ msgstr "ะขะพะฟ" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "" @@ -12902,12 +12919,14 @@ msgstr "" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "ะ ะพะทะฑะปะพะบัƒะฒะฐั‚ะธ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั?" msgid "Unblock list" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "ะ’ั–ะดะฟะธัะฐั‚ะธัั ะฒั–ะด {0}" msgid "Unfollow account" msgstr "" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "ะŸั€ะธะฑั€ะฐั‚ะธ ะฒะฟะพะดะพะฑะฐะฝะฝั" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "ะŸะตั€ะตัั‚ะฐั‚ะธ ั–ะณะฝะพั€ัƒะฒะฐั‚ะธ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "ะฃะฒั–ะผะบะฝัƒั‚ะธ ะทะฒัƒะบ ะฒั–ะดะตะพ" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "ะ’ั–ะดะบั€ั–ะฟะธั‚ะธ" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "ะ’ั–ะดะบั€ั–ะฟะธั‚ะธ ะฒั–ะด ะณะพะปะพะฒะฝะพั— ัั‚ะพั€ั–ะฝะบะธ" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "ะ’ั–ะดะบั€ั–ะฟะธั‚ะธ ัะฟะธัะพะบ ะผะพะดะตั€ะฐั†ั–ั—" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "" @@ -13258,11 +13279,11 @@ msgstr "ะ’ั–ะดะฟะธัะฐั‚ะธัั ะฒั–ะด ั†ัŒะพะณะพ ะผั–ั‚ะฝะธะบะฐ" msgid "Unsubscribed from list" msgstr "ะ’ั–ะดะฟะธัะฐะฝะพ ะฒั–ะด ัะฟะธัะบัƒ" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "ะะต ะฒะดะฐะปะพััŒ ะพะฝะพะฒะธั‚ะธ ะฒะธะดะธะผั–ัั‚ัŒ ะฒั–ะดะฟะพะฒั–ะดั–" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "ะะฐั‚ะพะผั–ัั‚ัŒ ะทะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ั„ะพั‚ะพ" @@ -13355,7 +13376,7 @@ msgstr "ะ—ะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ะท ั„ะฐะนะปั–ะฒ" msgid "Upload from Library" msgstr "ะ—ะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ะท ะฑั–ะฑะปั–ะพั‚ะตะบะธ" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "ะ—ะฐะฒะฐะฝั‚ะฐะถะตะฝะฝั ะทะพะฑั€ะฐะถะตะฝัŒ..." msgid "Uploading link thumbnail..." msgstr "ะ—ะฐะฒะฐะฝั‚ะฐะถะตะฝะฝั ะตัะบั–ะทัƒ ะฟะพัะธะปะฐะฝะฝั..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "ะ—ะฐะฒะฐะฝั‚ะฐะถะตะฝะฝั ะฒั–ะดะตะพ..." @@ -13408,7 +13429,7 @@ msgstr "" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -13618,34 +13639,34 @@ msgstr "ะ’ั–ะดะตะพ" msgid "Video failed to process" msgstr "ะะต ะฒะดะฐะปะพััŒ ะพะฑั€ะพะฑะธั‚ะธ ะฒั–ะดะตะพ" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "ะ’ั–ะดะตะพั–ะณั€ะธ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "ะ’ั–ะดะตะพ ะฝะต ะทะฝะฐะนะดะตะฝะพ." @@ -13653,7 +13674,7 @@ msgstr "ะ’ั–ะดะตะพ ะฝะต ะทะฝะฐะนะดะตะฝะพ." msgid "Video settings" msgstr "ะะฐะปะฐัˆั‚ัƒะฒะฐะฝะฝั ะฒั–ะดะตะพ" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "ะ’ั–ะดะตะพ ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะพ" @@ -13662,17 +13683,17 @@ msgstr "ะ’ั–ะดะตะพ ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะพ" msgid "Video: {0}" msgstr "ะ’ั–ะดะตะพ: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะฐะฒะฐั‚ะฐั€ {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะฟั€ะพั„ั–ะปัŒ {0}" @@ -13724,13 +13745,13 @@ msgstr "ะ”ะพะบะปะฐะดะฝั–ัˆะต ัƒ ะฟัƒะฑะปั–ะบะฐั†ั–ั— ะฒ ะฑะปะพะทั–" msgid "View debug entry" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะทะฐะฟะธั ะดะปั ะฝะฐะปะฐะณะพะดะถะตะฝะฝั" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะดะตั‚ะฐะปั–" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะพะฑะณะพะฒะพั€ะตะฝะฝั" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ั–ะฝั„ะพั€ะผะฐั†ั–ัŽ ะฟั€ะพ ะผั–ั‚ะบะธ" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะฟะพัะปัƒะณะธ ะผั–ั‡ะตะฝะฝั ะฒั–ะด @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ, ัะบั– ะฒะฟะพะดะพะฑะฐะปะธ ั†ัŽ ัั‚ั€ั–ั‡ะบัƒ" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "" @@ -13831,7 +13852,7 @@ msgstr "ะŸะตั€ะตะณะปัะฝัŒั‚ะต ัะฟะธัะบะธ ะผะพะดะตั€ะฐั†ั–ั—" msgid "View your muted accounts" msgstr "ะŸะตั€ะตะณะปัะฝัƒั‚ะธ ั–ะณะฝะพั€ะพะฒะฐะฝั– ะพะฑะปั–ะบะพะฒั– ะทะฐะฟะธัะธ" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "" @@ -13840,7 +13861,7 @@ msgstr "" msgid "Views full image" msgstr "" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "ะฃ ะฝะฐั ะฒะธะฝะธะบะปะธ ะฟั€ะพะฑะปะตะผะธ ะท ะผะตั€ะตะถะตัŽ, ัะฟั€ะพะฑัƒะนั‚ะต ั‰ะต ั€ะฐะท" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "ะ”ัƒะถะต ะฟั€ะธะบั€ะพ, ะฐะปะต ะฝะฐะผ ะฝะต ะฒะดะฐะปะพัั ะทะฝะฐะนั‚ะธ ั† msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "ะะฐ ะถะฐะปัŒ, ะผะธ ะฝะต ะทะผะพะณะปะธ ะทะฐั€ะฐะท ะทะฐะฒะฐะฝั‚ะฐะถะธั‚ะธ ะฒะฐัˆั– ั–ะณะฝะพั€ะพะฒะฐะฝั– ัะปะพะฒะฐ. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ัะฟั€ะพะฑัƒะนั‚ะต ั‰ะต ั€ะฐะท." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "ะะฐะผ ะฟั€ะธะบั€ะพ! ะŸะพัั‚, ะฝะฐ ัะบะธะน ะฒะธ ะฒั–ะดะฟะพะฒั–ะดะฐั”ั‚ะต, ะฒะธะดะฐะปะตะฝะพ." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "ะฏะบ ัะฟั€ะฐะฒะธ?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "ะฃะฟั!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "ะะฐะฟะธัะฐั‚ะธ ะฟะพัั‚" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "ะะฐะฟะธัะฐั‚ะธ ะฒั–ะดะฟะพะฒั–ะดัŒ" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "ะ’ะธ ะฝะต ะผะพะถะตั‚ะต ะทะฐะฒะฐะฝั‚ะฐะถัƒะฒะฐั‚ะธ ะฒั–ะดะตะพ." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "" msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "ะขะตะฟะตั€ ะฒะธ ะผะพะถะตั‚ะต ัƒะฒั–ะนั‚ะธ ะทะฐ ะดะพะฟะพะผะพะณะพัŽ ะฝะพะฒะพะณะพ ะฟะฐั€ะพะปั." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "ะ’ะธ ั‚ะธะผั‡ะฐัะพะฒะพ ะดะพััะณะปะธ ะปั–ะผั–ั‚ัƒ ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะฝั ะฒั–ะดะตะพ. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ัะฟั€ะพะฑัƒะนั‚ะต ะฟั–ะทะฝั–ัˆะต." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "ะ’ะธ ั‰ะต ะฝะต ัั‚ะฒะพั€ัŽะฒะฐะปะธ ะฒะปะฐัะฝะธั… ะฟั–ะดะฑั–ั€ะพะบ!" @@ -14614,7 +14640,7 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "ะ’ะธ ะผะพะถะตั‚ะต ะดะพะดะฐั‚ะธ ะปะธัˆะต 3 ัั‚ั€ั–ั‡ะบะธ" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "ะ’ะธ ะผะฐั”ั‚ะต ั‡ะธั‚ะฐั‚ะธ ั‰ะพะฝะฐะนะผะตะฝัˆะต ัั–ะผะพั… ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ะดะปั ะณะตะฝะตั€ัƒะฒะฐะฝะฝั ะฒะปะฐัะฝะพั— ะฟั–ะดะฑั–ั€ะบะธ." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "ะ’ะธ ั‡ะธั‚ะฐั‚ะธะผะตั‚ะต ะทะฐะฟั€ะพะฟะพะฝะพะฒะฐะฝะธั… ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ั‚ะฐ ัั‚ั€ั–ั‡ะบะธ ั‰ะพะนะฝะพ ะทะฐะฒะตั€ัˆะธั‚ะต ัั‚ะฒะพั€ะตะฝะฝั ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "ะ’ะธ ั‡ะธั‚ะฐั‚ะธะผะตั‚ะต ะทะฐะฟั€ะพะฟะพะฝะพะฒะฐะฝะธั… ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ั‰ะพะนะฝะพ ะทะฐะฒะตั€ัˆะธั‚ะต ัั‚ะฒะพั€ะตะฝะฝั ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ะ’ะฐัˆะฐ ะดะพะผะฐัˆะฝั ัั‚ั€ั–ั‡ะบะฐ ะทะฐะบั–ะฝั‡ะธะปะฐััŒ! ะŸั–ะดะฟะธัˆั–ั‚ัŒัั ะฝะฐ ะฑั–ะปัŒัˆะต ะบะพั€ะธัั‚ัƒะฒะฐั‡ั–ะฒ ั‰ะพะฑ ะพั‚ั€ะธะผัƒะฒะฐั‚ะธ ะฑั–ะปัŒัˆะต ะฟะพัั‚ั–ะฒ." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "ะ’ะธ ะดะพััะณะปะธ ะดะตะฝะฝะพะณะพ ะปั–ะผั–ั‚ัƒ ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะฝั msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "ะ’ะธ ะดะพััะณะปะธ ะดะตะฝะฝะพะณะพ ะปั–ะผั–ั‚ัƒ ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะฝั ะฒั–ะดะตะพ (ะทะฐะฑะฐะณะฐั‚ะพ ะฒั–ะดะตะพ)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "ะ’ะฐัˆ ะฐะบะฐัƒะฝั‚" @@ -14835,11 +14861,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "ะ’ะฐัˆ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั ัั‚ะฒะพั€ะตะฝะพ ะฝะตะดะพัั‚ะฐั‚ะฝัŒะพ ะดะฐะฒะฝะพ ะดะปั ะทะฐะฒะฐะฝั‚ะฐะถะตะฝะฝั ะฒั–ะดะตะพ. ะ‘ัƒะดัŒ ะปะฐัะบะฐ, ัะฟั€ะพะฑัƒะนั‚ะต ะฟั–ะทะฝั–ัˆะต." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "ะะต ะฒะดะฐะปะพัั ั€ะพะทะฟั–ะทะฝะฐั‚ะธ ะฐะดั€ะตััƒ ะตะปะตะบั‚ั€ะพะฝะฝะพั— ะฟะพัˆั‚ะธ." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "ะ’ะฐัˆ ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั, ะฟะพัั‚ะธ, ัั‚ั€ั–ั‡ะบะธ ั‚ะฐ ัะฟะธัะบะธ ะฑั–ะปัŒัˆะต ะฝะต ะฑัƒะดัƒั‚ัŒ ะฒะธะดะธะผั– ั–ะฝัˆะธะผ ะบะพั€ะธัั‚ัƒะฒะฐั‡ะฐะผ Bluesky. ะ’ะธ ะผะพะถะตั‚ะต ะฒั–ะดะฝะพะฒะธั‚ะธ ัะฒั–ะน ะพะฑะปั–ะบะพะฒะธะน ะทะฐะฟะธั ะฒ ะฑัƒะดัŒ-ัะบะธะน ะผะพะผะตะฝั‚ ะฒะฒั–ะฒัˆะธ ะดะฐะฝั– ะพะฑะปั–ะบะพะฒะพะณะพ ะทะฐะฟะธััƒ ัƒ ะฟะพะปะต ะดะปั ะฒั…ะพะดัƒ." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/vi/messages.po b/src/locale/locales/vi/messages.po index 0e3d92dbc5..5f9c727ecd 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: 2026-07-16 14:05\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "(chแปฉa nแป™i dung nhรบng)" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "" @@ -103,12 +103,12 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, other {# giแป}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" msgstr "" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" msgstr "" @@ -119,6 +119,7 @@ msgstr "{0, plural, other {# lฦฐแปฃt thรญch}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "" @@ -251,36 +252,13 @@ msgstr "" msgid "{0} and {1} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "" @@ -324,14 +302,6 @@ msgstr "" msgid "{0} left the group" msgstr "" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "{0} trong sแป‘ 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ฤ‘รฃ bร y tแป cแบฃm xรบc {1}" @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} ฤ‘รฃ xรกc thแปฑc bแบกn" msgid "{following} following" msgstr "{following} ฤ‘ang theo dรตi" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "" @@ -698,7 +660,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "khรดng thแปƒ nhแบฏn tin cho {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, other {# mแปฅc chฦฐa ฤ‘แปc}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "" @@ -791,7 +747,9 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." @@ -799,15 +757,15 @@ msgstr "{rank}." msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" msgstr "" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "" @@ -821,11 +779,6 @@ msgstr "" msgid "{requestCount}+ requests" msgstr "" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} giแป trฦฐแป›c" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} lร  ngฦฐแปi xรกc minh ฤ‘รกng tin cแบญy" @@ -842,13 +795,13 @@ msgstr "Cรกc xรกc minh cแปงa {userName}" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, other {ฤ‘ang theo dรตi}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {trรญch dแบซn}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {lฦฐแปฃt ฤ‘ฤƒng lแบกi}}" @@ -903,7 +856,7 @@ msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" msgstr "" @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "" @@ -971,7 +924,7 @@ msgstr "30 ngร y" msgid "7 days" msgstr "7 ngร y" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "" @@ -988,9 +941,11 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "" msgid "A new form of verification" msgstr "Mแป™t dแบกng xรกc thแปฑc hoร n toร n mแป›i" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "" msgid "Accessibility" msgstr "Trแปฃ nฤƒng" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "Cร i ฤ‘แบทt trแปฃ nฤƒng" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "Tร i khoแบฃn ฤ‘รฃ bแป‹ แบฉn bแปŸi Danh sรกch" msgid "Account options" msgstr "Tรนy chแปn tร i khoแบฃn" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "Tร i khoแบฃn ฤ‘รฃ bแป‹ xรณa khแปi truy cแบญp nhanh" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "Tร i khoแบฃn cรณ dแบฅu tรญch xanh hรฌnh viแปn rฤƒng cฦฐa <0><1/> cรณ thแปƒ xรกc minh ngฦฐแปi khรกc. Nhแปฏng ngฦฐแปi xรกc minh ฤ‘รกng tin cแบญy nร y ฤ‘ฦฐแปฃc chแปn bแปŸi Bluesky." #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,15 +1183,15 @@ msgstr "Thรชm vฤƒn bแบฃn thay thแบฟ (khรดng bแบฏt buแป™c)" msgid "Add another account" msgstr "Thรชm tร i khoแบฃn khรกc" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "Thรชm bร i" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" msgstr "" @@ -1253,7 +1213,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Thรชm emoji ฤ‘แปƒ bร y tแป cแบฃm xรบc" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "" @@ -1338,7 +1298,7 @@ msgstr "Thรชm bแบฃng tin nร y vร o danh sรกch bแบฃng tin cแปงa bแบกn" msgid "Add to lists" msgstr "Thรชm vร o danh sรกch" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "" @@ -1400,7 +1360,7 @@ msgstr "18+" msgid "Adult content" msgstr "" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "Tแบฅt cแบฃ" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "Mแปi ngรดn ngแปฏ" @@ -1491,11 +1447,6 @@ msgstr "" msgid "All of these words" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "Tแบฅt cแบฃ bแบฃng tin bแบกn ฤ‘รฃ lฦฐu tแบกi cรนng mแป™t nฦกi." @@ -1560,7 +1511,7 @@ msgstr "Cho phรฉp truy cแบญp tin nhแบฏn" msgid "Already have a code?" msgstr "Bแบกn ฤ‘รฃ cรณ mรฃ rแป“i?" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "" @@ -1614,7 +1565,7 @@ msgstr "Email ฤ‘รฃ ฤ‘ฦฐแปฃc gแปญi ฤ‘แบฟn {0}, bao gแป“m mรฃ xรกc nhแบญn ฤ‘แปƒ nh msgid "An error has occurred" msgstr "ฤรฃ cรณ lแป—i xแบฃy ra" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "ฤรฃ cรณ lแป—i xแบฃy ra" @@ -1631,7 +1582,7 @@ msgstr "" msgid "An error occurred while fetching the feed." msgstr "ฤรฃ cรณ lแป—i xแบฃy ra khi tแบฃi bแบฃng tin." -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "ฤรฃ cรณ lแป—i xแบฃy ra khi ฤ‘ang tแบกo gรณi khแปŸi ฤ‘แบงu cแปงa bแบกn. Bแบกn muแป‘n thแปญ lแบกi khรดng?" @@ -1640,11 +1591,11 @@ msgstr "ฤรฃ cรณ lแป—i xแบฃy ra khi ฤ‘ang tแบกo gรณi khแปŸi ฤ‘แบงu cแปงa bแบกn. msgid "An error occurred while hiding suggestion. {0}" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "ฤรฃ cรณ lแป—i xแบฃy ra khi ฤ‘ang tแบฃi video. Vui lรฒng thแปญ lแบกi sau." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "ฤรฃ cรณ lแป—i xแบฃy ra khi ฤ‘ang tแบฃi video. Vui lรฒng thแปญ lแบกi." @@ -1684,7 +1635,7 @@ msgstr "" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "" @@ -1705,17 +1656,15 @@ msgstr "" msgid "An issue not included in these options" msgstr "Vแบฅn ฤ‘แป khรดng nแบฑm trong cรกc tรนy chแปn nร y" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "Cรณ vแบฅn ฤ‘แป xแบฃy ra khi ฤ‘ang mแปŸ cuแป™c trรฒ chuyแป‡n" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1769,8 +1718,6 @@ msgid "Any date" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "" @@ -1802,7 +1749,7 @@ msgstr "" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1840,7 +1787,7 @@ msgstr "Mแบญt khแบฉu แปฉng dแปฅng phแบฃi dร i tแป‘i thiแปƒu 4 kรฝ tแปฑ" msgid "App passwords" msgstr "Mแบญt khแบฉu แปฉng dแปฅng" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Mแบญt khแบฉu แปฉng dแปฅng" @@ -1891,8 +1838,8 @@ msgstr "Khรกng nghแป‹ quyแบฟt ฤ‘แป‹nh nร y" msgid "Appeal this label" msgstr "" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "Lฦฐu trแปฏ tแปซ {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "Bร i ฤ‘ฤƒng lฦฐu trแปฏ" @@ -1980,7 +1927,7 @@ msgstr "Bแบกn cรณ chแบฏc chแบฏn muแป‘n xรณa khแปi bแบฃng tin cแปงa bแบกn khรดng msgid "Are you sure you want to rescind your request to join {0}?" msgstr "" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "Bแบกn cรณ chแบฏc chแบฏn muแป‘n hแปงy bแป bร i ฤ‘ฤƒng nร y khรดng?" @@ -2018,8 +1965,13 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "Aurora" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "" @@ -2033,7 +1985,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -2050,12 +2002,16 @@ msgstr "Tแปฑ ฤ‘แป™ng phรกt video vร  GIF" msgid "Available" msgstr "" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "Bแบกn cแบงn xรกc minh email trฦฐแป›c khi cรณ thแปƒ tแบกo gรณi khแปŸi ฤ‘แบงu." @@ -2135,10 +2091,10 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,13 +2116,19 @@ msgstr "" msgid "Beta Feature" msgstr "" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" msgstr "" +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." @@ -2185,9 +2147,9 @@ msgstr "" msgid "Birthday" msgstr "Ngร y sinh" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "ฤรฃ bแป‹ chแบทn" msgid "Blocked accounts" msgstr "Tร i khoแบฃn ฤ‘รฃ bแป‹ chแบทn" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Tร i khoแบฃn ฤ‘รฃ bแป‹ chแบทn" @@ -2282,7 +2244,7 @@ msgstr "Tร i khoแบฃn bแป‹ chแบทn khรดng thแปƒ trแบฃ lแปi bร i ฤ‘ฤƒng cแปงa bแบก msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "Tร i khoแบฃn bแป‹ chแบทn khรดng thแปƒ trแบฃ lแปi bร i ฤ‘ฤƒng cแปงa bแบกn, ฤ‘แป cแบญp ฤ‘แบฟn bแบกn hoแบทc tฦฐฦกng tรกc vแป›i bแบกn. Bแบกn sแบฝ khรดng thแปƒ xem nแป™i dung cแปงa hแป vร  hแป sแบฝ khรดng ฤ‘ฦฐแปฃc phรฉp xem nแป™i dung cแปงa bแบกn." -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "Viแป‡c chแบทn khรดng ngฤƒn dแป‹ch vแปฅ gแบฏn nhรฃn nร y ฤ‘แบทt nhรฃn trรชn tร i khoแบฃn cแปงa bแบกn." @@ -2305,10 +2267,11 @@ msgstr "" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky khรดng thแปƒ xรกc nhแบญn tรญnh xรกc thแปฑc cแปงa ngร y ฤ‘ฦฐแปฃc tuyรชn bแป‘." @@ -2330,7 +2293,7 @@ msgstr "Bluesky lร  mแบกng mแปŸ nฦกi bแบกn cรณ thแปƒ chแปn nhร  cung cแบฅp dแป‹ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky lร  mแป™t mแบกng xรฃ hแป™i mแปŸ, nฦกi bแบกn cรณ thแปƒ tแปฑ chแปn nฦกi quแบฃn lรฝ tร i khoแบฃn cแปงa mรฌnh. Nแบฟu bแบกn mแป›i tham gia, chรบng tรดi khuyรชn bแบกn nรชn sแปญ dแปฅng tรนy chแปn mแบทc ฤ‘แป‹nh lร  Bluesky Social." -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky cรนng bแบกn bรจ sแบฝ vui hฦกn!" @@ -2358,7 +2321,7 @@ msgstr "ฤiแปu khoแบฃn Dแป‹ch vแปฅ cแปงa Bluesky Social" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky sแบฝ chแปn mแป™t tแบญp hแปฃp cรกc tร i khoแบฃn ฤ‘ฦฐแปฃc ฤ‘แป xuแบฅt tแปซ nhแปฏng ngฦฐแปi trong mแบกng lฦฐแป›i cแปงa bแบกn." @@ -2403,20 +2366,20 @@ msgstr "" msgid "Browse custom feeds" msgstr "" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 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:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "Xem thรชm ฤ‘แป xuแบฅt" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "Xem thรชm ฤ‘แป xuแบฅt trรชn trang Khรกm phรก" @@ -2425,24 +2388,25 @@ msgstr "Xem thรชm ฤ‘แป xuแบฅt trรชn trang Khรกm phรก" msgid "Browse other feeds" msgstr "Xem cรกc bแบฃng tin khรกc" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "Tรฌm bร i ฤ‘ฤƒng vแป {displayName}" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "Tรฌm bร i ฤ‘ฤƒng ฤ‘ฦฐแปฃc gแบฏn thแบป vแป›i {displayName}" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "Xem bแป™ khแปŸi ฤ‘แบงu {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "Xem chแปง ฤ‘แป {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "Tรฌm chแปง ฤ‘แป {displayName}" @@ -2461,8 +2425,8 @@ msgstr "" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "BแปŸi {0}" @@ -2473,9 +2437,9 @@ msgstr "" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "BแปŸi <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "Bแบฑng viแป‡c tแบกo tร i khoแบฃn, bแบกn ฤ‘แป“ng รฝ vแป›i <0>ฤiแปu kho msgid "By creating an account you agree to the <0>Terms of Service." msgstr "Bแบฑng viแป‡c tแบกo tร i khoแบฃn, bแบกn ฤ‘แป“ng รฝ vแป›i <0>ฤiแปu khoแบฃn dแป‹ch vแปฅ." -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "BแปŸi bแบกn" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "Mรกy แบฃnh" @@ -2534,7 +2498,7 @@ msgstr "" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,7 +2549,7 @@ msgstr "Hแปงy kรญch hoแบกt lแบกi vร  ฤ‘ฤƒng xuแบฅt" msgid "Cancel reply" msgstr "" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "Huแปท tรฌm kiแบฟm" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "ฤรฃ tแบฏt thรดng bรกo chat" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "Hแป™p thฦฐ yรชu cแบงu trรฒ chuyแป‡n" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "Yรชu cแบงu trรฒ chuyแป‡n" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "Cร i ฤ‘แบทt chat" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "ฤรฃ bแบญt lแบกi thรดng bรกo chat" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "Chats" @@ -2837,7 +2802,7 @@ msgstr "Chแปn phฦฐฦกng phรกp xรกc minh tรชn miแปn" msgid "Choose Feeds" msgstr "Chแปn bแบฃng tin" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "Chแปn cho tรดi" @@ -2854,7 +2819,7 @@ msgstr "Chแปn ngฦฐแปi" msgid "Choose post languages" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "Chแปn mร u nร y lร m hรฌnh ฤ‘แบกi diแป‡n cแปงa bแบกn" @@ -2879,7 +2844,7 @@ msgstr "Chแปn bแบฃng tin cแปงa riรชng bแบกn! Cรกc bแบฃng tin ฤ‘ฦฐแปฃc xรขy dแปฑ msgid "Choose your password" msgstr "Chแปn mแบญt khแบฉu cแปงa bแบกn" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "Chแปn tรชn ngฦฐแปi dรนng cแปงa bแบกn" @@ -2966,7 +2931,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "Nhแบฅn ฤ‘แปƒ thแปญ lแบกi tin nhแบฏn khรดng thร nh cรดng" @@ -3003,7 +2968,7 @@ msgstr "Nhแบฅn ฤ‘แปƒ thแปญ lแบกi tin nhแบฏn khรดng thร nh cรดng" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "Nhแบฅn ฤ‘แปƒ thแปญ lแบกi tin nhแบฏn khรดng thร nh cรดng" msgid "Close" msgstr "ฤรณng" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "ฤรณng hแป™p thoแบกi ฤ‘ang mแปŸ" @@ -3047,7 +3012,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "ฤรณng bแบฃng chแปn" @@ -3090,7 +3055,7 @@ msgstr "" msgid "Close this dialog" msgstr "ฤรณng hแป™p thoแบกi nร y" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "" @@ -3098,7 +3063,7 @@ msgstr "" msgid "Closes password update alert" msgstr "ฤรณng cแบฃnh bรกo cแบญp nhแบญt mแบญt khแบฉu" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "ฤรณng trรฌnh soแบกn bร i ฤ‘ฤƒng vร  huแปท bแป nhรกp" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "Chแบฟ ฤ‘แป™ mร u" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "Truyแป‡n tranh" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Quy tแบฏc cแป™ng ฤ‘แป“ng" @@ -3141,7 +3106,7 @@ msgstr "Quy tแบฏc cแป™ng ฤ‘แป“ng" msgid "Complete onboarding and start using your account" msgstr "Hoร n thร nh quรก trรฌnh hฦฐแป›ng dแบซn vร  bแบฏt ฤ‘แบงu sแปญ dแปฅng tร i khoแบฃn cแปงa bแบกn" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "Hoร n thร nh thแปญ thรกch" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "Soแบกn bร i ฤ‘ฤƒng mแป›i" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Soแบกn bร i ฤ‘ฤƒng vแป›i ฤ‘แป™ dร i tแป‘i ฤ‘a {0, plural, other {# kรญ tแปฑ}}" @@ -3160,11 +3125,11 @@ msgstr "Soแบกn bร i ฤ‘ฤƒng vแป›i ฤ‘แป™ dร i tแป‘i ฤ‘a {0, plural, other {# kรญ t msgid "Compose reply" msgstr "Soแบกn trแบฃ lแปi" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "ฤang nรฉn video..." @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "Liรชn hแป‡ hแป— trแปฃ" @@ -3253,7 +3218,7 @@ msgstr "Nแป™i dung & phฦฐฦกng tiแป‡n" msgid "Content and media" msgstr "Nแป™i dung vร  phฦฐฦกng tiแป‡n" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "Nแป™i dung vร  phฦฐฦกng tiแป‡n" @@ -3265,10 +3230,6 @@ msgstr "Nแป™i dung ฤ‘รฃ bแป‹ chแบทn" msgid "Content filters" msgstr "Lแปc nแป™i dung" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "Nแป™i dung trรชn mแบกng mร  cรณ thแปƒ bแบกn sแบฝ thรญch." - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "Cแบฃnh bรกo nแป™i dung" msgid "Content warnings" msgstr "Cแบฃnh bรกo nแป™i dung" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "Nแปn trรฌnh ฤ‘ฦกn, nhแบฅn ฤ‘แปƒ ฤ‘รณng trรฌnh ฤ‘ฦกn." @@ -3302,7 +3263,7 @@ msgstr "Nแปn trรฌnh ฤ‘ฦกn, nhแบฅn ฤ‘แปƒ ฤ‘รณng trรฌnh ฤ‘ฦกn." #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "Tiแบฟp tแปฅc thแบฃo luแบญn..." #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "" msgid "Copied build version to clipboard" msgstr "ฤรฃ sao chรฉp phiรชn bแบฃn xรขy dแปฑng vร o bแบฃng ghi tแบกm" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "" @@ -3376,7 +3337,7 @@ msgstr "" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "Sao chรฉp mแบญt khแบฉu แปฉng dแปฅng" msgid "Copy at:// URI" msgstr "Sao chรฉp URI at://" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "Sao chรฉp mรฃ DID cแปงa tรกc giแบฃ" @@ -3449,10 +3410,10 @@ msgstr "Sao chรฉp liรชn kแบฟt" msgid "Copy link to list" msgstr "Sao chรฉp liรชn kแบฟt ฤ‘แบฟn danh sรกch" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "Sao chรฉp liรชn kแบฟt ฤ‘แบฟn bร i ฤ‘ฤƒng" @@ -3470,8 +3431,8 @@ msgstr "" msgid "Copy message text" msgstr "Sao chรฉp vฤƒn bแบฃn tin nhแบฏn" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "Sao chรฉp URI at:// cแปงa bร i ฤ‘ฤƒng" @@ -3490,7 +3451,7 @@ msgstr "Sao chรฉp giรก trแป‹ bแบฃn ghi TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Chรญnh sรกch bแบฃn quyแปn" @@ -3540,11 +3501,11 @@ msgstr "" msgid "Could not leave chat" msgstr "Khรดng thแปƒ rแปi khแปi chat" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "Khรดng thแปƒ tแบฃi bแบฃng tin" @@ -3562,7 +3523,7 @@ msgstr "" msgid "Could not mute chat" msgstr "Khรดng thแปƒ tแบฏt thรดng bรกo chat" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "" @@ -3606,8 +3567,8 @@ msgstr "" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "Tแบกo" @@ -3624,26 +3585,26 @@ msgstr "" msgid "Create a QR code for a starter pack" msgstr "Tแบกo mรฃ QR cho gรณi khแปŸi ฤ‘แบงu" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "Tแบกo gรณi khแปŸi ฤ‘แบงu" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "Tแบกo gรณi khแปŸi ฤ‘แบงu cho tรดi" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "Tแบกo tร i khoแบฃn" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "Tแบกo tร i khoแบฃn" @@ -3666,15 +3627,15 @@ msgstr "Tแบกo tร i khoแบฃn" msgid "Create an account without using this starter pack" msgstr "Tแบกo tร i khoแบฃn nhฦฐng khรดng sแปญ dแปฅng gรณi khแปŸi ฤ‘แบงu nร y" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "Tแบกo hรฌnh ฤ‘แบกi diแป‡n" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "Tแบกo thรชm" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "" @@ -3743,7 +3704,7 @@ msgstr "Vฤƒn hรณa" msgid "Current beta features" msgstr "" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "" @@ -3770,8 +3731,8 @@ msgstr "" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "Tแป‘i" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "Tแป‘i" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "Chแบฟ ฤ‘แป™ tแป‘i" @@ -3814,7 +3775,7 @@ msgstr "" msgid "Deepfake adult content" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "Mแบทc ฤ‘แป‹nh" @@ -3894,7 +3855,7 @@ msgstr "Xรณa tร i khoแบฃn cแปงa tรดi" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "Xรณa bร i ฤ‘ฤƒng" @@ -3988,7 +3949,7 @@ msgstr "Hแป™p thoแบกi: ฤ‘iแปu chแป‰nh ai cรณ thแปƒ tฦฐฦกng tรกc vแป›i bร i ฤ‘ฤƒ msgid "Dialog: Set search filters" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "Mแป" @@ -4002,7 +3963,7 @@ msgstr "" msgid "Disable 2FA" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "" @@ -4045,9 +4006,9 @@ msgstr "ฤรฃ tแบฏt" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "Hแปงy bแป" msgid "Discard changes?" msgstr "Hแปงy thay ฤ‘แป•i?" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "Hแปงy bแบฃn nhรกp?" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "Hแปงy bร i ฤ‘ฤƒng?" @@ -4079,6 +4040,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Ngฤƒn แปฉng dแปฅng hiแปƒn thแป‹ tร i khoแบฃn cแปงa tรดi cho ngฦฐแปi dรนng ฤ‘รฃ ฤ‘ฤƒng xuแบฅt" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "Ngฤƒn แปฉng dแปฅng hiแปƒn thแป‹ tร i khoแบฃn cแปงa tรดi cho ngฦฐแปi dรน msgid "Discover new custom feeds" msgstr "Khรกm phรก bแบฃng tin mแป›i" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Khรกm phรก bแบฃng tin mแป›i" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Bแป qua" @@ -4103,28 +4064,28 @@ msgstr "Bแป qua" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "Bแป qua lแป—i " -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "Bแป qua hฦฐแป›ng dแบซn bแบฏt ฤ‘แบงu" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "Bแป qua mแปฅc quan tรขm" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "ฤรณng phแบงn nร y" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "" @@ -4142,7 +4103,7 @@ msgstr "Hiแปƒn thแป‹ biแปƒu tฦฐแปฃng vฤƒn bแบฃn thay thแบฟ lแป›n hฦกn" msgid "Display name" msgstr "Tรชn hiแปƒn thแป‹" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "" @@ -4205,8 +4166,8 @@ msgstr "" #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "" msgid "Done" msgstr "Xong" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "Nhแบฅp ฤ‘รบp hoแบทc nhแบฅp vร  giแปฏ tin nhแบฏn ฤ‘แปƒ thรชm bร y tแป cแบฃm xรบc" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "Nhแบฅn ฤ‘รบp ฤ‘แปƒ ฤ‘รณng hแป™p thoแบกi" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "Chแบกm hai lแบงn ฤ‘แปƒ thรญch" @@ -4328,6 +4289,7 @@ msgstr "" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "Chแป‰nh sแปญa hรฌnh แบฃnh" msgid "Edit interaction settings" msgstr "Chแป‰nh sแปญa cร i ฤ‘แบทt tฦฐฦกng tรกc" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "Chแป‰nh sแปญa mแปฅc quan tรขm" @@ -4397,7 +4359,7 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Chแป‰nh sแปญa bแบฃng tin cแปงa tรดi" @@ -4406,6 +4368,11 @@ msgstr "Chแป‰nh sแปญa bแบฃng tin cแปงa tรดi" msgid "Edit name" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Thay ฤ‘แป•i ngฦฐแปi" @@ -4444,7 +4411,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Chแป‰nh sแปญa ai cรณ thแปƒ trแบฃ lแปi" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "Chแป‰nh sแปญa gรณi khแปŸi ฤ‘แบงu cแปงa bแบกn" @@ -4500,8 +4467,8 @@ msgstr "Mรฃ HTML nhรบng" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "Nhรบng bร i ฤ‘ฤƒng" @@ -4509,7 +4476,7 @@ msgstr "Nhรบng bร i ฤ‘ฤƒng" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "Nhรบng bร i ฤ‘ฤƒng vร o trang web cแปงa bแบกn. Chแป‰ cแบงn sao chรฉp ฤ‘oแบกn mรฃ sau vร  dรกn vร o mรฃ HTML cแปงa trang web cแปงa bแบกn." -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "Trรฌnh phรกt video nhรบng" @@ -4533,7 +4500,7 @@ msgstr "Bแบญt nแป™i dung 18+" msgid "Enable beta features" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "" @@ -4550,12 +4517,13 @@ msgstr "Bแบญt phฦฐฦกng tiแป‡n ngoแบกi vi" msgid "Enable media players for" msgstr "Bแบญt trรฌnh phรกt phฦฐฦกng tiแป‡n cho" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "" @@ -4581,7 +4549,7 @@ msgstr "Bแบญt video nแป•i bแบญt trong bแบฃng tin Discover" msgid "Enabled" msgstr "ฤรฃ bแบญt" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "Cuแป‘i bแบฃng tin" @@ -4608,7 +4576,7 @@ msgstr "Nhแบญp tแปซ hoแบทc thแบป" msgid "Enter code" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "Vร o chแบฟ ฤ‘แป™ toร n mร n hรฌnh" @@ -4650,11 +4618,11 @@ msgstr "Nhแบญp tรชn ฤ‘ฤƒng nhแบญp vร  mแบญt khแบฉu" msgid "Enters full screen" msgstr "MแปŸ toร n mร n hรฌnh" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "Giแบฃi trรญ" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Lแป—i" @@ -4684,7 +4652,7 @@ msgstr "ฤรฃ cรณ lแป—i xแบฃy ra khi ฤ‘ang lฦฐu tแป‡p" msgid "Error receiving captcha response." msgstr "Nhแบญn ฤ‘ฦฐแปฃc lแป—i phแบฃn hแป“i captcha." -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "Lแป—i: {error}" @@ -4696,8 +4664,8 @@ msgstr "Mแปi ngฦฐแปi cรณ thแปƒ trแบฃ lแปi" msgid "Everybody can reply to this post." msgstr "Mแปi ngฦฐแปi cรณ thแปƒ trแบฃ lแปi bร i ฤ‘ฤƒng nร y." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "Tแบฅt cแบฃ mแปi ngฦฐแปi" @@ -4711,8 +4679,8 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "Tแบฅt cแบฃ mแปi ngฦฐแปi" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "" @@ -4738,7 +4706,7 @@ msgstr "Trแปซ ngฦฐแปi dรนng bแบกn ฤ‘ang theo dรตi" msgid "Excludes users you follow" msgstr "Trแปซ ngฦฐแปi dรนng bแบกn ฤ‘ang theo dรตi" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "Thoรกt toร n mร n hรฌnh" @@ -4755,11 +4723,11 @@ msgstr "MแปŸ rแป™ng danh sรกch ngฦฐแปi dรนng" msgid "Expand or collapse the full post you are replying to" msgstr "MแปŸ rแป™ng hoแบทc thu gแปn toร n bแป™ bร i ฤ‘ฤƒng bแบกn ฤ‘ang trแบฃ lแปi" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "MแปŸ rแป™ng hoแบทc thu gแปn nแป™i dung bร i ฤ‘ฤƒng" @@ -4802,15 +4770,15 @@ msgstr "Phฦฐฦกng tiแป‡n phแบฃn cแบฃm hoแบทc cรณ khแบฃ nฤƒng phแบฃn cแบฃm." msgid "Explicit sexual images." msgstr "Hรฌnh แบฃnh khiรชu dรขm." -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Khรกm phรก" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "" @@ -4844,7 +4812,7 @@ msgstr "Phฦฐฦกng tiแป‡n ngoแบกi vi" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Phฦฐฦกng tiแป‡n ngoแบกi vi cรณ thแปƒ cho phรฉp trang web thu thแบญp thรดng tin vแป bแบกn vร  thiแบฟt bแป‹ cแปงa bแบกn. Thรดng tin khรดng ฤ‘ฦฐแปฃc gแปŸi ฤ‘i hoแบทc yรชu cแบงu cho ฤ‘แบฟn khi bแบกn nhแบฅn nรบt \"phรกt\"." -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Tรนy chแป‰nh phฦฐฦกng tiแป‡n ngoแบกi vi" @@ -4886,7 +4854,7 @@ msgstr "Khรดng tแบกo ฤ‘ฦฐแปฃc tรชn ngฦฐแปi dรนng. Vui lรฒng thแปญ lแบกi." #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "Tแบฃi cuแป™c trรฒ chuyแป‡n khรดng thร nh cรดng" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "Khรดng tแบฃi ฤ‘ฦฐแปฃc cร i ฤ‘แบทt bแบฃng tin" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "" @@ -5012,14 +4981,14 @@ msgstr "" msgid "Failed to load profiles" msgstr "" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "Khรดng tแบฃi ฤ‘ฦฐแปฃc gแปฃi รฝ bแบฃng tin" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "Khรดng tแบฃi ฤ‘ฦฐแปฃc gแปฃi รฝ theo dรตi" @@ -5027,12 +4996,12 @@ msgstr "Khรดng tแบฃi ฤ‘ฦฐแปฃc gแปฃi รฝ theo dรตi" msgid "Failed to lock group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "" msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "" @@ -5191,7 +5160,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "Bแบฃng tin" @@ -5212,7 +5181,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "Menu bแบฃng tin" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "ฤรฃ cแบญp nhแบญt bแบฃng tin!" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "Bแบฃng tin mร  bแบกn cรณ thแปƒ thรญch." - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "Tแบฃi cแบญp nhแบญt" @@ -5273,34 +5238,22 @@ msgstr "Tแบฃi cแบญp nhแบญt" msgid "File saved successfully!" msgstr "Lฦฐu tแป‡p thร nh cรดng!" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "Lแปc tแปซ bแบฃng tin" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "Lแปc tรฌm kiแบฟm theo ngรดn ngแปฏ" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 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/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "" msgid "Filter who can opt to receive notifications for your activity" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "" @@ -5352,8 +5305,8 @@ msgstr "Tรฌm tร i khoแบฃn ฤ‘แป theo dรตi" msgid "Find and invite friends" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "" @@ -5387,7 +5340,7 @@ msgstr "" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "" @@ -5429,7 +5382,7 @@ msgstr "" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "Theo dรตi {0}" msgid "Follow {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "Theo dรตi {handle}" @@ -5453,11 +5406,11 @@ msgstr "Theo dรตi {handle}" msgid "Follow 10 accounts" msgstr "Theo dรตi 10 tร i khoแบฃn" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "Theo dรตi 7 tร i khoแบฃn" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "Ngฦฐแปi ฤ‘ang theo dรตi @{0} mร  bแบกn biแบฟt" @@ -5544,7 +5497,7 @@ msgstr "Ngฦฐแปi theo dรตi bแบกn biแบฟt" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "ฤang theo dรตi {0}" msgid "Following {displayName}" msgstr "" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "ฤang theo dรตi {handle}" @@ -5578,21 +5531,21 @@ msgstr "ฤang theo dรตi {handle}" msgid "Following feed preferences" msgstr "Cร i ฤ‘แบทt bแบฃng tin ฤang theo dรตi" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Cร i ฤ‘แบทt bแบฃng tin ฤang theo dรตi" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Theo dรตi bแบกn" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "Phรดng chแปฏ" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "Kรญch cแปก phรดng chแปฏ" @@ -5612,13 +5565,13 @@ msgstr "" msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "Vรฌ lรฝ do bแบฃo mแบญt, bแบกn sแบฝ khรดng thแปƒ xem lแบกi trang nร y. Nแบฟu bแบกn lร m mแบฅt mแบญt khแบฉu แปฉng dแปฅng, bแบกn sแบฝ cแบงn tแบกo mแป™t mแบญt khแบฉu mแป›i." -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "Chรบng tรดi khuyแบฟn nghแป‹ sแปญ dแปฅng phรดng chแปฏ chแปง ฤ‘แป ฤ‘แปƒ cรณ trแบฃi nghiแป‡m tแป‘t nhแบฅt." #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "Dร nh cho bแบกn" @@ -5628,7 +5581,7 @@ msgstr "Dร nh cho bแบกn" msgid "Forever" msgstr "Vฤฉnh viแป…n" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "" @@ -5647,11 +5600,11 @@ msgstr "Quรชn mแบญt khแบฉu?" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "" @@ -5674,7 +5627,7 @@ msgstr "Tแปซ <0/>" msgid "From these people" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "Tแบกo gรณi khแปŸi ฤ‘แบงu" @@ -5718,39 +5671,39 @@ msgstr "" msgid "Get help" msgstr "Trแปฃ giรบp" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "" @@ -5762,15 +5715,15 @@ msgstr "" msgid "Get notifications when people send you messages." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "" @@ -5799,11 +5752,11 @@ msgstr "Bแบฏt ฤ‘แบงu" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "Chแปn hรฌnh cho hแป“ sฦก cแปงa bแบกn" @@ -5813,20 +5766,20 @@ msgstr "" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,7 +5829,7 @@ msgid "Go live for" msgstr "" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" msgstr "" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "" @@ -6077,7 +6031,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "Hashtag" @@ -6098,7 +6052,7 @@ msgstr "" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "Gแบทp trแปฅc trแบทc?" @@ -6114,7 +6068,7 @@ msgstr "" msgid "Help" msgstr "Giรบp ฤ‘แปก" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Giรบp ngฦฐแปi khรกc biแบฟt bแบกn khรดng phแบฃi lร  bot bแบฑng cรกch tแบฃi lรชn hoแบทc tแบกo hรฌnh ฤ‘แบกi diแป‡n." @@ -6135,12 +6089,12 @@ msgstr "" msgid "Hi there!" msgstr "" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "Bแป‹ แบฉn" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "Bแป‹ แบฉn bแปŸi cร i ฤ‘แบทt kiแปƒm duyแป‡t cแปงa bแบกn." @@ -6148,9 +6102,10 @@ msgstr "Bแป‹ แบฉn bแปŸi cร i ฤ‘แบทt kiแปƒm duyแป‡t cแปงa bแบกn." msgid "Hidden list" msgstr "Danh sรกch แบฉn" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "Danh sรกch แบฉn" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "แบจn" @@ -6198,7 +6154,7 @@ msgstr "แบจn trแบฃ lแปi cho tแบฅt cแบฃ mแปi ngฦฐแปi" msgid "Hide reply for me" msgstr "แบจn trแบฃ lแปi cho tรดi" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "แบจn thแบป nร y" @@ -6218,16 +6174,18 @@ msgstr "แบจn trแบฃ lแปi nร y?" msgid "Hide translation" msgstr "" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "แบจn chแปง ฤ‘แป nแป•i trแป™i" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "แบจn chแปง ฤ‘แป nแป•i trแป™i?" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "แบจn video nแป•i trแป™i?" @@ -6240,7 +6198,7 @@ msgstr "แบจn danh sรกch ngฦฐแปi dรนng" msgid "Hide verification badges" msgstr "แบจn cรกc dแบฅu xรกc minh" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "แบจn nแป™i dung" @@ -6293,8 +6251,8 @@ msgstr "Hmmmm, khรดng thแปƒ tแบฃi dแป‹ch vแปฅ kiแปƒm duyแป‡t ฤ‘รณ." msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "Chแป nhรฉ! Chรบng tรดi ฤ‘ang dแบงn dแบงn cแบฅp quyแปn truy cแบญp video, vร  bแบกn vแบซn ฤ‘ang trong hร ng chแป. Hรฃy kiแปƒm tra lแบกi sau!" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6321,10 +6279,6 @@ msgstr "" msgid "Hosting provider: Bluesky" msgstr "" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "Nแป•i bแบญt" - #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" msgstr "" @@ -6409,6 +6363,7 @@ msgstr "" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "Nแบฟu bแบกn muแป‘n thay ฤ‘แป•i mแบญt khแบฉu, chรบng tรดi sแบฝ gแปŸi mรฃ xรกc minh ฤ‘แปƒ xรกc nhแบญn rแบฑng ฤ‘รขy lร  tร i khoแบฃn cแปงa bแบกn." +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "" @@ -6548,7 +6503,7 @@ msgstr "" msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "" @@ -6564,7 +6519,6 @@ msgstr "Khรดng cรณ yรชu cแบงu nร o!" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "" @@ -6573,7 +6527,7 @@ msgstr "" msgid "Include or exclude matching posts (currently: {0})" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "" @@ -6587,10 +6541,6 @@ msgstr "" msgid "Include posts made until this date" msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "Tรชn ngฦฐแปi dรนng hoแบทc mแบญt khแบฉu khรดng hแปฃp lแป‡" @@ -6683,7 +6633,7 @@ msgstr "" msgid "Invite code" msgstr "Mรฃ mแปi" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Khรดng chแบฅp nhแบญn mรฃ mแปi. Hรฃy kiแปƒm tra bแบกn ฤ‘รฃ nhแบญp ฤ‘รบng chฦฐa vร  thแปญ lแบกi." @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "Chแป‰ mแป›i cรณ bแบกn thรดi! Thรชm ngฦฐแปi khรกc vร o gรณi khแปŸi ฤ‘แบงu cแปงa bแบกn bแบฑng cรกch tรฌm kiแบฟm แปŸ trรชn." #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ID cรดng viแป‡c: {0}" @@ -6816,8 +6766,8 @@ msgstr "Tham gia trรฒ chuyแป‡n" msgid "Journalism" msgstr "Bรกo chรญ" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "Gแบฏn nhรฃn bแปŸi {0}." -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "Gแบฏn nhรฃn bแปŸi ngฦฐแปi ฤ‘ฤƒng." #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "Nhรฃn" @@ -6852,7 +6802,7 @@ msgstr "ฤรฃ thรชm nhรฃn" msgid "Labels applied to this post" msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Nhรฃn lร  chรบ thรญch cho ngฦฐแปi dรนng vร  nแป™i dung. Chรบng cรณ thแปƒ ฤ‘ฦฐแปฃc sแปญ dแปฅng ฤ‘แปƒ แบฉn, cแบฃnh bรกo, vร  phรขn loแบกi mแบกng lฦฐแป›i." @@ -6864,7 +6814,7 @@ msgstr "Nhรฃn trรชn tร i khoแบฃn cแปงa bแบกn" msgid "Language" msgstr "" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "Cร i ฤ‘แบทt ngรดn ngแปฏ" @@ -6874,7 +6824,7 @@ msgstr "Cร i ฤ‘แบทt ngรดn ngแปฏ" msgid "Languages" msgstr "Ngรดn ngแปฏ" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "Lแป›n hฦกn" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "Mแป›i nhแบฅt" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "Tรฌm hiแปƒu thรชm" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "" @@ -6937,8 +6887,8 @@ msgstr "" msgid "Learn more about self hosting your PDS." msgstr "Tรฌm hiแปƒu thรชm vแป viแป‡c tแปฑ lฦฐu trแปฏ PDS cแปงa bแบกn." -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "Tรฌm hiแปƒu thรชm vแป kiแปƒm duyแป‡t ฤ‘ฦฐแปฃc รกp dแปฅng cho nแป™i dung nร y" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "Tรฌm hiแปƒu thรชm vแป cแบฃnh bรกo nร y" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "Tรฌm hiแปƒu thรชm." @@ -6993,8 +6943,8 @@ msgstr "Rแปi ฤ‘i" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "Rแปi Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "" @@ -7042,7 +6992,7 @@ msgstr "" msgid "left to go." msgstr "cรฒn lแบกi." -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "ฤแปƒ tรดi chแปn" @@ -7057,7 +7007,7 @@ msgstr "Bแบฏt ฤ‘แบงu nร o!" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "Sรกng" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Sรกng" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "Thรญch" @@ -7076,7 +7026,7 @@ msgstr "Thรญch" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Thรญch ({0, plural, other {# lฦฐแปฃt thรญch}})" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "Thรญch 10 bร i" @@ -7085,7 +7035,7 @@ msgstr "Thรญch 10 bร i" msgid "Like 10 posts to train the Discover feed" msgstr "Thรญch 10 bร i ฤ‘แปƒ dแบกy cho bแบฃng tin Khรกm phรก" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "Thรญch bแบฃng tin nร y" @@ -7093,8 +7043,8 @@ msgstr "Thรญch bแบฃng tin nร y" msgid "Like this labeler" msgstr "Thรญch dแป‹ch vแปฅ gแบฏn nhรฃn nร y" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "Thรญch bแปŸi" @@ -7111,27 +7061,45 @@ msgstr "Thรญch bแปŸi" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Thรญch bแปŸi {0, plural, other {# ngฦฐแปi dรนng}}" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Thรญch bแปŸi {likeCount, plural, other {# ngฦฐแปi dรนng}}" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "Lฦฐแปฃt thรญch" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "Lฦฐแปฃt thรญch cho bร i ฤ‘ฤƒng nร y" @@ -7144,7 +7112,7 @@ msgstr "Ngang hร ng" msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "Danh sรกch" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "ฤรฃ ฤ‘รฃ bแป แบฉn toร n danh sรกch" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "" msgid "Live event happening now: {0}" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "" @@ -7279,12 +7247,12 @@ msgstr "" msgid "Live link" msgstr "" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "Tแบฃi thรชm" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "Tแบฃi thรชm gแปฃi รฝ bแบฃng tin" @@ -7292,8 +7260,8 @@ msgstr "Tแบฃi thรชm gแปฃi รฝ bแบฃng tin" msgid "Load new notifications" msgstr "Tแบฃi thรดng bรกo mแป›i" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "" msgid "Locked" msgstr "" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "Log" @@ -7387,7 +7355,7 @@ msgstr "" msgid "Make adjustments to email settings for your account" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "Tแบกo cho tรดi mแป™t cรกi" @@ -7418,15 +7386,15 @@ msgstr "" msgid "Mark all as read" msgstr "ฤรกnh dแบฅu tแบฅt cแบฃ lร  ฤ‘รฃ ฤ‘แปc" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "ฤรกnh dแบฅu ฤ‘รฃ ฤ‘แปc" msgid "Marked all as read" msgstr "ฤรฃ ฤ‘รกnh dแบฅu tแบฅt cแบฃ lร  ฤ‘รฃ ฤ‘แปc" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "" @@ -7456,8 +7424,12 @@ msgstr "" msgid "Maybe later" msgstr "ฤแปƒ sau" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "Phฦฐฦกng tiแป‡n" @@ -7475,7 +7447,7 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Phฦฐฦกng tiแป‡n cรณ thแปƒ gรขy phแบฃn cแบฃm cho mแป™t sแป‘ khรกn giแบฃ." -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "ngฦฐแปi dรนng ฤ‘ฦฐแปฃc ฤ‘แป cแบญp" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Nhแบฏc ฤ‘แบฟn" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "ฤรฃ xรณa tin nhแบฏn" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "" @@ -7563,15 +7535,15 @@ msgstr "" msgid "Message options" msgstr "Tuแปณ chแปn tin nhแบฏn" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "Tin nhแบฏn" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -7592,7 +7564,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Kiแปƒm duyแป‡t" @@ -7636,7 +7608,7 @@ msgstr "ฤรฃ cแบญp nhแบญt danh sรกch kiแปƒm duyแป‡t" msgid "Moderation lists" msgstr "Danh sรกch kiแปƒm duyแป‡t" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Danh sรกch kiแปƒm duyแป‡t" @@ -7645,7 +7617,7 @@ msgstr "Danh sรกch kiแปƒm duyแป‡t" msgid "moderation settings" msgstr "Cร i ฤ‘แบทt kiแปƒm duyแป‡t" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "Trแบกng thรกi kiแปƒm duyแป‡t" @@ -7786,7 +7758,7 @@ msgstr "" msgid "Muted accounts" msgstr "Tร i khoแบฃn bแป‹ แบฉn" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Tร i khoแบฃn bแป‹ แบฉn" @@ -7867,7 +7839,6 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Thรดi, tแบกo tรชn ngฦฐแปi dรนng cho tรดi" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "Tแบกo mแป›i" @@ -7893,11 +7864,11 @@ msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "Chat mแป›i" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "Tรญnh nฤƒng mแป›i" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "" @@ -7966,13 +7937,13 @@ msgstr "Danh sรกch mแป›i" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "" @@ -7982,12 +7953,12 @@ msgstr "" msgid "New password" msgstr "Mแบญt khแบฉu mแป›i" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "Bร i ฤ‘ฤƒng mแป›i" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "Trแบฃ lแปi mแป›i nhแบฅt trฦฐแป›c" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "Tin tแปฉc" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "Hรฌnh kแบฟ tiแบฟp" msgid "Night" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -8065,6 +8036,11 @@ msgstr "" msgid "No app passwords yet" msgstr "Chฦฐa cรณ mแบญt khแบฉu แปฉng dแปฅng nร o" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." msgstr "" @@ -8098,7 +8074,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Khรดng tรฌm thแบฅy bแบฃng tin nร o. Thแปญ tรฌm gรฌ ฤ‘รณ khรกc xem." -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "" @@ -8116,9 +8092,15 @@ msgstr "" msgid "No image" msgstr "" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "Chฦฐa cรณ lฦฐแปฃt thรญch nร o" @@ -8135,7 +8117,12 @@ msgstr "" msgid "No longer following {0}" msgstr "Khรดng cรฒn theo dรตi {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "" @@ -8143,7 +8130,7 @@ msgstr "" msgid "No messages yet" msgstr "Chฦฐa cรณ tin nhแบฏn nร o" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "" @@ -8180,16 +8167,21 @@ msgstr "Khรดng ai ngoร i tรกc giแบฃ cรณ thแปƒ trรญch dแบซn bร i ฤ‘ฤƒng nร y." msgid "No one can send messages" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "Chฦฐa cรณ trรญch dแบซn nร o" @@ -8198,11 +8190,7 @@ msgstr "Chฦฐa cรณ trรญch dแบซn nร o" msgid "No recent GIFs yet. Pick one to see it here." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "" @@ -8217,13 +8205,13 @@ msgstr "Khรดng cรณ kแบฟt quแบฃ" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Khรดng cรณ kแบฟt quแบฃ" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "Khรดng cรณ kแบฟt quแบฃ nร o cho \"{0}\"." @@ -8236,23 +8224,23 @@ msgstr "Khรดng tรฌm thแบฅy kแบฟt quแบฃ nร o" msgid "No results found for \"{query}\"" msgstr "Khรดng tรฌm thแบฅy kแบฟt quแบฃ nร o cho \"{query}\"" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "Khรดng cรณ kแปƒt quแบฃ nร o." -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "" @@ -8265,7 +8253,7 @@ msgstr "Khรดng, cแบฃm ฦกn" msgid "No translation received from your device." msgstr "" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "" @@ -8278,7 +8266,7 @@ msgstr "Khรดng ai" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Chฦฐa cรณ ai thรญch bร i ฤ‘ฤƒng nร y. Cรณ lแบฝ bแบกn nรชn lร  ngฦฐแปi ฤ‘แบงu tiรชn!" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "Chฦฐa cรณ ai trรญch dแบซn bร i ฤ‘ฤƒng nร y. Cรณ lแบฝ bแบกn nรชn lร  ngฦฐแปi ฤ‘แบงu tiรชn!" @@ -8298,6 +8286,10 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Khแปa thรขn khรดng khiรชu dรขm" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "" msgid "Not followed by anyone youโ€™re following" msgstr "" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "Khรดng tรฌm thแบฅy" @@ -8333,7 +8325,7 @@ msgstr "Chรบ รฝ vแป viแป‡c chia sแบป" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Chรบ รฝ: Bluesky lร  mแป™t trang mแบกng mแปŸ vร  cรดng khai. Cร i ฤ‘แบทt nร y chแป‰ giแป›i hแบกn trแบกng thรกi hiแปƒn thแป‹ nแป™i dung cแปงa bแบกn trรชn แปฉng dแปฅng vร  trang web Bluesky, cรกc แปฉng dแปฅng khรกc cรณ thแปƒ khรดng tรดn trแปng cร i ฤ‘แบทt nร y. Nแป™i dung cแปงa bแบกn vแบซn cรณ thแปƒ ฤ‘ฦฐแปฃc hiแปƒn thแป‹ bแปŸi cรกc แปฉng dแปฅng vร  trang web khรกc cho ngฦฐแปi dรนng sau ฤ‘ฤƒng xuแบฅt." -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Cร i ฤ‘แบทt thรดng bรกo" @@ -8353,11 +8345,12 @@ msgstr "Cร i ฤ‘แบทt thรดng bรกo" msgid "Notification sounds" msgstr "ร‚m thanh thรดng bรกo" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "ร”i khรดng!" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "OK" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "ฤแบทt lแบกi quรก trรฌnh hฦฐแป›ng dแบซn" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "Mแป™t hoแบทc nhiแปu GIF thiแบฟu vฤƒn bแบฃn thay thแบฟ." -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "Mแป™t hoแบทc nhiแปu hรฌnh แบฃnh thiแบฟu vฤƒn bแบฃn thay thแบฟ." @@ -8454,11 +8449,11 @@ msgstr "" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "Mแป™t hoแบทc nhiแปu video thiแบฟu vฤƒn bแบฃn thay thแบฟ" @@ -8471,7 +8466,7 @@ msgstr "Chแป‰ {0} cรณ thแปƒ trแบฃ lแปi" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "" @@ -8507,6 +8502,10 @@ msgstr "" msgid "Only people the chat owner follows can join" msgstr "" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "" @@ -8519,7 +8518,7 @@ msgstr "" msgid "Only replies" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "Chแป‰ hแป— trแปฃ tแป‡p WebVTT (.vtt)" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "ร”i!" @@ -8544,7 +8543,7 @@ msgstr "ร”i!" msgid "Open advanced search options" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "MแปŸ trรฌnh tแบกo hรฌnh ฤ‘แบกi diแป‡n" @@ -8570,21 +8569,22 @@ msgstr "MแปŸ tรนy chแปn hแป™i thoแบกi" msgid "Open draft" msgstr "" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "MแปŸ trรฌnh ฤ‘ฦกn" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "MแปŸ trรฌnh chแปn biแปƒu tฦฐแปฃng cแบฃm xรบc" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "MแปŸ mร n hรฌnh thรดng tin bแบฃng tin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "MแปŸ trรฌnh ฤ‘ฦกn tรนy chแปn bแบฃng tin" @@ -8627,7 +8627,7 @@ msgstr "MแปŸ trang gแปก lแป—i kiแปƒm duyแป‡t" msgid "Open muted words and tags settings" msgstr "MแปŸ cร i ฤ‘แบทt thแบป vร  tแปซ cแบฅm" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "MแปŸ gรณi" @@ -8699,7 +8699,7 @@ msgstr "MแปŸ chi tiแบฟt bแป• sung cho mแป™t mแปฅc gแปก lแป—i" msgid "Opens alt text dialog" msgstr "MแปŸ hแป™p thoแบกi vฤƒn bแบฃn thay thแบฟ" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "MแปŸ mรกy แบฃnh trรชn thiแบฟt bแป‹" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "MแปŸ quy trรฌnh tแบกo tร i khoแบฃn Bluesky mแป›i" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "MแปŸ quy trรฌnh ฤ‘ฤƒng nhแบญp vร o tร i khoแบฃn Bluesky hiแป‡n tแบกi cแปงa bแบกn" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "ฤรฃ cแบญp nhแบญt mแบญt khแบฉu!" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "Dแปซng" @@ -8925,12 +8925,12 @@ msgstr "Dแปซng" msgid "Pause GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "Dแปซng video" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "Con ngฦฐแปi" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "Ngฦฐแปi\tฤ‘ฦฐแปฃc @{0} theo dรตi" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "Ngฦฐแปi ฤ‘ang theo dรตi @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "Hรฌnh แบฃnh cho ngฦฐแปi lแป›n" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Ghim bแบฃng tin" @@ -9034,7 +9034,7 @@ msgstr "Ghim bแบฃng tin" msgid "Pin to home" msgstr "Ghim vร o trang chแปง" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "Ghim vร o trang chแปง" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "ฤรฃ ghim" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "ฤรฃ ghim {0} vร o trang chแปง" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "ฤรฃ ghim vร o bแบฃng tin cแปงa bแบกn" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "Phรกt" @@ -9076,8 +9076,8 @@ msgstr "Phรกt {0}" msgid "Play GIF" msgstr "" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "Phรกt video" @@ -9109,11 +9109,11 @@ msgstr "Xin hรฃy thรชm nhรฃn cแบฃnh bรกo phรน hแปฃp vแป›i nแป™i dung mร  bแบกn msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "Vui lรฒng chแปn tรชn tร i khoแบฃn." -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "Vui lรฒng chแปn mแบญt khแบฉu." @@ -9122,7 +9122,7 @@ msgstr "Vui lรฒng chแปn mแบญt khแบฉu." msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." msgstr "" -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "Vui lรฒng hoร n thร nh xรกc minh captcha." @@ -9179,7 +9179,7 @@ msgstr "" msgid "Please enter the security code we sent to your previous email address." msgstr "" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "Vui lรฒng nhแบญp email cแปงa bแบกn." @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "Chรญnh trแป‹" @@ -9269,7 +9269,7 @@ msgstr "Chรญnh trแป‹" msgid "Porn" msgstr "Hรฌnh แบฃnh khiรชu dรขm" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "ฤฤƒng" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "ฤฤƒng" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "ฤฤƒng tแบฅt cแบฃ" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "ฤฤƒng bแปŸi @{0}" @@ -9340,7 +9340,7 @@ msgstr "Bร i ฤ‘ฤƒng แบฉn bแปŸi bแบกn" msgid "Post interaction settings" msgstr "Cร i ฤ‘แบทt tฦฐฦกng tรกc bร i ฤ‘ฤƒng" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Cร i ฤ‘แบทt tฦฐฦกng tรกc bร i ฤ‘ฤƒng" @@ -9369,8 +9369,9 @@ msgctxt "toast" msgid "Post pinned" msgstr "ฤรฃ ghim bร i ฤ‘ฤƒng" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" msgstr "" #: src/state/queries/pinned-post.ts:61 @@ -9381,15 +9382,12 @@ msgstr "ฤรฃ gแปŸ ghim bร i ฤ‘ฤƒng" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "Bร i ฤ‘ฤƒng" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "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แป‹." @@ -9398,6 +9396,10 @@ msgstr "Bร i ฤ‘ฤƒng cรณ thแปƒ bแป‹ แบฉn dแปฑa trรชn vฤƒn bแบฃn, thแบป, hoแบทc c msgid "Posts hidden" msgstr "Bร i ฤ‘ฤƒng ฤ‘รฃ แบฉn" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -9449,20 +9451,21 @@ msgstr "Quyแปn riรชng tฦฐ" msgid "Privacy and security" msgstr "Quyแปn riรชng tฦฐ vร  bแบฃo mแบญt" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Quyแปn riรชng tฦฐ vร  bแบฃo mแบญt" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "Chรญnh sรกch bแบฃo mแบญt" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "ฤang xแปญ lรฝ video..." @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "Danh sรกch cรดng khai, chia sแบป ฤ‘ฦฐแปฃc cแปงa ngฦฐแปi dรนng ฤ‘แปƒ cho viแป‡c แบฉn hoแบทc chแบทn hร ng loแบกt." #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "ฤฤƒng bร i" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "ฤฤƒng bร i" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "ฤฤƒng trแบฃ lแปi" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "ฤฤƒng trแบฃ lแปi" @@ -9599,12 +9602,12 @@ msgstr "Trรญch dแบซn bร i ฤ‘ฤƒng ฤ‘รฃ bแป‹ tแบฏt" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "Trรญch dแบซn" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "Trรญch dแบซn cแปงa bร i ฤ‘ฤƒng nร y" @@ -9647,7 +9650,7 @@ msgstr "Tรกi kรญch hoแบกt tร i khoแบฃn cแปงa bแบกn" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "" @@ -9657,11 +9660,11 @@ msgstr "" msgid "Read blog post" msgstr "ฤแปc bร i blog" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "Thu gแปn" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "Xem thรชm" @@ -9687,11 +9690,11 @@ msgstr "ฤแปc Chรญnh sรกch bแบฃo mแบญt cแปงa Bluesky" msgid "Read the Bluesky Terms of Service" msgstr "ฤแปc ฤiแปu khoแบฃn dแป‹ch vแปฅ cแปงa Bluesky" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "" @@ -9721,10 +9724,6 @@ msgstr "" msgid "Recently used" msgstr "" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "ฤแป xuแบฅt" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "Kแบฟt nแป‘i lแบกi" @@ -9748,7 +9747,7 @@ msgstr "Tแปซ chแป‘i yรชu cแบงu trรฒ chuyแป‡n" msgid "Reject join request" msgstr "" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "Tแบฃi lแบกi hแป™i thoแบกi" @@ -9766,7 +9765,7 @@ msgstr "Tแบฃi lแบกi hแป™i thoแบกi" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "Xรณa" @@ -9792,8 +9791,8 @@ msgstr "" msgid "Remove {q}" msgstr "" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "Xรณa tร i khoแบฃn" @@ -9845,15 +9844,15 @@ msgstr "" msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "Xรณa khแปi bแบฃng tin cแปงa tรดi" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "Xรณa khแปi truy cแบญp nhanh?" @@ -9862,7 +9861,7 @@ msgstr "Xรณa khแปi truy cแบญp nhanh?" msgid "Remove from saved feeds" msgstr "Xรณa khแปi bแบฃng tin ฤ‘รฃ lฦฐu" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "" @@ -9880,8 +9879,8 @@ msgstr "Xรณa hรฌnh" msgid "Remove live status" msgstr "" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "" @@ -9943,7 +9942,7 @@ msgstr "ฤรฃ xรณa khแปi danh sรกch" msgid "Removed from saved feeds" msgstr "ฤรฃ xรณa khแปi bแบฃng tin ฤ‘ฦฐแปฃc lฦฐu" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "" @@ -9952,7 +9951,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "Trแบฃ lแปi" @@ -10037,7 +10037,7 @@ msgstr "Trแบฃ lแปi cho bร i ฤ‘ฤƒng nร y ฤ‘รฃ bแป‹ tแบฏt." msgid "Reply" msgstr "Trแบฃ lแปi" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "Trแบฃ lแปi" @@ -10098,8 +10098,8 @@ msgstr "Bรกo cรกo hแป™i thoแบกi" msgid "Report dialog" msgstr "Hแป™p thoแบกi bรกo cรกo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "Bรกo cรกo bแบฃng tin" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "ฤฤƒng lแบกi bแปŸi bแบกn" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "Lฦฐแปฃt ฤ‘ฤƒng lแบกi cแปงa bร i ฤ‘ฤƒng nร y" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "" @@ -10253,7 +10253,7 @@ msgstr "" msgid "Requests" msgstr "" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10358,10 +10358,10 @@ msgstr "Thแปญ lแบกi hร nh ฤ‘แป™ng cuแป‘i cรนng (ฤ‘รฃ xแบฃy ra lแป—i)" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "TrแปŸ vแป trang chแปง" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "TrแปŸ vแป trang trฦฐแป›c" @@ -10446,27 +10446,27 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Lฦฐu thay ฤ‘แป•i" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "Lฦฐu mรฃ QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "Lฦฐu vร o bแบฃng tin cแปงa tรดi" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "Bแบฃng tin ฤ‘รฃ lฦฐu" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "ฤรฃ lฦฐu vร o bแบฃng tin cแปงa bแบกn" @@ -10520,8 +10520,8 @@ msgstr "ฤรฃ lฦฐu vร o bแบฃng tin cแปงa bแบกn" msgid "Say hello!" msgstr "Gแปญi lแปi chร o!" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "" @@ -10535,7 +10535,7 @@ msgstr "" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "" @@ -10543,15 +10543,15 @@ msgstr "" msgid "Science" msgstr "Khoa hแปc" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "" @@ -10564,8 +10564,8 @@ msgstr "Cuแป™n ฤ‘แบฟn ฤ‘แบงu trang" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "Tรฌm kiแบฟm" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Tรฌm kiแบฟm bร i ฤ‘ฤƒng cแปงa @{0}" @@ -10612,11 +10612,11 @@ msgstr "" msgid "Search for feeds that you want to suggest to others." msgstr "Tรฌm kiแบฟm bแบฃng tin bแบกn muแป‘n ฤ‘แป xuแบฅt cho ngฦฐแปi khรกc." -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "Tรฌm thรชm tร i khoแบฃn" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "Tรฌm thรชm bแบฃng tin" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "Tรฌm GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "" @@ -10707,17 +10707,22 @@ 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/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "Thanh trฦฐแปฃt. Sแปญ dแปฅng cรกc phรญm mลฉi tรชn ฤ‘แปƒ tรฌm kiแบฟm vแป phรญa trฦฐแป›c vร  phรญa sau, vร  phรญm cรกch ฤ‘แปƒ phรกt / tแบกm dแปซng" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "" @@ -10748,7 +10753,7 @@ msgstr "" msgid "Select {langName}" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "Chแปn mร u" @@ -10764,11 +10769,11 @@ msgstr "Chแปn tร i khoแบฃn" msgid "Select an app language" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "Chแปn hรฌnh hiแปƒn thแป‹" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "Chแปn emoji" @@ -10780,12 +10785,13 @@ msgstr "" msgid "Select app language" msgstr "" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "" @@ -10826,7 +10832,7 @@ msgstr "Chแปn GIF" msgid "Select GIF \"{0}\"" msgstr "Chแปn GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "" @@ -10864,7 +10870,7 @@ msgstr "" msgid "Select telephone code" msgstr "" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "Chแปn emoji {emojiName} lร m hรฌnh hiแปƒn thแป‹" @@ -10945,7 +10951,8 @@ msgstr "Gแปญi tin nhแบฏn" msgid "Send post to {name}" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "Gแปญi bร i ฤ‘ฤƒng ฤ‘แบฟn..." @@ -10963,12 +10970,12 @@ msgstr "" msgid "Send verification email" msgstr "Gแปญi email xรกc minh" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "Gแปญi qua tin nhแบฏn" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11021,14 +11028,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "ฤแบทt email ฤ‘แปƒ ฤ‘แบทt lแบกi mแบญt khแบฉu" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Cร i ฤ‘แบทt" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "" @@ -11036,49 +11043,49 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "" @@ -11115,8 +11122,8 @@ msgstr "" msgid "Share anyway" msgstr "Vแบซn chia sแบป" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "" @@ -11127,7 +11134,7 @@ msgstr "" msgid "Share feedback" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "Hแป™p thoแบกi chia sแบป liรชn kแบฟt" msgid "Share my profile" msgstr "" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "" @@ -11169,12 +11176,12 @@ msgstr "" msgid "Share QR code" msgstr "Chia sแบป mรฃ QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "Chia sแบป bแบฃng tin nร y" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "" @@ -11186,8 +11193,8 @@ msgstr "Chia sแบป gรณi khแปŸi ฤ‘แบงu nร y" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Chia sแบป gรณi khแปŸi ฤ‘แบงu nร y vร  giรบp mแปi ngฦฐแปi tham gia cแป™ng ฤ‘แป“ng cแปงa bแบกn trรชn Bluesky." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11205,7 +11212,7 @@ msgstr "" msgid "Share your thoughtsโ€ฆ" msgstr "" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "Trรฌnh kiแปƒm tra cร i ฤ‘แบทt ฤ‘รฃ chia sแบป" @@ -11219,7 +11226,7 @@ msgstr "" msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." msgstr "" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "Hiแป‡n" msgid "Show alt text" msgstr "Hiแปƒn thแป‹ vฤƒn bแบฃn thay thแบฟ" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "Vแบซn hiแปƒn thแป‹" @@ -11274,9 +11281,9 @@ msgstr "Vแบซn hiแปƒn thแป‹ danh sรกch" msgid "Show lists of users to select from" msgstr "" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "Hiแปƒn thแป‹ thรชm" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "Hiแปƒn thแป‹ cแบฃnh bรกo vร  bแป™ lแปc tแปซ bแบฃng tin" msgid "Show when youโ€™re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "Hiแปƒn thแป‹ thรดng tin vแป thแปi gian ฤ‘ฤƒng cแปงa bร i nร y" @@ -11341,15 +11348,15 @@ msgstr "Hiแปƒn thแป‹ thรดng tin vแป thแปi gian ฤ‘ฤƒng cแปงa bร i nร y" msgid "Shows other accounts you can switch to" msgstr "Hiแปƒn thแป‹ cรกc tร i khoแบฃn khรกc bแบกn cรณ thแปƒ chuyแปƒn ฤ‘แป•i sang" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "Hiแปƒn thแป‹ nแป™i dung" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "Hiแปƒn thแป‹ nแป™i dung" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11436,7 +11443,7 @@ msgstr "ฤฤƒng xuแบฅt?" msgid "Sign up" msgstr "" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "Yรชu cแบงu ฤ‘ฤƒng nhแบญp" @@ -11469,7 +11476,7 @@ msgstr "Bแป qua" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "" @@ -11487,7 +11494,7 @@ msgstr "" msgid "slide" msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "Nhแป hฦกn" @@ -11499,7 +11506,7 @@ msgstr "Tแบกm bแป qua lแปi nhแบฏc" msgid "So many thoughts, you should post one" msgstr "" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "" @@ -11520,7 +11527,7 @@ msgstr "" 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:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "Mแป™t sแป‘ bแบฃng tin khรกc bแบกn cรณ thแปƒ thรญch" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "Ai ฤ‘รณ ฤ‘รฃ bร y tแป cแบฃm xรบc {0}" @@ -11554,7 +11561,7 @@ msgstr "Ai ฤ‘รณ ฤ‘รฃ bร y tแป cแบฃm xรบc {0}" msgid "Someone reacted {0} to {target}" msgstr "" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "Cรณ gรฌ ฤ‘รณ khรดng ฤ‘รบng, vui lรฒng thแปญ lแบกi" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "Cรณ lแป—i xแบฃy ra. Xin vui lรฒng thแปญ lแบกi." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "Cรณ gรฌ khรดng ฤ‘รบng? Hรฃy cho chรบng tรดi biแบฟt." @@ -11650,7 +11657,7 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "Thแปƒ thao" @@ -11668,7 +11675,7 @@ msgstr "" msgid "Start a group chat" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "Bแบฏt ฤ‘แบงu cuแป™c trรฒ chuyแป‡n mแป›i" @@ -11682,17 +11689,17 @@ msgstr "Bแบฏt ฤ‘แบงu thรชm ngฦฐแปi" msgid "Start adding people!" msgstr "Bแบฏt ฤ‘แบงu thรชm ngฦฐแปi!" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "Bแบฏt ฤ‘แบงu trรฒ chuyแป‡n vแป›i {displayName}" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Gรณi khแปŸi ฤ‘แบงu" @@ -11715,12 +11722,16 @@ msgstr "Gรณi khแปŸi ฤ‘แบงu bแปŸi bแบกn" msgid "Starter pack is invalid" msgstr "Gรณi khแปŸi ฤ‘แบงu khรดng hแปฃp lแป‡" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "Gรณi khแปŸi ฤ‘แบงu" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Gรณi khแปŸi ฤ‘แบงu giรบp bแบกn dแป… dร ng chia sแบป bแบฃng tin vร  ngฦฐแปi yรชu thรญch cแปงa mรฌnh vแป›i bแบกn bรจ." @@ -11728,7 +11739,7 @@ msgstr "Gรณi khแปŸi ฤ‘แบงu giรบp bแบกn dแป… dร ng chia sแบป bแบฃng tin vร  ngฦฐ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "" @@ -11742,7 +11753,7 @@ msgstr "Trang trแบกng thรกi" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "Bฦฐแป›c {0} / {1}" @@ -11754,7 +11765,7 @@ msgstr "Dแปฏ liแป‡u ฤ‘รฃ ฤ‘ฦฐแปฃc xรณa, bแบกn cแบงn khแปŸi ฤ‘แป™ng lแบกi แปฉng d msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "ฤฤƒng kรฝ @{0} ฤ‘แปƒ sแปญ dแปฅng nhรฃn:" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "ฤรฃ xรกc minh thร nh cรดng" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "ฤฦฐแปฃc ฤ‘แป xuแบฅt dร nh cho bแบกn" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Hoร ng hรดn" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -11921,8 +11934,8 @@ msgstr "Chuyแปƒn sang {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "Hแป‡ thแป‘ng" @@ -11945,7 +11958,7 @@ msgstr "" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "" @@ -11976,7 +11989,7 @@ msgstr "Nhแบฅp ฤ‘แปƒ ฤ‘รณng menu tuแปณ chแปn" msgid "Tap to copy this invite link" msgstr "" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "Nhแบฅn ฤ‘แปƒ bแป qua" @@ -12003,7 +12016,7 @@ msgstr "" msgid "Tap to request access to join this group chat" msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "" @@ -12016,7 +12029,7 @@ msgstr "" msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "" @@ -12032,7 +12045,7 @@ msgstr "Hoร n thร nh nhiแป‡m vแปฅ - 10 ngฦฐแปi theo dรตi!" msgid "Task complete - 10 likes!" msgstr "Hoร n thร nh nhiแป‡m vแปฅ - 10 lฦฐแปฃt thรญch!" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "Dแบกy thuแบญt toรกn nhแปฏng ฤ‘iแปu bแบกn thรญch" @@ -12060,7 +12073,7 @@ msgstr "ฤiแปu khoแบฃn" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12113,11 +12126,11 @@ msgstr "Khรดng thแปƒ tรฌm thแบฅy gรณi khแปŸi ฤ‘แบงu ฤ‘รณ." msgid "That username is already taken" msgstr "" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "Hแบฟt!" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "Hแบฟt bแบฃng tin video!" @@ -12216,7 +12229,7 @@ msgstr "Mรกy chแปง cรณ vแบป ฤ‘ang cรณ vแบฅn ฤ‘แป. Vui lรฒng thแปญ lแบกi sau รญt msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Gรณi khแปŸi ฤ‘แบงu bแบกn ฤ‘ang xem lร  khรดng hแปฃp lแป‡. Bแบกn cรณ thแปƒ xรณa gรณi khแปŸi ฤ‘แบงu nร y." -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "Tiรชu ฤ‘แป cแปงa menu tuแปณ chแปn" @@ -12238,7 +12251,7 @@ msgstr "Mรฃ xรกc minh bแบกn cung cแบฅp lร  khรดng hแปฃp lแป‡. Vui lรฒng chแบฏc c msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "Giao diแป‡n" @@ -12266,7 +12279,7 @@ msgstr "" msgid "There was a problem with your internet connection, please try again" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Cรณ vแบฅn ฤ‘แป khi kแบฟt nแป‘i vแป›i mรกy chแปง" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Cรณ vแบฅn ฤ‘แป khi kแบฟt nแป‘i vแป›i mรกy chแปง, vui lรฒng kiแปƒm tra kแบฟt nแป‘i mแบกng cแปงa bแบกn vร  thแปญ lแบกi." @@ -12283,8 +12296,8 @@ msgstr "Cรณ vแบฅn ฤ‘แป khi kแบฟt nแป‘i vแป›i mรกy chแปง, vui lรฒng kiแปƒm tra k msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Cรณ vแบฅn ฤ‘แป khi tแบฃi thรดng bรกo. Nhแบฅn vร o ฤ‘รขy ฤ‘แปƒ thแปญ lแบกi." -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Cรณ vแบฅn ฤ‘แป khi tแบฃi bร i ฤ‘ฤƒng. Nhแบฅn vร o ฤ‘รขy ฤ‘แปƒ thแปญ lแบกi." @@ -12309,7 +12322,7 @@ msgstr "Cรณ vแบฅn ฤ‘แป khi tแบฃi thรดng tin dแป‹ch vแปฅ cแปงa bแบกn" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Cรณ vแบฅn ฤ‘แป khi xรณa bแบฃng tin nร y. Vui lรฒng kiแปƒm tra kแบฟt nแป‘i mแบกng cแปงa bแบกn vร  thแปญ lแบกi." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "Cรกc cร i ฤ‘แบทt nร y chแป‰ รกp dแปฅng cho bแบฃng tin Following." msgid "These URLs" msgstr "" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "" @@ -12392,7 +12405,7 @@ msgstr "" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} nร y ฤ‘รฃ bแป‹ ฤ‘รกnh dแบฅu:" @@ -12408,7 +12421,7 @@ msgstr "" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "Tร i khoแบฃn nร y cรณ mแป™t hoแบทc nhiแปu lแบงn thแปญ xรกc minh, nhฦฐng hiแป‡n tแบกi chฦฐa ฤ‘ฦฐแปฃc xรกc minh thร nh cรดng." -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "Tร i khoแบฃn nร y ฤ‘รฃ yรชu cแบงu ngฦฐแปi dรนng ฤ‘ฤƒng nhแบญp ฤ‘แปƒ xem hแป“ sฦก cแปงa hแป." @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Bแบฃng tin nร y ฤ‘ang trแป‘ng! Bแบกn cรณ thแปƒ phแบฃi theo dรตi thรชm ngฦฐแปi dรนng hoแบทc ฤ‘iแปu chแป‰nh cร i ฤ‘แบทt ngรดn ngแปฏ cแปงa mรฌnh." #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "Bแบฃng tin nร y ฤ‘ang trแป‘ng." @@ -12554,7 +12567,7 @@ msgstr "" msgid "This handle is reserved. Please try a different one." msgstr "Tรชn ngฦฐแปi dรนng nร y ฤ‘รฃ ฤ‘ฦฐแปฃc ฤ‘แบทt trฦฐแป›c. Vui lรฒng thแปญ tรชn khรกc." -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -12596,7 +12609,7 @@ msgstr "Nhรฃn nร y ฤ‘รฃ ฤ‘ฦฐแปฃc bแบฏn bแปŸi bแบกn." msgid "This label was applied to the entire user account and will appear on all posts." msgstr "" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "Dแป‹ch vแปฅ gแบฏn nhรฃn nร y chฦฐa khai bรกo cรกc nhรฃn, vร  cรณ thแปƒ khรดng hoแบกt ฤ‘แป™ng." @@ -12621,13 +12634,13 @@ msgstr "Danh sรกch nร y ฤ‘ang trแป‘ng." msgid "This message is hidden" msgstr "" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -12641,7 +12654,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Bร i ฤ‘ฤƒng nร y khai rแบฑng ฤ‘รฃ ฤ‘ฦฐแปฃc tแบกo vร o <0>{0}, nhฦฐng lแบงn ฤ‘แบงu tiรชn ฤ‘ฦฐแปฃc Bluesky nhรฌn thแบฅy vร o <1>{1}." @@ -12649,7 +12662,7 @@ msgstr "Bร i ฤ‘ฤƒng nร y khai rแบฑng ฤ‘รฃ ฤ‘ฦฐแปฃc tแบกo vร o <0>{0}, nhฦฐng msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "Bร i ฤ‘ฤƒng nร y cรณ loแบกi threadgate khรดng xรกc ฤ‘แป‹nh. แปจng dแปฅng cแปงa bแบกn cรณ thแปƒ ฤ‘รฃ lแป—i thแปi." -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "" @@ -12661,7 +12674,7 @@ msgstr "" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "Bร i ฤ‘ฤƒng nร y sแบฝ bแป‹ แบฉn khแปi bแบฃng tin vร  thแบฃo luแบญn. Hร nh ฤ‘แป™ng nร y khรดng thแปƒ hoร n tรกc." -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "Tรกc giแบฃ bร i ฤ‘ฤƒng nร y ฤ‘รฃ tแบฏt chแปฉc nฤƒng trรญch dแบซn bร i ฤ‘ฤƒng." @@ -12698,11 +12711,12 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "Ngฦฐแปi dรนng nร y khรดng cรณ tรชn hiแปƒn thแป‹, vรฌ vแบญy khรดng thแปƒ ฤ‘ฦฐแปฃc xรกc minh." -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "Ngฦฐแปi dรนng nร y khรดng cรณ ngฦฐแปi nร o theo dรตi." #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "Ngฦฐแปi dรนng nร y ฤ‘รฃ chแบทn bแบกn. Bแบกn khรดng thแปƒ thแบฅy nแป™i dung cแปงa hแป." #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -12733,11 +12748,11 @@ msgstr "Ngฦฐแปi dรนng nร y nแบฑm trong danh sรกch <0>{0} mร  bแบกn ฤ‘รฃ แบฉ msgid "This user is new here. Press for more info about when they joined." msgstr "Ngฦฐแปi dรนng nร y mแป›i ฤ‘แบฟn ฤ‘รขy. Nhแบฅn vร o ฤ‘แปƒ biแบฟt hแป ฤ‘รฃ tham gia khi nร o." -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "Ngฦฐแปi dรนng nร y khรดng theo dรตi ai cแบฃ." -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "" @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "Tรกc vแปฅ nร y sแบฝ xรณa @{0} khแปi danh sรกch truy cแบญp nhanh." @@ -12786,7 +12801,7 @@ msgstr "Cร i ฤ‘แบทt thแบฃo luแบญn" msgid "Threaded" msgstr "Phรขn luแป“ng" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "Cร i ฤ‘แบทt thแบฃo luแบญn" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "Hร ng ฤ‘แบงu" @@ -12858,7 +12873,7 @@ msgstr "Hร ng ฤ‘แบงu" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "Chแปง ฤ‘แป" @@ -12893,7 +12908,9 @@ msgstr "" msgid "Tree view" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "Chแปง ฤ‘แป nแป•i trแป™i" @@ -12902,13 +12919,15 @@ msgstr "Chแปง ฤ‘แป nแป•i trแป™i" msgid "Trending GIFs" msgstr "" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "Video nแป•i bแบญt" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Niแปm tin hรฌnh thร nh tแปซ cรกc mแป‘i quan hแป‡, cแป™ng ฤ‘แป“ng vร  bแป‘i cแบฃnh chung, vรฌ vแบญy chรบng tรดi cลฉng kรญch hoแบกt <0>ngฦฐแปi xรกc minh ฤ‘รกng tin cแบญy: cรกc tแป• chแปฉc cรณ thแปƒ trแปฑc tiแบฟp cแบฅp xรกc minh." -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "" @@ -13024,12 +13045,12 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "Bแป chแบทn tร i khoแบฃn" msgid "Unblock list" msgstr "MแปŸ khoรก danh sรกch" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "Bแป theo dรตi {0}" msgid "Unfollow account" msgstr "Bแป theo dรตi tร i khoแบฃn" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "Bแป theo dรตi ngฦฐแปi nร y" @@ -13132,7 +13153,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "Bแป thรญch" @@ -13192,7 +13213,7 @@ msgstr "" msgid "Unmute thread" msgstr "Bแบญt lแบกi thรดng bรกo cho thแบฃo luแบญn" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "Bแบญt lแบกi thรดng bรกo cho video" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "Bแป ghim" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Bแป ghim bแบฃng tin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "Bแป ghim khแปi trang chแปง" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "Bแป ghim khแปi danh sรกch kiแปƒm duyแป‡t" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "ฤรฃ bแป ghim {0} khแปi Trang chแปง" @@ -13258,11 +13279,11 @@ msgstr "Bแป ฤ‘ฤƒng kรฝ dแป‹ch vแปฅ gแบฏn nhรฃn" msgid "Unsubscribed from list" msgstr "ฤรฃ bแป ฤ‘ฤƒng kรฝ danh sรกch" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Khรดng thแปƒ cแบญp nhแบญt trแบกng thรกi hiแปƒn thแป‹ cแปงa trแบฃ lแปi" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "Tแบฃi lรชn แบฃnh" @@ -13355,7 +13376,7 @@ msgstr "Tแบฃi lรชn tแปซ Files" msgid "Upload from Library" msgstr "Tแบฃi lรชn tแปซ Thฦฐ viแป‡n" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "" @@ -13369,7 +13390,7 @@ msgstr "ฤang tแบฃi lรชn hรฌnh..." msgid "Uploading link thumbnail..." msgstr "ฤang tแบฃi lรชn hรฌnh cho liรชn kแบฟt..." -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "ฤang tแบฃi lรชn video..." @@ -13408,7 +13429,7 @@ msgstr "Sแปญ dแปฅng ฤ‘แปƒ ฤ‘ฤƒng nhแบญp vร o แปฉng dแปฅng khรกc cรนng vแป›i tรชn msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "" @@ -13510,7 +13531,7 @@ msgstr "Xรกc minh khรดng thร nh cรดng, xin vui lรฒng thแปญ lแบกi." msgid "Verification settings" msgstr "Cร i ฤ‘แบทt xรกc minh" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Cร i ฤ‘แบทt xรกc minh" @@ -13618,34 +13639,34 @@ msgstr "Video" msgid "Video failed to process" msgstr "Khรดng thแปƒ xแปญ lรฝ video" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "Bแบฃng tin video" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "Video tแปซ {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "Trรฒ chฦกi ฤ‘iแป‡n tแปญ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "ฤรฃ tแบกm dแปซng video" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "ฤang phรกt video" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "Khรดng tรฌm thแบฅy video." @@ -13653,7 +13674,7 @@ msgstr "Khรดng tรฌm thแบฅy video." msgid "Video settings" msgstr "Cร i ฤ‘แบทt video" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "ฤรฃ tแบฃi lรชn video" @@ -13662,17 +13683,17 @@ msgstr "ฤรฃ tแบฃi lรชn video" msgid "Video: {0}" msgstr "Video: {0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "Video" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "" @@ -13691,9 +13712,9 @@ msgstr "Xem hรฌnh ฤ‘แบกi diแป‡n cแปงa {0}" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "Xem hแป“ sฦก cแปงa {0}" @@ -13724,13 +13745,13 @@ msgstr "Xem bร i ฤ‘ฤƒng ฤ‘แปƒ biแบฟt thรชm chi tiแบฟt" msgid "View debug entry" msgstr "Xem bแบฃn ghi gแปก lแป—i" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "Xem chi tiแบฟt" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "Xem toร n bแป™ thแบฃo luแบญn" @@ -13750,18 +13771,18 @@ msgstr "" msgid "View information about these labels" msgstr "Xem thรดng tin vแป nhแปฏng nhรฃn nร y" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "Xem thรชm" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "" @@ -13798,15 +13819,15 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "Xem dแป‹ch vแปฅ gแบฏn nhรฃn bแปŸi @{0}" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "Xem xรกc minh cแปงa ngฦฐแปi dรนng nร y" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "Xem ngฦฐแปi dรนng thรญch bแบฃng tin nร y" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "Xem video" @@ -13831,7 +13852,7 @@ msgstr "Xem danh sรกch kiแปƒm duyแป‡t cแปงa bแบกn" msgid "View your muted accounts" msgstr "Xem tร i khoแบฃn bแบกn ฤ‘รฃ แบฉn" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "Xem xรกc minh cแปงa bแบกn" @@ -13840,7 +13861,7 @@ msgstr "Xem xรกc minh cแปงa bแบกn" msgid "Views full image" msgstr "Xem hรฌnh ฤ‘แบงy ฤ‘แปง" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "Xem video แปŸ chแบฟ ฤ‘แป™ toร n mร n hรฌnh" @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "Chรบng tรดi ฤ‘ang gแบทp vแบฅn ฤ‘แป mแบกng, hรฃy thแปญ lแบกi" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "" @@ -14043,7 +14064,7 @@ msgstr "" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "Chรบng tรดi ฤ‘ang giแป›i thiแป‡u mแป™t lแป›p xรกc minh mแป›i trรชn Bluesky โ€” mแป™t dแบฅu tรญch dแป… nแป•i bแบญt." -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "" @@ -14064,13 +14085,15 @@ msgstr "Xin lแป—i, chรบng tรดi khรดng thแปƒ xแปญ lรฝ danh sรกch nร y. Nแบฟu vแบซ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "Xin lแป—i, chung tแป‘i khรดng thแปƒ tแบฃi tแปซ cแบฅm cแปงa bแบกn vร o lรบc nร y. Vui lรฒng thแปญ lแบกi." -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." msgstr "" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" @@ -14078,7 +14101,7 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Xin lแป—i! Bร i ฤ‘ฤƒng bแบกn ฤ‘ang trแบฃ lแปi ฤ‘รฃ bแป‹ xรณa." @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "Cรณ gรฌ mแป›i?" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "Ai cรณ thแปƒ xรกc minh?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "ร”i khรดng!" @@ -14220,21 +14243,21 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "Soแบกn bร i ฤ‘ฤƒng" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "Soแบกn trแบฃ lแปi" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "" @@ -14342,7 +14365,7 @@ msgstr "" msgid "You are not allowed to upload videos." msgstr "Bแบกn khรดng ฤ‘ฦฐแปฃc phรฉp tแบฃi lรชn video." -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "" @@ -14362,7 +14385,7 @@ msgstr "Bแบกn ฤ‘รฃ ฤ‘ฦฐแปฃc xรกc minh. Bแบกn sแบฝ bแป‹ mแบฅt dแบฅu xรกc minh n msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "Bแบกn ฤ‘รฃ ฤ‘ฦฐแปฃc xรกc minh. Bแบกn sแบฝ bแป‹ mแบฅt dแบฅu xรกc minh nแบฟu bแบกn thay ฤ‘แป•i tรชn tร i khoแบฃn. <0>Tรฌm hiแปƒu thรชm." -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "Bแบกn cรณ thแปƒ thay ฤ‘แป•i mแปฅc quan tรขm bแบฅt cแปฉ lรบc nร o tแบกi cร i ฤ‘แบทt \"Nแป™i dung vร  phฦฐฦกng tiแป‡n\"." @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "Bแบกn cรณ thแปƒ ฤ‘ฤƒng nhแบญp bแบฑng mแบญt khแบฉu mแป›i cแปงa mรฌnh." #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -14439,9 +14462,11 @@ msgstr "" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "Bแบกn cรณ thแปƒ cแบญp nhแบญt lแบกi sau trong phแบงn cร i ฤ‘แบทt." @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "" @@ -14555,7 +14581,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Bแบกn ฤ‘รฃ tแบกm thแปi ฤ‘แบกt giแป›i hแบกn tแบฃi lรชn video. Vui lรฒng thแปญ lแบกi sau." -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -14563,7 +14589,7 @@ msgstr "" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "Bแบกn chฦฐa tแบกo gรณi khแปŸi ฤ‘แบงu nร o!" @@ -14614,7 +14640,7 @@ msgstr "Bแบกn chแป‰ cรณ thแปƒ thรชm tแป‘i ฤ‘a {STARTER_PACK_MAX_SIZE, plural, ot msgid "You may only add up to 3 feeds" msgstr "Bแบกn chแป‰ cรณ thแปƒ thรชm tแป‘i ฤ‘a 3 bแบฃng tin" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "" @@ -14622,7 +14648,7 @@ msgstr "" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Bแบกn phแบฃi theo dรตi รญt nhแบฅt bแบฃy ngฦฐแปi khรกc ฤ‘แปƒ tแบกo gรณi khแปŸi ฤ‘แบงu." @@ -14639,7 +14665,7 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "Bแบกn cแบงn phแบฃi xรกc thแปฑc ฤ‘แป‹a chแป‰ email trฦฐแป›c khi mแปŸ xรกc thแปฑc hai lแป›p qua email." -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "Bแบกn cรณ thแปƒ cแบงn phแบฃi khแปŸi ฤ‘แป™ng lแบกi แปฉng ngay bรขy giแป." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "Bแบกn ฤ‘รฃ bร y tแป cแบฃm xรบc {0}" @@ -14667,15 +14693,15 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "" @@ -14715,11 +14741,11 @@ msgstr "" msgid "You: {message}" msgstr "" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Bแบกn sแบฝ theo dรตi ngฦฐแปi dรนng vร  bแบฃng tin ฤ‘ฦฐแปฃc ฤ‘แป xuแบฅt sau khi hoร n tแบฅt viแป‡c tแบกo tร i khoแบฃn!" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Bแบกn sแบฝ theo dรตi ngฦฐแปi dรนng ฤ‘ฦฐแปฃc ฤ‘แป xuแบฅt sau khi hoร n tแบฅt viแป‡c tแบกo tร i khoแบฃn!" @@ -14791,7 +14817,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Bแบกn ฤ‘รฃ ฤ‘แบฟn cuแป‘i bแบฃng tin! Hรฃy tรฌm thรชm mแป™t sแป‘ tร i khoแบฃn ฤ‘แปƒ theo dรตi." -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "" @@ -14799,7 +14825,7 @@ msgstr "" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "" @@ -14815,11 +14841,11 @@ msgstr "Bแบกn ฤ‘รฃ ฤ‘แบฟn quรก giแป›i hแบกn tแบฃi lรชn video hร ng ngร y (quรก n msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Bแบกn ฤ‘รฃ ฤ‘แบฟn giแป›i hแบกn tแบฃi lรชn video hร ng ngร y (quรก nhiแปu video)" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "Khรดng cรฒn video ฤ‘แปƒ xem nแปฏa. Cรณ lแบฝ ฤ‘รขy lร  thแปi ฤ‘iแปƒm thรญch hแปฃp ฤ‘แปƒ nghแป‰ giแบฃi lao?" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "Tร i khoแบฃn cแปงa bแบกn" @@ -14835,11 +14861,11 @@ msgstr "Tร i khoแบฃn cแปงa bแบกn ฤ‘รฃ bแป‹ ฤ‘รฌnh chแป‰" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tร i khoแบฃn cแปงa bแบกn chฦฐa ฤ‘แปง tuแป•i ฤ‘แปƒ tแบฃi lรชn video. Vui lรฒng thแปญ lแบกi sau." -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "" @@ -14896,7 +14922,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "Email cแปงa bแบกn cรณ vแบป khรดng hแปฃp lแป‡." @@ -14930,8 +14956,8 @@ msgstr "" msgid "Your hosting provider is detected automatically from the username you enter." msgstr "" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "Mแปฅc quan tรขm cแปงa bแบกn ฤ‘รฃ ฤ‘ฦฐแปฃc cแบญp nhแบญt!" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "Mแปฅc quan tรขm cแปงa bแบกn giรบp chรบng tรดi tรฌm nhแปฏng gรฌ bแบกn thรญch!" @@ -14967,11 +14993,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "Mแบญt khแบฉu cแปงa bแบกn phแบฃi cรณ รญt nhแบฅt 8 kรฝ tแปฑ." -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "" @@ -14992,7 +15018,7 @@ msgstr "" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Hแป“ sฦก, bร i ฤ‘ฤƒng, bแบฃng tin, vร  danh sรกch cแปงa bแบกn sแบฝ khรดng cรฒn hiแปƒn thแป‹ cho ngฦฐแปi dรนng Bluesky khรกc. Bแบกn cรณ thแปƒ kรญch hoแบกt lแบกi tร i khoแบฃn bแบฅt kรฌ lรบc nร o bแบฑng cรกch ฤ‘ฤƒng nhแบญp." -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "" @@ -15005,7 +15031,7 @@ msgstr "Bรกo cรกo cแปงa bแบกn sแบฝ ฤ‘ฦฐแปฃc gแปญi tแป›i <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Mแปฅc quan tรขm mร  bแบกn chแปn giรบp chรบng tรดi ฤ‘ฦฐa nแป™i dung mร  bแบกn quan tรขm ฤ‘แบฟn." -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "" diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index 15f269878f..c8fc1548b0 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "โ€œ{interestsDisplayName}โ€็ฑปๅˆซ๏ผˆๅทฒ้€‰ไธญ๏ผ‰" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "๏ผˆๅทฒ้š่—ๅฑ่”ฝ็š„ไฟกๆฏ๏ผ‰" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "๏ผˆๅŒ…ๅซๅตŒๅ…ฅๅ†…ๅฎน๏ผ‰" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "๏ผˆๅทฒๅˆ ้™คไฟกๆฏ๏ผ‰" @@ -54,9 +54,9 @@ msgid "(invalid chat invite link)" msgstr "๏ผˆๆ— ๆ•ˆ็š„ๅฏน่ฏ้‚€่ฏท้“พๆŽฅ๏ผ‰" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" -msgstr "" +msgstr "๏ผˆไฝ ๅŠ ๅ…ฅไน‹ๅ‰ๅ‘้€็š„ไฟกๆฏ๏ผ‰" #: src/screens/Settings/AccountSettings.tsx:74 msgid "(no email)" @@ -75,7 +75,7 @@ msgstr "๏ผˆๅผ•็”จๅธ–ๆ–‡๏ผ‰" #. placeholder {0}: labels.length #: src/components/moderation/LabelsOnMe.tsx:57 msgid "{0, plural, one {# account label} other {# account labels}}" -msgstr "{0, plural,one {# ไธช่ดฆๆˆทๆ ‡็ญพ}other {# ไธช่ดฆๆˆทๆ ‡็ญพ}}" +msgstr "{0, plural,one {# ไธช่ดฆๆˆทๆ ‡่ฎฐ}other {# ไธช่ดฆๆˆทๆ ‡่ฎฐ}}" #. placeholder {0}: diff.value #: src/lib/hooks/useTimeAgo.ts:169 @@ -103,14 +103,14 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# ๅฐๆ—ถ} other {# ๅฐๆ—ถ}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" -msgstr "" +msgstr "{0, plural,one {ไฝ ็š„ๅธ–ๆ–‡ๅบ”็”จไบ† # ไธชๆ ‡่ฎฐ}other {ไฝ ็š„ๅธ–ๆ–‡ๅบ”็”จไบ† # ไธชๆ ‡่ฎฐ}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" -msgstr "" +msgstr "{0, plural,one {ๅทฒๅบ”็”จ # ไธชๆ ‡่ฎฐ} other {ๅทฒๅบ”็”จ # ไธชๆ ‡่ฎฐ}}" #. placeholder {0}: likeCount ?? 0 #: src/screens/Post/PostLikedBy.tsx:34 @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# ๆฌกๅ–œๆฌข} other {# ๆฌกๅ–œๆฌข}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural,one {# ไธชๆˆๅ‘˜}other {# ไธชๆˆๅ‘˜}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, one {# ๆกๆ–ฐ็š„ๅŠ ๅ…ฅ็”ณ่ฏท} other {# ๆกๆ–ฐ็š„ๅŠ ๅ…ฅ็”ณ่ฏท #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural,one {# ไธชไบบ} other {# ไธชไบบ}} ๅฏนๆญคๅšๅ‡บไบ† {1} ๅๅบ”" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{1} {0}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0}๏ผˆ่ดฆๆˆท)" @@ -251,36 +252,13 @@ msgstr "{0} ๅทฒๅ—้‚€ๅŠ ๅ…ฅๅฏน่ฏ" msgid "{0} and {1} added to chat" msgstr "{0} ๅ’Œ {1} ๅทฒๅ—้‚€ๅŠ ๅ…ฅๅฏน่ฏ" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} ไฝๆญฃๅœจๅ…ณๆณจ" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} ๅฑ่”ฝไบ†ไฝ " @@ -324,14 +302,6 @@ msgstr "{0} ็ฆปๅผ€ไบ†" msgid "{0} left the group" msgstr "{0} ็ฆปๅผ€ไบ†็พค็ป„" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "ๅทฒ่พ“ๅ…ฅ {0} ไธชๅญ—็ฌฆ๏ผŒๆœ€ๅคš 50 ไธชๅญ—็ฌฆ" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ไฝœๅ‡บไบ† {1} ๅๅบ”" @@ -380,7 +350,7 @@ msgstr "{0} ๅทฒ่ขซ็งป้™คๅ‡บ็พค็ป„" #. placeholder {0}: link(lang) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:113 msgid "{0}, " -msgstr "" +msgstr "{0}ใ€" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) @@ -388,21 +358,6 @@ msgstr "" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}ใ€{1} ไปฅๅŠ{memberCount, plural,one {ๅ…ถไป– # ไบบ}other {ๅ…ถไป– # ไบบ}}ๅทฒๅ—้‚€ๅŠ ๅ…ฅๅฏน่ฏ" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -531,7 +486,7 @@ msgstr "{estimatedTimeMins, plural, one {ๅˆ†} other {ๅˆ†}}" #: src/screens/Search/components/SearchHistory.tsx:170 msgid "{filterCount, plural, one {+# filter} other {+# filters}}" -msgstr "" +msgstr "{filterCount, plural,one {+# ไธช็ญ›้€‰ๆกไปถ}other {+# ไธช็ญ›้€‰ๆกไปถ}}" #: src/view/com/notifications/NotificationFeedItem.tsx:361 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} ๅฏนไฝ ๆŽˆไบˆไบ†่ฎค่ฏ" msgid "{following} following" msgstr "{following} ไฝๆญฃๅœจๅ…ณๆณจ" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "{formattedPostCount} {postCount, plural, other {ๅˆ™ๅธ–ๆ–‡}}" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "ๆ— ๆณ•ๆทปๅŠ  {handle}" @@ -698,7 +660,7 @@ msgstr "ๆ— ๆณ•ๆทปๅŠ  {handle}" msgid "{handle} can't be messaged" msgstr "็›ฎๅ‰ๆ— ๆณ•ๅ‘ {handle} ๅ‘้€ไฟกๆฏ" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "็›ฎๅ‰ๆ— ๆณ•ๅ‘ {handle} ๅ‘้€ไฟกๆฏ" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# ๆกๆœช่ฏป้€š็Ÿฅ} other {# ๆกๆœช่ฏป msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {ๆ‰พๅˆฐไบ† # ไฝ่”็ณปไบบ} other {ๆ‰พๅˆฐไบ† # ไฝ่”็ณปไบบ}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "{profileName}ๅœจ {timeAgoString}ๅ‰ๅŠ ๅ…ฅไบ† Bluesky" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "{profileName}ๅœจ {timeAgoString}ๅ‰ไฝฟ็”จๆ–ฐๆ‰‹ๅŒ…ๅŠ ๅ…ฅไบ† Bluesky" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, other {ๅ‰ฉไฝ™ # ไธชๅญ—็ฌฆ}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} ๅ›žๅคไบ†" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} ๅ›žๅคไบ† {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} ๅ›žๅคไบ†ไฝ " @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, one {# ๆก้‚€่ฏท} other {# ๆก้‚€่ฏท}}" msgid "{requestCount}+ requests" msgstr "่ถ…่ฟ‡ {requestCount} ๆก้‚€่ฏท" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} ๅฐๆ—ถๅ‰" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} ๆ˜ฏๅฏไฟก็š„่ฎค่ฏไบบ" @@ -842,13 +795,13 @@ msgstr "{userName} ็š„่ฎค่ฏ" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {ๆญฃๅœจๅ…ณๆณจ} other {ๆญฃๅœจๅ…ณๆณจ}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0}{1, plural,one {ๅผ•็”จ}other {ๅผ•็”จ}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0}{1, plural,one {่ฝฌๅ‘}other {่ฝฌๅ‘}}" @@ -903,9 +856,9 @@ msgstr "<0>{0}{1, plural,one {ๆ”ถ่—}other {ๆ”ถ่—}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, other {ไธชๅ–œๆฌข}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2>ๆทปๅŠ ไบ†ไฝ " #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>็™ปๅฝ•<1>ๆˆ–<2>ๅˆ›ๅปบ่ดฆๆˆท<3><4>ๅณๅฏๅœจ Bluesky ไธŠๆœ็ดขๆ–ฐ้—ปใ€ไฝ“่‚ฒใ€ๆ”ฟๆฒป็ญ‰ๆญฃๅœจๅ‘็”Ÿ็š„ๆ–ฐ้ฒœไบ‹ใ€‚" @@ -971,7 +924,7 @@ msgstr "30 ๅคฉ" msgid "7 days" msgstr "7 ๅคฉ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "ไฝ ๅฏไปฅๅœจ Bluesky ไธŠๆ‰พๅˆฐไธ€็ณปๅˆ—็ƒญ้—จๅŠจๆ€ๆบ๏ผŒๅŒ…ๆ‹ฌ Newsใ€Bookskyใ€Game Devใ€Blacksky ไปฅๅŠ Fountain Pens" @@ -988,9 +941,11 @@ msgstr "ๅ‘็”Ÿไบ†็ฝ‘็ปœ้”™่ฏฏ๏ผŒ่ฏทๆฃ€ๆŸฅไฝ ็š„็ฝ‘็ปœ่ฟžๆŽฅ" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,9 +959,9 @@ msgstr "ๅทฒๅ‘้€ๆ–ฐ็š„ไปฃ็ " msgid "A new form of verification" msgstr "ๅ…จๆ–ฐ็š„่ฎค่ฏๆœบๅˆถ" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" -msgstr "" +msgstr "ๅ›žๅคไฝ ๅŠ ๅ…ฅไน‹ๅ‰ๅ‘้€็š„ไฟกๆฏ" #. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:147 @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "ไธ€ๅผ ๅธ–ๆ–‡็ผ–่พ‘ๅ™จ็š„ๆˆชๅ›พใ€‚ๅœจๅ‘ๅธƒๆŒ‰้’ฎๆ—่พนๆœ‰ไธ€ไธชๆ–ฐ็š„่‰็จฟๆŒ‰้’ฎ๏ผŒๅนถๅธฆๆœ‰ๅฝฉ่™น็ƒŸ่Šฑๆ•ˆๆžœใ€‚็ผ–่พ‘ๅŒบๅ†…็š„ๆ–‡ๆœฌๅ†…ๅฎนไธบ๏ผšโ€œๅ˜ฟ๏ผŒไฝ ๅฌ่ฏดไบ†ๅ—๏ผŸBluesky ็Žฐๅœจๆœ‰่‰็จฟๅŠŸ่ƒฝไบ†๏ผ๏ผ๏ผโ€ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "้€‰ๆ‹ฉ็š„ๆ”ถไฟกไบบๆœช่ขซๅ‘ไฟกไบบๅ…ณๆณจใ€‚" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "ๅทฒๅ‘้€็”ณ่ฏท๏ผ่ฏท็ญ‰ๅพ…็พค็ป„ๆ‰€ๆœ‰่€…ๅŒๆ„ไปฅๅŠ ๅ…ฅ็พค็ป„ใ€‚" msgid "Accessibility" msgstr "ๆ— ้šœ็ข" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "ๆ— ้šœ็ข่ฎพ็ฝฎ" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "่ฏฅ่ดฆๆˆทๅทฒ่ขซๅˆ—่กจ้š่—" msgid "Account options" msgstr "่ดฆๆˆท้€‰้กน" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "ๅทฒไปŽๅฟซ้€Ÿ่ฎฟ้—ฎไธญ็งป้™ค่ฏฅ่ดฆๆˆท" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "ๅธฆๆœ‰่“่‰ฒๆ‰‡ๅฝขๅค–่ง‚่ฎค่ฏๅพฝ็ซ ็š„่ดฆๆˆท <0><1/> ๅฏไปฅไธบๅ…ถไป–่ดฆๆˆทๆŽˆไบˆ่ฎค่ฏ๏ผŒ่ฟ™ไบ›ๅฏไฟก่ฎค่ฏไบบ็”ฑ Bluesky ๅฎ˜ๆ–นๆ‰€ๆŒ‘้€‰ใ€‚" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "ๅ…ถไป–ไบบ็š„ๅŠจๆ€" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "ๆดปๅŠจ้€š็Ÿฅ" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,17 +1183,17 @@ msgstr "ๆทปๅŠ ๆ›ฟไปฃๆ–‡ๆœฌ๏ผˆๅฏ้€‰๏ผ‰" msgid "Add another account" msgstr "ๆทปๅŠ ๅ…ถไป–่ดฆๆˆท" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "ๆทปๅŠ ๅฆไธ€ๅˆ™ๅธ–ๆ–‡" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "ๆทปๅŠ ๅฆไธ€ๅˆ™ๅธ–ๆ–‡่‡ณๅธ–ๆ–‡ไธฒ" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" -msgstr "" +msgstr "ๆทปๅŠ ๅฆไธ€ไธชๆœ็ดข็ญ›้€‰ๆกไปถ" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 msgid "Add app password" @@ -1247,15 +1207,15 @@ msgstr "ๆทปๅŠ ๅบ”็”จๅฏ†็ " #: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" -msgstr "ๆทปๅŠ ่‡ชๅŠจๅŒ–ๆ ‡็ญพ่‡ณๆญค่ดฆๆˆท" +msgstr "ๆทปๅŠ ่‡ชๅŠจๅŒ–ๆ ‡่ฎฐ่‡ณๆญค่ดฆๆˆท" #: src/components/dms/EmojiReactionPicker.web.tsx:31 msgid "Add emoji reaction" msgstr "ๆทปๅŠ ่กจๆƒ…็ฌฆๅทๅๅบ”" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" -msgstr "" +msgstr "ๆทปๅŠ ็ญ›้€‰ๆกไปถ" #: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" @@ -1338,7 +1298,7 @@ msgstr "ๆทปๅŠ ๅˆฐไฝ ็š„ๅŠจๆ€ๆบ" msgid "Add to lists" msgstr "ๆทปๅŠ ่‡ณๅˆ—่กจ" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "ๆทปๅŠ ๅˆฐๅธ–ๆ–‡ๆ”ถ่—" @@ -1400,7 +1360,7 @@ msgstr "่‰ฒๆƒ…" msgid "Adult content" msgstr "ๆˆไบบๅ†…ๅฎน" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1447,7 +1407,7 @@ msgstr "ๅช้œ€ๅ‡ ๅˆ†้’ŸๅณๅฏๅฎŒๆˆๅนด้พ„้ชŒ่ฏ" #: src/ageAssurance/components/NoAccessScreen.tsx:449 msgid "Age assurance only takes a few minutes." -msgstr "" +msgstr "ๅช้œ€ๅ‡ ๅˆ†้’ŸๅณๅฏๅฎŒๆˆๅนด้พ„้ชŒ่ฏใ€‚" #: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "ๅ…จ้ƒจ" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "ๅทฒๆˆๅŠŸๅ…ณๆณจๆ‰€ๆœ‰ๆœ‹ๅ‹๏ผ" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "ๅ…จ้ƒจ่ฏญ่จ€" @@ -1489,12 +1445,7 @@ msgstr "ไฝ ็š„ๅŠจๆ€ๆบๅฐ†ๆ˜พ็คบๆ‰€ๆœ‰่ฏญ่จ€็š„ๅ†…ๅฎนใ€‚" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:245 msgid "All of these words" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "" +msgstr "ๅŒ…ๅซไธ‹ๅˆ—ๆ‰€ๆœ‰ๆ–‡ๅญ—" #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." @@ -1560,7 +1511,7 @@ msgstr "ๅ…่ฎธ่ฏปๅ–็งไบบไฟกๆฏ" msgid "Already have a code?" msgstr "ๅทฒ็ปๆœ‰้ชŒ่ฏ็ ไบ†๏ผŸ" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "ๅทฒ็ปๆœ‰่ดฆๆˆทไบ†๏ผŸ" @@ -1614,7 +1565,7 @@ msgstr "ๅทฒๅ‘้€ไธ€ๅฐ็”ตๅญ้‚ฎไปถ่‡ณ {0}ใ€‚ๅฎƒๅŒ…ๅซไฝ ้œ€่ฆๅœจไธ‹ๆ–น่พ“ๅ…ฅ msgid "An error has occurred" msgstr "ๅ‘็”Ÿ้”™่ฏฏ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "ๅ‘็”Ÿ้”™่ฏฏ" @@ -1631,7 +1582,7 @@ msgstr "่Žทๅ–ๅปบ่ฎฎ่ดฆๆˆทๅ‡บ้”™ใ€‚" msgid "An error occurred while fetching the feed." msgstr "่ฝฝๅ…ฅๅŠจๆ€ๆบๆ—ถๅ‘็”Ÿ้”™่ฏฏใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "ๅˆ›ๅปบๆ–ฐๆ‰‹ๅŒ…ๆ—ถๅ‘็”Ÿ้”™่ฏฏ๏ผŒ่ฆๅ†่ฏ•ไธ€ๆฌกๅ—๏ผŸ" @@ -1640,11 +1591,11 @@ msgstr "ๅˆ›ๅปบๆ–ฐๆ‰‹ๅŒ…ๆ—ถๅ‘็”Ÿ้”™่ฏฏ๏ผŒ่ฆๅ†่ฏ•ไธ€ๆฌกๅ—๏ผŸ" msgid "An error occurred while hiding suggestion. {0}" msgstr "้š่—ๅปบ่ฎฎๆ—ถๅ‘็”Ÿ้”™่ฏฏใ€‚{0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "ๆ’ญๆ”พ่ง†้ข‘ๆ—ถๅ‘็”Ÿ้”™่ฏฏ๏ผŒ่ฏท้‡่ฏ•ใ€‚" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "ๆ’ญๆ”พ่ง†้ข‘ๆ—ถๅ‘็”Ÿ้”™่ฏฏ๏ผŒ่ฏท้‡่ฏ•ใ€‚" @@ -1684,7 +1635,7 @@ msgstr "ๅ‘็”Ÿ้”™่ฏฏใ€‚{0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "ไธ€ๅผ ๅ›พ็‰‡๏ผŒๆ˜พ็คบ็”จๆˆทๅคดๅƒไปŽ้€š่ฎฏๅฝ•ๆตๅ‘ Bluesky ๅบ”็”จ็จ‹ๅบ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "ๅŒ…ๅซ Bluesky ็š„ๅ‡ ๅˆ™ๅธ–ๆ–‡ๆ’ๅ›พ๏ผŒๆ—่พน่ฟ˜ๆœ‰่ฝฌๅ‘ใ€ๅ–œๆฌขๅ’Œ่ฏ„่ฎบๅ›พๆ ‡" @@ -1705,17 +1656,15 @@ msgstr "้‚€่ฏท้“พๆŽฅๅฏไปฅ่ฎฉๅ…ถไป–ไบบ้€š่ฟ‡้“พๆŽฅ็›ดๆŽฅๅŠ ๅ…ฅ็พค็ป„ๅฏน่ฏ๏ผŒไฝ  msgid "An issue not included in these options" msgstr "ไธๅœจ่ฟ™ไบ›้€‰้กนไธญ็š„้—ฎ้ข˜" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "ๅˆ›ๅปบ็พค็ป„ๅฏน่ฏๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ่ฏท้‡่ฏ•ใ€‚" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "ๅผ€ๅง‹ๅฏน่ฏๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ่ฏท้‡่ฏ•ใ€‚" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "ๅผ€ๅฏๅฏน่ฏๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "ๅผ€ๅง‹็พค็ป„ๅฏน่ฏๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ่ฏท้‡่ฏ•ใ€‚" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1766,11 +1715,9 @@ msgstr "ไธบไฝ ไป‹็ป Bluesky ไธŠ็š„่ฎค่ฏๆœบๅˆถ" #. Placeholder text for a date picker #: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 msgid "Any date" -msgstr "" +msgstr "ไปปไฝ•ๆ—ฅๆœŸ" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "ไปปไฝ•ไบบ" @@ -1802,7 +1749,7 @@ msgstr "ๅ…ณๆณจๆˆ‘็š„ไบบ" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "ไปปไฝ•ไบบ้ƒฝๆ— ๆณ•ๅ†้€š่ฟ‡ๆญค้“พๆŽฅๅŠ ๅ…ฅๅฏน่ฏ๏ผŒไฝ†ไฝ ้šๆ—ถๅฏไปฅ้‡ๆ–ฐๅˆ›ๅปบ้“พๆŽฅใ€‚" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1829,7 +1776,7 @@ msgstr "ๅบ”็”จๅฏ†็ ๅ็งฐไธๅพ—ไธŽ็Žฐๆœ‰็š„้‡ๅค" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" -msgstr "" +msgstr "ๅบ”็”จๅฏ†็ ๅ็งฐๅช่ƒฝๅŒ…ๅซๅญ—ๆฏใ€ๆ•ฐๅญ—ใ€็ฉบๆ ผใ€่ฟžๅญ—็ฌฆ๏ผˆ-๏ผ‰ๅŠไธ‹ๅˆ’็บฟ๏ผˆ_๏ผ‰" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 msgid "App password names must be at least 4 characters long" @@ -1840,7 +1787,7 @@ msgstr "ๅบ”็”จๅฏ†็ ๅ็งฐ่‡ณๅฐ‘ๅบ”ๅŒ…ๅซ 4 ไธชๅญ—็ฌฆ" msgid "App passwords" msgstr "ๅบ”็”จๅฏ†็ " -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "ๅบ”็”จๅฏ†็ " @@ -1858,7 +1805,7 @@ msgstr "ๅฏนโ€œ{0}โ€ๆ ‡่ฎฐๆๅ‡บ็”ณ่ฏ‰" #: src/components/moderation/ModerationDetailsDialog.tsx:159 msgid "Appeal label" -msgstr "" +msgstr "็”ณ่ฏ‰ๆ ‡่ฎฐ" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 msgid "Appeal livestream suspension" @@ -1889,10 +1836,10 @@ msgstr "ๅฏนๆญคๅ†ณๅฎšๆๅ‡บ็”ณ่ฏ‰" #: src/components/moderation/ModerationDetailsDialog.tsx:219 msgid "Appeal this label" -msgstr "" +msgstr "ๅฏนๆญคๆ ‡่ฎฐๆๅ‡บ็”ณ่ฏ‰" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "ๅบ”็”จๆไบคๅ˜ๆ›ด" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "่‡ช {0} ่ตท่ขซๅฝ’ๆกฃ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "ๅทฒๅฝ’ๆกฃๅธ–ๆ–‡" @@ -1926,19 +1873,19 @@ msgstr "ไฝ ็œŸ็š„็กฎๅฎš่ฆ็ปง็ปญๅ—๏ผŸ" #. placeholder {1}: link(languages[1]) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:100 msgid "Are you searching for posts in {0} or {1}?" -msgstr "" +msgstr "ไฝ ๆญฃๅœจๆœ็ดข็”จ {0} ๆˆ– {1} ๆ’ฐๅ†™็š„ๅธ–ๆ–‡ๅ—๏ผŸ" #. placeholder {0}: link(languages[0]) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:95 msgid "Are you searching for posts in {0}?" -msgstr "" +msgstr "ไฝ ๆญฃๅœจๆœ็ดข็”จ {0} ๆ’ฐๅ†™็š„ๅธ–ๆ–‡ๅ—๏ผŸ" #. List formatting: {0}, {1}, or {2} #. placeholder {0}: head.map(lang => ( {link(lang)},{' '} )) #. placeholder {1}: link(last) #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:110 msgid "Are you searching for posts in {0}or {1}?" -msgstr "" +msgstr "ไฝ ๆญฃๅœจๆœ็ดข็”จ {0} ๆˆ– {1} ๆ’ฐๅ†™็š„ๅธ–ๆ–‡ๅ—๏ผŸ" #. placeholder {0}: appPassword.name #: src/screens/Settings/AppPasswords.tsx:210 @@ -1980,7 +1927,7 @@ msgstr "ไฝ ็กฎๅฎš่ฆๅฐ†ๆญคไปŽไฝ ็š„ๅŠจๆ€ๆบไธญๅˆ ้™คๅ—๏ผŸ" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "ไฝ ็กฎๅฎš่ฆๆ’ค้”€ๅŠ ๅ…ฅ {0} ็š„็”ณ่ฏทๅ—๏ผŸ" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "ไฝ ็กฎๅฎš่ฆๆ”พๅผƒๅ‘ๅธƒ่ฟ™ๅˆ™ๅธ–ๆ–‡ๅ—๏ผŸ" @@ -2018,25 +1965,30 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "ๆžๅ…‰" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "ไฝœ่€…" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "่‡ชๅŠจๅŒ–่ดฆๆˆท" #: src/screens/Login/components/HostingProviderDialog.tsx:165 #: src/screens/Login/components/HostingProviderDialog.tsx:167 msgid "Automatic" -msgstr "" +msgstr "่‡ชๅŠจ" #: src/screens/Settings/AccountSettings.tsx:155 #: src/screens/Settings/AccountSettings.tsx:158 msgid "Automation label" -msgstr "่‡ชๅŠจๅŒ–ๆ ‡็ญพ" +msgstr "่‡ชๅŠจๅŒ–ๆ ‡่ฎฐ" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" -msgstr "่‡ชๅŠจๅŒ–ๆ ‡็ญพ" +msgstr "่‡ชๅŠจๅŒ–ๆ ‡่ฎฐ" #: src/screens/Settings/ContentAndMediaSettings.tsx:118 #: src/screens/Settings/ContentAndMediaSettings.tsx:124 @@ -2050,12 +2002,16 @@ msgstr "่‡ชๅŠจๆ’ญๆ”พ่ง†้ข‘ๅŠ GIF" msgid "Available" msgstr "ๅฏ็”จ" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "ๅคดๅƒๅˆ›ๅปบๅทฅๅ…ท" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2095,15 +2051,15 @@ msgstr "่ขซ็ฆ็”จๆˆท่ฏ•ๅ›พ็ป•่ฟ‡ๅฐ็ฆ" #: src/ageAssurance/components/NoAccessScreen.tsx:184 msgid "Based on your device's location, we think you're in <0>{geolocationString}." -msgstr "" +msgstr "ๆ นๆฎไฝ ่ฎพๅค‡ๆไพ›็š„ไฝ็ฝฎไฟกๆฏ๏ผŒๆˆ‘ไปฌ่ฎคไธบไฝ ไฝไบŽ<0>{geolocationString}ใ€‚" #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236 msgid "Based on your device's location, we think you're in <0>{region}." -msgstr "" +msgstr "ๆ นๆฎไฝ ่ฎพๅค‡ๆไพ›็š„ไฝ็ฝฎไฟกๆฏ๏ผŒๆˆ‘ไปฌ่ฎคไธบไฝ ไฝไบŽ<0>{region}ใ€‚" #: src/ageAssurance/components/NoAccessScreen.tsx:194 msgid "Based on your network, we think you're in <0>{geolocationString}. This estimate may be inaccurate if you're using a VPN." -msgstr "" +msgstr "ๅŸบไบŽไฝ ็š„็ฝ‘็ปœไฟกๆฏ๏ผŒๆˆ‘ไปฌ่ฎคไธบไฝ ไฝไบŽ <0>{geolocationString}ใ€‚ๅฆ‚ๆžœไฝ ๆญฃๅœจไฝฟ็”จ VPN๏ผŒๆญคไผฐ็ฎ—็ป“ๆžœๅฏ่ƒฝไธๅ‡†็กฎใ€‚" #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "ๅœจไฝ ๆ’ฐๅ†™ๅธ–ๆ–‡ๆˆ–ๅ›žๅคไน‹ๅ‰๏ผŒไฝ ๅฟ…้กป้ฆ–ๅ…ˆ้ชŒ่ฏไฝ ็š„็”ตๅญ้‚ฎ็ฎฑใ€‚" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "ๅœจๅˆ›ๅปบๆ–ฐๆ‰‹ๅŒ…ไน‹ๅ‰๏ผŒไฝ ๅฟ…้กป้ฆ–ๅ…ˆ้ชŒ่ฏไฝ ็š„็”ตๅญ้‚ฎ็ฎฑใ€‚" @@ -2135,10 +2091,10 @@ msgstr "ๅœจไฝ ๆŽฅๆ”ถ {name} ็š„ๅ‘ๅธ–ๆ้†’ไน‹ๅ‰๏ผŒไฝ ๅฟ…้กป้ฆ–ๅ…ˆ้ชŒ่ฏไฝ ็š„ #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2116,28 @@ msgstr "่ฏทๅกซๅ†™ไปฅไธ‹ๆ ไฝ๏ผŒไปฅๅผ€ๅง‹ๅนด้พ„้ชŒ่ฏๆต็จ‹ใ€‚" msgid "Beta Feature" msgstr "ๆต‹่ฏ•ๅŠŸ่ƒฝ" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" -msgstr "" +msgstr "ๆต‹่ฏ•ๅŠŸ่ƒฝ" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" +msgstr "ๆต‹่ฏ•ๅŠŸ่ƒฝๅทฒๅฏ็”จ" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "ๆต‹่ฏ•ๅŠŸ่ƒฝๅฏ่ƒฝไธ็จณๅฎš๏ผŒ้ƒจๅˆ†ๆ›ดๆ”นๅฏ่ƒฝ้œ€่ฆ้‡ๆ–ฐๅŠ ่ฝฝๅบ”็”จใ€‚" #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "ๆต‹่ฏ•ๅŠŸ่ƒฝๅฏ่ƒฝไธ็จณๅฎš๏ผŒ้ƒจๅˆ†ๆ›ดๆ”นๅฏ่ƒฝ้œ€่ฆ้‡ๆ–ฐๅฏๅŠจๅบ”็”จใ€‚" #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2147,9 @@ msgstr "ๅ‡บ็”Ÿๆ—ฅๆœŸ" msgid "Birthday" msgstr "ๅ‡บ็”Ÿๆ—ฅๆœŸ" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "ๅทฒ่ขซๅฑ่”ฝ" msgid "Blocked accounts" msgstr "ๅทฒๅฑ่”ฝ่ดฆๆˆท" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "ๅทฒๅฑ่”ฝ่ดฆๆˆท" @@ -2282,7 +2244,7 @@ msgstr "ๅทฒ่ขซๅฑ่”ฝ็š„่ดฆๆˆทๆ— ๆณ•ๅœจไฝ ็š„ๅธ–ๆ–‡ไธ‹ๅ›žๅคใ€ๆๅŠไฝ ๆˆ–ไปฅๅ…ถ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "ๅทฒ่ขซๅฑ่”ฝ็š„่ดฆๆˆทๆ— ๆณ•ๅœจไฝ ็š„ๅธ–ๆ–‡ไธ‹ๅ›žๅคใ€ๆๅŠไฝ ๆˆ–ไปฅๅ…ถไป–ๆ–นๅผไธŽไฝ ไบ’ๅŠจใ€‚ไฝ ๅฐ†ไธไผš็œ‹ๅˆฐไป–ไปฌๆ‰€ๅ‘ๅธƒ็š„ๅ†…ๅฎน๏ผŒๅŒๆ ทไป–ไปฌไนŸๆ— ๆณ•ๆŸฅ็œ‹ไฝ ๅ‘ๅธƒ็š„ๅ†…ๅฎนใ€‚" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ๅฑ่”ฝ่ฏฅ็”จๆˆทไธไผš้˜ปๆญขๅ…ถ็ปง็ปญๆ ‡่ฎฐไฝ ็š„่ดฆๆˆทใ€‚" @@ -2301,14 +2263,15 @@ msgstr "ๅšๅฎข" #. Advanced search: Examples of hashtags #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:17 msgid "bloomscrolling booksky" -msgstr "" +msgstr "ๆ ‡็ญพๆœ็ดข" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ๆ— ๆณ•็กฎ่ฎคๅธ–ๆ–‡ๅ‘ๅธƒๆ—ถ้—ด็š„็œŸๅฎžๆ€งใ€‚" @@ -2330,7 +2293,7 @@ msgstr "Bluesky ๆ˜ฏไธ€ไธชๅผ€ๆ”พ็š„็คพไบค็ฝ‘็ปœ๏ผŒไฝ ๅฏไปฅ่‡ช่กŒ้€‰ๆ‹ฉๆ‰˜็ฎกๆœ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky ๆ˜ฏไธ€ไธชๅผ€ๆ”พ็š„็คพไบค็ฝ‘็ปœ๏ผŒไฝ ๅฏไปฅ่‡ช่กŒ้€‰ๆ‹ฉๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†ใ€‚ไฝ†ๅฆ‚ๆžœไฝ ๆ˜ฏๆ–ฐ็”จๆˆท๏ผŒๆˆ‘ไปฌๅปบ่ฎฎไฝ ้€‰ๆ‹ฉ้ป˜่ฎค็š„ Bluesky Social ้€‰้กนใ€‚" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "ไธŽๅคฉๅ‹ไปฌไธ€่ตท๏ผŒBluesky ๆ›ด็พŽๅฅฝ๏ผ" @@ -2358,7 +2321,7 @@ msgstr "Bluesky ๆœๅŠกๆกๆฌพ" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky ๅฐ†ไฝ ็š„่”็ณปไบบไฟกๆฏ็ผ–็ ๅŠ ๅฏ†ๅญ˜ๅ‚จ๏ผŒ่‹ฅไฝ ๅˆ ้™ค่”็ณปไบบๅฐ†ไผš็ซ‹ๅณๅˆ ้™คๆญคๆ•ฐๆฎใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky ๅฐ†ไปŽไฝ ็š„ๅ…ณ็ณป็ฝ‘ไธญ้€‰ๆ‹ฉไธ€็ป„ๆŽจ่ๅ…ณๆณจ็š„่ดฆๆˆทใ€‚" @@ -2403,20 +2366,20 @@ msgstr "่‡ณๅคšๅœจไธ€ไธชๅฏน่ฏ้‡Œๅฎน็บณ 50 ๅๅฅฝๅ‹ใ€‚" msgid "Browse custom feeds" msgstr "ๆต่งˆ่‡ชๅฎšไน‰ๅŠจๆ€ๆบ" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "ๆต่งˆๆ›ดๅคš่ดฆๆˆท" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "ๅœจๆŽข็ดข้กต้ขๆต่งˆๆ›ดๅคšๅŠจๆ€ๆบ" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "ๆต่งˆๆ›ดๅคšๅปบ่ฎฎ" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "ๅœจๆŽข็ดข้กต้ขๆต่งˆๆ›ดๅคšๅปบ่ฎฎ" @@ -2425,24 +2388,25 @@ msgstr "ๅœจๆŽข็ดข้กต้ขๆต่งˆๆ›ดๅคšๅปบ่ฎฎ" msgid "Browse other feeds" msgstr "ๆต่งˆๅ…ถไป–ๅŠจๆ€ๆบ" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "ๆต่งˆๆœ‰ๅ…ณ {displayName} ็š„ๅธ–ๆ–‡" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "ๆต่งˆๅธฆๆœ‰ๆ ‡็ญพ {displayName} ็š„ๅธ–ๆ–‡" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "ๆต่งˆๆ–ฐๆ‰‹ๅŒ… {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "ๆต่งˆ {0} ่ฏ้ข˜" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "ๆต่งˆ่ฏ้ข˜ {displayName}" @@ -2461,8 +2425,8 @@ msgstr "่ฟ”ๅ›žๅˆฐไธป้กตๆ—ถ้—ด็บฟ็š„ๆŒ‰้’ฎ" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "ๆฅ่‡ช {0}" @@ -2473,9 +2437,9 @@ msgstr "ๆฅ่‡ช @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "ๆฅ่‡ช <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "็ปง็ปญๅˆ›ๅปบ่ดฆๆˆทๅณไปฃ่กจไฝ ๅŒๆ„ๆˆ‘ไปฌ็š„<0>ๆœๅŠกๆกๆฌพๅ’Œ<1> msgid "By creating an account you agree to the <0>Terms of Service." msgstr "็ปง็ปญๅˆ›ๅปบ่ดฆๆˆทๅณไปฃ่กจไฝ ๅŒๆ„ๆˆ‘ไปฌ็š„<0>ๆœๅŠกๆกๆฌพใ€‚" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "็”ฑไฝ ๅˆ›ๅปบ" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "็›ธๆœบ" @@ -2534,7 +2498,7 @@ msgstr "้œ€่ฆ็›ธๆœบๆƒ้™" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "้œ€่ฆ็›ธๆœบๆƒ้™" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,13 +2549,13 @@ msgstr "ๅ–ๆถˆ้‡ๆ–ฐๅฏ็”จ่ดฆๆˆทๅนถ็™ปๅ‡บ" msgid "Cancel reply" msgstr "ๅ–ๆถˆๅ›žๅค" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "ๅ–ๆถˆๆœ็ดข" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 msgid "Cancels signing in so you can check your username" -msgstr "" +msgstr "ๅ–ๆถˆ็™ปๅฝ•ไปฅไพฟๆ‚จๆฃ€ๆŸฅ็”จๆˆทๅ" #: src/components/PostControls/index.tsx:108 #: src/components/PostControls/index.tsx:138 @@ -2620,7 +2584,7 @@ msgstr "ๆ ‡็ญพ {tag}" #. Advanced search: Example of an โ€œall of these wordsโ€ search. Paired with โ€œcows pigsโ€. #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:250 msgid "cats dogs" -msgstr "" +msgstr "็Œซ ็‹—" #: src/components/Post/Translated/index.tsx:439 #: src/screens/Settings/components/Email2FAToggle.tsx:31 @@ -2649,7 +2613,7 @@ msgstr "ๆ›ดๆ”น่ดฆๆˆทไปฃ็ " #: src/screens/Login/LoginForm.tsx:644 msgid "Change hosting provider" -msgstr "" +msgstr "ๆ›ดๆ”นๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†" #: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "ๅˆ—่กจๅœจๅˆ›ๅปบๅŽๅฐ†ๆ˜ฏไธ€ไธช็‹ฌ็ซ‹ๅ‰ฏๆœฌ๏ผŒไปปไฝ•ๅฏนๆ–ฐๆ‰‹ๅŒ…็š„ๆ›ดๆ”นๅฐ†ไธไผšๅฝฑๅ“ๅทฒๅˆ›ๅปบ็š„ๅˆ—่กจใ€‚" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "ๅทฒ้š่—ๅฏน่ฏ" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "ๆ— ๆณ•ๆ‰พๅˆฐๅฏน่ฏใ€‚" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "ๅฏน่ฏ้€‰้กน" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "ๅฏน่ฏๆ‰€ๆœ‰่€…ๆ— ๆณ•็ฆปๅผ€ๅฏน่ฏใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "ๅฏน่ฏๆ”ถไฟกไบบๆœช่ขซๅ‘ไฟกไบบๅ…ณๆณจใ€‚" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "ๅฏน่ฏ้‚€่ฏทๆ”ถไปถ็ฎฑ" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "ๅฏน่ฏ้‚€่ฏท" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "ๅฏน่ฏ่ฎพ็ฝฎ" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "ๅทฒๅ–ๆถˆ้š่—ๅฏน่ฏ" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "ๅฏน่ฏ" @@ -2810,7 +2775,7 @@ msgstr "่ฏทๅœจไธ‹ๆ–น่พ“ๅ…ฅๅ‘้€ๅˆฐไฝ ็”ตๅญ้‚ฎ็ฎฑ <0>{currentEmail} ็š„้ชŒ #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "่ฏท่ฟ‡ๆฎตๆ—ถ้—ดๅ†ๆฅๆŸฅ็œ‹๏ผ" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2802,7 @@ msgstr "้€‰ๆ‹ฉ้ชŒ่ฏๅŸŸๅ็š„ๆ–นๅผ" msgid "Choose Feeds" msgstr "้€‰ๆ‹ฉๅŠจๆ€ๆบ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "ๅธฎๆˆ‘้€‰ๆ‹ฉ" @@ -2854,7 +2819,7 @@ msgstr "้€‰ๆ‹ฉ็”จๆˆท" msgid "Choose post languages" msgstr "้€‰ๆ‹ฉๅธ–ๆ–‡่ฏญ่จ€" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "้€‰ๆ‹ฉๆญค้ขœ่‰ฒไฝœไธบไฝ ็š„ๅคดๅƒ่ƒŒๆ™ฏ" @@ -2869,7 +2834,7 @@ msgstr "้€‰ๆ‹ฉ่ฆ้‚€่ฏท็š„ไบบ" #: src/components/dialogs/ServerInput.tsx:134 #: src/screens/Login/components/HostingProviderDialog.tsx:155 msgid "Choose your hosting provider" -msgstr "" +msgstr "้€‰ๆ‹ฉไฝ ็š„ๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†" #: src/view/screens/Feeds.tsx:726 msgid "Choose your own timeline! Feeds built by the community help you find content you love." @@ -2879,7 +2844,7 @@ msgstr "่‡ชๅฎšไน‰ไธ“ๅฑžไบŽไฝ ็š„ๆ—ถ้—ด็บฟ๏ผ็”ฑ็คพ็พคๆ‰“้€ ็š„ๅŠจๆ€ๆบ่ƒฝๅธฎๅŠฉ msgid "Choose your password" msgstr "่ฎพ็ฝฎไฝ ็š„ๅฏ†็ " -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "่ฎพ็ฝฎไฝ ็š„็”จๆˆทๅ" @@ -2887,7 +2852,7 @@ msgstr "่ฎพ็ฝฎไฝ ็š„็”จๆˆทๅ" #: src/screens/Search/components/AdvancedSearchDialog/AutocompleteInput/index.tsx:110 #: src/screens/Search/components/AdvancedSearchDialog/ClearableInput.tsx:59 msgid "Clear" -msgstr "" +msgstr "ๆธ…้™ค" #: src/screens/Settings/Settings.tsx:507 msgid "Clear all storage data" @@ -2899,7 +2864,7 @@ msgstr "ๆธ…้™คๆ‰€ๆœ‰ๆ•ฐๆฎ๏ผˆๅนถ้‡ๆ–ฐๅฏๅŠจๅบ”็”จ๏ผ‰" #: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:70 msgid "Clear date" -msgstr "" +msgstr "ๆธ…้™คๆ—ฅๆœŸ" #. Accessibility label for the X button inside the search input that clears the typed query and returns to the trending feed. #: src/features/gifPicker/components/GifPickerHeader.tsx:67 @@ -2966,7 +2931,7 @@ msgstr "็‚นๅ‡ปๆญคๅค„ไปฅๆŸฅ็œ‹ๆญค็พค็ป„ๅฏน่ฏ็š„้‚€่ฏท้“พๆŽฅ" msgid "Click to open tag menu for {0}" msgstr "็‚นๆŒ‰ไปฅๅผ€ๅฏ {0} ็š„ๆ ‡็ญพ่œๅ•" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "็‚นๅ‡ปไปฅ้‡่ฏ•ๅ‘้€ไฟกๆฏ" @@ -3003,7 +2968,7 @@ msgstr "็‚นๅ‡ปไปฅ้‡่ฏ•ๅ‘้€ไฟกๆฏ" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "็‚นๅ‡ปไปฅ้‡่ฏ•ๅ‘้€ไฟกๆฏ" msgid "Close" msgstr "ๅ…ณ้—ญ" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "ๅ…ณ้—ญๆดปๅŠจๅฏน่ฏๆก†" @@ -3047,7 +3012,7 @@ msgstr "ๅ…ณ้—ญๆจชๅน…" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "ๅ…ณ้—ญๅ›พ็‰‡ๆŸฅ็œ‹ๅ™จ" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "ๅ…ณ้—ญ่œๅ•" @@ -3090,7 +3055,7 @@ msgstr "ๅ…ณ้—ญๅŠ ๅ…ฅ็”ณ่ฏท้€š็Ÿฅๆจชๅน…" msgid "Close this dialog" msgstr "ๅ…ณ้—ญๆญค็ช—ๅฃ" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "ๅ…ณ้—ญๆฌข่ฟŽ็•Œ้ข" @@ -3098,7 +3063,7 @@ msgstr "ๅ…ณ้—ญๆฌข่ฟŽ็•Œ้ข" msgid "Closes password update alert" msgstr "ๅ…ณ้—ญๅฏ†็ ๆ›ดๆ–ฐ่ญฆๅ‘Š" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "ๅ…ณ้—ญ็ผ–่พ‘ๅ™จๅนถ่ˆๅผƒ่‰็จฟ" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "้ขœ่‰ฒ" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "ไธป้ข˜ๆจกๅผ" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "ๆผซ็”ป" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "็คพ็พคๅ‡†ๅˆ™" @@ -3141,7 +3106,7 @@ msgstr "็คพ็พคๅ‡†ๅˆ™" msgid "Complete onboarding and start using your account" msgstr "ๅฎŒๆˆๅ…ฅ้—จๅผ•ๅฏผๅนถๅผ€ๅง‹ไฝฟ็”จไฝ ็š„่ดฆๆˆท" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "ๅฎŒๆˆ้ชŒ่ฏ" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "ๆ’ฐๅ†™ๆ–ฐๅธ–ๆ–‡" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "ๆ’ฐๅ†™ๆœ€ๅคš {0, plural,other {# ไธชๅญ—็ฌฆ}} ็š„ๅธ–ๆ–‡" @@ -3160,11 +3125,11 @@ msgstr "ๆ’ฐๅ†™ๆœ€ๅคš {0, plural,other {# ไธชๅญ—็ฌฆ}} ็š„ๅธ–ๆ–‡" msgid "Compose reply" msgstr "ๆ’ฐๅ†™ๅ›žๅค" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "ๆญฃๅœจๅŽ‹็ผฉ GIFโ€ฆโ€ฆ" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "ๆญฃๅœจๅŽ‹็ผฉ่ง†้ข‘โ€ฆโ€ฆ" @@ -3199,12 +3164,12 @@ msgstr "ๆญฃๅœจ่ฟžๆŽฅๅˆฐๆœๅŠกโ€ฆโ€ฆ" #: src/screens/Login/LoginForm.tsx:542 msgid "Connecting to serviceโ€ฆ" -msgstr "" +msgstr "ๆญฃๅœจ่ฟžๆŽฅๅˆฐๆœๅŠกโ€ฆโ€ฆ" #: src/screens/Login/ForgotPasswordForm.tsx:138 #: src/screens/Login/LoginForm.tsx:548 msgid "Connectingโ€ฆ" -msgstr "" +msgstr "่ฟžๆŽฅไธญโ€ฆโ€ฆ" #: src/ageAssurance/components/RedirectOverlay.tsx:297 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "่”็ณปๆˆ‘ไปฌ็š„ๆ”ฏๆŒๅ›ข้˜Ÿ" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "่”็ณปๆ”ฏๆŒ" @@ -3253,7 +3218,7 @@ msgstr "ๅ†…ๅฎนไธŽๅช’ไฝ“" msgid "Content and media" msgstr "ๅ†…ๅฎนไธŽๅช’ไฝ“" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "ๅ†…ๅฎนไธŽๅช’ไฝ“" @@ -3265,10 +3230,6 @@ msgstr "ๅทฒๅฑ่”ฝ่ฏฅๅ†…ๅฎน" msgid "Content filters" msgstr "ๅ†…ๅฎน่ฟ‡ๆปคๅ™จ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "ๆˆ‘ไปฌไปŽ็ฝ‘็ปœ็š„ๅ„ไธช่ง’่ฝ็ฒพ้€‰ๅ‡บไบ†ไฝ ๅฏ่ƒฝไผšๆ„Ÿๅ…ด่ถฃ็š„ๅ†…ๅฎนใ€‚" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "ๅ†…ๅฎน่ฏญ่จ€" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "ๅฎฃๆ‰ฌๆˆ–ๆๅ€ก่‡ชๆฎ‹ๅ†…ๅฎน" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "ๅ†…ๅฎน่ญฆๅ‘Š" msgid "Content warnings" msgstr "ๅ†…ๅฎน่ญฆๅ‘Š" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "ไธŠไธ‹ๆ–‡่œๅ•่ƒŒๆ™ฏ๏ผŒ็‚นๅ‡ปไปฅๅ…ณ้—ญ่œๅ•ใ€‚" @@ -3302,7 +3263,7 @@ msgstr "ไธŠไธ‹ๆ–‡่œๅ•่ƒŒๆ™ฏ๏ผŒ็‚นๅ‡ปไปฅๅ…ณ้—ญ่œๅ•ใ€‚" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3315,7 +3276,7 @@ msgstr "ไปฅ {0} ็š„่บซไปฝ็ปง็ปญ๏ผˆๅฝ“ๅ‰ๅทฒ็™ปๅฝ•๏ผ‰" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 msgid "Continue signing in" -msgstr "" +msgstr "็ปง็ปญ็™ปๅฝ•" #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 msgid "Continue thread" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "ๅŠ ่ฝฝๆ›ดๅคšๅธ–ๆ–‡ไธฒโ€ฆโ€ฆ" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "็ปง็ปญ่ฎพ็ฝฎ็พค็ป„ๅ็งฐ" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,15 +3329,15 @@ msgstr "ๆ‰พไธๅˆฐๅฏน่ฏใ€‚" msgid "Copied build version to clipboard" msgstr "ๅทฒๅคๅˆถๆž„ๅปบ็‰ˆๆœฌๅท่‡ณๅ‰ช่ดดๆฟ" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" -msgstr "" +msgstr "ๅทฒๅฐ†้“พๆŽฅๅคๅˆถ่‡ณๅ‰ช่ดดๆฟ" #: src/components/dms/ChatInvite/Root.tsx:99 #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "ๅคๅˆถๅบ”็”จๅฏ†็ " msgid "Copy at:// URI" msgstr "ๅคๅˆถ at:// ้“พๆŽฅ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "ๅคๅˆถๅ‘ๅธƒ่€… DID" @@ -3449,10 +3410,10 @@ msgstr "ๅคๅˆถ้“พๆŽฅ" msgid "Copy link to list" msgstr "ๅคๅˆถๅˆ—่กจ้“พๆŽฅ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "ๅคๅˆถๅธ–ๆ–‡้“พๆŽฅ" @@ -3470,8 +3431,8 @@ msgstr "ๅคๅˆถๆ–ฐๆ‰‹ๅŒ…้“พๆŽฅ" msgid "Copy message text" msgstr "ๅคๅˆถไฟกๆฏๆ–‡ๆœฌ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "ๅคๅˆถๅธ–ๆ–‡ at:// ้“พๆŽฅ" @@ -3490,7 +3451,7 @@ msgstr "ๅคๅˆถ TXT ่ฎฐๅฝ•ๅ€ผ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "็‰ˆๆƒ่ฎธๅฏ" @@ -3540,11 +3501,11 @@ msgstr "ๆ— ๆณ•ๅ…ณๆณจๆ‰€ๆœ‰ๅŒน้…็š„่”็ณปไบบใ€‚{0}" msgid "Could not leave chat" msgstr "ๆ— ๆณ•็ฆปๅผ€ๅฏน่ฏ" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "ๆ— ๆณ•็ฆปๅผ€ๅฏน่ฏใ€‚" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "ๆ— ๆณ•ๅŠ ่ฝฝๅŠจๆ€ๆบ" @@ -3562,7 +3523,7 @@ msgstr "ๆ— ๆณ•ๅŠ ่ฝฝ่ต„ๆ–™" msgid "Could not mute chat" msgstr "ๆ— ๆณ•้š่—ๅฏน่ฏ" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "ๆ— ๆณ•็งป้™คๆˆๅ‘˜ใ€‚" @@ -3600,14 +3561,14 @@ msgstr "ๅ›ฝๅฎถไปฃ็ " #. Advanced search: Example of a โ€œnone of these wordsโ€ search. Paired with โ€œcats dogsโ€. #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:268 msgid "cows pigs" -msgstr "" +msgstr "็‰› ็Œช" #. Text on button to create a new starter pack #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "ๅˆ›ๅปบ" @@ -3624,26 +3585,26 @@ msgstr "ไปŽๆ–ฐๆ‰‹ๅŒ…ๅˆ›ๅปบๅˆ—่กจ" msgid "Create a QR code for a starter pack" msgstr "ไธบๆ–ฐๆ‰‹ๅŒ…ๅˆ›ๅปบไบŒ็ปด็ " -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "ๅˆ›ๅปบๆ–ฐๆ‰‹ๅŒ…" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "ๅˆ›ๅปบๆ–ฐๆ‰‹ๅŒ…" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "ไธบๆˆ‘ๅˆ›ๅปบๆ–ฐๆ‰‹ๅŒ…" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "ๅˆ›ๅปบ่ดฆๆˆท" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "ๅˆ›ๅปบไธ€ไธช่ดฆๆˆท" @@ -3666,15 +3627,15 @@ msgstr "ๅˆ›ๅปบไธ€ไธช่ดฆๆˆท" msgid "Create an account without using this starter pack" msgstr "ไธไฝฟ็”จๆญคๆ–ฐๆ‰‹ๅŒ…ๆณจๅ†Œ่ดฆๅท" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "ๅˆ›ๅปบไธ€ไธชๅคดๅƒ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "ๅ†ๅˆ›ๅปบไธ€ไธช" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "ๅˆ›ๅปบ็พค็ป„ๅฏน่ฏ" @@ -3741,9 +3702,9 @@ msgstr "ๆ–‡ๅŒ–" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "ๅฝ“ๅ‰ๆต‹่ฏ•ๅŠŸ่ƒฝ" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "ๅฝ“ๅ‰ๅฏน่ฏ" @@ -3770,8 +3731,8 @@ msgstr "ๅฑ้™ฉ็‰ฉ่ดจๆˆ–่ฏ็‰ฉๆปฅ็”จ" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "ๆทฑ่‰ฒ" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "ๆทฑ่‰ฒ" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "ๆทฑ่‰ฒๆจกๅผ" @@ -3814,7 +3775,7 @@ msgstr "ๅฟฝ็•ฅๆญคๅปบ่ฎฎ่ฏญ่จ€" msgid "Deepfake adult content" msgstr "ๆทฑๅบฆไผช้€ ๆˆไบบๅ†…ๅฎน" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "้ป˜่ฎค" @@ -3894,7 +3855,7 @@ msgstr "ๅˆ ้™คๆˆ‘็š„่ดฆๆˆท" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "ๅˆ ้™คๅธ–ๆ–‡" @@ -3986,9 +3947,9 @@ msgstr "ๅฏน่ฏๆก†๏ผš่ฐƒๆ•ดๅ“ชไบ›ไบบๅฏไปฅๅ‚ไธŽ่ฟ™ๅˆ™ๅธ–ๆ–‡็š„ไบ’ๅŠจ" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 msgid "Dialog: Set search filters" -msgstr "" +msgstr "ๅฏน่ฏๆก†๏ผš่ฎพ็ฝฎๆœ็ดข็ญ›้€‰ๆกไปถ" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "ๆ˜ๆš—" @@ -4002,7 +3963,7 @@ msgstr "ๅœ็”จ" msgid "Disable 2FA" msgstr "ๅœ็”จไธคๆญฅ้ชŒ่ฏ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "ๅ…ณ้—ญๅญ—ๅน•" @@ -4045,9 +4006,9 @@ msgstr "ๅœ็”จ" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "่ˆๅผƒ" msgid "Discard changes?" msgstr "่ฆๆ”พๅผƒๆ›ดๆ”นๅ—๏ผŸ" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "่ฆ่ˆๅผƒ่‰็จฟๅ—๏ผŸ" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "่ฆๆ”พๅผƒๅ‘ๅธƒๅ—๏ผŸ" @@ -4079,6 +4040,10 @@ msgstr "ๅทฒๆ–ญๅผ€ไธŽ Germ DM ็š„่ฟžๆŽฅ" msgid "Discourage apps from showing my account to logged-out users" msgstr "้˜ปๆญขๅนณๅฐๅ‘ๆœช็™ปๅฝ•็”จๆˆทๆ˜พ็คบๆˆ‘็š„่ดฆๆˆท" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "ๆŽข็ดขๅŠจๆ€ๆบ" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "้˜ปๆญขๅนณๅฐๅ‘ๆœช็™ปๅฝ•็”จๆˆทๆ˜พ็คบๆˆ‘็š„่ดฆๆˆท" msgid "Discover new custom feeds" msgstr "ๆŽข็ดขๆ–ฐ็š„่‡ชๅฎšไน‰ๅŠจๆ€ๆบ" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "ๆŽข็ดขๆ–ฐ็š„ๅŠจๆ€ๆบ" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "ๆŽข็ดขๆ–ฐ็š„ๅŠจๆ€ๆบ" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "่ทณ่ฟ‡" @@ -4103,28 +4064,28 @@ msgstr "่ทณ่ฟ‡" msgid "Dismiss banner" msgstr "ๅฟฝ็•ฅๆจชๅน…ๆ็คบ" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "ๅฟฝ็•ฅ้”™่ฏฏ" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "่ทณ่ฟ‡ๅ…ฅ้—จๆŒ‡ๅ—" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "ๅฟฝ็•ฅๅ…ด่ถฃ" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "ๅ…ณ้—ญ็›ดๆ’ญๆดปๅŠจๆจชๅน…" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "ๅฟฝ็•ฅๆญค้ƒจๅˆ†" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "ๅฟฝ็•ฅๆญคๅปบ่ฎฎ" @@ -4142,7 +4103,7 @@ msgstr "ๆ˜พ็คบๆ›ดๅคง็š„ๆ›ฟไปฃๆ–‡ๆœฌๆ ‡็ญพ" msgid "Display name" msgstr "ๅ็งฐ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "ๅ‘Šๅˆซ็ฝ‘็ปœๅ–ทๅญๅ’Œๆ ‡้ข˜ๅ…š๏ผŒๆ‰พๅˆฐไฝ ็œŸๆญฃๅœจๆ„็š„ไบบๅ’Œๆ„Ÿๅ…ด่ถฃ็š„ๅฏน่ฏใ€‚" @@ -4205,8 +4166,8 @@ msgstr "ๅˆซๆ‹…ๅฟƒ๏ผไฝ ็Žฐๆœ‰็š„ๅฏน่ฏๅŠ่ฎพ็ฝฎ้ƒฝๅทฒไฟๅญ˜๏ผŒๅช้œ€้ชŒ่ฏไฝ ๅทฒ #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "ๅˆซๆ‹…ๅฟƒ๏ผไฝ ็Žฐๆœ‰็š„ๅฏน่ฏๅŠ่ฎพ็ฝฎ้ƒฝๅทฒไฟๅญ˜๏ผŒๅช้œ€้ชŒ่ฏไฝ ๅทฒ msgid "Done" msgstr "ๅฎŒๆˆ" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "ๅŒๅ‡ปๆˆ–้•ฟๆŒ‰ไฟกๆฏไปฅๆทปๅŠ ๅๅบ”" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "ๅŒๅ‡ปไปฅๅ…ณ้—ญๅฏน่ฏๆก†" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "ๅŒๅ‡ปไปฅ็‚น่ตž" @@ -4328,6 +4289,7 @@ msgstr "่ฟ›้ฃŸ้šœ็ข" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "็ผ–่พ‘ๅ›พ็‰‡" msgid "Edit interaction settings" msgstr "็ผ–่พ‘ไบ’ๅŠจ้€‰้กน" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "็ผ–่พ‘ๅ…ด่ถฃ" @@ -4397,7 +4359,7 @@ msgstr "็ผ–่พ‘็›ดๆ’ญ็Šถๆ€" msgid "Edit moderation list" msgstr "็ผ–่พ‘ๅ†…ๅฎนๅฎกๆ ธๅˆ—่กจ" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "็ผ–่พ‘ๆˆ‘็š„ๅŠจๆ€ๆบ" @@ -4406,6 +4368,11 @@ msgstr "็ผ–่พ‘ๆˆ‘็š„ๅŠจๆ€ๆบ" msgid "Edit name" msgstr "็ผ–่พ‘ๅ็งฐ" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "็ผ–่พ‘ๆฅ่‡ช {0} ็š„้€š็Ÿฅ" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "็ผ–่พ‘็”จๆˆท" @@ -4444,7 +4411,7 @@ msgstr "็ผ–่พ‘็”จๆˆทๅˆ—่กจ" msgid "Edit who can reply" msgstr "็ผ–่พ‘ๅ“ชไบ›ไบบๅฏไปฅๅ›žๅค" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "็ผ–่พ‘ไฝ ็š„ๆ–ฐๆ‰‹ๅŒ…" @@ -4500,8 +4467,8 @@ msgstr "ๅตŒๅ…ฅ HTML ไปฃ็ " #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "ๅตŒๅ…ฅๅธ–ๆ–‡" @@ -4509,7 +4476,7 @@ msgstr "ๅตŒๅ…ฅๅธ–ๆ–‡" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "ๅฐ†่ฟ™ๅˆ™ๅธ–ๆ–‡ๅตŒๅ…ฅๅˆฐไฝ ็š„็ฝ‘็ซ™ใ€‚ๅช้œ€ๅคๅˆถไปฅไธ‹ไปฃ็ ็‰‡ๆฎต๏ผŒๅนถๅฐ†ๅ…ถๆ’ๅ…ฅๅˆฐไฝ ็ฝ‘็ซ™็š„ HTML ไปฃ็ ไธญ็š„ๅˆ้€‚ไฝ็ฝฎๅณๅฏใ€‚" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "ๅตŒๅ…ฅๅผ่ง†้ข‘ๆ’ญๆ”พๅ™จ" @@ -4531,9 +4498,9 @@ msgstr "ๅฏ็”จๆˆไบบๅ†…ๅฎนๆ˜พ็คบ" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "ๅฏ็”จๆต‹่ฏ•ๅŠŸ่ƒฝ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "ๅผ€ๅฏๅญ—ๅน•" @@ -4550,12 +4517,13 @@ msgstr "ๅฏ็”จๅค–้ƒจๅช’ไฝ“" msgid "Enable media players for" msgstr "ๅฏ็”จๅช’ไฝ“ๆ’ญๆ”พๅ™จ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "่ฝฌๅˆฐๅ…ถไธชไบบไธป้กต๏ผŒ็‚นๅ‡ป <0>ๆ้†’ๅ›พๆ ‡ ๅณๅฏๆŽฅๆ”ถ่ฏฅ่ดฆๆˆท็š„ๅŠจๆ€ๆ้†’<1/>ใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "ๅฏ็”จๆŽจ้€้€š็Ÿฅ" @@ -4581,7 +4549,7 @@ msgstr "ๅœจไฝ ็š„โ€œDiscoverโ€ๅŠจๆ€ๆบไธญๅฏ็”จ็ƒญ้—จ่ง†้ข‘" msgid "Enabled" msgstr "ๅฏ็”จ" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "ๅทฒๆต่งˆๅˆฐๆœซๅฐพ" @@ -4608,7 +4576,7 @@ msgstr "่พ“ๅ…ฅๅญ—่ฏๆˆ–ๆ ‡็ญพ" msgid "Enter code" msgstr "่พ“ๅ…ฅ้ชŒ่ฏ็ " -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "่ฟ›ๅ…ฅๅ…จๅฑๆจกๅผ" @@ -4650,11 +4618,11 @@ msgstr "่พ“ๅ…ฅไฝ ็š„็”จๆˆทๅๅ’Œๅฏ†็ " msgid "Enters full screen" msgstr "่ฟ›ๅ…ฅๅ…จๅฑๆจกๅผ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "ๅจฑไน" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "้”™่ฏฏ" @@ -4684,7 +4652,7 @@ msgstr "ไฟๅญ˜ๆ–‡ไปถๆ—ถๅ‘็”Ÿ้”™่ฏฏ" msgid "Error receiving captcha response." msgstr "CAPTCHA๏ผˆไบบๆœบ้ชŒ่ฏ๏ผ‰ๅ“ๅบ”้”™่ฏฏใ€‚" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "้”™่ฏฏ๏ผš{error}" @@ -4696,8 +4664,8 @@ msgstr "ไปปไฝ•ไบบ้ƒฝๅฏไปฅๅ›žๅค" msgid "Everybody can reply to this post." msgstr "ไปปไฝ•ไบบ้ƒฝๅฏไปฅๅ›žๅค่ฟ™ๅˆ™ๅธ–ๆ–‡ใ€‚" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "ๆ‰€ๆœ‰ไบบ" @@ -4711,14 +4679,14 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "ๆ‰€ๆœ‰ไบบ" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "ๅ…ถไป–ๅ†…ๅฎน" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 msgid "Everything look right?" -msgstr "" +msgstr "ไธ€ๅˆ‡็œ‹่ตทๆฅ้ƒฝๆญฃ็กฎๅ—๏ผŸ" #. Advanced search filter #. Advanced search filter @@ -4728,7 +4696,7 @@ msgstr "" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:86 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:92 msgid "Exclude" -msgstr "" +msgstr "ๆŽ’้™ค" #: src/components/dialogs/MutedWords.tsx:320 msgid "Exclude users you follow" @@ -4738,7 +4706,7 @@ msgstr "ๆŽ’้™คไฝ ๅทฒๅ…ณๆณจ็š„็”จๆˆท" msgid "Excludes users you follow" msgstr "ๆŽ’้™คไฝ ๅทฒๅ…ณๆณจ็š„็”จๆˆท" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "้€€ๅ‡บๅ…จๅฑๆจกๅผ" @@ -4755,11 +4723,11 @@ msgstr "ๅฑ•ๅผ€็”จๆˆทๅˆ—่กจ" msgid "Expand or collapse the full post you are replying to" msgstr "ๅฑ•ๅผ€ๆˆ–ๆŠ˜ๅ ไฝ ๆญฃๅœจๅ›žๅค็š„ๅฎŒๆ•ดๅธ–ๆ–‡" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "ๅฑ•ๅผ€ๅธ–ๆ–‡ๆ–‡ๆœฌ" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "ๅฑ•ๅผ€ๆˆ–ๆŠ˜ๅ ๅธ–ๆ–‡ๆ–‡ๆœฌ" @@ -4802,15 +4770,15 @@ msgstr "่ก€่…ฅใ€้œฒ้ชจๆˆ–ๅ…ถไป–ๅฏ่ƒฝๅผ•่ตทไธ้€‚็š„ๅช’ไฝ“ๅ†…ๅฎนใ€‚" msgid "Explicit sexual images." msgstr "้œฒ้ชจ็š„่‰ฒๆƒ…ๅ›พ็‰‡ใ€‚" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "ๆŽข็ดข" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "ๆŽข็ดขๅบ”็”จ" @@ -4844,7 +4812,7 @@ msgstr "ๅค–้ƒจๅช’ไฝ“" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ๅค–้ƒจๅช’ไฝ“ๅฏ่ƒฝไผšๆ”ถ้›†ไฝ ๆˆ–่ฎพๅค‡ๅ‚จๅญ˜็š„ไธชไบบไฟกๆฏใ€‚ๅœจไฝ ๆŒ‰ไธ‹โ€œๆ’ญๆ”พโ€ๆŒ‰้’ฎไน‹ๅ‰๏ผŒๅนณๅฐไธไผšๅ‘้€ไปปไฝ•่ฏทๆฑ‚็ป™ๅค–้ƒจๅช’ไฝ“ใ€‚" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "ๅค–้ƒจๅช’ไฝ“ๅๅฅฝ่ฎพ็ฝฎ" @@ -4886,7 +4854,7 @@ msgstr "ๆ— ๆณ•ๆ›ดๆ”น่ดฆๆˆทไปฃ็ ๏ผŒ่ฏท้‡่ฏ•ใ€‚" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "ๆ— ๆณ•ๅคๅˆถ้“พๆŽฅ" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "ๆ— ๆณ•็ฆปๅผ€็พค็ป„ๅฏน่ฏ" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "ๆ— ๆณ•ๅŠ ่ฝฝๅฏน่ฏ" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "ๆ— ๆณ•ๅŠ ่ฝฝๅŠจๆ€ๆบ" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "ๆ— ๆณ•ๅŠ ่ฝฝๅŠจๆ€ๆบๅๅฅฝ่ฎพ็ฝฎ" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "ๆ— ๆณ•ๅŠ ่ฝฝ้€š็Ÿฅ่ฎพ็ฝฎใ€‚" @@ -5012,14 +4981,14 @@ msgstr "ๆ— ๆณ•ๅŠ ่ฝฝ้ฆ–้€‰้กนใ€‚" msgid "Failed to load profiles" msgstr "ๆ— ๆณ•ๅŠ ่ฝฝไธชไบบ่ต„ๆ–™" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "ๆ— ๆณ•ๅŠ ่ฝฝๅปบ่ฎฎ็š„ๅŠจๆ€ๆบ" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "ๆ— ๆณ•ๅŠ ่ฝฝๅปบ่ฎฎๅ…ณๆณจ" @@ -5027,12 +4996,12 @@ msgstr "ๆ— ๆณ•ๅŠ ่ฝฝๅปบ่ฎฎๅ…ณๆณจ" msgid "Failed to lock group chat" msgstr "ๆ— ๆณ•้”ๅฎš็พค็ป„ๅฏน่ฏ" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "ๆ— ๆณ•ๅฐ†ๆ‰€ๆœ‰ๅฏน่ฏๆ ‡่ฎฐไธบๅทฒ่ฏป" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "ๆ— ๆณ•ๆ’ค้”€ไฝ ็š„็”ณ่ฏท๏ผŒ่ฏท้‡่ฏ•ใ€‚" msgid "Failed to resolve location. Please try again." msgstr "ๆ— ๆณ•่Žทๅ–ไฝ็ฝฎไฟกๆฏ๏ผŒ่ฏท้‡่ฏ•ใ€‚" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "ๆ— ๆณ•ไฟๅญ˜่‰็จฟ" @@ -5191,7 +5160,7 @@ msgstr "่™šๅ‡่ดฆๆˆทๆˆ–ๆœบๅ™จไบบ" msgid "False information about elections" msgstr "ๆ•ฃๅธƒ้€‰ไธพ็›ธๅ…ณ่™šๅ‡ไฟกๆฏ" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "ๅŠจๆ€ๆบ" @@ -5212,7 +5181,7 @@ msgstr "ๅŠจๆ€ๆบๅˆ›ๅปบ่€…" msgid "Feed identifier" msgstr "ๅŠจๆ€ๆบๆ ‡่ฏ†็ฌฆ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "ๅŠจๆ€ๆบ่œๅ•" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "ๅทฒๆไบคๅ้ฆˆ็ป™ๅŠจๆ€ๆบ็ปดๆŠค่€…" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "ๅทฒๆ›ดๆ–ฐๅŠจๆ€ๆบ๏ผ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "ๆˆ‘ไปฌ่ฎคไธบไฝ ๅฏ่ƒฝไผšๅ–œๆฌข็š„ๅŠจๆ€ๆบใ€‚" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "่Žทๅ–ๆ›ดๆ–ฐ" @@ -5273,44 +5238,32 @@ msgstr "่Žทๅ–ๆ›ดๆ–ฐ" msgid "File saved successfully!" msgstr "ๅทฒๆˆๅŠŸไฟๅญ˜ๆ–‡ไปถ๏ผ" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "" +msgstr "ไพๅ‘ๅธƒ่€…็ญ›้€‰๏ผˆ็›ฎๅ‰๏ผš{currentLabel}๏ผ‰" #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "ไปŽๅŠจๆ€ๆบไธญ่ฟ‡ๆปค" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "ๆŒ‰่ฏญ่จ€่ฟ‡ๆปคๆœ็ดข" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "ๆŒ‰่ฏญ่จ€่ฟ‡ๆปคๆœ็ดข๏ผˆๅฝ“ๅ‰๏ผš{currentLanguageLabel}๏ผ‰" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "ไพๅช’ไฝ“็ญ›้€‰ๆœ็ดข๏ผˆ็›ฎๅ‰๏ผš{currentLabel}๏ผ‰" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" -msgstr "" +msgstr "ไปฅ {0} ็ญ›้€‰ๆญคๆœ็ดข็ป“ๆžœ" #: src/screens/Settings/ActivityPrivacySettings.tsx:106 msgid "Filter who can opt to receive notifications for your activity" msgstr "็ญ›้€‰่ฐๅฏไปฅ้€‰ๆ‹ฉๆŽฅๆ”ถไฝ ็š„ๅŠจๆ€ๆ้†’" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "็ญ›้€‰ไฝ ๆƒณๆŽฅๆ”ถ็š„้€š็Ÿฅๆฅๆบ" @@ -5318,7 +5271,7 @@ msgstr "็ญ›้€‰ไฝ ๆƒณๆŽฅๆ”ถ็š„้€š็Ÿฅๆฅๆบ" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 msgctxt "search" msgid "Filters" -msgstr "" +msgstr "็ญ›้€‰ๅ™จ" #: src/screens/Onboarding/StepFinished/index.tsx:335 msgid "Finalizing" @@ -5352,8 +5305,8 @@ msgstr "ๅŽปๅ…ณๆณจๆ›ดๅคš่ดฆๆˆท" msgid "Find and invite friends" msgstr "ๅฏปๆ‰พๅนถ้‚€่ฏทๆœ‹ๅ‹" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "ๅฏปๆ‰พ่”็ณปไบบ" @@ -5387,7 +5340,7 @@ msgstr "ๅฏปๆ‰พไฝ ็š„ๆœ‹ๅ‹" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "้€š่ฟ‡้ชŒ่ฏไฝ ็š„็”ต่ฏๅท็ ๅนถไธŽไฝ ็š„้€š่ฎฏๅฝ•ๅŒน้…๏ผŒๅณๅฏๆ‰พๅˆฐๆญฃๅœจไฝฟ็”จ Bluesky ็š„ๆœ‹ๅ‹ใ€‚ๆˆ‘ไปฌไธฅๆ ผไฟๆŠคไฝ ็š„ๆ•ฐๆฎไฟกๆฏ๏ผŒไฝ ๅฏ้šๆ—ถๆŽŒๆกๅŽ็ปญไปปไฝ•ๆ“ไฝœใ€‚<0>ไบ†่งฃๆ›ดๅคš" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "ๆ‰พๅˆฐๅฟ—ๅŒ้“ๅˆ็š„ไบบ" @@ -5429,7 +5382,7 @@ msgstr "่š็„ฆๆœ็ดขๆ " #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "ๅ…ณๆณจ {0}" msgid "Follow {displayName}" msgstr "ๅ…ณๆณจ {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "ๅ…ณๆณจ {handle}" @@ -5453,11 +5406,11 @@ msgstr "ๅ…ณๆณจ {handle}" msgid "Follow 10 accounts" msgstr "ๅ…ณๆณจ 10 ไธช่ดฆๆˆท" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "ๅ…ณๆณจ 10 ไธชไบบไปฅๅผ€ๅง‹" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "ๅ…ณๆณจ 7 ไธช่ดฆๆˆท" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "ๅ…ณๆณจ่€…ๅฏไปฅๅŠ ๅ…ฅ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "ไฝ ่ฎค่ฏ†็š„่ฟ™ไบ›ไบบไนŸๅ…ณๆณจไบ† @{0}" @@ -5544,7 +5497,7 @@ msgstr "ไฝ ่ฎค่ฏ†็š„ๅ…ณๆณจ่€…" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "ๅทฒๅ…ณๆณจ {0}" msgid "Following {displayName}" msgstr "ๆญฃๅœจๅ…ณๆณจ {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "ๅทฒๅ…ณๆณจ {handle}" @@ -5578,21 +5531,21 @@ msgstr "ๅทฒๅ…ณๆณจ {handle}" msgid "Following feed preferences" msgstr "โ€œFollowingโ€ๅŠจๆ€ๆบๅๅฅฝ่ฎพ็ฝฎ" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "โ€œFollowingโ€ๅŠจๆ€ๆบๅๅฅฝ่ฎพ็ฝฎ" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "ๅ…ณๆณจไบ†ไฝ " -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "ๅญ—ไฝ“" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "ๅญ—ไฝ“ๅคงๅฐ" @@ -5612,13 +5565,13 @@ msgstr "ๅ‡บไบŽๅฎ‰ๅ…จๅŽŸๅ› ๏ผŒๆˆ‘ไปฌๅฐ†ๅ‘้€้ชŒ่ฏ็ ๅˆฐไฝ ็š„็”ตๅญ้‚ฎ็ฎฑๅœฐๅ€ msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "ๅ‡บไบŽๅฎ‰ๅ…จๅŽŸๅ› ๏ผŒไฝ ๅฐ†ๆ— ๆณ•ๅ†ๆฌกๆŸฅ็œ‹ๆญคๅบ”็”จๅฏ†็ ใ€‚่‹ฅไฝ ๅฟ˜่ฎฐไบ†ๆญคๅฏ†็ ๏ผŒๅˆ™้œ€้‡ๆ–ฐ็”Ÿๆˆใ€‚" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "ๆˆ‘ไปฌๅปบ่ฎฎไฝ ไฝฟ็”จไธป้ข˜ๅญ—ไฝ“๏ผŒไปฅ่Žทๅพ—ๆœ€ไฝณไฝฟ็”จไฝ“้ชŒใ€‚" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "ไธบไฝ ๆŽจ่" @@ -5628,7 +5581,7 @@ msgstr "ไธบไฝ ๆŽจ่" msgid "Forever" msgstr "ๆฐธไน…" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "ๅฟ˜่ฎฐ้‚ฃไบ›ๆ— ๆญขๅฐฝ็š„้ชšๆ‰ฐ" @@ -5647,18 +5600,18 @@ msgstr "ๅฟ˜่ฎฐๅฏ†็ ๏ผŸ" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "ๅ››ไธชไปฃ่กจ็พค่Š็š„่Šๅคฉๆฐ”ๆณกใ€‚็ฌฌไธ€ๆกไฟกๆฏ๏ผšโ€œไฝ ๅฌ่ฏดไบ†ๅ—๏ผŸBluesky ็Žฐๅœจๆœ‰็พค็ป„ๅฏน่ฏๅŠŸ่ƒฝไบ†๏ผโ€๏ผŒ็ฌฌไบŒๆกไฟกๆฏ๏ผšโ€œๅคฉๅ‘โ€๏ผŒ็ฌฌไธ‰ๆกไฟกๆฏ๏ผšโ€œๅމๅฎณไบ†๏ผŒไธ€ไธชๅฏน่ฏ้‡Œๆœ‰50ไธชไบบ๏ผโ€๏ผŒ็ฌฌๅ››ๆกๆถˆๆฏ๏ผšโ€œไฝ ไนŸๅฏไปฅๅ‘้€้‚€่ฏท้“พๆŽฅ๏ผโ€" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "่ฟ˜ไฝ ไธ€ไธชๅนฒๅ‡€็š„ๆ—ถ้—ด็บฟ" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "ๅ‘่‡ช" #: src/screens/Hashtag.tsx:123 msgid "From {sanitizedAuthor}" -msgstr "" +msgstr "ๆฅ่‡ช {sanitizedAuthor}" #: src/screens/Hashtag.tsx:124 msgid "From @{sanitizedAuthor}" @@ -5672,9 +5625,9 @@ msgstr "ๆฅ่‡ช <0/>" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:30 msgid "From these people" -msgstr "" +msgstr "ๆฅ่‡ช่ฟ™ไบ›ไบบ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "ๅˆ›ๅปบไธ€ไธชๆ–ฐๆ‰‹ๅŒ…" @@ -5712,45 +5665,45 @@ msgstr "้‡ๆ–ฐ่ฟžๆŽฅ Germ DM" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features weโ€™re testing." -msgstr "" +msgstr "ๆŠขๅ…ˆไฝ“้ชŒๆˆ‘ไปฌๆญฃๅœจๆต‹่ฏ•็š„ๅŠŸ่ƒฝใ€‚" #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "่Žทๅ–ๅธฎๅŠฉ" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "ๅฝ“ๆœ‰ไบบ้€š่ฟ‡ไฝ ็š„ๆ–ฐๆ‰‹ๅŒ…ๅŠ ๅ…ฅใ€่ดฆๆˆท้ชŒ่ฏๆˆ–ๅ…ถไป–็Šถๆ€ๆ›ดๆ–ฐๆ—ถๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "ๅฝ“ๆœ‰ไบบๅ…ณๆณจไฝ ๆ—ถๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "ๅฝ“ๆœ‰ไบบๅ–œๆฌขไบ†ไฝ ็š„ๅธ–ๆ–‡ๆ—ถๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "ๅฝ“ๆœ‰ไบบๅ–œๆฌขไบ†ไฝ ่ฝฌๅ‘็š„ๅธ–ๆ–‡ๆ—ถๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "ๅฝ“ๆœ‰ไบบๆๅŠไฝ ๆ—ถๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "ๅฝ“ๆœ‰ไบบๅผ•็”จไบ†ไฝ ็š„ๅธ–ๆ–‡ๆ—ถๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "ๅฝ“ๆœ‰ไบบๅ›žๅคไบ†ไฝ ็š„ๅธ–ๆ–‡ๆ—ถๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "ๅฝ“ๆœ‰ไบบ่ฝฌๅ‘ไบ†ไฝ ็š„ๅธ–ๆ–‡ๆ—ถๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "ๅฝ“ๆœ‰ไบบ่ฝฌๅ‘ไบ†ไฝ ่ฝฌๅ‘็š„ๅธ–ๆ–‡ๆ—ถๆ”ถๅˆฐ้€š็Ÿฅใ€‚" @@ -5762,15 +5715,15 @@ msgstr "ๅฝ“ๆœ‰ไบบๅ‘ไฝ ๅ‘้€ไฟกๆฏ่ฏทๆฑ‚ๆ—ถๆ”ถๅˆฐ้€š็Ÿฅใ€‚" msgid "Get notifications when people send you messages." msgstr "ๅฝ“ๆœ‰ไบบๅ‘ไฝ ๅ‘้€ไฟกๆฏๆ—ถๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "ๅฝ“ไฝ ่ฎข้˜…็š„ๅธ–ๆ–‡ๆœ‰็Šถๆ€ๆ›ดๆ–ฐๆ—ถๆ”ถๅˆฐ้€š็Ÿฅใ€‚" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "ๅฝ“ๅ…ถๅ‘ๅธƒๆ–ฐๅธ–ๆ–‡ๆ—ถๆ”ถๅˆฐๆ้†’" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "ๅฝ“ไฝ ้€‰ๆ‹ฉ็š„่ดฆๆˆทๅ‘ๅธƒๆ–ฐๅธ–ๆ–‡ๆˆ–ๅ›žๅคๆ—ถๆ”ถๅˆฐๆ้†’ใ€‚" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "ๅฝ“ {name} ๅ‘ๅธƒๆ–ฐๅธ–ๆ–‡ๆ—ถๆ”ถๅˆฐๆ้†’" @@ -5799,11 +5752,11 @@ msgstr "ๅผ€ๅง‹ๅง" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "ๅทฒไธŠไผ  GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "ไธบไฝ ็š„ไธชไบบ่ต„ๆ–™้€‰ๆ‹ฉๅคดๅƒ" @@ -5813,20 +5766,20 @@ msgstr "้ข‚ๆ‰ฌๆšดๅŠ›" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,9 +5829,9 @@ msgid "Go live for" msgstr "็›ดๆ’ญๆ—ถ้•ฟ" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" -msgstr "" +msgstr "่ฝฌๅˆฐ {0} ็š„ไธชไบบ่ต„ๆ–™" #: src/view/com/notifications/NotificationFeedItem.tsx:256 msgid "Go to {firstAuthorName}'s profile" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "ๅทฒๆ›ดๆ–ฐ็พค็ป„ๅฏน่ฏๅ็งฐ" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "็พค็ป„ๅฏน่ฏ่ฎพ็ฝฎ" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "็พค็ป„ๅฏน่ฏๆœ€ๅคšๅช่ƒฝๆ‹ฅๆœ‰ {0, plural,other {# ๅๆˆๅ‘˜}}ใ€‚" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "็พค็ป„ๅทฒ้”ๅฎš" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "็พค็ป„ๅ็งฐ" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "็พค็ป„ๅ็งฐๅคช้•ฟ๏ผŒ{MAX_GROUP_NAME_GRAPHEME_LENGTH, plural,other {ไธ่ƒฝ่ถ…่ฟ‡ # ไธชๅญ—็ฌฆใ€‚}}" @@ -6077,7 +6031,7 @@ msgstr "ๆœ‰ๅฎณๆˆ–้ซ˜้ฃŽ้™ฉๆดปๅŠจ" msgid "Harming or endangering minors" msgstr "ไผคๅฎณๆˆ–ๅฑๅŠๆœชๆˆๅนดไบบๅฎ‰ๅ…จ" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "ๆ ‡็ญพ" @@ -6098,7 +6052,7 @@ msgstr "ๅทฒ็ปๆœ‰้ชŒ่ฏ็ ไบ†๏ผŸ<0>็‚นๅ‡ป่ฟ™้‡Œใ€‚" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "ไฝ็ฝฎไฟกๆฏๅˆคๆ–ญๆœ‰่ฏฏ๏ผŸ<0>็‚นๅ‡ปๆญคๅค„ๆฅ้€š่ฟ‡ GPS ๆ›ดๆ–ฐไฝ ๆ‰€ๅœจ็š„ไฝ็ฝฎใ€‚" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "้‡ๅˆฐ้—ฎ้ข˜ไบ†ๅ—๏ผŸ" @@ -6114,7 +6068,7 @@ msgstr "็”ฑ Bluesky ไฟ็•™ 7 ๅคฉไปฅ้˜ฒๆญขๆปฅ็”จ๏ผŒๅนถๅœจไน‹ๅŽๅˆ ้™ค" msgid "Help" msgstr "ๅธฎๅŠฉ" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "้€š่ฟ‡ไธŠไผ ๅ›พ็‰‡ๆˆ–็”Ÿๆˆๅคดๅƒ๏ผŒๆฅ่ฎฉๅคงๅฎถ็Ÿฅ้“ไฝ ไธๆ˜ฏๆœบๅ™จไบบใ€‚" @@ -6135,12 +6089,12 @@ msgstr "ๅ—จ๏ผ" msgid "Hi there!" msgstr "ๅ—จ๏ผ" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "้š่—" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "็”ฑไฝ ็š„ๅ†…ๅฎนๅฎกๆ ธ่ฎพ็ฝฎๆ‰€้š่—ใ€‚" @@ -6148,9 +6102,10 @@ msgstr "็”ฑไฝ ็š„ๅ†…ๅฎนๅฎกๆ ธ่ฎพ็ฝฎๆ‰€้š่—ใ€‚" msgid "Hidden list" msgstr "้š่—ๅˆ—่กจ" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "้š่—ๅˆ—่กจ" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "้š่—" @@ -6181,7 +6137,7 @@ msgstr "้š่—ๅˆ—่กจ" #: src/screens/Login/LoginForm.tsx:613 msgid "Hide password" -msgstr "" +msgstr "้š่—ๅฏ†็ " #: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 @@ -6198,7 +6154,7 @@ msgstr "ไธบๆ‰€ๆœ‰ไบบ้š่—ๅ›žๅค" msgid "Hide reply for me" msgstr "ไป…ไธบๆˆ‘้š่—ๅ›žๅค" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "้š่—่ฟ™ๅผ ๅก็‰‡" @@ -6218,16 +6174,18 @@ msgstr "่ฆ้š่—่ฟ™ๅˆ™ๅ›žๅคๅ—๏ผŸ" msgid "Hide translation" msgstr "้š่—็ฟป่ฏ‘" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "้š่—็ƒญ้—จ่ฏ้ข˜" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "่ฆ้š่—็ƒญ้—จ่ฏ้ข˜ๅ—๏ผŸ" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "่ฆ้š่—็ƒญ้—จ่ง†้ข‘ๅ—๏ผŸ" @@ -6240,7 +6198,7 @@ msgstr "้š่—็”จๆˆทๅˆ—่กจ" msgid "Hide verification badges" msgstr "้š่—่ฎค่ฏๅพฝ็ซ " -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "้š่—ๅ†…ๅฎน" @@ -6255,11 +6213,11 @@ msgstr "ๆŠฑๆญ‰๏ผŒไฝ ไผผไนŽๆญฃๅœจไฝฟ็”จ<0>ๅบ”็”จๅฏ†็ ็™ปๅฝ•ใ€‚ๅฆ‚้œ€ๆ›ดๆ”น #: src/ageAssurance/useVerificationFlow.ts:122 msgid "Hmm, it seems we weren't able to compute your level of access. Please try again." -msgstr "" +msgstr "ๆŠฑๆญ‰๏ผŒๆˆ‘ไปฌๆ— ๆณ•็กฎ่ฎคไฝ ็š„่ฎฟ้—ฎๆƒ้™๏ผŒ่ฏทๅ†่ฏ•ไธ€ๆฌกใ€‚" #: src/ageAssurance/useVerificationFlow.ts:141 msgid "Hmm, it seems your device was unable to share age information with us." -msgstr "" +msgstr "ๆŠฑๆญ‰๏ผŒไฝ ็š„่ฎพๅค‡ไผผไนŽไธๆ”ฏๆŒๆŠฅๅ‘Šๅนด้พ„ไฟกๆฏใ€‚" #: src/view/com/posts/PostFeedErrorMessage.tsx:125 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." @@ -6293,8 +6251,8 @@ msgstr "ๆŠฑๆญ‰๏ผŒๆˆ‘ไปฌๆ— ๆณ•ๅŠ ่ฝฝ่ฏฅๅ†…ๅฎนๅฎกๆ ธๆไพ›ๆœๅŠกๆ–นใ€‚" msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "่ฏท็จ็ญ‰๏ผๆˆ‘ไปฌๆญฃๅœจ้€ๆญฅๅผ€ๆ”พไธŠไผ ่ง†้ข‘็š„ๆƒ้™ใ€‚ไฝ ็›ฎๅ‰ไปๅœจ็ญ‰ๅพ…้˜Ÿไผไธญ๏ผŒ่ฏท็จๅŽๅ†ๅ›žๆฅๆŸฅ็œ‹๏ผ" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6315,15 +6273,11 @@ msgstr "ๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†" #. placeholder {0}: toNiceHostingUrl(state.pdsUrl) #: src/screens/Login/LoginForm.tsx:655 msgid "Hosting provider: {0}" -msgstr "" +msgstr "ๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†๏ผš{0}" #: src/screens/Login/LoginForm.tsx:657 msgid "Hosting provider: Bluesky" -msgstr "" - -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "็ƒญ้—จ" +msgstr "ๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†๏ผšBluesky" #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" @@ -6409,6 +6363,7 @@ msgstr "ๅฆ‚ๆžœไฝ ๆ›ดๆ–ฐ็”ตๅญ้‚ฎ็ฎฑๅœฐๅ€๏ผŒ็”ตๅญ้‚ฎ็ฎฑไธคๆญฅ้ชŒ่ฏๅฐ†ไผšๅœ็”จ msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "ๅฆ‚ๆžœไฝ ๆƒณ่ฆๆ›ดๆ”นๅฏ†็ ๏ผŒๆˆ‘ไปฌๅฐ†ๅ‘้€้ชŒ่ฏ็ ๅˆฐไฝ ็š„็”ตๅญ้‚ฎ็ฎฑๅœฐๅ€๏ผŒไปฅ้ชŒ่ฏ่ฟ™ๆ˜ฏไฝ ็š„่ดฆๆˆทใ€‚" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "ๅฆ‚ๆžœไฝ ๆƒณ้™ๅˆถๅ…ถไป–ไบบๆŽฅๆ”ถไฝ ่ดฆๆˆท็š„ๅŠจๆ€ๆ้†’๏ผŒๅฏไปฅ่ฝฌๅˆฐ<0>่ฎพ็ฝฎ โ†’ ้š็งไธŽๅฎ‰ๅ…จๆ›ดๆ”นๅ…่ฎธ่Œƒๅ›ดใ€‚" @@ -6548,7 +6503,7 @@ msgstr "ๅบ”็”จๅ†…ใ€็ณป็ปŸๆŽจ้€ใ€ๆ‰€ๆœ‰ไบบ" msgid "In-app, push, people you follow" msgstr "ๅบ”็”จๅ†…ใ€็ณป็ปŸๆŽจ้€ใ€ไฝ ๅ…ณๆณจ็š„ไบบ" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "ๆ”ถไปถ็ฎฑไธบ็ฉบ" @@ -6564,32 +6519,27 @@ msgstr "ๆ”ถไปถ็ฎฑๆธ…็ฉบๅ•ฆ๏ผ" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" -msgstr "" +msgstr "ๅŒ…ๅซ" #. placeholder {0}: filter.mode === 'exclude' ? l({message: 'Exclude', comment: 'Advanced search filter'}) : l({message: 'Include', comment: 'Advanced search filter'}) #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:44 msgid "Include or exclude matching posts (currently: {0})" -msgstr "" +msgstr "ๅŒ…ๅซๆˆ–ๆŽ’้™ค็ฌฆๅˆ็š„ๅธ–ๆ–‡๏ผˆ็›ฎๅ‰๏ผš{0}๏ผ‰" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" -msgstr "" +msgstr "ๅŒ…ๅซๅธ–ๆ–‡ๅ’Œ/ๆˆ–ๅ›žๅค๏ผˆๅฝ“ๅ‰๏ผš{currentLabel}๏ผ‰" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:305 msgid "Include posts made since this date" -msgstr "" +msgstr "ๅŒ…ๅซ่‡ชๆญคๆ—ฅๆœŸไน‹ๅŽๅ‘ๅธƒ็š„ๅธ–ๆ–‡" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:329 msgid "Include posts made until this date" -msgstr "" - -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "" +msgstr "ๅŒ…ๅซ่‡ชๆญคๆ—ฅๆœŸไน‹ๅ‰ๅ‘ๅธƒ็š„ๅธ–ๆ–‡" #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" @@ -6683,7 +6633,7 @@ msgstr "้‚€่ฏท {name} ๅŠ ๅ…ฅ Bluesky" msgid "Invite code" msgstr "้‚€่ฏท็ " -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "้‚€่ฏท็ ๆ— ๆ•ˆ๏ผŒ่ฏทๆฃ€ๆŸฅไฝ ่พ“ๅ…ฅ็š„้‚€่ฏท็ ๅนถ้‡่ฏ•ใ€‚" @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "็Žฐๅœจๅชๆœ‰ไฝ ไธ€ไธช๏ผ้€š่ฟ‡ไธŠ้ข็š„ๅˆ—่กจๅฐ†ๆ›ดๅคšไบบๆทปๅŠ ๅˆฐไฝ ็š„ๆ–ฐๆ‰‹ๅŒ…้‡Œ้ขใ€‚" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ไฝœไธš ID๏ผš{0}" @@ -6816,8 +6766,8 @@ msgstr "ๅŠ ๅ…ฅๅฏน่ฏ" msgid "Journalism" msgstr "ๆ–ฐ้—ปๅญฆ" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "ไฟ็•™็ผ–่พ‘ๅ†…ๅฎน" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "KWS ๅฎ˜็ฝ‘" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "็”ฑ {0} ๆ ‡่ฎฐใ€‚" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "็”ฑๅ‘ๅธƒ่€…ๆ ‡่ฎฐใ€‚" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "ๆ ‡่ฎฐ" @@ -6850,9 +6800,9 @@ msgstr "ๅทฒๆทปๅŠ ๆ ‡่ฎฐ" #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "Labels applied to this post" -msgstr "" +msgstr "ๅบ”็”จๅˆฐๆญคๅธ–ๆ–‡็š„ๆ ‡่ฎฐ" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ๆ ‡่ฎฐๅฏ็”จไบŽ้š่—็‰นๅฎšๅ†…ๅฎนใ€ๆ˜พ็คบ่ญฆๅ‘Šๆˆ–ๅˆ†็ฑป็”จๆˆทๅ’Œๅ†…ๅฎนใ€‚" @@ -6862,9 +6812,9 @@ msgstr "ไฝ ่ดฆๆˆทไธŠ็š„ๆ ‡่ฎฐ" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:357 msgid "Language" -msgstr "" +msgstr "่ฏญ่จ€" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "่ฏญ่จ€่ฎพ็ฝฎ" @@ -6874,7 +6824,7 @@ msgstr "่ฏญ่จ€่ฎพ็ฝฎ" msgid "Languages" msgstr "่ฏญ่จ€" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "ๆ›ดๅคง" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "ๆœ€ๅŽไธ€ๆฌก่ฏทๆฑ‚ไบŽไธไน…ๅ‰" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "ๆœ€ๆ–ฐ" @@ -6904,14 +6854,14 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "ไบ†่งฃ่ฏฆๆƒ…๏ผˆ่‹ฑๆ–‡๏ผ‰" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "ไบ†่งฃ่ฏฆๆƒ…" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." -msgstr "" +msgstr "่ฟ›ไธ€ๆญฅไบ†่งฃ<0>ๅฆ‚ไฝ•ไฝฟ็”จ้ซ˜็บงๆœ็ดขใ€‚" #: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 msgid "Learn more about age assurance" @@ -6937,8 +6887,8 @@ msgstr "ไบ†่งฃๆ›ดๅคšๅฏผๅ…ฅ้€š่ฎฏๅฝ•ๅŠŸ่ƒฝ" msgid "Learn more about self hosting your PDS." msgstr "ๆทฑๅ…ฅไบ†่งฃๆœ‰ๅ…ณ่‡ช่กŒๆ‰˜็ฎก PDS ็š„ไฟกๆฏใ€‚" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "ๆทฑๅ…ฅไบ†่งฃๆœ‰ๅ…ณๅบ”็”จไบŽ่ฏฅๅ†…ๅฎน็š„ๅ†…ๅฎนๅฎกๆ ธไฟกๆฏ" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "ไฝ ๅฏไปฅ้˜…่ฏปๆˆ‘ไปฌ็š„ๅšๅฎขๆ–‡็ซ ๏ผŒไบ†่งฃๆœ‰ๅ…ณๆ”นๅŠจ็š„ๆ›ดๅคš่ต„่ฎฏ๏ผŒไปฅๅŠๅฆ‚ไฝ•ไธŽๆˆ‘ไปฌๅˆ†ไบซไฝ ็š„ๆƒณๆณ•ใ€‚" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "ๆทฑๅ…ฅไบ†่งฃๆœ‰ๅ…ณๆญค่ญฆๅ‘Š็š„ไฟกๆฏ" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "ๅœจไฝ ็š„<0>่ดฆๆˆท่ฎพ็ฝฎไบ†่งฃ่ฏฆๆƒ…" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "ไบ†่งฃ่ฏฆๆƒ…ใ€‚" @@ -6993,8 +6943,8 @@ msgstr "็ฆปๅผ€" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "็ฆปๅผ€ Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "็ฆปๅผ€ๆญคๅฏน่ฏๅฐ†่งฆๅ‘ๆฐธไน…้”ๅฎš๏ผŒไฝ ๅฐ†ๆ— ๆณ•้‡ๆ–ฐๅŠ ๅ…ฅใ€‚" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "็ฆปๅผ€็พค็ป„ๅฏน่ฏใ€‚" @@ -7042,7 +6992,7 @@ msgstr "็ฆปๅผ€็พค็ป„ๅฏน่ฏใ€‚" msgid "left to go." msgstr "ไธชไบบๆŽ’ๅœจไฝ ๅ‰้ขใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "่‡ชๅฎšไน‰" @@ -7057,7 +7007,7 @@ msgstr "่ฎฉๆˆ‘ไปฌๅผ€ๅง‹ๅง๏ผ" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "ๆต…่‰ฒ" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "ๆต…่‰ฒ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "ๅ–œๆฌข" @@ -7076,7 +7026,7 @@ msgstr "ๅ–œๆฌข" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "ๅ–œๆฌข๏ผˆ{0, plural, one {# ๆฌกๅ–œๆฌข} other {# ๆฌกๅ–œๆฌข}}๏ผ‰" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "ๅ–œๆฌข 10 ๅˆ™ๅธ–ๆ–‡" @@ -7085,7 +7035,7 @@ msgstr "ๅ–œๆฌข 10 ๅˆ™ๅธ–ๆ–‡" msgid "Like 10 posts to train the Discover feed" msgstr "ๅ–œๆฌข 10 ๅˆ™ๅธ–ๆ–‡ไปฅ่ฎญ็ปƒโ€œDiscoverโ€่ต„่ฎฏๆบ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "ๅ–œๆฌขๆญคๅŠจๆ€ๆบ" @@ -7093,8 +7043,8 @@ msgstr "ๅ–œๆฌขๆญคๅŠจๆ€ๆบ" msgid "Like this labeler" msgstr "ๅ–œๆฌขๆญคๆ ‡่ฎฐ่€…" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "ๅ–œๆฌข็š„็”จๆˆท" @@ -7111,27 +7061,45 @@ msgstr "ๅ–œๆฌข็š„็”จๆˆท" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {# ไฝ็”จๆˆท} other {# ไฝ็”จๆˆท}}ๅ–œๆฌข" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "่ขซ {0} ๅ–œๆฌข" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "่ขซ {0} ๅŠ {1} ๅ–œๆฌข" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {# ไฝ็”จๆˆท} other {# ไฝ็”จๆˆท}}ๅ–œๆฌข" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "ๅ–œๆฌข" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "ๅ–œๆฌขไฝ ่ฝฌๅ‘็š„ๅธ–ๆ–‡" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "่ฟ™ๅˆ™ๅธ–ๆ–‡็š„ๅ–œๆฌขๆ•ฐ" @@ -7144,7 +7112,7 @@ msgstr "็บฟๆ€ง่ง†ๅ›พ" msgid "Link copied to clipboard" msgstr "ๅทฒๅคๅˆถ้“พๆŽฅ่‡ณๅ‰ช่ดดๆฟ" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "ๅˆ—่กจ" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "ๅทฒๅ–ๆถˆ้š่—่ฏฅๅˆ—่กจ" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "็›ดๆ’ญ" msgid "Live event happening now: {0}" msgstr "ๆญฃๅœจ่ฟ›่กŒ็š„็›ดๆ’ญๆดปๅŠจ๏ผš{0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "ๅทฒ้š่—็›ดๆ’ญๆดปๅŠจ" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "ๅทฒๅ–ๆถˆ้š่—็›ดๆ’ญๆดปๅŠจ" @@ -7279,12 +7247,12 @@ msgstr "็›ดๆ’ญๅŠŸ่ƒฝๆญฃๅœจๆต‹่ฏ•้˜ถๆฎต" msgid "Live link" msgstr "็›ดๆ’ญ้“พๆŽฅ" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "ๅŠ ่ฝฝๆ›ดๅคš" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "ๅŠ ่ฝฝๆ›ดๅคšๅปบ่ฎฎ็š„ๅŠจๆ€ๆบ" @@ -7292,8 +7260,8 @@ msgstr "ๅŠ ่ฝฝๆ›ดๅคšๅปบ่ฎฎ็š„ๅŠจๆ€ๆบ" msgid "Load new notifications" msgstr "ๅŠ ่ฝฝๆ›ดๅคš้€š็Ÿฅ" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "้”ๅฎšๆญค็พค็ป„ๅฏน่ฏ" msgid "Locked" msgstr "ๅทฒ้”ๅฎš" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "ๆ—ฅๅฟ—" @@ -7387,7 +7355,7 @@ msgstr "็ˆฑๆƒ… GIFs" msgid "Make adjustments to email settings for your account" msgstr "่ฐƒๆ•ดไฝ ่ดฆๆˆทๅ…ณ่”็š„็”ตๅญ้‚ฎ็ฎฑ่ฎพ็ฝฎ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "ๅธฎๆˆ‘้€‰ๆ‹ฉ" @@ -7411,22 +7379,22 @@ msgstr "็ฎก็†ไฝ ็š„้š่—ๅญ—่ฏๅ’Œๆ ‡็ญพ" #: src/screens/Login/components/HostingProviderDialog.tsx:173 #: src/screens/Login/components/HostingProviderDialog.tsx:174 msgid "Manual" -msgstr "" +msgstr "ๆ‰‹ๅŠจ" #: src/screens/Messages/Inbox.tsx:312 #: src/screens/Messages/Inbox.tsx:318 msgid "Mark all as read" msgstr "ๆ ‡่ฎฐๆ‰€ๆœ‰ไธบๅทฒ่ฏป" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "ๅฐ†ๆ‰€ๆœ‰ๅฏน่ฏๆ ‡่ฎฐไธบๅทฒ่ฏป" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "ๆ ‡่ฎฐไธบๅทฒ่ฏป" msgid "Marked all as read" msgstr "ๅทฒๆ ‡่ฎฐๆ‰€ๆœ‰ไธบๅทฒ่ฏป" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "ๅทฒๅฐ†ๆ‰€ๆœ‰ๅฏน่ฏๆ ‡่ฎฐไธบๅทฒ่ฏป" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "ๅทฒๅฐ†ๆ‰€ๆœ‰็”ณ่ฏทๆ ‡่ฎฐไธบๅทฒ่ฏป" @@ -7456,8 +7424,12 @@ msgstr "ๅทฒๅฐ†ๆ‰€ๆœ‰็”ณ่ฏทๆ ‡่ฎฐไธบๅทฒ่ฏป" msgid "Maybe later" msgstr "ไน‹ๅŽๅ†่ฏด" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "ๆˆ‘" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "ๅช’ไฝ“" @@ -7475,7 +7447,7 @@ msgstr "ๅช’ไฝ“ๆ–‡ไปถๅทฒๅญ˜ๅ‚จๅˆฐๅ…ถไป–่ฎพๅค‡" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "ๅฏ่ƒฝไผšไปค้ƒจๅˆ†ๅ—ไผ—ไธๅฎ‰ๆˆ–้€ ๆˆไธ้€‚็š„ๅช’ไฝ“ๅ†…ๅฎนใ€‚" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "ๅทฒไปŽ็พค็ป„ๅฏน่ฏไธญ็งป้™คๆˆๅ‘˜ใ€‚" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "่ขซๆๅŠ็š„็”จๆˆท" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "ๆๅŠ" @@ -7502,7 +7474,7 @@ msgstr "ๆๅŠ" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:37 msgid "Mentions of these people" -msgstr "" +msgstr "ๆๅŠ่ฟ™ไบ›็”จๆˆท" #: src/components/Menu/index.tsx:119 msgid "Menu" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "ๅทฒๅˆ ้™คไฟกๆฏ" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "ไฟกๆฏๅ‘้€ๅคฑ่ดฅใ€‚" @@ -7563,15 +7535,15 @@ msgstr "ไฟกๆฏ่ฟ‡้•ฟ๏ผˆ{graphemeCount}/{MAX_DM_GRAPHEME_LENGTH}๏ผ‰" msgid "Message options" msgstr "ไฟกๆฏ้€‰้กน" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "ไฟกๆฏ" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "ๅฝ“ๆญค็”จๆˆทๅฑ่”ฝไฝ ๆ—ถ๏ผŒๅ…ถๅ‘้€็š„ไฟกๆฏๅฐ†ไผš้š่—ใ€‚" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "ๅฝ“ไฝ ๅฑ่”ฝๆญค็”จๆˆทๆ—ถ๏ผŒๅ…ถๅ‘้€็š„ไฟกๆฏๅฐ†ไผš้š่—ใ€‚" @@ -7592,7 +7564,7 @@ msgstr "่ฏฏๅฏผ" msgid "Missing media" msgstr "็ผบๅคฑๅช’ไฝ“ๆ–‡ไปถ" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "ๅ†…ๅฎนๅฎกๆ ธ" @@ -7636,7 +7608,7 @@ msgstr "ๅทฒๆ›ดๆ–ฐๅ†…ๅฎนๅฎกๆ ธๅˆ—่กจ" msgid "Moderation lists" msgstr "ๅ†…ๅฎนๅฎกๆ ธๅˆ—่กจ" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "ๅ†…ๅฎนๅฎกๆ ธๅˆ—่กจ" @@ -7645,7 +7617,7 @@ msgstr "ๅ†…ๅฎนๅฎกๆ ธๅˆ—่กจ" msgid "moderation settings" msgstr "ๅ†…ๅฎนๅฎกๆ ธ่ฎพ็ฝฎ" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "ๅ†…ๅฎนๅฎกๆ ธ็Šถๆ€" @@ -7786,7 +7758,7 @@ msgstr "ๅทฒ้š่—" msgid "Muted accounts" msgstr "ๅทฒ้š่—่ดฆๆˆท" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "ๅทฒ้š่—่ดฆๆˆท" @@ -7867,7 +7839,6 @@ msgstr "้œ€่ฆไธพๆŠฅไพตๅฎณ็‰ˆๆƒใ€ๆณ•ๅพ‹่ฆๆฑ‚ๅŠๅˆ่ง„ๆ€ง้—ฎ้ข˜ๅ—๏ผŸ" msgid "Nevermind, create a handle for me" msgstr "ไธ็”จไบ†๏ผŒ่ฏทๅธฎๆˆ‘ๅˆ›ๅปบไธ€ไธช่ดฆๆˆทไปฃ็ " -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "ๆœ€ๆ–ฐ" @@ -7893,11 +7864,11 @@ msgstr "ๆฅ่‡ช {firstAuthorName} ็š„ๆ–ฐ{postsCount, plural, one {ๅธ–ๆ–‡} other { #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "ๆ–ฐๅฏน่ฏ" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "ๆ–ฐๅŠŸ่ƒฝ" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "ๆ–ฐๅ…ณๆณจ่€…" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "ๅˆ›ๅปบ็พค็ป„ๅฏน่ฏ" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "ๅˆ›ๅปบ็พค็ป„ๅฏน่ฏ" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "ไธŽ่ฟ™ไบ›ไบบๅผ€ๅง‹็พค็ป„ๅฏน่ฏ๏ผš" @@ -7966,13 +7937,13 @@ msgstr "ๆ–ฐๅˆ—่กจ" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "ๆ–ฐไฟกๆฏ็”ณ่ฏท" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "ๆ–ฐไฟกๆฏ" @@ -7982,12 +7953,12 @@ msgstr "ๆ–ฐไฟกๆฏ" msgid "New password" msgstr "ๆ–ฐๅฏ†็ " -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "ๆ–ฐๅธ–ๆ–‡" @@ -8011,7 +7982,7 @@ msgstr "ๅˆ›ๅปบๆ–ฐๆ‰‹ๅŒ…" #: src/screens/Login/LoginForm.tsx:569 msgid "New to Bluesky? <0>Sign up" -msgstr "" +msgstr "ๅˆๆฅไนๅˆฐ Bluesky๏ผŸ<0>ๆณจๅ†Œ" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "ๆœ€ๆ–ฐๅ›žๅคไผ˜ๅ…ˆ" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "ๆ–ฐ้—ป" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "ไธ‹ไธ€ๅผ ๅ›พ็‰‡" msgid "Night" msgstr "ๅคœๆ™š" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "ๆ— ๅนฟๅ‘Š๏ผŒๆ— ไพตๅ…ฅๅผ่ฟฝ่ธช๏ผŒๆ›ดๆฒกๆœ‰ๆˆ็˜พๆ€ง่ฎพ่ฎกใ€‚Bluesky ๅ……ๅˆ†ๅฐŠ้‡ไฝ ๅฎ่ดต็š„ๆ—ถ้—ดไธŽๆณจๆ„ๅŠ›ใ€‚" @@ -8065,9 +8036,14 @@ msgstr "ๆ— ๅนฟๅ‘Š๏ผŒๆ— ไพตๅ…ฅๅผ่ฟฝ่ธช๏ผŒๆ›ดๆฒกๆœ‰ๆˆ็˜พๆ€ง่ฎพ่ฎกใ€‚Bluesky ๅ…… msgid "No app passwords yet" msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ๅบ”็”จๅฏ†็ " +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "ๆ— ไฝœ่€…็ญ›้€‰" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "็›ฎๅ‰ๆฒกๆœ‰ๆต‹่ฏ•ๅŠŸ่ƒฝใ€‚" #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8074,7 @@ msgstr "ๆœช่ฎพ็ฝฎๅˆฐๆœŸๆ—ถ้—ด" msgid "No feeds found. Try searching for something else." msgstr "ๆ‰พไธๅˆฐๅŠจๆ€ๆบ๏ผŒๅฐ่ฏ•ๆœ็ดข็‚นๅˆซ็š„ใ€‚" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ๅ…ณๆณจ่€…" @@ -8116,9 +8092,15 @@ msgstr "ๆš‚ๆ— ๅฏไปฅๆ˜พ็คบ็š„ GIF๏ผŒ่ฏท็จๅŽๅ†่ฏ•ใ€‚" msgid "No image" msgstr "ๆฒกๆœ‰ๅ›พ็‰‡" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "ๆ— ่ฏญ่จ€็ญ›้€‰" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ๅ–œๆฌข" @@ -8135,7 +8117,12 @@ msgstr "ๆฒกๆœ‰ๅˆ—่กจ" msgid "No longer following {0}" msgstr "ๅทฒไธๅ†ๅ…ณๆณจ {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "ๆ— ๅช’ไฝ“็ญ›้€‰" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ๅช’ไฝ“ๅ†…ๅฎน" @@ -8143,7 +8130,7 @@ msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ๅช’ไฝ“ๅ†…ๅฎน" msgid "No messages yet" msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ไฟกๆฏ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "ๅ‘Šๅˆซ้‚ฃไบ›ๅ……ๆ–ฅ็€ๅžƒๅœพไฟกๆฏ็š„็ฎ—ๆณ•๏ผŒๆ‰พๅˆฐๅฏนไฝ ๆœ‰ๅˆฉ่€Œ้žๆœ‰ๅฎณ็š„ๅŠจๆ€ๆบใ€‚" @@ -8180,16 +8167,21 @@ msgstr "ไป…้™ๅ‘ๅธƒ่€…ๅฏไปฅๅผ•็”จ่ฟ™ๅˆ™ๅธ–ๆ–‡ใ€‚" msgid "No one can send messages" msgstr "ๆฒกๆœ‰ไบบๅฏไปฅๅ‘้€ไฟกๆฏ" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "ๆ— ๅธ–ๆ–‡็ญ›้€‰" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "็›ฎๅ‰่ฟ™้‡Œ่ฟ˜ๆฒกๆœ‰ๅธ–ๆ–‡" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ๅธ–ๆ–‡" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ๅผ•็”จ" @@ -8198,11 +8190,7 @@ msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ๅผ•็”จ" msgid "No recent GIFs yet. Pick one to see it here." msgstr "ๆš‚ๆ— ๆœ€่ฟ‘ไฝฟ็”จ็š„ GIF๏ผŒๅฐ่ฏ•ไฝฟ็”จไธ€ไบ› GIF ๅงใ€‚" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ๅ›žๅค" @@ -8217,13 +8205,13 @@ msgstr "ๆฒกๆœ‰็ป“ๆžœ" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "ๆฒกๆœ‰็ป“ๆžœ" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "ๆ‰พไธๅˆฐ็ฌฆๅˆโ€œ{0}โ€็š„็ป“ๆžœใ€‚" @@ -8236,23 +8224,23 @@ msgstr "ๆ‰พไธๅˆฐ็ป“ๆžœ" msgid "No results found for \"{query}\"" msgstr "ๆ‰พไธๅˆฐ็ฌฆๅˆโ€œ{query}โ€็š„็ป“ๆžœ" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." -msgstr "" +msgstr "ๅบ”็”จ้ซ˜็บงๆœ็ดข็ญ›้€‰ๅ™จๅŽ๏ผŒๆœชๆ‰พๅˆฐๅŒน้…โ€œ<0>{query}โ€็š„็ป“ๆžœใ€‚" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "ๆ‰พไธๅˆฐ็ฌฆๅˆ โ€œ<0>{query}โ€ ็š„็ป“ๆžœใ€‚" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." -msgstr "" +msgstr "ๅบ”็”จ้ซ˜็บงๆœ็ดข็ญ›้€‰ๅŽ๏ผŒๆœชๆ‰พๅˆฐๅŒน้…็š„็ป“ๆžœใ€‚" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "ๆฒกๆœ‰็ป“ๆžœใ€‚" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ๆ–ฐๆ‰‹ๅŒ…" @@ -8265,7 +8253,7 @@ msgstr "ไธ๏ผŒ่ฐข่ฐข" msgid "No translation received from your device." msgstr "ๆ— ๆณ•ไปŽไฝ ็š„่ฎพๅค‡่Žทๅ–ๅˆฐ็ฟป่ฏ‘็ป“ๆžœใ€‚" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰่ง†้ข‘ๅธ–ๆ–‡" @@ -8278,7 +8266,7 @@ msgstr "ๆฒกๆœ‰ไบบ" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ไบบๅ–œๆฌข่ฟ™ๅˆ™ๅธ–ๆ–‡๏ผŒๆˆ–่ฎธไฝ ๅฏไปฅๆฅๅฝ“็ฌฌไธ€ไธชๅ“ฆ๏ผ" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "็›ฎๅ‰่ฟ˜ๆฒกๆœ‰ไบบๅผ•็”จ่ฟ™ๅˆ™ๅธ–ๆ–‡๏ผŒๆˆ–่ฎธไฝ ๅฏไปฅๆฅๅฝ“็ฌฌไธ€ไธชๅ“ฆ๏ผ" @@ -8298,10 +8286,14 @@ msgstr "้ž่‡ชๆ„ฟ็š„ไบฒๅฏ†่ง†้ข‘" msgid "Non-sexual Nudity" msgstr "้ž่‰ฒๆƒ…่ฃธ้œฒ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "ๆ— " + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" -msgstr "" +msgstr "ไธๅŒ…ๅซ่ฟ™ไบ›ๅญ—่ฏ" #: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 msgid "Not available on this platform" @@ -8316,8 +8308,8 @@ msgstr "ๆญคๅŠŸ่ƒฝๆ— ๆณ•ๅœจ่ฟ™ไธชๅนณๅฐไธŠไฝฟ็”จใ€‚" msgid "Not followed by anyone youโ€™re following" msgstr "ๆฒกๆœ‰่ขซไปปไฝ•ไฝ ่ฎค่ฏ†็š„ไบบๅ…ณๆณจ" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "ๆ‰พไธๅˆฐ" @@ -8333,7 +8325,7 @@ msgstr "ๅˆ†ไบซๆณจๆ„ไบ‹้กน" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "ๆณจๆ„๏ผšBluesky ๆ˜ฏไธ€ไธชๅผ€ๆ”พ็š„็คพไบค็ฝ‘็ปœใ€‚ๆญค่ฎพ็ฝฎไป…้™ๅˆถไฝ ็š„ๅ†…ๅฎนๅœจ Bluesky ๅบ”็”จๅŠ็ฝ‘้กตไธŠ็š„ๅฏ่งๆ€ง๏ผŒไฝ†็ฌฌไธ‰ๆ–นๅบ”็”จๆœชๅฟ…ไผš้ตไปŽๆญค่ฎพ็ฝฎ๏ผŒไปๅฏ่ƒฝไผšๅ‘ๆœช็™ปๅฝ•็š„็”จๆˆทๆ˜พ็คบไฝ ๅ‘ๅธƒ็š„ๅ†…ๅฎนใ€‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "ๆณจ๏ผš่ฟ™ๅˆ™ๅธ–ๆ–‡ไป…ๅฏนๅทฒ็™ปๅฝ•็”จๆˆทๅฏ่งใ€‚" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "็›ฎๅ‰ๆฒกๆœ‰ๆ”ถ่—ๅ†…ๅฎน" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "้€š็Ÿฅ่ฎพ็ฝฎ" @@ -8353,11 +8345,12 @@ msgstr "้€š็Ÿฅ่ฎพ็ฝฎ" msgid "Notification sounds" msgstr "้€š็Ÿฅๆ็คบ้Ÿณ" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "็ณŸ็ณ•๏ผ" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "ๅฅฝ็š„" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "ๅฅฝ็š„" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "้‡ๆ–ฐๅผ€ๅง‹ๅ…ฅ้—จๅผ•ๅฏผ" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "้€‰ๆ‹ฉ็š„ๆ”ถไฟกไบบไธญๆœ‰ไบบไธๅ…่ฎธ็พค็ป„ๅฏน่ฏใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "้€‰ๆ‹ฉ็š„ๆ”ถไฟกไบบไธญๆœ‰ไบบๅฑ่”ฝไบ†ไฝ ๏ผŒๆ— ๆณ•ๅ‘้€ไฟกๆฏใ€‚" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "่‡ณๅฐ‘ๆœ‰ไธ€ๅผ  GIF ็ผบๅคฑไบ†ๆ›ฟไปฃๆ–‡ๆœฌใ€‚" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "่‡ณๅฐ‘ๆœ‰ไธ€ๅผ ๅ›พ็‰‡็ผบๅคฑไบ†ๆ›ฟไปฃๆ–‡ๆœฌใ€‚" @@ -8454,11 +8449,11 @@ msgstr "ไฝ ๆ‰€้€‰ไธญ็š„้ƒจๅˆ†ๆ–‡ไปถๆ ผๅผไธ่ขซๆ”ฏๆŒใ€‚" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "ไฝ ้€‰ไธญ็š„้ƒจๅˆ†ๆ–‡ไปถๅคชๅคง๏ผŒๆœ€ๅคง็š„ๆ–‡ไปถๅคงๅฐไธบ {VIDEO_MAX_SIZE_MB}ย MBใ€‚" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "ไธ€ๅˆ™ๆˆ–ๅคšๅˆ™ๅธ–ๆ–‡ๅ†…ๅฎน่ฟ‡้•ฟ๏ผŒๆ— ๆณ•ไฟๅญ˜ไธบ่‰็จฟ{MAX_DRAFT_GRAPHEME_LENGTH, plural,one {ๆœ€ๅคงๅญ—ๆ•ฐ้™ๅˆถไธบ # ไธชๅญ—็ฌฆใ€‚}other {ๆœ€ๅคงๅญ—ๆ•ฐ้™ๅˆถไธบ # ไธชๅญ—็ฌฆใ€‚}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "่‡ณๅฐ‘ๆœ‰ไธ€ๆฎต่ง†้ข‘็ผบๅคฑไบ†ๆ›ฟไปฃๆ–‡ๆœฌใ€‚" @@ -8471,7 +8466,7 @@ msgstr "ไป…้™{0}ๅฏไปฅๅ›žๅคใ€‚" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "ไฝ ๅ…ฑไธŠไผ ไบ† {1} ๅผ ๅ›พ็‰‡๏ผŒๆˆ‘ไปฌไป…ไผšไฟ็•™ๅ‰ {0} {2, plural,one {ๅผ } other {ๅผ }}๏ผ›ไธŠ้™ไธบ {MAX_GALLERY_IMAGES}" @@ -8507,19 +8502,23 @@ msgstr "ๅชๆœ‰ {0} ๅ…ณๆณจ็š„ไบบๅฏไปฅๅŠ ๅ…ฅใ€‚" msgid "Only people the chat owner follows can join" msgstr "ๅชๆœ‰็พค็ป„ๆ‰€ๆœ‰่€…ๅ…ณๆณจ็š„ไบบๅฏไปฅๅŠ ๅ…ฅ" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "ไป…ๅธ–ๆ–‡" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" -msgstr "" +msgstr "ไป…ๅŒ…ๅซๅธฆๆœ‰ๅช’ไฝ“็š„ๅธ–ๆ–‡" #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:24 msgid "Only posts with videos" -msgstr "" +msgstr "ไป…ๅŒ…ๅซๅธฆๆœ‰่ง†้ข‘็š„ๅธ–ๆ–‡" #: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:24 msgid "Only replies" -msgstr "" +msgstr "ไป…ๅŒ…ๅซๅ›žๅค" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "ไป…ๆ”ฏๆŒ WebVTT๏ผˆ.vtt๏ผ‰ๆ ผๅผ" @@ -8532,19 +8531,19 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "ๅ“Žๅ‘€๏ผŒๆญค่ต„ๆ–™ไธๅญ˜ๅœจ๏ผŒ่ฏทๅฐ่ฏ•ๆ‰ซๆๅฆไธ€ไธชใ€‚" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "็ณŸ็ณ•๏ผ" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:66 msgid "Open advanced search options" -msgstr "" +msgstr "ๅผ€ๅฏ้ซ˜็บงๆœ็ดข้€‰้กน" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "ๅผ€ๅฏๅคดๅƒๅˆ›ๅปบๅทฅๅ…ท" @@ -8570,21 +8569,22 @@ msgstr "ๅผ€ๅฏๅฏน่ฏ้€‰้กน" msgid "Open draft" msgstr "ๅผ€ๅฏ่‰็จฟ" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "ๅผ€ๅฏๆŠฝๅฑ‰่œๅ•" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "ๅผ€ๅฏ่กจๆƒ…็ฌฆๅท้€‰ๆ‹ฉๅ™จ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "ๅผ€ๅฏๅŠจๆ€ๆบ่ฏฆๆƒ…้กต้ข" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "ๅผ€ๅฏๅŠจๆ€ๆบ้€‰้กน่œๅ•" @@ -8627,7 +8627,7 @@ msgstr "ๅผ€ๅฏๅ†…ๅฎนๅฎกๆ ธ่ฐƒ่ฏ•้กต้ข" msgid "Open muted words and tags settings" msgstr "ๅผ€ๅฏ้š่—ๅญ—่ฏๅ’Œๆ ‡็ญพ่ฎพ็ฝฎ" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "ๅผ€ๅฏๆ–ฐๆ‰‹ๅŒ…" @@ -8681,7 +8681,7 @@ msgstr "ๅผ€ๅฏๅฏน่ฏๆก†ไปฅๅ‘ไฝ ็š„ๅธ–ๆ–‡ๅ†…ๅฎนๆทปๅŠ ่ญฆๅ‘Š" #: src/screens/Login/LoginForm.tsx:645 msgid "Opens a dialog to change the hosting provider you sign in to" -msgstr "" +msgstr "ๆ‰“ๅผ€ๅฏน่ฏๆก†ไปฅๆ›ดๆ”นไฝ ็™ปๅฝ•็š„ๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 msgid "Opens a dialog to choose who can interact with this post" @@ -8699,7 +8699,7 @@ msgstr "ๅผ€ๅฏ่ฐƒ่ฏ•่ฎฐๅฝ•็š„้ขๅค–่ฏฆ็ป†ไฟกๆฏ" msgid "Opens alt text dialog" msgstr "ๆ‰“ๅผ€ๆ›ฟไปฃๆ–‡ๆœฌๅฏน่ฏๆก†" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "ๅผ€ๅฏ่ฎพๅค‡็›ธๆœบ" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "ๅผ€ๅฏๅˆ›ๅปบๆ–ฐ Bluesky ่ดฆๆˆทๆต็จ‹" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "ๅผ€ๅฏ็™ปๅฝ•ๅˆฐไฝ ็Žฐๆœ‰็š„ Bluesky ่ดฆๆˆทๆต็จ‹" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "ๅทฒๆ›ดๆ–ฐๅฏ†็ ๏ผ" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "ๆš‚ๅœ" @@ -8925,12 +8925,12 @@ msgstr "ๆš‚ๅœ" msgid "Pause GIF" msgstr "ๆš‚ๅœ GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "ๆš‚ๅœ่ง†้ข‘" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "็”จๆˆท" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "{ownerName} ็š„ๅ…ณๆณจ่€…ๅฏไปฅ็”ณ่ฏทๅŠ ๅ…ฅ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "่ขซ @{0} ๅ…ณๆณจ็š„็”จๆˆท" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "ๅ…ณๆณจ @{0} ็š„็”จๆˆท" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "ๆˆ‘ๅ…ณๆณจ็š„ไบบ" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "ๆˆ‘ๅ…ณๆณจ็š„ไบบๅฏไปฅ็”ณ่ฏทๅŠ ๅ…ฅ" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "ไฝ ๅ…ณๆณจ็š„ไบบ" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "ไธ้€‚ๅˆๆœชๆˆๅนดไบบ็š„ๅ›พ็‰‡ใ€‚" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "ๅ›บๅฎšๅŠจๆ€ๆบ" @@ -9034,7 +9034,7 @@ msgstr "ๅ›บๅฎšๅŠจๆ€ๆบ" msgid "Pin to home" msgstr "ๅ›บๅฎšๅˆฐไธป้กต" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "ๅ›บๅฎšๅˆฐไธป้กต" @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "ๅทฒๅ›บๅฎš" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "ๅ›บๅฎš {0} ๅˆฐไธป้กต" @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "ๅทฒๅ›บๅฎšๅˆฐไฝ ็š„ๅŠจๆ€ๆบไธญ" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "ๆ’ญๆ”พ" @@ -9076,8 +9076,8 @@ msgstr "ๆ’ญๆ”พ {0}" msgid "Play GIF" msgstr "ๆ’ญๆ”พ GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "ๆ’ญๆ”พ่ง†้ข‘" @@ -9103,17 +9103,17 @@ msgstr "ๆ’ญๆ”พ่ง†้ข‘" #: src/view/com/composer/labels/LabelsBtn.tsx:111 msgid "Please add any content warning labels that are applicable for the media you are posting." -msgstr "่ฏทไธบไฝ ๆ‰€ๅ‘ๅธƒ็š„ๅช’ไฝ“ๅ†…ๅฎนๆทปๅŠ ้€‚ๅฝ“็š„ๅ†…ๅฎน่ญฆๅ‘Šๆ ‡็ญพใ€‚" +msgstr "่ฏทไธบไฝ ๆ‰€ๅ‘ๅธƒ็š„ๅช’ไฝ“ๅ†…ๅฎนๆทปๅŠ ้€‚ๅฝ“็š„ๅ†…ๅฎน่ญฆๅ‘Šๆ ‡่ฎฐใ€‚" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:189 msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "่ฏท่ฝฌๅˆฐไฝ ็š„็”ตๅญ้‚ฎ็ฎฑๅœฐๅ€ไปฅ็ปง็ปญๅฎŒๆˆ้ชŒ่ฏๆต็จ‹๏ผŒ็›ธๅ…ณ้‚ฎไปถๅบ”่ฏฅไผšๅœจไธคๅˆ†้’Ÿๅ†…ๅ‘้€ๅˆฐไฝ ็š„็”ตๅญ้‚ฎ็ฎฑใ€‚" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "่ฏท่ฎพ็ฝฎไฝ ็š„่ดฆๆˆทไปฃ็ ใ€‚" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "่ฏท่ฎพ็ฝฎไฝ ็š„ๅฏ†็ ใ€‚" @@ -9122,7 +9122,7 @@ 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 "่ฏท็‚นๅ‡ปๆˆ‘ไปฌๅ‘้€็ป™ไฝ ็”ตๅญ้‚ฎไปถไธญ็š„้“พๆŽฅๆฅ้ชŒ่ฏไฝ ็š„ๆ–ฐ็”ตๅญ้‚ฎ็ฎฑๅœฐๅ€ใ€‚ไฝ ้œ€่ฆๅ…ˆๅฎŒๆˆๆญคๆญฅ้ชคๆ‰่ƒฝ็ปง็ปญไฝฟ็”จ Bluesky ็š„ๆ‰€ๆœ‰ๅŠŸ่ƒฝใ€‚" -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "่ฏทๅฎŒๆˆ CAPTCHA๏ผˆไบบๆœบ้ชŒ่ฏ๏ผ‰ใ€‚" @@ -9179,7 +9179,7 @@ msgstr "่ฏท่พ“ๅ…ฅไฝ ๆ”ถๅˆฐ็š„้ชŒ่ฏ็ ไปฅๅŠไฝ ๆƒณไฝฟ็”จ็š„ๆ–ฐๅฏ†็ ใ€‚" msgid "Please enter the security code we sent to your previous email address." msgstr "่ฏท่พ“ๅ…ฅๆˆ‘ไปฌไน‹ๅ‰ๅ‘้€ๅˆฐไฝ ็”ตๅญ้‚ฎ็ฎฑๅœฐๅ€็š„้ชŒ่ฏ็ ใ€‚" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "่ฏท่พ“ๅ…ฅไฝ ็š„็”ตๅญ้‚ฎ็ฎฑๅœฐๅ€ใ€‚" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "่ฏทๅœจไปฅไธ‹ๆ ไฝๅกซๅ†™ไฝ ็š„ไฟกๆฏ๏ผš" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "ๆ”ฟๆฒป" @@ -9269,7 +9269,7 @@ msgstr "ๆ”ฟๆฒป" msgid "Porn" msgstr "่‰ฒๆƒ…" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "ๅ‘ๅธƒ" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "ๅธ–ๆ–‡" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "ๅ‘ๅธƒไธ€ๅผ ๅ›พ็‰‡" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "ๅ‘ๅธƒไธ€ๆฎต่ง†้ข‘" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "ๅ…จ้ƒจๅ‘ๅธƒ" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "ไป็„ถๅ‘ๅธƒ" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "ๅธ–ๆ–‡ๅทฒ่ขซๅฑ่”ฝ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} ็š„ๅธ–ๆ–‡" @@ -9340,7 +9340,7 @@ msgstr "ไฝ ๅทฒ้š่—่ฟ™ๅˆ™ๅธ–ๆ–‡" msgid "Post interaction settings" msgstr "ๅธ–ๆ–‡ไบ’ๅŠจ้€‰้กน" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "ๅธ–ๆ–‡ไบ’ๅŠจ้€‰้กน" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "ๅทฒๅ›บๅฎšๅธ–ๆ–‡" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "ๅทฒๆ”ถ่—ๅธ–ๆ–‡" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "ๅธ–ๆ–‡็ฑปๅž‹" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "ๅทฒๅ–ๆถˆๅ›บๅฎšๅธ–ๆ–‡" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "ๅธ–ๆ–‡" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "ๅฏไปฅๆ นๆฎๆ–‡ๆœฌใ€ๆ ‡็ญพๆˆ–็ป“ๅˆไธค่€…ๆฅ้š่—ๅธ–ๆ–‡ใ€‚ๆˆ‘ไปฌๅปบ่ฎฎไฝ ๅฐฝ้‡้ฟๅ…ๆทปๅŠ ๅธธ็”จๅญ—่ฏ๏ผŒๅ› ไธบ่ฟ™ๅฏ่ƒฝไผšๅฏผ่‡ดไฝ ็š„ไธป้กตไธๆ˜พ็คบไปปไฝ•ๅธ–ๆ–‡ใ€‚" @@ -9398,6 +9396,10 @@ msgstr "ๅฏไปฅๆ นๆฎๆ–‡ๆœฌใ€ๆ ‡็ญพๆˆ–็ป“ๅˆไธค่€…ๆฅ้š่—ๅธ–ๆ–‡ใ€‚ๆˆ‘ไปฌๅปบ่ฎฎ msgid "Posts hidden" msgstr "ๅทฒ้š่—ๅธ–ๆ–‡" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "ๅธ–ๆ–‡ใ€ๅ›žๅค" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "ๆฝœๅœจ่ฏฏๅฏผๆ€ง้“พๆŽฅ" @@ -9449,20 +9451,21 @@ msgstr "้š็ง" msgid "Privacy and security" msgstr "้š็งไธŽๅฎ‰ๅ…จ" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "้š็งไธŽๅฎ‰ๅ…จ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "้š็งไธŽๅฎ‰ๅ…จ่ฎพ็ฝฎ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "้š็งๆ”ฟ็ญ–" msgid "Privacy violation of a minor" msgstr "ไพต็Šฏๆœชๆˆๅนด้š็ง" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "ๆญฃๅœจๅค„็† GIFโ€ฆโ€ฆ" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "ๆญฃๅœจๅค„็†่ง†้ข‘โ€ฆโ€ฆ" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "ๅ…ฌๅผ€ไธ”ๅฏๅฏนๅค–ๅˆ†ไบซ็š„ๅˆ—่กจ๏ผŒๅฏ็”จๆฅๆ‰น้‡้š่—ๆˆ–ๅฑ่”ฝ่ดฆๆˆทใ€‚" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "ๅ‘ๅธƒๅธ–ๆ–‡" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "ๅ‘ๅธƒๅธ–ๆ–‡" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "ๅ‘ๅธƒๅ›žๅค" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "ๅ‘ๅธƒๅ›žๅค" @@ -9599,12 +9602,12 @@ msgstr "ๅทฒๅœ็”จๅธ–ๆ–‡ๅผ•็”จ" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "ๅผ•็”จ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "ๅผ•็”จ่ฟ™ๅˆ™ๅธ–ๆ–‡" @@ -9647,21 +9650,21 @@ msgstr "้‡ๆ–ฐๅฏ็”จไฝ ็š„่ดฆๆˆท" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "็ปง็ปญ้˜…่ฏป {0, plural, one {# ๅˆ™ๅ›žๅค} other {# ๅˆ™ๅ›žๅค}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" -msgstr "" +msgstr "้˜…่ฏปๅฆ‚ไฝ•ไฝฟ็”จ้ซ˜็บงๆœ็ดข็ญ›้€‰ๅ™จ" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "้˜…่ฏปๅšๅฎขๆ–‡็ซ " -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "ๆŸฅ็œ‹ๆ›ดๅฐ‘" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "ๆŸฅ็œ‹ๆ›ดๅคš" @@ -9687,11 +9690,11 @@ msgstr "ๆต่งˆ Bluesky ้š็ง่ฎพ็ฝฎ" msgid "Read the Bluesky Terms of Service" msgstr "ๆต่งˆ Bluesky ๆœๅŠกๆกๆฌพ" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "็œŸๅฎž็š„ๅฏน่ฏใ€‚" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "็œŸๅฎž็š„็”จๆˆทใ€‚" @@ -9721,10 +9724,6 @@ msgstr "ๆœ€่ฟ‘็š„ๆœ็ดข่ฎฐๅฝ•" msgid "Recently used" msgstr "ๆœ€่ฟ‘ไฝฟ็”จ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "ๆŽจ่" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "้‡ๆ–ฐ่ฟžๆŽฅ" @@ -9748,7 +9747,7 @@ msgstr "ๆ‹’็ปๅฏน่ฏ้‚€่ฏท" msgid "Reject join request" msgstr "ๆ‹’็ปๅŠ ๅ…ฅ็”ณ่ฏท" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "้‡ๆ–ฐๅŠ ่ฝฝๅฏน่ฏ" @@ -9766,7 +9765,7 @@ msgstr "้‡ๆ–ฐๅŠ ่ฝฝๅฏน่ฏ" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "็งป้™ค" @@ -9790,10 +9789,10 @@ msgstr "็งป้™ค {displayName}๏ผŸ" #: src/screens/Search/components/SearchHistory.tsx:182 msgid "Remove {q}" -msgstr "" +msgstr "็งป้™ค {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "็งป้™ค่ดฆๆˆท" @@ -9839,21 +9838,21 @@ msgstr "่ฆๅˆ ้™คๅŠจๆ€ๆบๅ—๏ผŸ" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:143 msgid "Remove filter" -msgstr "" +msgstr "็งป้™ค็ญ›้€‰ๅ™จ" #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "ไปŽๅฏน่ฏไธญ็งป้™ค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "ไปŽๆˆ‘็š„ๅŠจๆ€ๆบไธญๅˆ ้™ค" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "่ฆไปŽๅฟซ้€Ÿ่ฎฟ้—ฎไธญ็งป้™คๅ—๏ผŸ" @@ -9862,7 +9861,7 @@ msgstr "่ฆไปŽๅฟซ้€Ÿ่ฎฟ้—ฎไธญ็งป้™คๅ—๏ผŸ" msgid "Remove from saved feeds" msgstr "ไปŽๅทฒไฟๅญ˜็š„ๅŠจๆ€ๆบไธญๅˆ ้™ค" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "ไปŽๅธ–ๆ–‡ๆ”ถ่—้‡Œๅˆ ้™ค" @@ -9880,8 +9879,8 @@ msgstr "ๅˆ ้™คๅ›พ็‰‡" msgid "Remove live status" msgstr "็งป้™ค็›ดๆ’ญ็Šถๆ€" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "็งป้™คๆˆๅ‘˜" @@ -9943,7 +9942,7 @@ msgstr "ๅทฒไปŽๅˆ—่กจไธญๅˆ ้™ค" msgid "Removed from saved feeds" msgstr "ๅทฒไปŽๅทฒไฟๅญ˜็š„ๅŠจๆ€ๆบไธญๅˆ ้™ค" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "ๅทฒไปŽๅธ–ๆ–‡ๆ”ถ่—้‡Œๅˆ ้™ค" @@ -9952,7 +9951,7 @@ msgstr "ๅทฒไปŽๅธ–ๆ–‡ๆ”ถ่—้‡Œๅˆ ้™ค" msgid "Removed from starter pack" msgstr "ๅทฒไปŽไฝ ็š„ๆ–ฐๆ‰‹ๅŒ…ไธญๅˆ ้™ค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "ๅฏนไฝ ่ฟ›่กŒๅ›žๅค" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "ๆฅ่‡ช {senderName} ็š„ๅ›žๅคไฟกๆฏ๏ผŒ็‚นๅ‡ปไปฅๆปšๅŠจๅˆฐ่ฏฅไฟกๆฏๅฏนๅบ”็š„ไฝ็ฝฎ" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" -msgstr "" +msgstr "่ขซๅ›žๅค็š„ไฟกๆฏๆ˜ฏๅœจไฝ ๅŠ ๅ…ฅไน‹ๅ‰ๅ‘้€็š„" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "ๅ›žๅคไฟกๆฏ๏ผŒ็‚นๅ‡ปไปฅๆปšๅŠจๅˆฐ่ฏฅไฟกๆฏๅฏนๅบ”็š„ไฝ็ฝฎ" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "ๅ›žๅค" @@ -10037,7 +10037,7 @@ msgstr "่ฟ™ๅˆ™ๅธ–ๆ–‡็š„ๅ›žๅคๅทฒ่ขซๅœ็”จใ€‚" msgid "Reply" msgstr "ๅ›žๅค" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "ๅ›žๅค" @@ -10098,8 +10098,8 @@ msgstr "ไธพๆŠฅๅฏน่ฏ" msgid "Report dialog" msgstr "ไธพๆŠฅ้กต้ข" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "ไธพๆŠฅๅŠจๆ€ๆบ" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "ไฝ ๅทฒ่ฝฌๅ‘" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "่ฝฌๅ‘" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "่ฝฌๅ‘่ฟ™ๅˆ™ๅธ–ๆ–‡" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "่ฝฌๅ‘ไฝ ่ฝฌๅ‘็š„ๅธ–ๆ–‡" @@ -10253,7 +10253,7 @@ msgstr "ๅทฒๅ‘้€็”ณ่ฏท" msgid "Requests" msgstr "้‚€่ฏท" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10333,7 +10333,7 @@ msgstr "้‡็ฝฎๅฏ†็ " #: src/screens/Login/LoginForm.tsx:422 msgid "Reset your password by sending a code to your email" -msgstr "" +msgstr "้€š่ฟ‡ๅ‘ไฝ ็š„้‚ฎ็ฎฑๅ‘้€้ชŒ่ฏ็ ๆฅ้‡็ฝฎๅฏ†็ " #: src/screens/Settings/FindContactsSettings.tsx:544 #: src/screens/Settings/FindContactsSettings.tsx:560 @@ -10358,10 +10358,10 @@ msgstr "้‡่ฏ•ไธŠๆฌกๅ‡บ้”™็š„ๆ“ไฝœ" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "่ฟ”ๅ›žไธป้กต" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "่ฟ”ๅ›žไธŠไธ€้กต" @@ -10406,7 +10406,7 @@ msgstr "่ฟ”ๅ›žไธŠไธ€ๆญฅ" #: src/screens/Login/LoginForm.tsx:613 msgid "Reveal password" -msgstr "" +msgstr "ๆ˜พ็คบๅฏ†็ " #. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. #: src/features/gifPicker/components/GifCategoryPills.tsx:75 @@ -10446,27 +10446,27 @@ msgstr "ไฟๅญ˜ๅ‡บ็”Ÿๆ—ฅๆœŸ" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "ไฟๅญ˜ๆ›ดๆ”น" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "ไฟๅญ˜ๆ›ดๆ”น๏ผŸ" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "ไฟๅญ˜่‰็จฟ" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "ไฟๅญ˜่‰็จฟ๏ผŸ" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "ไฟๅญ˜ไบŒ็ปด็ " msgid "Save these options for next time" msgstr "ไฟๅญ˜่ฟ™ไบ›้€‰้กนไปฅไพ›ไธ‹ๆฌกไฝฟ็”จ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "ไฟๅญ˜ๅˆฐๆˆ‘็š„ๅŠจๆ€ๆบ" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "ๅทฒไฟๅญ˜ๅŠจๆ€ๆบ" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "ๅธ–ๆ–‡ๆ”ถ่—" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "ๅทฒไฟๅญ˜ๅˆฐไฝ ็š„ๅŠจๆ€ๆบ" @@ -10520,8 +10520,8 @@ msgstr "ๅทฒไฟๅญ˜ๅˆฐไฝ ็š„ๅŠจๆ€ๆบ" msgid "Say hello!" msgstr "้—ฎๅฃฐๅฅฝ๏ผ" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "ๅ‘ๆŸไบบ้—ฎๅฃฐๅฅฝ" @@ -10535,7 +10535,7 @@ msgstr "ๆ‰ซๆ" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "ๆ‰ซๆไบŒ็ปด็ " @@ -10543,15 +10543,15 @@ msgstr "ๆ‰ซๆไบŒ็ปด็ " msgid "Science" msgstr "็ง‘ๅญฆ" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "ๅ‘ๅทฆๆ—‹่ฝฌ" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "ๅ‘ๅณๆ—‹่ฝฌ" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "ๆปšๅŠจๅˆฐๆญคๅ›žๅคๅฏนๅบ”็š„ไฝ็ฝฎ" @@ -10564,8 +10564,8 @@ msgstr "ๆปšๅŠจๅˆฐ้กถ้ƒจ" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "ๆœ็ดข" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "ๆœ็ดข @{0} ็š„ๅธ–ๆ–‡" @@ -10602,21 +10602,21 @@ msgstr "ๆœ็ดขโ€œ{interestsDisplayName}โ€œ๏ผˆๅทฒ้€‰ไธญ๏ผ‰" #: src/screens/Search/components/AutocompleteResults.tsx:49 msgid "Search for โ€œ{searchText}โ€" -msgstr "" +msgstr "ๆœ็ดขโ€œ{searchText}โ€" #: src/screens/Search/components/SearchHistory.tsx:136 msgid "Search for {q}" -msgstr "" +msgstr "ๆœ็ดข {q}" #: src/screens/StarterPack/Wizard/index.tsx:541 msgid "Search for feeds that you want to suggest to others." msgstr "้€š่ฟ‡ๆœ็ดขๆฅๆทปๅŠ ไฝ ๆƒณๅˆ†ไบซ็š„ๅŠจๆ€ๆบใ€‚" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "ๆœ็ดขๆ›ดๅคš่ดฆๆˆท" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "ๆœ็ดขๆ›ดๅคšๅŠจๆ€ๆบ" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "ๆœ็ดข GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "ๆœช็™ปๅฝ•็Šถๆ€ๆ— ๆณ•ไฝฟ็”จๆœ็ดขๅŠŸ่ƒฝ" @@ -10661,7 +10661,7 @@ msgstr "ๆœ็ดขไธชไบบ่ต„ๆ–™" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:248 msgid "Search query" -msgstr "" +msgstr "ๆœ็ดขๅ…ณ้”ฎๅญ—" #: src/screens/Profile/ProfileSearch.tsx:38 msgid "Search..." @@ -10707,17 +10707,22 @@ msgstr "ๆŸฅ็œ‹่ฏฅ็”จๆˆทๅŒ…ๅซ #{tag} ็š„ๅธ–ๆ–‡" msgid "See jobs at Bluesky" msgstr "ๆŸฅ็œ‹ Bluesky ็š„ๅทฅไฝœ่Œ็ผบ" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "ๆต่งˆๆ›ดๅคš" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "ๆŸฅ็œ‹ๆ›ดๅคšๅปบ่ฎฎ็š„ไธชไบบ่ต„ๆ–™" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "ๆŸฅ็œ‹ๆ›ดๅคš็ƒญ้—จ่ฏ้ข˜" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "ๆŸฅ็œ‹ๅปบ่ฎฎ่ดฆๆˆท" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "ๆ’ญๆ”พ่ฟ›ๅบฆๆกใ€‚ไฝฟ็”จๆ–นๅ‘้”ฎๆฅๅ‰่ฟ›ๆˆ–ๅŽ้€€๏ผŒๆŒ‰็ฉบๆ ผ้”ฎๆŽงๅˆถๆ’ญๆ”พๆˆ–ๆš‚ๅœใ€‚" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "้€‰ๆ‹ฉโ€œ{interestsDisplayName}โ€œ็ฑปๅˆซ" @@ -10748,7 +10753,7 @@ msgstr "้€‰ๆ‹ฉ {0}" msgid "Select {langName}" msgstr "้€‰ๆ‹ฉ {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "้€‰ๆ‹ฉไธ€ไธช้ขœ่‰ฒ" @@ -10764,11 +10769,11 @@ msgstr "้€‰ๆ‹ฉ่ดฆๆˆท" msgid "Select an app language" msgstr "้€‰ๆ‹ฉๅบ”็”จ่ฏญ่จ€" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "้€‰ๆ‹ฉไธ€ไธชๅคดๅƒ" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "้€‰ๆ‹ฉไธ€ไธช่กจๆƒ…็ฌฆๅท" @@ -10780,12 +10785,13 @@ msgstr "้€‰ๆ‹ฉไธ€ไธช้€‰้กน" msgid "Select app language" msgstr "้€‰ๆ‹ฉๅบ”็”จ่ฏญ่จ€" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "้€‰ๆ‹ฉๅญ—ๅน•ๆ–‡ไปถ๏ผˆ.vtt๏ผ‰" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "้€‰ๆ‹ฉๅฏน่ฏโ€œ{name}โ€" @@ -10801,7 +10807,7 @@ msgstr "้€‰ๆ‹ฉๆŒ็ปญๆ—ถ้•ฟ" #. placeholder {0}: labels[filter.field].title #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:102 msgid "Select filter type (currently: {0})" -msgstr "" +msgstr "้€‰ๆ‹ฉๆœ็ดข็ญ›้€‰ๆกไปถ็ฑปๅž‹๏ผˆ็›ฎๅ‰๏ผš{0}๏ผ‰" #: src/screens/Login/index.tsx:166 msgid "Select from an existing account" @@ -10826,7 +10832,7 @@ msgstr "้€‰ๆ‹ฉ GIF" msgid "Select GIF \"{0}\"" msgstr "้€‰ๆ‹ฉ GIF โ€œ{0}โ€" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "้€‰ๆ‹ฉ็พค็ป„ๅฏน่ฏๆˆๅ‘˜" @@ -10864,7 +10870,7 @@ msgstr "้€‰ๆ‹ฉไธป่ฆ่ฏญ่จ€" msgid "Select telephone code" msgstr "้€‰ๆ‹ฉ็”ต่ฏๅŒบๅท" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "้€‰ๆ‹ฉ {emojiName} ่กจๆƒ…็ฌฆๅทไฝœไธบไฝ ็š„ๅคดๅƒ" @@ -10945,7 +10951,8 @@ msgstr "ๅ‘้€ไฟกๆฏ" msgid "Send post to {name}" msgstr "ๅ‘้€ๅธ–ๆ–‡็ป™ {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "ๅ‘้€ๅธ–ๆ–‡็ป™โ€ฆโ€ฆ" @@ -10963,12 +10970,12 @@ msgstr "ไปŽไฝ ็š„ๆ‰‹ๆœบๅ‘้€่ฟ™ๅˆ™ไฟกๆฏ" msgid "Send verification email" msgstr "ๅ‘้€้ชŒ่ฏ็”ตๅญ้‚ฎไปถ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "้€š่ฟ‡็งไบบไฟกๆฏๅ‘้€" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "้€š่ฟ‡ๅฏน่ฏๅ‘้€" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11011,24 +11018,24 @@ msgstr "่ฏทๅœจไธ‹ๆ–น่ฎพ็ฝฎไฝ ็š„ๅ‡บ็”Ÿๆ—ฅๆœŸ๏ผŒๆˆ‘ไปฌๅพˆๅฟซๅฐฑไผš่ฎฉไฝ ็ปง็ปญๅ›› #: src/screens/Login/LoginForm.tsx:352 msgid "set your hosting provider manually" -msgstr "" +msgstr "ๆ‰‹ๅŠจ่ฎพ็ฝฎๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†" #: src/screens/Login/LoginForm.tsx:486 msgid "Set your hosting provider manually" -msgstr "" +msgstr "ๆ‰‹ๅŠจ่ฎพ็ฝฎๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†" #: src/screens/Login/ForgotPasswordForm.tsx:104 msgid "Sets email for password reset" msgstr "่ฎพ็ฝฎ็”จไบŽ้‡็ฝฎๅฏ†็ ็š„็”ตๅญ้‚ฎ็ฎฑ" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "่ฎพ็ฝฎ" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "ๆฅ่‡ชๅ…ถไป–ไบบ็š„ๅŠจๆ€ๆ้†’่ฎพ็ฝฎ" @@ -11036,49 +11043,49 @@ msgstr "ๆฅ่‡ชๅ…ถไป–ไบบ็š„ๅŠจๆ€ๆ้†’่ฎพ็ฝฎ" msgid "Settings for allowing others to be notified of your posts" msgstr "ๅ…่ฎธไป–ไบบๆŽฅๆ”ถไฝ ๅ‘ๅธƒๅธ–ๆ–‡ๆ้†’็š„่ฎพ็ฝฎ" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "ๅ–œๆฌข้€š็Ÿฅ่ฎพ็ฝฎ" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "ๆๅŠ้€š็Ÿฅ่ฎพ็ฝฎ" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "ๆ–ฐๅ…ณๆณจ่€…้€š็Ÿฅ่ฎพ็ฝฎ" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "ๅ…ถไป–้€š็Ÿฅ่ฎพ็ฝฎ" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "่ฝฌๅ‘็š„ๅ–œๆฌข้€š็Ÿฅ่ฎพ็ฝฎ" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "ๆ–ฐไฟกๆฏ็”ณ่ฏท็š„้€š็Ÿฅ่ฎพ็ฝฎ" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "ๆ–ฐไฟกๆฏ็š„้€š็Ÿฅ่ฎพ็ฝฎ" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "่ฝฌๅ‘็š„่ฝฌๅ‘้€š็Ÿฅ่ฎพ็ฝฎ" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "ๅผ•็”จ้€š็Ÿฅ่ฎพ็ฝฎ" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "ๅ›žๅค้€š็Ÿฅ่ฎพ็ฝฎ" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "่ฝฌๅ‘้€š็Ÿฅ่ฎพ็ฝฎ" @@ -11109,14 +11116,14 @@ msgstr "ๅˆ†ไบซ" #: src/ageAssurance/useVerificationFlow.ts:62 msgid "Share age range" -msgstr "" +msgstr "ๅˆ†ไบซๅนด้พ„่Œƒๅ›ด" #: src/view/com/profile/ProfileMenu.tsx:549 msgid "Share anyway" msgstr "ไป็„ถๅˆ†ไบซ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "ๅˆ†ไบซไฝœ่€… DID" @@ -11125,9 +11132,9 @@ msgstr "ๅˆ†ไบซไฝœ่€… DID" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "ๅˆ†ไบซๅ้ฆˆ" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "ๅˆ†ไบซ้“พๆŽฅๅฏน่ฏๆก†" msgid "Share my profile" msgstr "ๅˆ†ไบซๆˆ‘็š„่ต„ๆ–™" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "ๅˆ†ไบซๅธ–ๆ–‡ at:// ้“พๆŽฅ" @@ -11169,14 +11176,14 @@ msgstr "ๅˆ†ไบซ่ต„ๆ–™" msgid "Share QR code" msgstr "ๅˆ†ไบซไบŒ็ปด็ " -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "ๅˆ†ไบซๆญคๅŠจๆ€ๆบ" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" -msgstr "" +msgstr "ๅˆ†ไบซๆญคๆœ็ดข็ป“ๆžœ" #: src/screens/StarterPack/StarterPackScreen.tsx:440 msgid "Share this starter pack" @@ -11186,8 +11193,8 @@ msgstr "ๅˆ†ไบซๆญคๆ–ฐๆ‰‹ๅŒ…" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "ๅˆ†ไบซๆญคๆ–ฐๆ‰‹ๅŒ…๏ผŒไปฅๅธฎๅŠฉๅ…ถไป–ไบบๆ›ดๅฟซ่žๅ…ฅไฝ ๅœจ Bluesky ไธŠ็š„ๅ…ณ็ณป็ฝ‘ใ€‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,23 +11210,23 @@ msgstr "ๅˆ†ไบซไฝ ็š„่”็ณปไบบๆฅๅฏปๆ‰พๆœ‹ๅ‹" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughtsโ€ฆ" -msgstr "" +msgstr "ๅˆ†ไบซไฝ ็š„ๆƒณๆณ•โ€ฆโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "ๅ…ฑไบซๅๅฅฝๆต‹่ฏ•ๅ™จ" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 msgid "Sharing your age range reveals only the range associated with your Apple Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "ๅˆ†ไบซๆ‚จ็š„ๅนด้พ„่Œƒๅ›ดๅชไผš้€้œฒไฝ  Apple ่ดฆๆˆทๅ…ณ่”็š„ๅคง่‡ดไฟกๆฏโ€”โ€”ไพ‹ๅฆ‚๏ผŒไฝ ๅทฒๅนดๆปก 18 ๅฒใ€‚<0>ไฝ ็š„็กฎๅˆ‡ๅนด้พ„ๅ’Œ็”Ÿๆ—ฅไฟกๆฏๆฐธ่ฟœไธไผš่ขซๅˆ†ไบซ๏ผŒๅนด้พ„่Œƒๅ›ดๆ•ฐๆฎไนŸๆฐธ่ฟœไธไผš็ฆปๅผ€ๆญค่ฎพๅค‡ใ€‚ๅ› ๆญค๏ผŒๅฎƒๅช่ƒฝๅœจๆญค่ฎพๅค‡ไธŠๅฏ็”จ่ฎฟ้—ฎๆƒ้™ใ€‚ๆˆ–่€…๏ผŒ<1>ไฝ ๅฏไปฅไฝฟ็”จๆˆ‘ไปฌ็š„ๅฏไฟกๅˆไฝœไผ™ไผด KWSๆฅๅฎŒๆˆ้ชŒ่ฏ๏ผŒไปŽ่€Œๅœจๆ‰€ๆœ‰ๅนณๅฐไธŠๅฏ็”จ่ฎฟ้—ฎๆƒ้™ใ€‚" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "ๅˆ†ไบซๆ‚จ็š„ๅนด้พ„่Œƒๅ›ดๅชไผš้€้œฒไฝ  Google ่ดฆๆˆทๅ…ณ่”็š„ๅคง่‡ดไฟกๆฏโ€”โ€”ไพ‹ๅฆ‚๏ผŒไฝ ๅทฒๅนดๆปก 18 ๅฒใ€‚<0>ไฝ ็š„็กฎๅˆ‡ๅนด้พ„ๅ’Œ็”Ÿๆ—ฅไฟกๆฏๆฐธ่ฟœไธไผš่ขซๅˆ†ไบซ๏ผŒๅนด้พ„่Œƒๅ›ดๆ•ฐๆฎไนŸๆฐธ่ฟœไธไผš็ฆปๅผ€ๆญค่ฎพๅค‡ใ€‚ๅ› ๆญค๏ผŒๅฎƒๅช่ƒฝๅœจๆญค่ฎพๅค‡ไธŠๅฏ็”จ่ฎฟ้—ฎๆƒ้™ใ€‚ๆˆ–่€…๏ผŒ<1>ไฝ ๅฏไปฅไฝฟ็”จๆˆ‘ไปฌ็š„ๅฏไฟกๅˆไฝœไผ™ไผด KWSๆฅๅฎŒๆˆ้ชŒ่ฏ๏ผŒไปŽ่€Œๅœจๆ‰€ๆœ‰ๅนณๅฐไธŠๅฏ็”จ่ฎฟ้—ฎๆƒ้™ใ€‚" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,20 +11236,20 @@ msgstr "ๆ˜พ็คบ" msgid "Show alt text" msgstr "ๆ˜พ็คบๆ›ฟไปฃๆ–‡ๆœฌ" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "ไป็„ถๆ˜พ็คบ" #: src/screens/Settings/AutomationLabelSettings.tsx:185 #: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" -msgstr "ๆ˜พ็คบ่‡ชๅŠจๅŒ–ๆ ‡็ญพ" +msgstr "ๆ˜พ็คบ่‡ชๅŠจๅŒ–ๆ ‡่ฎฐ" #: src/lib/moderation/useLabelBehaviorDescription.ts:30 #: src/lib/moderation/useLabelBehaviorDescription.ts:66 @@ -11274,8 +11281,8 @@ msgstr "ไป็„ถๆ˜พ็คบๅˆ—่กจ" msgid "Show lists of users to select from" msgstr "ๆ˜พ็คบๅฏไพ›้€‰ๆ‹ฉ็š„็”จๆˆทๅˆ—่กจ" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" msgstr "ๆ˜พ็คบๆ›ดๅคš" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 @@ -11333,7 +11340,7 @@ msgstr "ๆ˜พ็คบ่ญฆๅ‘ŠๅนถไปŽๅŠจๆ€ๆบไธญ่ฟ‡ๆปค" msgid "Show when youโ€™re live" msgstr "ๆ˜พ็คบ็›ดๆ’ญ็Šถๆ€" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "ๆ˜พ็คบ่ฟ™ๅˆ™ๅธ–ๆ–‡็š„ๅˆ›ๅปบๆ—ถ้—ด" @@ -11341,15 +11348,15 @@ msgstr "ๆ˜พ็คบ่ฟ™ๅˆ™ๅธ–ๆ–‡็š„ๅˆ›ๅปบๆ—ถ้—ด" msgid "Shows other accounts you can switch to" msgstr "ๆ˜พ็คบๅฏไพ›ไฝ ๅˆ‡ๆข็š„ๅ…ถไป–่ดฆๆˆท" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "ๆ˜พ็คบๅ†…ๅฎน" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "ๆ˜พ็คบๅ†…ๅฎน" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11379,7 +11386,7 @@ msgstr "ไปฅ {0} ็™ปๅฝ•" #: src/screens/Login/ChooseAccountForm.tsx:84 msgid "Sign in asโ€ฆ" -msgstr "" +msgstr "็™ปๅฝ•ไธบโ€ฆโ€ฆ" #: src/screens/Deactivated.tsx:195 #: src/screens/Deactivated.tsx:201 @@ -11434,9 +11441,9 @@ msgstr "็กฎๅฎš่ฆ็™ปๅ‡บๅ—๏ผŸ" #: src/screens/Login/LoginForm.tsx:572 msgid "Sign up" -msgstr "" +msgstr "ๆณจๅ†Œ" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "้œ€่ฆ็™ปๅฝ•" @@ -11450,7 +11457,7 @@ msgstr "ไปฅ @{0} ็š„่บซไปฝ็™ปๅฝ•" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:299 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:302 msgid "Since" -msgstr "" +msgstr "่‡ช" #: src/components/contacts/screens/PhoneInput.tsx:163 #: src/components/contacts/screens/VerifyNumber.tsx:205 @@ -11469,7 +11476,7 @@ msgstr "่ทณ่ฟ‡" msgid "Skip contact sharing and continue to the app" msgstr "่ทณ่ฟ‡ๅˆ†ไบซ้€š่ฎฏๅฝ•ๅนถ็ปง็ปญไฝฟ็”จๅบ”็”จ็จ‹ๅบ" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "่ทณ่ฟ‡็ฉบ็™ฝๅธ–ๆ–‡๏ผŸ" @@ -11487,7 +11494,7 @@ msgstr "่ทณ่‡ณไธ‹ไธ€ๆญฅ" msgid "slide" msgstr "ๅนป็ฏ็‰‡" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "ๆ›ดๅฐ" @@ -11499,14 +11506,14 @@ msgstr "ๆš‚ๅœๆ้†’" msgid "So many thoughts, you should post one" msgstr "ๆ€ปๆœ‰ไธ€ไธชๆƒณๆณ•ๅ€ผๅพ—่ขซ็œ‹่ง๏ผŒๆŒ‘ไธ€ๅˆ™ๅ‘ๅธƒๅง" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "็”ฑไฝ ๆŽŒๆŽง็š„็คพไบคๅช’ไฝ“ใ€‚" #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "ๅ…ณ็ณปๅœˆๅธ–ๆ–‡ๆŽจ่" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11520,7 +11527,7 @@ msgstr "ๅˆ—่กจไธญ็š„้ƒจๅˆ†ๅ†…ๅฎนๅฎกๆ ธๆœๅŠกไธๅ†ๅฏ็”จใ€‚" msgid "Some of your verifications are invalid." msgstr "ไฝ ๅฝ“ๅ‰่ขซๆŽˆไบˆ็š„้ƒจๅˆ†่ฎค่ฏๆ— ๆ•ˆใ€‚" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "ๅ…ถไป–ไฝ ๅฏ่ƒฝๅ–œๆฌข็š„ๅŠจๆ€ๆบ" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "ๆœ‰ไบบ็ฆปๅผ€ไบ†็พค็ป„" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "ๆœ‰ไบบไฝœๅ‡บไบ† {0} ๅๅบ”" @@ -11554,9 +11561,9 @@ msgstr "ๆœ‰ไบบไฝœๅ‡บไบ† {0} ๅๅบ”" msgid "Someone reacted {0} to {target}" msgstr "ๆœ‰ไบบๅฏน {target} ไฝœๅ‡บไบ† {0} ๅๅบ”" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" -msgstr "" +msgstr "ๆœ‰ไบบๅ›žๅคไบ†" #: src/components/dms/getSystemMessageInfo.ts:60 msgid "Someone was added" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "ๅ‡บไบ†็‚น้—ฎ้ข˜๏ผŒ่ฏท้‡่ฏ•" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "ๅ‘็”Ÿ้”™่ฏฏ๏ผŒ่ฏท็จๅŽ้‡่ฏ•ใ€‚" msgid "Something went wrong. Please try again." msgstr "ๅ‘็”Ÿ้”™่ฏฏ๏ผŒ่ฏท้‡่ฏ•ใ€‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "็œ‹่ตทๆฅๆœ‰็‚น้—ฎ้ข˜๏ผŸ่ฏทๅ‘Š่ฏ‰ๆˆ‘ไปฌใ€‚" @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "ๅžƒๅœพไฟกๆฏๆˆ–ๅ…ถไป–่™šๅ‡ๆฌบ้ช—่กŒไธบ" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "่ฟๅŠจ" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "ๅ‘็Žฐไฝ ็š„ๅฅฝๅ‹ๅ’Œๅ…ณๆณจ็š„ไบบๅ–œๆฌข่ฟ‡็š„ๅธ–ๆ–‡ใ€‚" #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "ๅฝ“ไฝ ๅ’Œๅ…ถไป–ไบบๅผ€ๅง‹่ŠๅคฉๅŽ๏ผŒๅฏน่ฏๅฐฑไผšๅ‡บ็Žฐๅœจ่ฟ™้‡Œใ€‚" msgid "Start a group chat" msgstr "ๅผ€ๅง‹็พค็ป„ๅฏน่ฏ" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "ๅผ€ๅง‹ไธ€ไธชๆ–ฐๅฏน่ฏ" @@ -11682,17 +11689,17 @@ msgstr "ๅผ€ๅง‹ๆทปๅŠ ็”จๆˆท" msgid "Start adding people!" msgstr "ๅผ€ๅง‹ๆทปๅŠ ็”จๆˆท๏ผ" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "ๅผ€ๅง‹ๅฏน่ฏ" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "ไธŽ {displayName} ๅผ€ๅง‹ๅฏน่ฏ" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "ๆ–ฐๆ‰‹ๅŒ…" @@ -11715,12 +11722,16 @@ msgstr "ไฝ ๅˆ›ๅปบ็š„ๆ–ฐๆ‰‹ๅŒ…" msgid "Starter pack is invalid" msgstr "ๆ— ๆ•ˆ็š„ๆ–ฐๆ‰‹ๅŒ…" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "ๆ–ฐๆ‰‹ๅŒ…" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "ๆ–ฐๆ‰‹ๅŒ…" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "ๆ–ฐๆ‰‹ๅŒ…่ƒฝไฝฟไฝ ่ฝปๆพไธŽๆœ‹ๅ‹ๅˆ†ไบซไฝ ๅ–œๆฌข็š„็”จๆˆทๅ’ŒๅŠจๆ€ๆบใ€‚" @@ -11728,7 +11739,7 @@ msgstr "ๆ–ฐๆ‰‹ๅŒ…่ƒฝไฝฟไฝ ่ฝปๆพไธŽๆœ‹ๅ‹ๅˆ†ไบซไฝ ๅ–œๆฌข็š„็”จๆˆทๅ’ŒๅŠจๆ€ๆบใ€‚ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "ๆ–ฐๆ‰‹ๅŒ…่ƒฝไฝฟไฝ ไธŽๆœ‹ๅ‹ๅˆ†ไบซไฝ ๅ–œๆฌข็š„็”จๆˆทๅ’ŒๅŠจๆ€ๆบใ€‚" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "ๆ–ฐๆ‰‹ๅŒ…่ƒฝไฝฟไฝ ไธŽๆœ‹ๅ‹ๅˆ†ไบซไฝ ๅ–œๆฌข็š„ๅŠจๆ€ๆบไธŽไบบ็‰ฉใ€‚" @@ -11742,7 +11753,7 @@ msgstr "็Šถๆ€้กต" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "็ฌฌ {0} ๆญฅ๏ผˆๅ…ฑ {1} ๆญฅ๏ผ‰" @@ -11754,7 +11765,7 @@ msgstr "ๅทฒๆธ…้™คๆ•ฐๆฎ๏ผŒ่ฏท็ซ‹ๅณ้‡ๆ–ฐๅฏๅŠจๅบ”็”จใ€‚" msgid "Stored as part of a secure code for matching with others" msgstr "ๅญ˜ๅ‚จไธบๅฎ‰ๅ…จไปฃ็ ็š„ไธ€้ƒจๅˆ†๏ผŒไปฅๅŒน้…ๅ…ถไป–ไบบ" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "Storybook" @@ -11787,7 +11798,7 @@ msgstr "ๆไบค็”ณ่ฏ‰" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "ๆไบคๅ้ฆˆ" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "ๅœจ {0} ไธŠ่ฎข้˜… {publicationTitle}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "่ฎข้˜… @{0} ไปฅไฝฟ็”จ่ฟ™ไบ›ๆ ‡่ฎฐ๏ผš" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "ๆˆๅŠŸ่ฎค่ฏ" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "ๅปบ่ฎฎ" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "ๅปบ่ฎฎ่ดฆๆˆท" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "ไธบไฝ ๆŽจ่" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "ๆ—ฅ่ฝ" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "ไฝ ๆ‰€ๅœจ็š„ๅ›ฝๅฎถๅฐšไธๆ”ฏๆŒๆญคๅŠŸ่ƒฝ๏ผ่ฏท่ฟ‡ๅ‡ ๅคฉๅ†ๅ›žๆฅ็œ‹็œ‹ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "ๅทฒๅ†ป็ป“็š„็”จๆˆทๆ— ๆณ•ๅŠ ๅ…ฅ็พค็ป„ๅฏน่ฏใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "ๅทฒๅ†ป็ป“็š„็”จๆˆทๆ— ๆณ•ๅ‚ไธŽ่Šๅคฉใ€‚" @@ -11921,8 +11934,8 @@ msgstr "ๅˆ‡ๆขๅˆฐ {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "็ณป็ปŸ" @@ -11945,7 +11958,7 @@ msgstr "ๅฐ†ๅฏน่ฏ่ฎพไธบ็งๅฏ†ใ€‚" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "็‚นๅ‡ปไธ‹ๆ–น็š„โ€œๅ…่ฎธโ€ๆŒ‰้’ฎไปฅๅ…่ฎธ Bluesky ่ฏปๅ–ไฝ ็š„ไฝ็ฝฎไฟกๆฏ๏ผŒๆˆ‘ไปฌๅฐ†ไฝฟ็”จ่ฏฅๆ•ฐๆฎๆฅๆ›ดๅ‡†็กฎๅœฐ็กฎ่ฎคไฝ ๆ‰€ๅœจๅœฐๅŒบๅฏ็”จ็š„ๅ†…ๅฎนๅŠๅŠŸ่ƒฝใ€‚" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "็‚นๅ‡ปไปฅ่Žทๅ–่ฏฆ็ป†ไฟกๆฏ" @@ -11976,7 +11989,7 @@ msgstr "็‚นๆŒ‰ไปฅๅ…ณ้—ญไธŠไธ‹ๆ–‡่œๅ•" msgid "Tap to copy this invite link" msgstr "็‚นๅ‡ปไปฅๅคๅˆถๆญค้‚€่ฏท้“พๆŽฅ" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "็‚นๆŒ‰ไปฅ่ทณ่ฟ‡" @@ -12003,7 +12016,7 @@ msgstr "็‚นๅ‡ปไปฅ็งป้™คไฝ ็š„ {0} ๅๅบ”" msgid "Tap to request access to join this group chat" msgstr "็‚นๅ‡ปไปฅ็”ณ่ฏทๅŠ ๅ…ฅๆญค็พค็ป„ๅฏน่ฏ" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "็‚นๅ‡ปไปฅ้‡่ฏ•" @@ -12016,7 +12029,7 @@ msgstr "็‚นๅ‡ปไปฅๆ˜พ็คบ {0} ๅๅบ”" msgid "Tap to show all reactions" msgstr "็‚นๅ‡ปไปฅๆ˜พ็คบๆ‰€ๆœ‰ๅๅบ”" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "็‚นๅ‡ปไปฅๆ˜พ็คบๅๅบ”" @@ -12032,7 +12045,7 @@ msgstr "ไปปๅŠกๅฎŒๆˆ๏ผšๅ…ณๆณจ 10 ไธช่ดฆๆˆท๏ผ" msgid "Task complete - 10 likes!" msgstr "ไปปๅŠกๅฎŒๆˆ๏ผšๅ–œๆฌข 10 ๅˆ™ๅธ–ๆ–‡๏ผ" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "่ฎฉๆˆ‘ไปฌ็š„็ฎ—ๆณ•ไบ†่งฃไฝ ็š„ๅ–œๅฅฝ" @@ -12060,7 +12073,7 @@ msgstr "ๆกๆฌพ" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "ๆ„Ÿ่ฐขไฝ ็š„ๅ้ฆˆ๏ผŒ็›ธๅ…ณไฟกๆฏๅฐ†ไผšๅ‘้€็ป™ๅŠจๆ€ๆบ็ปดๆŠค่€…ใ€‚" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "ๆ„Ÿ่ฐขๆ‚จ็š„ๅ้ฆˆ๏ผ" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "ๆ‰พไธๅˆฐ้‚ฃไธชๆ–ฐๆ‰‹ๅŒ…ใ€‚" msgid "That username is already taken" msgstr "่ฏฅ็”จๆˆทๅๅทฒ่ขซๅ ็”จ" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "ๅฐฑ่ฟ™ไบ›๏ผŒๅฎŒๆฏ•๏ผ" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "ๅฐฑ่ฟ™ไบ›ไบ†๏ผ" @@ -12171,7 +12184,7 @@ msgstr "ๅŠจๆ€ๆบๅทฒๆ›ฟๆขไธบโ€œDiscoverโ€ใ€‚" #: src/components/moderation/LabelsOnMeDialog.tsx:64 msgid "The following labels were applied to this post." -msgstr "" +msgstr "ไปฅไธ‹ๆ ‡่ฎฐๅทฒๅบ”็”จๅˆฐๆญคๅธ–ๆ–‡ใ€‚" #: src/components/moderation/LabelsOnMeDialog.tsx:63 msgid "The following labels were applied to your account." @@ -12216,7 +12229,7 @@ msgstr "ๆœๅŠกๅ™จไผผไนŽ้‡ๅˆฐไบ†้—ฎ้ข˜๏ผŒ่ฏท็จๅŽ้‡่ฏ•ใ€‚" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "ไฝ ๅฐ่ฏ•ๆŸฅ็œ‹็š„ๆ–ฐๆ‰‹ๅŒ…ๆ— ๆ•ˆใ€‚ไฝ ๅฏไปฅ่€ƒ่™‘ๅˆ ้™คๆญคๆ–ฐๆ‰‹ๅŒ…ใ€‚" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "ไธŠไธ‹ๆ–‡่œๅ•ๅฏนๅบ”็š„ไธป้ข˜" @@ -12238,7 +12251,7 @@ msgstr "ไฝ ๆไพ›็š„้ชŒ่ฏ็ ๆ— ๆ•ˆใ€‚่ฏทๆฃ€ๆŸฅไฝ ไฝฟ็”จ็š„้ชŒ่ฏ้“พๆŽฅๆ˜ฏๅฆๆญฃ msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "้ชŒ่ฏๆœๅŠกๆไพ›ๅ•†ๆ— ๆณ•ๅ‘ไฝ ็š„็”ต่ฏๅท็ ๅ‘้€ไปฃ็ ๏ผŒ่ฏทๆฃ€ๆŸฅไฝ ็š„็”ต่ฏๅท็ ๅนถ้‡่ฏ•ใ€‚" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "ไธป้ข˜" @@ -12266,7 +12279,7 @@ msgstr "ๆ— ๆณ•ๅŠ ่ฝฝ GIFs๏ผŒๆฃ€ๆŸฅไฝ ็š„็ฝ‘็ปœ้“พๆŽฅๅนถๅ†่ฏ•ไธ€ๆฌกใ€‚" msgid "There was a problem with your internet connection, please try again" msgstr "ไฝ ็š„็ฝ‘็ปœ่ฟžๆŽฅๅ‘็”Ÿไบ†ไธ€ไบ›้—ฎ้ข˜๏ผŒ่ฏท้‡่ฏ•" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "ไฝ ็š„็ฝ‘็ปœ่ฟžๆŽฅๅ‘็”Ÿไบ†ไธ€ไบ›้—ฎ้ข˜๏ผŒ่ฏท้‡่ฏ•" msgid "There was an issue contacting the server" msgstr "่ฟžๆŽฅๆœๅŠกๅ™จๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "่ฟžๆŽฅ่‡ณๆœๅŠกๅ™จๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜ใ€‚่ฏทๆฃ€ๆŸฅ็ฝ‘็ปœ่ฟžๆŽฅๅนถ้‡่ฏ•ใ€‚" @@ -12283,8 +12296,8 @@ msgstr "่ฟžๆŽฅ่‡ณๆœๅŠกๅ™จๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜ใ€‚่ฏทๆฃ€ๆŸฅ็ฝ‘็ปœ่ฟžๆŽฅๅนถ้‡่ฏ•ใ€‚" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "ๅˆทๆ–ฐ้€š็Ÿฅๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ็‚นๅ‡ป้‡่ฏ•ใ€‚" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "ๅˆทๆ–ฐๅธ–ๆ–‡ๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜๏ผŒ็‚นๅ‡ป้‡่ฏ•ใ€‚" @@ -12309,7 +12322,7 @@ msgstr "่Žทๅ–ไฝ ็š„ๆœๅŠกไฟกๆฏๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "ๆ›ดๆ–ฐๅŠจๆ€ๆบๆ—ถๅ‡บ็Žฐ้—ฎ้ข˜ใ€‚่ฏทๆฃ€ๆŸฅ็ฝ‘็ปœ่ฟžๆŽฅๅนถ้‡่ฏ•ใ€‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12368,12 +12381,12 @@ msgstr "่ฟ™ไบ›ๆ˜ฏไฝ ็š„้ป˜่ฎค่ฎพ็ฝฎ" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:51 msgid "These domains" -msgstr "" +msgstr "่ฟ™ไบ›ๅŸŸๅ" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:44 msgid "These hashtags" -msgstr "" +msgstr "่ฟ™ไบ›่ฏ้ข˜ๆ ‡็ญพ" #: src/screens/Settings/FollowingFeedPreferences.tsx:66 msgid "These settings only apply to the Following feed." @@ -12382,9 +12395,9 @@ msgstr "่ฟ™ไบ›ๅๅฅฝ่ฎพ็ฝฎๅช้€‚็”จไบŽโ€œFollowingโ€ๅŠจๆ€ๆบใ€‚" #. Advanced search filter #: src/screens/Search/components/AdvancedSearchDialog/hooks.tsx:58 msgid "These URLs" -msgstr "" +msgstr "่ฟ™ไบ›้“พๆŽฅ" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "ไป–ไปฌๆ˜ฏๆญคๅฏน่ฏ็š„ๆ‰€ๆœ‰่€…" @@ -12392,7 +12405,7 @@ msgstr "ไป–ไปฌๆ˜ฏๆญคๅฏน่ฏ็š„ๆ‰€ๆœ‰่€…" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "้™ค้žไฝ ๅ†ๆฌกๅ‘ๅ‡บ้‚€่ฏท๏ผŒๅฆๅˆ™ไป–ไปฌๅฐ†ๆ— ๆณ•้‡ๆ–ฐๅŠ ๅ…ฅใ€‚" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} ๅทฒ่ขซๆ ‡่ฎฐ๏ผš" @@ -12408,7 +12421,7 @@ msgstr "ๆญค่ดฆๆˆทๅทฒ่ขซๅ…ถๆ‰€ๆœ‰ไบบๆ ‡่ฎฐไธบ่‡ชๅŠจๅŒ–่ดฆๆˆทใ€‚" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "ๆญค่ดฆๆˆทๅทฒๅฐ่ฏ•่ฟ›่กŒไธ€ๆฌกๆˆ–ๅคšๆฌก่ฎค่ฏ๏ผŒไฝ†ๅฐšๆœช่ขซๆญฃๅผ่ฎค่ฏใ€‚" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "่ฏฅ่ดฆๆˆท่ฆๆฑ‚็™ปๅฝ•ๅŽๆ‰่ƒฝๆŸฅ็œ‹ๅ…ถไธชไบบ่ต„ๆ–™ใ€‚" @@ -12510,7 +12523,7 @@ msgstr "ๆญค็”ตๅญ้‚ฎ็ฎฑๅทฒไธŽไฝ ็š„่ดฆๆˆทๅ…ณ่”ใ€‚" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:280 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:283 msgid "This exact phrase" -msgstr "" +msgstr "ๅฎŒๅ…จๅŒน้…ๆญค่ฏญๅฅ" #: src/screens/Settings/ActivityPrivacySettings.tsx:56 msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "ๆญคๅŠจๆ€ๆบไธบ็ฉบใ€‚ๅฏ่ƒฝไฝ ้œ€่ฆๅ…ˆๅ…ณๆณจๆ›ดๅคš็”จๆˆท๏ผŒๆˆ–ๆฃ€ๆŸฅไฝ ็š„่ฏญ่จ€่ฎพ็ฝฎใ€‚" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "ๆญคๅŠจๆ€ๆบไธบ็ฉบใ€‚" @@ -12554,7 +12567,7 @@ msgstr "ๆญคๅฏน่ฏๅทฒ่ขซๆ‰€ๆœ‰่€…็š„ๅ†…ๅฎนๅฎกๆ ธๅŠจไฝœ้”ๅฎš" msgid "This handle is reserved. Please try a different one." msgstr "่ฏฅ่ดฆๆˆทไปฃ็ ่ขซ้ข„็•™๏ผŒ่ฏทๅฐ่ฏ•่พ“ๅ…ฅๅฆไธ€ไธชใ€‚" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "ๆ— ๆณ•ไฝฟ็”จ่ฟ™ๅผ ๅ›พ็‰‡๏ผŒ่ฏทๆ”น็”จๅ…ถไป–ๅ›พ็‰‡ๆ ผๅผ๏ผŒไพ‹ๅฆ‚ .jpg ๆˆ– .pngใ€‚" @@ -12572,7 +12585,7 @@ msgstr "ๆญค้‚€่ฏท้“พๆŽฅๆ— ๆ•ˆ" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 msgid "This is just a one-time security check, since we haven't seen this account on this device before." -msgstr "" +msgstr "่ฟ™ๅชๆ˜ฏไธ€ๆฌกๆ€ง็š„ๅฎ‰ๅ…จๆฃ€ๆŸฅ๏ผŒๅ› ไธบๆˆ‘ไปฌไน‹ๅ‰ๆœชๅœจๆญค่ฎพๅค‡ไธŠ็™ปๅฝ•่ฟ‡่ฏฅ่ดฆๆˆทใ€‚" #: src/features/liveNow/components/EditLiveDialog.tsx:171 #: src/features/liveNow/components/GoLiveDialog.tsx:161 @@ -12581,7 +12594,7 @@ msgstr "ๆ— ๆ•ˆ้“พๆŽฅ" #: src/screens/Settings/AutomationLabelSettings.tsx:173 msgid "This label lets the world know that this account is automated. If turned on, this label appears next to the account's name on their profile and posts. It can be turned on or off at any time." -msgstr "ๆญคๆ ‡็ญพ่ฎฉๅคงๅฎถไบ†่งฃ่ฟ™ๆ˜ฏ่‡ชๅŠจ็ฎก็†็š„่ดฆๆˆทใ€‚ๅฆ‚ๆžœ้€‰ๆ‹ฉๅผ€ๅฏ๏ผŒๆญคๆ ‡็ญพไผšๆ˜พ็คบๅœจไธชไบบ่ต„ๆ–™ๅŠๅธ–ๆ–‡็š„่ดฆๆˆทๅ็งฐๆ—๏ผŒไฝ ๅฏไปฅ้šๆ—ถๅ†ณๅฎšๆทปๅŠ ๆˆ–็งป้™คๆญคๆ ‡็ญพใ€‚" +msgstr "ๆญคๆ ‡่ฎฐ่ฎฉๅคงๅฎถไบ†่งฃ่ฟ™ๆ˜ฏ่‡ชๅŠจ็ฎก็†็š„่ดฆๆˆทใ€‚ๅฆ‚ๆžœ้€‰ๆ‹ฉๅผ€ๅฏ๏ผŒๆญคๆ ‡่ฎฐไผšๆ˜พ็คบๅœจไธชไบบ่ต„ๆ–™ๅŠๅธ–ๆ–‡็š„่ดฆๆˆทๅ็งฐๆ—๏ผŒไฝ ๅฏไปฅ้šๆ—ถๅ†ณๅฎšๆทปๅŠ ๆˆ–็งป้™คๆญคๆ ‡็ญพใ€‚" #: src/components/moderation/ModerationDetailsDialog.tsx:254 msgid "This label was applied by the author." @@ -12589,14 +12602,14 @@ msgstr "ๆญคๆ ‡็ญพๆ˜ฏ็”ฑ่ฏฅๅ‘ๅธƒ่€…ๆ ‡่ฎฐ็š„ใ€‚" #: src/components/moderation/LabelsOnMeDialog.tsx:184 msgid "This label was applied by you." -msgstr "ๆญคๆ ‡็ญพๆ˜ฏไฝ ๆ ‡่ฎฐ็š„ใ€‚" +msgstr "ๆญคๆ ‡่ฎฐ็”ฑไฝ ๆทปๅŠ ใ€‚" #: src/components/moderation/LabelsOnMeDialog.tsx:156 #: src/components/moderation/ModerationDetailsDialog.tsx:231 msgid "This label was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "ๆญคๆ ‡่ฎฐๅทฒๅบ”็”จไบŽๆ•ดไธช็”จๆˆท่ดฆๆˆท๏ผŒๅนถๅฐ†ๅ‡บ็Žฐๅœจๆ‰€ๆœ‰ๅธ–ๆ–‡ไธญใ€‚" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "ๆญคๆ ‡่ฎฐ่€…ๅฐšๆœชๅ…ฌๅผ€ไป–ๅ‘ๅธƒ็š„ๆ ‡่ฎฐ็ฑปๅž‹๏ผŒไนŸๅฏ่ƒฝไธๅ†ๆไพ›ๆœๅŠกใ€‚" @@ -12621,13 +12634,13 @@ msgstr "ๆญคๅˆ—่กจไธบ็ฉบใ€‚" msgid "This message is hidden" msgstr "่ฟ™ๆกไฟกๆฏๅทฒ้š่—" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "ๆญคไฟกๆฏๅทฒ่ขซ้š่—๏ผŒๅ› ไธบๆญค็”จๆˆทๅฑ่”ฝไบ†ไฝ ใ€‚" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "ๆญคไฟกๆฏๅทฒ่ขซ้š่—๏ผŒๅ› ไธบไฝ ๅฑ่”ฝไบ†ๆญค็”จๆˆทใ€‚" @@ -12641,7 +12654,7 @@ msgstr "่ฟ™ไธชไบบๅฑ่”ฝไบ†ไฝ " #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "่ฟ™ๅˆ™ๅธ–ๆ–‡ๅฃฐ็งฐๅ‘ๅธƒไบŽ <0>{0}๏ผŒไฝ†้ฆ–ๆฌกๅ‡บ็Žฐๅœจ Bluesky ็š„ๆ—ถ้—ดไธบ <1>{1}ใ€‚" @@ -12649,7 +12662,7 @@ msgstr "่ฟ™ๅˆ™ๅธ–ๆ–‡ๅฃฐ็งฐๅ‘ๅธƒไบŽ <0>{0}๏ผŒไฝ†้ฆ–ๆฌกๅ‡บ็Žฐๅœจ Bluesky ็š„ msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "ๆญคๅธ–ๆ–‡ๅญ˜ๅœจๆœช็Ÿฅ็š„ๅ†…ๅฎน็ฑปๅž‹๏ผŒไฝ ็š„ๅบ”็”จ็‰ˆๆœฌๅฏ่ƒฝๅทฒ่ฟ‡ๆ—ถใ€‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "่ฟ™ๅˆ™ๅธ–ๆ–‡ไป…ๅฏนๅทฒ็™ปๅฝ•็”จๆˆทๅฏ่งใ€‚" @@ -12661,7 +12674,7 @@ msgstr "่ฟ™ๅˆ™ๅธ–ๆ–‡ๅทฒ่ขซๅ‘ๅธƒ่€…ๅˆ ้™ค" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "่ฟ™ๅˆ™ๅธ–ๆ–‡ๅฐ†ไปŽๅŠจๆ€ๆบๅ’Œ่ฎจ่ฎบไธฒไธญ้š่—ใ€‚ๆณจๆ„๏ผšๆญคๆ“ไฝœๆ— ๆณ•ๆ’คๆถˆใ€‚" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "่ฟ™ๅˆ™ๅธ–ๆ–‡็š„ๅ‘ๅธƒ่€…ๅทฒๅœ็”จๅผ•็”จๅธ–ๆ–‡ใ€‚" @@ -12698,11 +12711,12 @@ msgstr "่ฟ™ๅบ”่ฏฅๅช้œ€่ฆๅ‡ ๅˆ†้’Ÿใ€‚" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "ๆญค็”จๆˆทๆฒกๆœ‰่ฎพ็ฝฎๅ็งฐ๏ผŒๅ› ๆญคๆ— ๆณ•ๆŽˆไบˆ่ฎค่ฏใ€‚" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "่ฏฅ็”จๆˆท็›ฎๅ‰ๆฒกๆœ‰ไปปไฝ•ๅ…ณๆณจ่€…ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "ๆญค็”จๆˆทๅฑ่”ฝไบ†ไฝ ๏ผŒๆ— ๆณ•ๅ‘้€ไฟกๆฏใ€‚" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "ไฝ ๅทฒ่ขซ่ฏฅ็”จๆˆทๅฑ่”ฝ๏ผŒๆ— ๆณ•ๆŸฅ็œ‹ๅ…ถๅ†…ๅฎนใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "ๆญค็”จๆˆทๅทฒ็ฆ็”จๅฏน่ฏๅŠŸ่ƒฝ๏ผŒๆ— ๆณ•ๅ‘้€ไฟกๆฏใ€‚" @@ -12733,17 +12748,17 @@ msgstr "่ฏฅ็”จๆˆทๅŒ…ๅซๅœจไฝ ๅทฒ้š่—็š„ <0>{0} ๅˆ—่กจไธญใ€‚" msgid "This user is new here. Press for more info about when they joined." msgstr "่ฏฅ็”จๆˆทๆ˜ฏ่ฟ‘ๆœŸๅŠ ๅ…ฅ Bluesky ็š„ใ€‚็‚นๆŒ‰ๆญคๅค„ๅฏ่Žทๅ–ๅ…ถๅŠ ๅ…ฅ็š„ๅ…ทไฝ“ๆ—ถ้—ดใ€‚" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "่ฏฅ่ดฆๆˆท็›ฎๅ‰ๆฒกๆœ‰ๅ…ณๆณจไปปไฝ•ไบบใ€‚" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "ๆญค่ง†้ข‘ๆ— ๆณ•ๅœจไฝ ็š„่ฎพๅค‡ไธŠๆ’ญๆ”พ๏ผŒไฝ ็š„ๆต่งˆๅ™จๆˆ–็ณป็ปŸๅฏ่ƒฝ็ผบๅคฑๆ‰€้œ€็š„่ง†้ข‘่งฃ็ ๅ™จ๏ผˆH.264/AAC๏ผ‰ใ€‚" #: src/view/com/composer/videos/VideoPreview.web.tsx:65 msgid "This video canโ€™t be previewed in your browser. It will still be uploaded." -msgstr "" +msgstr "ๆญค่ง†้ข‘ๆ— ๆณ•ๅœจไฝ ็š„ๆต่งˆๅ™จไธญ้ข„่งˆ๏ผŒไฝ†ไปไผš่ขซไธŠไผ ใ€‚" #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 msgid "This will create a new list with the same name, description, and members as this starter pack." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "่ฟ™ๅฐ†ๆฐธไน…ๅˆ ้™คไฝ ็š„ Bluesky ่ดฆๆˆท <0>{currentHandle} ๅŠๆ‰€ๆœ‰ๅ…ณ่”ๆ•ฐๆฎใ€‚่ฏทๆณจๆ„๏ผš่ฟ™ไนŸไผšๅฝฑๅ“ๆญค่ดฆๆˆทไฝฟ็”จๅ…ถไป– <1>AT ๅ่ฎฎ ็š„ๆœๅŠกใ€‚" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "่ฟ™ๅฐ†ไปŽไฝ ็š„ๅฟซ้€Ÿ่ฎฟ้—ฎไธญ็งป้™ค @{0}ใ€‚" @@ -12786,7 +12801,7 @@ msgstr "่ฎจ่ฎบไธฒๅๅฅฝ่ฎพ็ฝฎ" msgid "Threaded" msgstr "ๆ ‘ๅฝข่ง†ๅ›พ" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "่ฎจ่ฎบไธฒๅๅฅฝ่ฎพ็ฝฎ" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "ๅคชๅคš่”็ณปไบบไบ†โ€”โ€”ไฝ ๅฏผๅ…ฅ็š„่”็ณปไบบๆ•ฐ้‡ๅทฒ่ถ…่ฟ‡ๅฏปๆ‰พๆœ‹ๅ‹ไธŠ้™" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "็ƒญ้—จ" @@ -12858,7 +12873,7 @@ msgstr "็ƒญ้—จ" msgid "Top replies first" msgstr "็ƒญ้—จๅ›žๅคไผ˜ๅ…ˆ" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "่ฏ้ข˜" @@ -12893,7 +12908,9 @@ msgstr "ไฝ ็š„่ฎพๅค‡ไธๆ”ฏๆŒๅฐ†ๅŽŸๆ–‡็ฟป่ฏ‘ๆˆ็›ธๅŒ่ฏญ่จ€ใ€‚" msgid "Tree view" msgstr "ๆ ‘ๅฝข่ง†ๅ›พ" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "็ƒญ้—จ" @@ -12902,13 +12919,15 @@ msgstr "็ƒญ้—จ" msgid "Trending GIFs" msgstr "็ƒญ้—จ GIFs" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "็ƒญ้—จ้€‰้กน" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "็ƒญ้—จ่ง†้ข‘" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,13 +12937,13 @@ msgstr "ๅผ•ๆˆ˜" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "ไฟกไปปๆบไบŽไบบ้™…ๅ…ณ็ณปใ€็คพ็พคๅ’Œๅ…ฑไบซ็Žฏๅขƒ๏ผŒๅ› ๆญคๆˆ‘ไปฌไนŸๅผ•ๅ…ฅไบ†<0>ๅฏไฟก็š„่ฎค่ฏไบบ๏ผšๅฏไปฅ็›ดๆŽฅไธบๅ…ถไป–่ดฆๆˆทๆŽˆไบˆ่ฎค่ฏ็š„็ป„็ป‡ใ€‚" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." -msgstr "" +msgstr "ๅฐ่ฏ•ไปฅไธๅŒ็š„ๅ…ณ้”ฎ่ฏๆœ็ดข๏ผŒๆˆ–็งป้™ค้ƒจๅˆ†็ญ›้€‰ๆกไปถใ€‚" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." -msgstr "" +msgstr "ๅฐ่ฏ•ๆœ็ดขไธๅŒ็š„ๅ…ณ้”ฎๅญ—ใ€‚" #: src/features/inviteFriends/InviteScannerScreen.tsx:221 #: src/features/inviteFriends/InviteScannerScreen.tsx:226 @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "ๆ— ๆณ•่Žทๅ–ๅŠ ๅ…ฅ็”ณ่ฏทใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "ๆ‰พไธๅˆฐ้€‰ไธญ็š„ๆ”ถไฟกไบบใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "ๆ‰พไธๅˆฐ้€‰ไธญ็š„ๆ”ถไฟกไบบใ€‚" @@ -13024,12 +13045,12 @@ msgstr "็›ฎๅ‰ๆ— ๆณ•ไฝฟ็”จ" msgid "Unavailable feed information" msgstr "ๅŠจๆ€ๆบไฟกๆฏไธๅฏ็”จ" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "่ฆๅ–ๆถˆๅฑ่”ฝ่ดฆๆˆทๅ—๏ผŸ" msgid "Unblock list" msgstr "ๅ–ๆถˆๅฑ่”ฝๅˆ—่กจ" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "ๅ–ๆถˆๅ…ณๆณจ {0}" msgid "Unfollow account" msgstr "ๅ–ๆถˆๅ…ณๆณจ่ดฆๆˆท" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "ๅ–ๆถˆๅ…ณๆณจ็”จๆˆท" @@ -13132,7 +13153,7 @@ msgstr "ๆœชๆ ‡่ฎฐ็š„ๆˆไบบๅ†…ๅฎน" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "ๆœชๆ ‡่ฎฐใ€ๅ…ท้ชšๆ‰ฐๆ€ง๏ผŒๆˆ–้ž่‡ชๆ„ฟ็š„ๆˆไบบๅ†…ๅฎน" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "ๅ–ๆถˆๅ–œๆฌข" @@ -13192,7 +13213,7 @@ msgstr "ๅ–ๆถˆ้š่—ๆญค็พค็ป„ๅฏน่ฏ" msgid "Unmute thread" msgstr "ๅ–ๆถˆ้š่—่ฎจ่ฎบไธฒ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "ๅ–ๆถˆ้š่—่ง†้ข‘" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "ๅ–ๆถˆๅ›บๅฎš" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "ๅ–ๆถˆๅ›บๅฎšๅŠจๆ€ๆบ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "ไปŽไธป้กตๅ–ๆถˆๅ›บๅฎš" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "ๅ–ๆถˆๅ›บๅฎš้™ๅˆถๅˆ—่กจ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "ไปŽไธป้กตๅ–ๆถˆๅ›บๅฎš {0}" @@ -13258,18 +13279,18 @@ msgstr "ๅ–ๆถˆ่ฎข้˜…ๆญคๆ ‡่ฎฐ่€…" msgid "Unsubscribed from list" msgstr "ๅทฒไปŽๅˆ—่กจไธญๅ–ๆถˆ่ฎข้˜…" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "ไธๆ”ฏๆŒ็š„ๅ‰ช่ดดๆฟๅ†…ๅฎน" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "ไธๆ”ฏๆŒ็š„่ง†้ข‘็ฑปๅž‹๏ผš{mimeType}" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:323 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:326 msgid "Until" -msgstr "" +msgstr "่‡ณ" #: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 msgid "Up to 50 people" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "ๆ›ดๆ–ฐๅ›žๅคๅฏ่งๆ€งๅคฑ่ดฅ" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "ไธŠไผ ๅ›พ็‰‡" @@ -13355,7 +13376,7 @@ msgstr "ไปŽๆ–‡ไปถไธŠไผ " msgid "Upload from Library" msgstr "ไปŽ็…ง็‰‡ๅ›พๅบ“ไธŠไผ " -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "ๆญฃๅœจไธŠไผ  GIFโ€ฆโ€ฆ" @@ -13369,7 +13390,7 @@ msgstr "ๆญฃๅœจไธŠไผ ๅ›พ็‰‡โ€ฆโ€ฆ" msgid "Uploading link thumbnail..." msgstr "ๆญฃๅœจไธŠไผ ้“พๆŽฅ็ผฉ็•ฅๅ›พโ€ฆโ€ฆ" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "ๆญฃๅœจไธŠไผ ่ง†้ข‘โ€ฆโ€ฆ" @@ -13408,7 +13429,7 @@ msgstr "ไฝฟ็”จ่ฟ™ไธชๅ’Œไฝ ็š„่ดฆๆˆทไปฃ็ ไธ€่ตท็™ปๅฝ•ๅ…ถไป–ๅบ”็”จใ€‚" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "็›ดๆŽฅไฝฟ็”จไฝ ่ดฆๆˆท็ป‘ๅฎš็š„็”ตๅญ้‚ฎไปถๅœฐๅ€๏ผŒๆˆ–ๆไพ›ไธ€ไธชไฝ ๆ‹ฅๆœ‰็š„ๅ…ถไป–็”ตๅญ้‚ฎไปถๅœฐๅ€๏ผŒไปฅ้˜ฒๆ—ฅๅŽ KWS ๆˆ– Bluesky ้œ€่ฆไธŽไฝ ่”็ณปใ€‚" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "็”จๆˆท" @@ -13482,7 +13503,7 @@ msgstr "็”จๆˆทๅๅช่ƒฝๅŒ…ๅซๅญ—ๆฏ๏ผˆa-z๏ผ‰ใ€ๆ•ฐๅญ—ๅŠ่ฟžๅญ—็ฌฆ๏ผˆ-๏ผ‰" #: src/screens/Login/LoginForm.tsx:305 msgid "Username or email" -msgstr "" +msgstr "็”จๆˆทๅๆˆ–็”ตๅญ้‚ฎ็ฎฑ" #: src/screens/Login/LoginForm.tsx:315 msgid "Username or email address" @@ -13510,7 +13531,7 @@ msgstr "ๆ— ๆณ•ๆŽˆไบˆ่ฎค่ฏ๏ผŒ่ฏท้‡่ฏ•ใ€‚" msgid "Verification settings" msgstr "่ฎค่ฏ่ฎพ็ฝฎ" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "่ฎค่ฏ่ฎพ็ฝฎ" @@ -13563,7 +13584,7 @@ msgstr "็Žฐๅœจ้ชŒ่ฏ" #: src/ageAssurance/components/DeviceSignalsNotice.tsx:34 #: src/ageAssurance/components/DeviceSignalsNotice.tsx:52 msgid "Verify now using KWS" -msgstr "" +msgstr "็ซ‹ๅณไฝฟ็”จ KWS ้ชŒ่ฏ" #: src/components/contacts/screens/PhoneInput.tsx:175 #: src/components/contacts/screens/VerifyNumber.tsx:217 @@ -13618,34 +13639,34 @@ msgstr "่ง†้ข‘" msgid "Video failed to process" msgstr "่ง†้ข‘ๅค„็†ๅคฑ่ดฅ" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "่ง†้ข‘ๅŠจๆ€ๆบ" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "ๆฅ่‡ช {0} ็š„่ง†้ข‘๏ผš{text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "ๆฅ่‡ช {0} ็š„่ง†้ข‘ใ€‚็‚นๅ‡ปไปฅๆ’ญๆ”พๆˆ–ๆš‚ๅœ่ง†้ข‘" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "็”ตๅญๆธธๆˆ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "่ง†้ข‘ๅทฒๆš‚ๅœ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "่ง†้ข‘ๆญฃๅœจๆ’ญๆ”พ" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "ๆ— ๆณ•ๆ‰พๅˆฐ่ง†้ข‘ใ€‚" @@ -13653,7 +13674,7 @@ msgstr "ๆ— ๆณ•ๆ‰พๅˆฐ่ง†้ข‘ใ€‚" msgid "Video settings" msgstr "่ง†้ข‘่ฎพ็ฝฎ" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "ๅทฒไธŠไผ ่ง†้ข‘" @@ -13662,17 +13683,17 @@ msgstr "ๅทฒไธŠไผ ่ง†้ข‘" msgid "Video: {0}" msgstr "่ง†้ข‘๏ผš{0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "่ง†้ข‘" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "่ง†้ข‘้•ฟๅบฆไธๅพ—่ถ…่ฟ‡ 3 ๅˆ†้’Ÿใ€‚" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "ๆŸฅ็œ‹" @@ -13691,9 +13712,9 @@ msgstr "ๆŸฅ็œ‹ {0} ็š„ๅคดๅƒ" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "ๆŸฅ็œ‹ {0} ็š„ไธชไบบ่ต„ๆ–™" @@ -13724,13 +13745,13 @@ msgstr "ๆŸฅ็œ‹ๅšๅฎขๆ–‡็ซ ไปฅ่Žทๅ–ๆ›ดๅคš่ต„่ฎฏ" msgid "View debug entry" msgstr "ๆŸฅ็œ‹่ฐƒ่ฏ•้กน็›ฎ" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "ๆŸฅ็œ‹่ฏฆๆƒ…" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "ๆŸฅ็œ‹ๅฎŒๆ•ด่ฎจ่ฎบไธฒ" @@ -13750,18 +13771,18 @@ msgstr "ๆŸฅ็œ‹ๆญค็พค็ป„ๅฏน่ฏๆ”ถๅˆฐ็š„ๅŠ ๅ…ฅ็”ณ่ฏท" msgid "View information about these labels" msgstr "ๆŸฅ็œ‹ๅ…ณไบŽๆญคๆ ‡่ฎฐ็š„่ฏฆ็ป†ไฟกๆฏ" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "ๆŸฅ็œ‹ๆ›ดๅคš" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "ๆต่งˆๆ›ดๅคš็ƒญ้—จ่ง†้ข‘" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "ๆŸฅ็œ‹ๅธ–ๆ–‡" @@ -13798,15 +13819,15 @@ msgstr "ๆŸฅ็œ‹ๆญค็พค็ป„ๅฏน่ฏ็š„้‚€่ฏท้“พๆŽฅ" msgid "View the labeling service provided by @{0}" msgstr "ๆŸฅ็œ‹็”ฑ @{0} ๆไพ›็š„ๆ ‡่ฎฐๆœๅŠกใ€‚" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "ๆŸฅ็œ‹ๆญค็”จๆˆท็š„่ฎค่ฏ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "ๆŸฅ็œ‹ๆญคๅŠจๆ€ๆบ่ขซ่ฐๅ–œๆฌข" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "ๆŸฅ็œ‹่ง†้ข‘" @@ -13831,7 +13852,7 @@ msgstr "ๆŸฅ็œ‹ไฝ ็š„ๅ†…ๅฎนๅฎกๆ ธๅˆ—่กจ" msgid "View your muted accounts" msgstr "ๆŸฅ็œ‹ไฝ ้š่—็š„่ดฆๆˆท" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "ๆŸฅ็œ‹ไฝ ็š„่ฎค่ฏ" @@ -13840,7 +13861,7 @@ msgstr "ๆŸฅ็œ‹ไฝ ็š„่ฎค่ฏ" msgid "Views full image" msgstr "ๆŸฅ็œ‹ๅฎŒๆ•ดๅ›พ็‰‡" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "่ฟ›ๅ…ฅๆฒ‰ๆตธๆจกๅผ่ง‚็œ‹่ง†้ข‘" @@ -13898,7 +13919,7 @@ msgstr "ๆ— ๆณ•ๆ‰พๅˆฐ่ฏฅๅˆ—่กจ๏ผŒๅฏ่ƒฝๅทฒ่ขซๅˆ ้™คใ€‚" #: src/screens/Login/LoginForm.tsx:348 msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." -msgstr "" +msgstr "ๆˆ‘ไปฌๆ— ๆณ•ๆ‰พๅˆฐ่ฏฅ็”จๆˆทๅๆ‰€ๅฏนๅบ”็š„่ดฆๆˆทใ€‚่ฏทๆฃ€ๆŸฅๅฆ่พ“ๅ…ฅๆญฃ็กฎ๏ผŒๆˆ–<0>ๆ‰‹ๅŠจ่ฎพ็ฝฎๆ‚จ็š„ๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†ใ€‚" #: src/screens/Hashtag.tsx:260 msgid "We couldn't find any results for that tag." @@ -13922,7 +13943,7 @@ msgstr "ๆˆ‘ไปฌ็›ฎๅ‰ๆ— ๆณ•ๅŠ ่ฝฝๆญคๅฏน่ฏ้€‰้กน" #: src/screens/Login/LoginForm.tsx:482 msgid "We couldnโ€™t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." -msgstr "" +msgstr "ๆˆ‘ไปฌๆ— ๆณ•้ชŒ่ฏไฝ ๆ‰€ๅฑž็š„ๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†ใ€‚่ฏทๆฃ€ๆŸฅไฝ ็š„็ฝ‘็ปœ่ฟžๆŽฅ๏ผŒๆˆ–<0>ๆ‰‹ๅŠจ่ฎพ็ฝฎๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†ใ€‚" #: src/components/contacts/screens/GetContacts.tsx:244 msgid "We delete hashes after matches are made" @@ -14001,7 +14022,7 @@ msgstr "ๆˆ‘ไปฌไผšๅœจๆ‰พๅˆฐไฝ ็š„ๆœ‹ๅ‹ๆ—ถๅ‘้€้€š็Ÿฅใ€‚" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "Weโ€™d love to hear about your experience testing beta features!" -msgstr "" +msgstr "ๆˆ‘ไปฌๅพˆๆƒณๅฌๅฌไฝ ไฝฟ็”จๆต‹่ฏ•ๅŠŸ่ƒฝ็š„ไฝ“้ชŒ๏ผ" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "ๆˆ‘ไปฌ้‡ๅˆฐไบ†็ฝ‘็ปœ้—ฎ้ข˜๏ผŒ่ฏทๅ†่ฏ•ไธ€ๆฌก" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "ๆˆ‘ไปฌ้‡ๅˆฐไบ†็ฝ‘็ปœ้—ฎ้ข˜๏ผŒ่ฏทๅ†่ฏ•ไธ€ๆฌก" @@ -14043,13 +14064,13 @@ msgstr "ๆˆ‘ไปฌ้‡ๅˆฐไบ†็ฝ‘็ปœ้—ฎ้ข˜๏ผŒ่ฏทๅ†่ฏ•ไธ€ๆฌก" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "ไธบไฝ ไป‹็ป Bluesky ็š„ๅ…จๆ–ฐ่ฎค่ฏๆœบๅˆถ โ€”โ€” ่ฎค่ฏๅพฝ็ซ ใ€‚" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "ๆˆ‘ไปฌ้žๅธธ้ซ˜ๅ…ดไฝ ้€‰ๆ‹ฉๅŠ ๅ…ฅๆˆ‘ไปฌ๏ผ" #: src/ageAssurance/useVerificationFlow.ts:117 msgid "We're sorry, but based on the data shared by your device, you are not old enough to access Bluesky." -msgstr "" +msgstr "ๅพˆๆŠฑๆญ‰๏ผŒๆ นๆฎไฝ ่ฎพๅค‡ๆ‰€ๆไพ›็š„ๆ•ฐๆฎ๏ผŒไฝ ๅฐšๆœช่พพๅˆฐไฝฟ็”จ Bluesky ๆ‰€้œ€็š„ๅนด้พ„ใ€‚" #: src/ageAssurance/components/NoAccessScreen.tsx:227 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:218 @@ -14064,13 +14085,15 @@ msgstr "ๅพˆๆŠฑๆญ‰๏ผŒๆˆ‘ไปฌๆ— ๆณ•่งฃๆžๆญคๅˆ—่กจใ€‚ๅฆ‚ๆžœ้—ฎ้ข˜ๆŒ็ปญๅ‘็”Ÿ๏ผŒ่ฏท msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "ๅพˆๆŠฑๆญ‰๏ผŒๆˆ‘ไปฌๆ— ๆณ•ๅŠ ่ฝฝไฝ ็š„้š่—ๅญ—่ฏๅˆ—่กจใ€‚่ฏท้‡่ฏ•ใ€‚" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." -msgstr "" +msgstr "ๅพˆๆŠฑๆญ‰๏ผŒๆ— ๆณ•ๅฎŒๆˆไฝ ็š„ๆœ็ดขใ€‚" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "ๅพˆๆŠฑๆญ‰๏ผŒๆ— ๆณ•ๅฎŒๆˆไฝ ็š„ๆœ็ดขใ€‚่ฏทๅ‡ ๅˆ†้’ŸๅŽ้‡่ฏ•ใ€‚" @@ -14078,7 +14101,7 @@ msgstr "ๅพˆๆŠฑๆญ‰๏ผŒๆ— ๆณ•ๅฎŒๆˆไฝ ็š„ๆœ็ดขใ€‚่ฏทๅ‡ ๅˆ†้’ŸๅŽ้‡่ฏ•ใ€‚" msgid "We're sorry, you cannot access this screen at this time." msgstr "ๅพˆๆŠฑๆญ‰๏ผŒไฝ ็›ฎๅ‰ๆ— ๆณ•่ฎฟ้—ฎๆญค้กต้ขใ€‚" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "ๅพˆๆŠฑๆญ‰๏ผไฝ ๅ›žๅค็š„ๅธ–ๆ–‡ๅทฒ่ขซๅˆ ้™คใ€‚" @@ -14131,10 +14154,10 @@ msgstr "ไฝ ๅธŒๆœ›ๅฆ‚ไฝ•ๅ‘ฝๅไฝ ็š„ๆ–ฐๆ‰‹ๅŒ…๏ผŸ" #. Advanced search: Example of an โ€œexact phraseโ€ search #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:285 msgid "whatโ€™s up" -msgstr "" +msgstr "ๆœ‰ไป€ไนˆๆ–ฐ้ฒœไบ‹" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "ๅ‘็”Ÿไบ†ไป€ไนˆๆ–ฐ้ฒœไบ‹๏ผŸ" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "ๅ“ชไบ›ไบบๅฏไปฅ่Žทๅพ—่ฎค่ฏ๏ผŸ" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "็ณŸ็ณ•๏ผ" @@ -14220,21 +14243,21 @@ msgstr "้œ€่ฆๅฑ่”ฝ่ฏฅ็”จๆˆทใ€็ฆปๅผ€ๅฏน่ฏ๏ผŒๆˆ–ไธค่€…ไธ€ๅนถๆ‰ง่กŒๅ—๏ผŸ" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "ๅœจๆŸฅ็œ‹ๅ…ถไป–่‰็จฟไน‹ๅ‰๏ผŒ้œ€่ฆๅ…ˆไฟๅญ˜็Žฐๆœ‰ๅ†…ๅฎนๅ—๏ผŸ" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "้œ€่ฆๆŠŠ็Žฐๆœ‰ๅ†…ๅฎนไฟๅญ˜ไธบ่‰็จฟ๏ผŒไปฅไพฟๆ—ฅๅŽ็ผ–่พ‘ๅ—๏ผŸ" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "ๆ’ฐๅ†™ไธ€็ฏ‡ๅธ–ๆ–‡" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "ๆ’ฐๅ†™ๅธ–ๆ–‡" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "ๆ’ฐๅ†™ไฝ ็š„ๅ›žๅค" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "ไฝ ๆ‰€ๅœจ็š„ๅœฐๅŒบไพๆณ•่ฆๆฑ‚ๆˆ‘ไปฌๅœจๅ…่ฎธๆ‚จไฝฟ็”จ Bluesky ๅบ”็”จไน‹ๅ‰้ชŒ่ฏไฝ ็š„ๅนด้พ„ใ€‚" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "ไฝ ๅฑ่”ฝไบ† {0}" @@ -14342,7 +14365,7 @@ msgstr "ไฝ ๅทฒๅœๆญข็›ดๆ’ญ" msgid "You are not allowed to upload videos." msgstr "ไฝ ็›ฎๅ‰ๆ— ๆณ•ไธŠไผ ่ง†้ข‘ใ€‚" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "ไฝ ่ฟ˜ๆฒกๆœ‰ๅ…ณๆณจไปปไฝ•่ดฆๆˆท" @@ -14362,7 +14385,7 @@ msgstr "ไฝ ๅทฒ่Žทๅพ—่ฎค่ฏใ€‚ไธ€ๆ—ฆไฝ ๆ›ดๆ”นๅ็งฐ๏ผŒไฝ ๅฐ†ไผšๅคฑๅŽป่ฎค่ฏ็Šถๆ€ msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "ไฝ ๅทฒ่Žทๅพ—่ฎค่ฏใ€‚ไธ€ๆ—ฆไฝ ๆ›ดๆ”น่ดฆๆˆทไปฃ็ ๏ผŒไฝ ๅฐ†ไผšๅคฑๅŽป่ฎค่ฏ็Šถๆ€ใ€‚<0>ไบ†่งฃ่ฏฆๆƒ…ใ€‚" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "ไฝ ๅฏไปฅ้šๆ—ถๅœจ่ฎพ็ฝฎโ€œๅ†…ๅฎนไธŽๅช’ไฝ“โ€ไธญ่ฐƒๆ•ดไฝ ็š„ๅ…ด่ถฃใ€‚" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "ไฝ ็Žฐๅœจๅฏไปฅไฝฟ็”จๆ–ฐๅฏ†็ ็™ปๅฝ•ใ€‚" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "ๅธ–ๆ–‡ๆœ€ๅคšๅช่ƒฝๆทปๅŠ  {MAX_GALLERY_IMAGES, plural,other {# ๅผ ๅ›พ็‰‡}}" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "ไฝ ็›ฎๅ‰ๅช่ƒฝไฟๅญ˜ๆœ€ๅคš 1000 ไธชๅญ—็ฌฆ็š„่‰็จฟใ€‚" @@ -14439,9 +14462,11 @@ msgstr "ไฝ ไป็„ถๅฏไปฅๆŸฅ็œ‹ๅฏน่ฏ่ฎฐๅฝ•๏ผŒไฝ†ๆ— ๆณ•ๅ‘้€ๆ–ฐไฟกๆฏใ€‚" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "ไฝ ๆœ€ๅคšๅฏไปฅ้€‰ๆ‹ฉ {MAX_GALLERY_IMAGES, plural,other {# ๅผ ๅ›พ็‰‡}}ใ€‚" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "ไฝ ๅฏไปฅ้šๆ—ถๅœจ่ฎพ็ฝฎ้‡Œ้‡ๆ–ฐๆ›ดๆ”นใ€‚" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "ไฝ ไธ่ƒฝๆทปๅŠ ่ถ…่ฟ‡ {EMOJI_REACTION_LIMIT, plural,one {# ไธช่กจๆƒ…็ฌฆๅทๅๅบ”}other {# ไธช่กจๆƒ…็ฌฆๅทๅๅบ”}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "ไฝ ๆš‚ๆ—ถๆ— ๆณ•ๅˆ›ๅปบ็พค็ป„ๅฏน่ฏใ€‚" @@ -14555,7 +14581,7 @@ msgstr "ไฝ ๅทฒๆˆๅŠŸ้ชŒ่ฏ็”ตๅญ้‚ฎ็ฎฑๅœฐๅ€๏ผŒ็Žฐๅœจไฝ ๅฏไปฅๅ…ณ้—ญๆญคๅฏน่ฏๆก† msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "ไฝ ๅทฒๆš‚ๆ—ถ่พพๅˆฐ่ง†้ข‘ไธŠไผ ็š„้™ๅˆถใ€‚่ฏท็จๅŽๅ†่ฏ•ใ€‚" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "ไฝ ๆœ‰ๆœชไฟๅญ˜็š„ๆ›ดๆ”น๏ผŒ้œ€่ฆไฟๅญ˜ๅ—๏ผŸ" @@ -14563,7 +14589,7 @@ msgstr "ไฝ ๆœ‰ๆœชไฟๅญ˜็š„ๆ›ดๆ”น๏ผŒ้œ€่ฆไฟๅญ˜ๅ—๏ผŸ" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "ไฝ ๆœ‰ๆœชไฟๅญ˜็š„ๆ›ดๆ”นใ€‚ๅœจๆŸฅ็œ‹ๅ…ถไป–่‰็จฟๅ‰๏ผŒ้œ€่ฆๅ…ˆไฟๅญ˜็Žฐๆœ‰ๅ†…ๅฎนๅ—๏ผŸ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "ไฝ ่ฟ˜ๆฒกๆœ‰ๅˆ›ๅปบไปปไฝ•ๆ–ฐๆ‰‹ๅŒ…๏ผ" @@ -14614,7 +14640,7 @@ msgstr "ไฝ ๆœ€ๅคšๅช่ƒฝๆทปๅŠ  {STARTER_PACK_MAX_SIZE, plural,other {{STARTER_PAC msgid "You may only add up to 3 feeds" msgstr "ไฝ ๆœ€ๅคšๅช่ƒฝๆทปๅŠ  3 ไธชๅŠจๆ€ๆบ" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "ไฝ ๅฟ…้กปๆ˜ฏๅฏน่ฏๆ‰€ๆœ‰ไบบๆ‰่ƒฝ็งป้™คๆˆๅ‘˜ใ€‚" @@ -14622,7 +14648,7 @@ msgstr "ไฝ ๅฟ…้กปๆ˜ฏๅฏน่ฏๆ‰€ๆœ‰ไบบๆ‰่ƒฝ็งป้™คๆˆๅ‘˜ใ€‚" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "ไฝ ๅฟ…้กปๅนดๆปก13ๅ‘จๅฒๆ‰่ƒฝไฝฟ็”จ Bluesky๏ผŒ้˜…่ฏปๆˆ‘ไปฌ็š„<0>ๆœๅŠกๆกๆฌพไปฅ่Žทๅ–ๆ›ดๅคš่ต„่ฎฏใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "ไฝ ๅฟ…้กป่‡ณๅฐ‘ๅ…ณๆณจ 7 ไธชไบบไปฅๅˆ›ๅปบๆ–ฐๆ‰‹ๅŒ…ใ€‚" @@ -14639,7 +14665,7 @@ msgstr "ไฝ ๅฟ…้กปๆŽˆไบˆๆƒ้™ไปฅ่ฎฟ้—ฎๅช’ไฝ“ๅ†…ๅฎนใ€‚" msgid "You need to verify your email address before you can enable email 2FA." msgstr "ไฝ ้œ€่ฆ้ชŒ่ฏไฝ ็š„็”ตๅญ้‚ฎ็ฎฑๅœฐๅ€ๆ‰่ƒฝๅฏ็”จ็”ตๅญ้‚ฎ็ฎฑไธคๆญฅ้ชŒ่ฏใ€‚" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "ไฝ ๆ˜ฏๆญคๅฏน่ฏ็š„ๆ‰€ๆœ‰่€…" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "ไฝ ๅฏ่ƒฝ้œ€่ฆ้‡ๅฏๅบ”็”จ็จ‹ๅบใ€‚" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "ไฝ ไฝœๅ‡บไบ† {0} ๅๅบ”" @@ -14667,15 +14693,15 @@ msgstr "ไฝ ๅฏน {target} ไฝœๅ‡บไบ† {0} ๅๅบ”" msgid "You recently changed your birthdate" msgstr "ไฝ ๆœ€่ฟ‘ไฟฎๆ”นไบ†ไฝ ็š„ๅ‡บ็”Ÿๆ—ฅๆœŸ" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "ไฝ ๅ›žๅคไบ†" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "ไฝ ๅ›žๅคไบ† {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "ไฝ ๅ›žๅคไบ†่‡ชๅทฑ" @@ -14715,11 +14741,11 @@ msgstr "้™ค้žๅ—ๅˆฐ้‚€่ฏท๏ผŒๅฆๅˆ™ไฝ ๅฐ†ๆ— ๆณ•้‡ๆ–ฐๅŠ ๅ…ฅใ€‚" msgid "You: {message}" msgstr "ไฝ ๏ผš{message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "ๅฝ“ไฝ ๅฎŒๆˆๅˆ›ๅปบ่ดฆๆˆทๅŽ๏ผŒไฝ ๅฐ†่‡ชๅŠจๅ…ณๆณจๅปบ่ฎฎ็š„็”จๆˆทๅ’ŒๅŠจๆ€ๆบ๏ผ" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "ๅฝ“ไฝ ๅฎŒๆˆๅˆ›ๅปบ่ดฆๆˆทๅŽ๏ผŒไฝ ๅฐ†่‡ชๅŠจๅ…ณๆณจๅปบ่ฎฎ็š„็”จๆˆท๏ผ" @@ -14747,11 +14773,11 @@ msgstr "ไฝ ๅฐ†้€š่ฟ‡่ฟ™ไบ›ๅŠจๆ€ๆบๆŽฅๆ”ถๆœ€ๆ–ฐๅŠจๆ€" #: src/ageAssurance/useVerificationFlow.ts:133 msgid "You're all set!" -msgstr "" +msgstr "ไธ€ๅˆ‡ๅฐฑ็ปช๏ผ" #: src/ageAssurance/useVerificationFlow.ts:127 msgid "You're all set! However, certain features may still be restricted until you're able to verify you're an adult." -msgstr "" +msgstr "ไธ€ๅˆ‡ๅฐฑ็ปช๏ผไธ่ฟ‡๏ผŒไธ€ไบ›ๅŠŸ่ƒฝๅฏ่ƒฝๅœจไฝ ่ƒฝ่ฏๆ˜Ž่‡ชๅทฑๅทฒๆˆๅนดไน‹ๅ‰ไปๅค„ไบŽ้™ๅˆถ็Šถๆ€ใ€‚" #: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 msgid "Youโ€™re in control" @@ -14791,7 +14817,7 @@ msgstr "ไฝ ๅทฒๅˆฐ่พพๅ†…ๅฎน็š„็ป“ๅฐพใ€‚" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ไฝ ๅทฒ็ปๆต่งˆๅฎŒๅŠจๆ€ๆบ็š„ๆ‰€ๆœ‰ๅธ–ๆ–‡ๅ•ฆ๏ผๅฏปๆ‰พไธ€ไบ›ๆ›ดๅคš็š„่ดฆๆˆทๅ…ณๆณจๅงใ€‚" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "ไฝ ๅทฒ่พพๅˆฐๆœ€ๅคง่‰็จฟไฟๅญ˜ๆ•ฐ้‡" @@ -14799,9 +14825,9 @@ msgstr "ไฝ ๅทฒ่พพๅˆฐๆœ€ๅคง่‰็จฟไฟๅญ˜ๆ•ฐ้‡" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "ไฝ ๅทฒ่พพๅˆฐ่ฏทๆฑ‚ไธŠ้™๏ผŒ่ฏท็จๅŽๅ†่ฏ•ใ€‚" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." -msgstr "" +msgstr "ไฝ ๅทฒ่พพๅˆฐ {MAX_FILTERS, plural,one {# ไธช็ญ›้€‰ๆกไปถ}other {# ไธช็ญ›้€‰ๆกไปถ}}็š„ไธŠ้™๏ผŒ่ฏ•่ฏ•ไฟฎๆ”นๆˆ–ๆ›ฟๆข้ƒจๅˆ†็ญ›้€‰ๆกไปถไปฅ็ปง็ปญใ€‚" #: src/components/FocusScope/index.tsx:88 msgid "You've reached the start of the active content." @@ -14815,11 +14841,11 @@ msgstr "ไฝ ๅทฒ่พพๅˆฐๆฏๆ—ฅไธŠไผ ่ง†้ข‘ไธŠ้™๏ผˆๆ–‡ไปถๅคชๅคง๏ผ‰" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "ไฝ ๅทฒ่พพๅˆฐๆฏๆ—ฅไธŠไผ ่ง†้ข‘ไธŠ้™๏ผˆๆ•ฐ้‡ๅคชๅคš๏ผ‰" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "ไฝ ๅทฒ็ป็œ‹ๅฎŒไบ†ๆ‰€ๆœ‰่ง†้ข‘๏ผŒๆˆ–่ฎธๆ˜ฏๆ—ถๅ€™ไผ‘ๆฏไธ€ไธ‹๏ผŸ" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "ไฝ ็š„่ดฆๆˆท" @@ -14835,11 +14861,11 @@ msgstr "ไฝ ็š„่ดฆๆˆทๅทฒ่ขซๅ†ป็ป“" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "ไฝ ็š„่ดฆๆˆทๆณจๅ†Œๆ—ถ้—ด่ฟ‡็Ÿญ๏ผŒๆš‚ๆ—ถๆ— ๆณ•ไธŠไผ ่ง†้ข‘ใ€‚่ฏท็จๅŽๅ†่ฏ•ใ€‚" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "ไฝ ็š„่ดฆๆˆทๅˆ›ๅปบๆ—ถ้—ดๅคช็Ÿญไบ†" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "่ฆๅปบ็ซ‹ๆ–ฐ็š„็พค็ป„ๅฏน่ฏ๏ผŒไฝ ็š„่ดฆๅทๅฟ…้กปๅˆ›ๅปบ่‡ณๅฐ‘ 7 ๅคฉไปฅไธŠใ€‚" @@ -14896,7 +14922,7 @@ msgstr "ไฝ ็š„็”ตๅญ้‚ฎไปถ" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "ไฝ ็š„็”ตๅญ้‚ฎ็ฎฑไผผไนŽๆ— ๆ•ˆใ€‚" @@ -14924,14 +14950,14 @@ msgstr "ไฝ ็š„ๅฎŒๆ•ด่ดฆๆˆทไปฃ็ ๅฐ†ไฟฎๆ”นไธบ <0>@{0}" #: src/screens/Login/components/HostingProviderDialog.tsx:182 msgid "Your hosting provider canโ€™t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." -msgstr "" +msgstr "ๆ— ๆณ•้€š่ฟ‡็”ตๅญ้‚ฎไปถๅœฐๅ€ๆฃ€ๆต‹ไฝ ็š„ๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†๏ผŒๅ› ๆญคๅฐ†ไฝฟ็”จ้ป˜่ฎค็š„ Bluesky ๆœๅŠกใ€‚่ฏทๆ”นไธบ่พ“ๅ…ฅไฝ ็š„็”จๆˆทๅ๏ผŒๆˆ–ๆ‰‹ๅŠจ่ฎพ็ฝฎๆ‚จ็š„ๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†ใ€‚" #: src/screens/Login/components/HostingProviderDialog.tsx:188 msgid "Your hosting provider is detected automatically from the username you enter." -msgstr "" +msgstr "ไฝ ็š„ๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†ๅฐ†ๆ นๆฎไฝ ่พ“ๅ…ฅ็š„็”จๆˆทๅ่‡ชๅŠจๆฃ€ๆต‹ใ€‚" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "ๅทฒๆ›ดๆ–ฐไฝ ็š„ๅ…ด่ถฃ๏ผ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "้€‰ๆ‹ฉๅ…ด่ถฃไธป้ข˜ๅฏไปฅๅธฎๅŠฉๆˆ‘ไปฌๆŽจ่ๆ›ดๅคšไฝ ๅ–œๆฌข็š„ๅ†…ๅฎน๏ผ" @@ -14967,11 +14993,11 @@ msgstr "ๅทฒๆˆๅŠŸๆ›ดๆ”นไฝ ็š„ๅฏ†็ ๏ผ่ฏทไฝ ไปŠๅŽไฝฟ็”จไฝ ็š„ๆ–ฐๅฏ†็ ็™ปๅฝ• Bl msgid "Your password must be at least 8 characters long." msgstr "ไฝ ่พ“ๅ…ฅ็š„ๅฏ†็ ่‡ณๅฐ‘ๅบ”ๅŒ…ๅซ 8 ไธชๅญ—็ฌฆใ€‚" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "ๅทฒๅ‘ๅธƒไฝ ็š„ๅธ–ๆ–‡" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "ๅทฒๅ‘ๅธƒไฝ ็š„ๅธ–ๆ–‡" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "ไฝ ็š„ไธป่ฆ่ฏญ่จ€" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "ไฝ ็š„ๅคดๅƒ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "ไฝ ็š„ๅคดๅƒๅ‘จๅ›ด็Žฏ็ป•็€่ฎธๅคšๅ…ถไป–ไบบ็š„ๅคดๅƒ" @@ -14992,7 +15018,7 @@ msgstr "ไฝ ็š„ๅคดๅƒๅ‘จๅ›ด็Žฏ็ป•็€่ฎธๅคšๅ…ถไป–ไบบ็š„ๅคดๅƒ" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "ๅ…ถไป– Bluesky ็”จๆˆทๅฐ†ๆ— ๆณ•็œ‹ๅˆฐไฝ ็š„ไธชไบบ่ต„ๆ–™ใ€ๅธ–ๆ–‡ใ€ๅˆ—่กจไธŽๅ…ถไป–็›ธๅ…ณไธชไบบไฟกๆฏใ€‚ไฝ ๅฏไปฅ้šๆ—ถ็™ปๅฝ•ไปฅ้‡ๆ–ฐๅฏ็”จไฝ ็š„่ดฆๆˆทใ€‚" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "ๅทฒๅ‘ๅธƒไฝ ็š„ๅ›žๅค" @@ -15005,13 +15031,13 @@ msgstr "ไฝ ็š„ไธพๆŠฅไฟกๆฏๅฐ†ๆไบค็ป™ <0>{0}ใ€‚" msgid "Your selected interests help us serve you content you care about." msgstr "ไฝ ้€‰ๆ‹ฉ็š„ๅ…ด่ถฃไธป้ข˜ๅฐ†ๅธฎๅŠฉๆˆ‘ไปฌๆไพ›ๆ›ดๅคšไฝ ๆƒณ็œ‹ๅˆฐ็š„ๅ†…ๅฎนใ€‚" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "ไฝ ็š„ๅธ–ๆ–‡ไธฒไธญๅŒ…ๅซ็ฉบ็™ฝๅธ–ๆ–‡๏ผŒ็ปง็ปญๅ‘ๅธƒๅฐ†ไผš่ทณ่ฟ‡่ฟ™ไบ›ๅ†…ๅฎน๏ผŒๅ…ถไฝ™ๅธ–ๆ–‡ไผš้‡ๆ–ฐ็ป„ๅˆๆˆๅฎŒๆ•ด็š„ๅธ–ๆ–‡ไธฒๅ‘ๅธƒใ€‚" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 msgid "Your username and password will be shared with <0>{host}. If you donโ€™t recognize this provider, double-check your username." -msgstr "" +msgstr "ไฝ ็š„็”จๆˆทๅๅ’Œๅฏ†็ ๅ…ฑไบซ็ป™ <0>{host} ใ€‚ๅฆ‚ๆžœไฝ ไธ่ฎค่ฏ†ๆญคๆ‰˜็ฎกๆœๅŠกๆไพ›ๅ•†๏ผŒ่ฏทไป”็ป†ๆฃ€ๆŸฅไฝ ็š„็”จๆˆทๅๅกซๅ†™ๆ˜ฏๅฆๆญฃ็กฎใ€‚" #: src/components/verification/VerificationsDialog.tsx:67 msgid "Your verifications" diff --git a/src/locale/locales/zh-HK/messages.po b/src/locale/locales/zh-HK/messages.po index f84c8b8daf..bbcacd8686 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Chinese Traditional, Hong Kong\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "ใ€Œ{interestsDisplayName}ใ€้กžๅˆฅ๏ผˆๅทฒๆ€้ธ๏ผ‰" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "๏ผˆๅทฒ้šฑ่—ๅฐ้Ž–ๅ˜…่จŠๆฏ๏ผ‰" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "๏ผˆๅŒ…ๅซๅตŒๅ…ฅๅ…งๅฎน๏ผ‰" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "๏ผˆๅทฒๅˆช้™ค่จŠๆฏ๏ผ‰" @@ -54,9 +54,9 @@ msgid "(invalid chat invite link)" msgstr "๏ผˆ็„กๆ•ˆๅ˜…ๅ‚พๅˆ้‚€่ซ‹้€ฃ็ต๏ผ‰" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" -msgstr "" +msgstr "๏ผˆไฝ ๅŠ ๅ…ฅๅ‰ๆ‰€ๅ‚ณ้€ๅ˜…่จŠๆฏ๏ผ‰" #: src/screens/Settings/AccountSettings.tsx:74 msgid "(no email)" @@ -103,14 +103,14 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {#ๅ€‹้˜} other {#ๅ€‹้˜}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" -msgstr "" +msgstr "{0, plural, other {ไฝ ๅ˜…ๅธ–ๆ–‡่ขซๅฅ—็”จๅ’— # ๅ€‹ๆจ™่จ˜}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" -msgstr "" +msgstr "{0, plural, other {ๅทฒๅฅ—็”จ # ๅ€‹ๆจ™่จ˜}}" #. placeholder {0}: likeCount ?? 0 #: src/screens/Post/PostLikedBy.tsx:34 @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# ไบบ่ฎšไฝข} other {# ไบบ่ฎšไฝข}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {# ๅ€‹ๆˆๅ“ก}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, other {# ๅ€‹ๆ–ฐๅŠ ๅ…ฅ็”ณ่ซ‹}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, other {# ๅ€‹ไบบ}}็•€ๅ’—ๅ€‹ {1} ๅๆ‡‰" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{1} ยท {0}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0}๏ผˆๅธณ่™Ÿ๏ผ‰" @@ -251,36 +252,13 @@ msgstr "{0} ๅทฒๅ—้‚€ๅŠ ๅ…ฅๅ‚พๅˆ" msgid "{0} and {1} added to chat" msgstr "{0} ๅŒ {1} ๅทฒๅ—้‚€ๅŠ ๅ…ฅๅ‚พๅˆ" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} ๅ€‹่ทŸ็ทŠ" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} ๅทฒๅฐ้Ž–ไฝ " @@ -324,14 +302,6 @@ msgstr "{0} ้›ข้–‹ๅ’—" msgid "{0} left the group" msgstr "{0} ้›ข้–‹ๅ’—็พฃ็ต„" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "ๅทฒ่ผธๅ…ฅ {0} ๅ€‹ๅญ—ๅ…ƒ๏ผŒๆœ€ๅคš่ผธๅ…ฅ 50 ๅ€‹ๅญ—ๅ…ƒ" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ็•€ๅ’—ๅ€‹ {1} ๅๆ‡‰" @@ -388,21 +358,6 @@ msgstr "{0}ใ€" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}ใ€{1} ๅŒ{memberCount, plural, other {ๅ…ถไป– # ไบบ}}ๅทฒๅ—้‚€ๅŠ ๅ…ฅๅ‚พๅˆ" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} ๆŽˆๆฌŠๅ’—ไฝ ้ฉ—่ญ‰" msgid "{following} following" msgstr "{following} ๅ€‹่ทŸ็ทŠ" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "้‚€่ซ‹ๅ””ๅˆฐ {handle}" @@ -698,7 +660,7 @@ msgstr "้‚€่ซ‹ๅ””ๅˆฐ {handle}" msgid "{handle} can't be messaged" msgstr "ๅ””ๅพ—ๅŒ {handle} ๅ‚ณ้€่จŠๆฏ" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "ๅ‚ณ้€ๅ””ๅˆฐ่จŠๆฏ็•€ {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# ๆขๆœช่ฎ€} other {# ๆขๆœช่ฎ€}}" msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {ๆตๅˆฐ # ๅ€‹่ฏ็ตกไบบ}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "ใ€Œ{profileName}ใ€ๅ–บ {timeAgoString}ๅ‰ๅŠ ๅ…ฅๅ’— Bluesky" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "ใ€Œ{profileName}ใ€ๅ–บ {timeAgoString}ๅ‰ไฝฟ็”จๆ–ฐๆ‰‹ๅŒ…ๅŠ ๅ…ฅๅ’— Bluesky" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, other {ๅ‰ฉ้ค˜ # ๅ€‹ๅญ—ๅ…ƒ}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} ่ฆ†ๅ’—" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} ่ฆ†ๅ’— {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} ่ฆ†ๅ’—ไฝ " @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, other {# ๅ€‹้‚€่ซ‹}}" msgid "{requestCount}+ requests" msgstr "{requestCount}+ ๅ€‹้‚€่ซ‹" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} ๅ€‹้˜้ ญๅ‰" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} ไฟ‚ๅ—ไฟกไปปๅ˜…้ฉ—่ญ‰่€…" @@ -842,13 +795,13 @@ msgstr "{userName} ๅ˜…้ฉ—่ญ‰" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {ๅ€‹่ทŸ็ทŠ} other {ๅ€‹่ทŸ็ทŠ}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {ๆฌกๅผ•็”จ}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {ๆฌก่ฝ‰็™ผ}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, other {ๆฌกๆ”ถ่—}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, other {ๅ€‹่ฎšๅฅฝ}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> ๅทฒๅฐ‡ไฝ ๅŠ ๅ…ฅ" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>็™ปๅ…ฅ<1>ๆˆ–<2>ๅปบ็ซ‹ๅธณ่™Ÿ<3><4>ๅฐฑๅฏไปฅๆตๅˆฐๆ–ฐ่žใ€้ซ”่‚ฒใ€ๆ”ฟๆฒป๏ผŒๅŒๅŸ‹ Bluesky ไธŠ้ขๅ˜…ๅคงๅฐไบ‹ใ€‚" @@ -971,7 +924,7 @@ msgstr "30 ๆ—ฅ" msgid "7 days" msgstr "7 ๆ—ฅ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "ๅ–บ Bluesky ไธŠไฝ ๅฏไปฅๆตๅˆฐไธ€็ณปๅˆ—ๅ˜…็†ฑ้–€ๅ‹•ๆ…‹ๆบ๏ผŒๅŒ…ๆ‹ฌ Newsใ€Bookskyใ€Game Devใ€Blacksky๏ผŒๅŒ Fountain Pens" @@ -988,9 +941,11 @@ msgstr "็™ผ็”Ÿ็ถฒ็ตก้Œฏ่ชค๏ผŒ่ซ‹ๆชขๆŸฅไฝ ๅ˜…็ถฒ็ตก้€ฃ็ทš็‹€ๆ…‹" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,9 +959,9 @@ msgstr "ๅทฒๅ‚ณ้€ๆ–ฐไปฃ็ขผ" msgid "A new form of verification" msgstr "ๅ…จๆ–ฐๅ˜…้ฉ—่ญ‰ๆฉŸๅˆถ" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" -msgstr "" +msgstr "ไธ€ๅ‰‡ๅฐไฝ ๅŠ ๅ…ฅไน‹ๅ‰่จŠๆฏๅ˜…ๅ›ž่ฆ†" #. Contains a post that originally appeared in English. Consider translating the post text if it makes sense in your language, and noting that the post was translated from English. #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:147 @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "ๅ‘ขๅผตไฟ‚ๅธ–ๆ–‡็ทจ่ผฏๅ™จๅ˜…ๆˆชๅœ–๏ผŒใ€Œ็™ผๅธƒใ€ๆŽฃ้š”็ฑฌๅคšๅ’—็ฒ’ๅฏซไฝใ€Œ่‰็จฟใ€ๅ˜…ๆ–ฐๆŽฃ๏ผŒไปฒๆœ‰ๅฝฉ่™น็…™่Šฑ็‰นๆ•ˆใ€‚ไธ‹ไฝŽ่ผธๅ…ฅๆก†ๅฏซไฝ๏ผšใ€Œๅ–‚๏ผŒๆ”ถๅˆฐ้ขจๆœช๏ผŸBluesky ่€Œๅฎถๆœ‰่‰็จฟๅŠŸ่ƒฝๅ–‡๏ผ๏ผ๏ผใ€ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "ๆ€้ธๅ˜…ๆ”ถไฟกไบบๆœชๆœ‰ไฟพๅ‚ณ้€ไบบ่ทŸ้šจใ€‚" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "ๅทฒ้€ๅ‡บ็”ณ่ซ‹๏ผ่ซ‹็ญ‰ๅพ…็พฃ็ต„ๆ“ๆœ‰่€…ๅฏฉ่ฆˆๅŠ ๅ…ฅ็”ณ่ซ‹ใ€‚" msgid "Accessibility" msgstr "็„ก้šœ็ค™" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "็„ก้šœ็ค™่จญๅฎš" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "ๅธณ่™Ÿๅทฒ่ขซๆธ…ๅ–ฎ้œ้Ÿณ" msgid "Account options" msgstr "ๅธณ่™Ÿ่จญๅฎš" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "ๅทฒๅพžๅฟซ้€Ÿๅญ˜ๅ–ๅบฆ็งป้™คๅธณ่™Ÿ" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "ๅธถๆœ‰ๅœ“้ฝ’่—่‰ฒๅ‰”่™Ÿๅพฝ็ซ ๅ˜…ๅธณ่™Ÿ<0><1/>ๅฏไปฅๆŽˆๆฌŠ้ฉ—่ญ‰ๅ…ถไป–ๅธณ่™Ÿใ€‚ๅ‘ขๅ•ฒๅ—ไฟกไปปๅ˜…้ฉ—่ญ‰่€…ไฟ‚็”ฑ Bluesky ๅฎ˜ๆ–นๆ‰€ๆ€ใ€‚" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "ๅ…ถไป–ไบบๅ˜…ๅ‹•ๆ…‹" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,17 +1183,17 @@ msgstr "ๆ–ฐๅขžๆ›ฟไปฃๆ–‡ๅญ—๏ผˆๅฏ้ธ๏ผ‰" msgid "Add another account" msgstr "ๅŠ ๅคšๅ€‹ๅธณ่™Ÿ" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "ๅŠ ๅคšๅฆไธ€ๆขๅธ–ๆ–‡" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "ๅŠ ๅคšๅฆไธ€ๆขๅธ–ๆ–‡ๅˆฐ่จŽ่ซ–ไธฒ" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" -msgstr "" +msgstr "ๆ–ฐๅขž็ฌฌๅ€‹ๆตๅ˜ข็ฏฉ้ธๆขไปถ" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 msgid "Add app password" @@ -1253,7 +1213,7 @@ msgstr "ๅŠ ๅ…ฅ่‡ชๅ‹•ๅŒ–ๆจ™่จ˜ๅˆฐๆญคๅธณ่™Ÿ" msgid "Add emoji reaction" msgstr "ๅŠ ๅ…ฅ Emoji ๅๆ‡‰" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "ๆ–ฐๅขž็ฏฉ้ธๆขไปถ" @@ -1338,7 +1298,7 @@ msgstr "ๅฐ‡ไฝขๅŠ ๅ…ฅๅˆฐไฝ ๅ˜…ๅ‹•ๆ…‹ๆบ" msgid "Add to lists" msgstr "ๅŠ ๅˆฐๆธ…ๅ–ฎ" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "ๅŠ ๅ…ฅๅธ–ๆ–‡ๆ”ถ่—" @@ -1400,7 +1360,7 @@ msgstr "่‰ฒๆƒ…" msgid "Adult content" msgstr "ๆˆไบบๅ…งๅฎน" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1447,7 +1407,7 @@ msgstr "ๆทจไฟ‚็”จๅนพๅˆ†้˜ๅฐฑๆ”ชๆŽ‚ๅนด้ฝก่ช่ญ‰" #: src/ageAssurance/components/NoAccessScreen.tsx:449 msgid "Age assurance only takes a few minutes." -msgstr "" +msgstr "ๆทจไฟ‚็”จๅนพๅˆ†้˜ๅฐฑๆ”ชๆŽ‚ๅนด้ฝก้ฉ—่ญ‰ใ€‚" #: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "ๆ‰€ๆœ‰" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "ๆˆๅŠŸ่ทŸๆ™’ๆ‰€ๆœ‰ๆœ‹ๅ‹๏ผ" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "ๆ‰€ๆœ‰่ชž่จ€" @@ -1491,11 +1447,6 @@ msgstr "ไฝ ๅ˜…ๅ‹•ๆ…‹ๆบๅฐ‡้กฏ็คบๆ‰€ๆœ‰่ชž่จ€ๅ˜…ๅ…งๅฎนใ€‚" msgid "All of these words" msgstr "ๆ‰€ๆœ‰ๅŒ…ๅซๅ‘ขๅ•ฒๅญ—่ฉž" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "ๆ‰€ๆœ‰ๅธ–ๆ–‡" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "ไธ‹ไฝŽไฟ‚ไฝ ๅ„ฒๅญ˜ๅ’—ๅ˜…ๅ‹•ๆ…‹ๆบใ€‚" @@ -1560,7 +1511,7 @@ msgstr "ๅ…่จฑๅ–็”จไฝ ๅ˜…็ง่จŠ" msgid "Already have a code?" msgstr "ๆœ‰ๅ’—้‡่จญ็ขผ๏ผŸ" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "ๆœ‰ๅ’—ๅธณ่™Ÿ๏ผŸ" @@ -1614,7 +1565,7 @@ msgstr "้›ป้ƒต้€ๅ’—ๅŽป {0} ๅบฆใ€‚ไฝ ๅฏไปฅๆŠ„ไฝŽ้ƒตไปถๅบฆๅ€‹้ฉ—่ญ‰็ขผ่ทŸไฝๅ–บ msgid "An error has occurred" msgstr "็™ผ็”Ÿ้Œฏ่ชค" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "็™ผ็”Ÿ้Œฏ่ชค" @@ -1631,7 +1582,7 @@ msgstr "ๆ”ž็ทŠๅปบ่ญฐๅธณ่™Ÿๅ—ฐ้™ฃ็™ผ็”Ÿ้Œฏ่ชคใ€‚" msgid "An error occurred while fetching the feed." msgstr "ๆ”ž็ทŠๅ‹•ๆ…‹ๆบๅ—ฐ้™ฃ็™ผ็”Ÿ้Œฏ่ชคใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "ๅนซๆ‰‹็ Œ็ทŠไฝ ๅ˜…ๆ–ฐๆ‰‹ๅŒ…ๅ—ฐ้™ฃ็™ผ็”Ÿ้Œฏ่ชคใ€‚ไฝฟๅ””ไฝฟ่ฉฆๅคšๆฌก๏ผŸ" @@ -1640,11 +1591,11 @@ msgstr "ๅนซๆ‰‹็ Œ็ทŠไฝ ๅ˜…ๆ–ฐๆ‰‹ๅŒ…ๅ—ฐ้™ฃ็™ผ็”Ÿ้Œฏ่ชคใ€‚ไฝฟๅ””ไฝฟ่ฉฆๅคšๆฌก๏ผŸ" msgid "An error occurred while hiding suggestion. {0}" msgstr "้šฑ่—ๅปบ่ญฐๅ—ฐ้™ฃ็™ผ็”Ÿ้Œฏ่ชคใ€‚{0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "ๆ’ˆ็ทŠๅฝฑ็‰‡ๅ—ฐ้™ฃ็™ผ็”Ÿ้Œฏ่ชคใ€‚ๅ””่ฉฒ้ฒๅ•ฒ่ฉฆๅคšๆฌกใ€‚" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "ๆ’ˆ็ทŠๅฝฑ็‰‡ๅ—ฐ้™ฃ็™ผ็”Ÿ้Œฏ่ชคใ€‚ๅ””่ฉฒ่ฉฆๅคšๆฌกใ€‚" @@ -1684,7 +1635,7 @@ msgstr "็™ผ็”Ÿ้Œฏ่ชคใ€‚{0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "ไธ€ๅผตๆ’ๅœ–๏ผŒๅฑ•็คบ็”จๆˆถ้ ญๅƒๅพž่ฏ็ตกไบบๆนงๅ…ฅๅŽป Bluesky ๆ‡‰็”จ็จ‹ๅผ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Bluesky ๅ˜…ๅนพๆขๅธ–ๆ–‡ๅ˜…ๆ’ๅœ–๏ผŒๆ—้‚Šไปฒๆœ‰่ฝ‰็™ผใ€่ฎšๅฅฝๅŒ็•™่จ€ๅ˜…ๅœ–ๆจ™" @@ -1705,17 +1656,15 @@ msgstr "้‚€่ซ‹้€ฃ็ตๅฏไปฅ็•€ไบบ็›ดๆŽฅๅŠ ๅ…ฅๅ‘ขๅ€‹็พฃ็ต„ๅ‚พๅˆใ€‚ไฝ ๅฏไปฅๆŽงๅˆถ msgid "An issue not included in these options" msgstr "ๅ•้กŒๅ””ๅ–บไธŠ้ซ˜ๅ—ฐๅ•ฒ้ธ้ …ๅบฆ" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "ๅปบ็ซ‹็พฃ็ต„ๅ‚พๅˆๅ—ฐ้™ฃๅ‡บๅ’—ๅ•้กŒ๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌกใ€‚" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "้–‹ๅง‹็พฃ็ต„ๅ‚พๅˆๅ—ฐ้™ฃๅ‡บๅ’—ๅ•้กŒ๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌกใ€‚" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "้–‹ๅ•“ๅ‚พๅˆๅ—ฐ้™ฃๅ‡บๅ’—ๅ•้กŒ" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1766,11 +1715,9 @@ msgstr "ๅŒไฝ ไป‹็ดน Bluesky ไธŠๅ˜…่ช่ญ‰ๆฉŸๅˆถ" #. Placeholder text for a date picker #: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 msgid "Any date" -msgstr "" +msgstr "ไปปไฝ•ๆ—ฅๆœŸ" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "ไปปไฝ•ไบบ" @@ -1802,7 +1749,7 @@ msgstr "่ทŸๆˆ‘ๅ˜…ไบบ" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "ไปปไฝ•ไบบ้ƒฝๅ””ๅพ—ๅ†้€้Žๆญค้€ฃ็ตๅคพๅ…ฅ็พฃ็ต„๏ผŒไฝ†ไฝ ๅฏไปฅ้šจๆ™‚ๅปบ็ซ‹ๆ–ฐๅ˜…้‚€่ซ‹้€ฃ็ตใ€‚" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1829,7 +1776,7 @@ msgstr "ๅฏ†็ขผๅ็จฑๅ””ๅพ—ๅŒ่€Œๅฎถๅ˜…ไธ€ๆจฃ" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" -msgstr "" +msgstr "ๆ‡‰็”จ็จ‹ๅผๅฏ†็ขผๅ็จฑๆทจไฟ‚็”จๅพ—ๅญ—ๆฏใ€ๆ•ธๅญ—ใ€็ฉบๆ ผใ€้€ฃๅญ—่™Ÿ๏ผˆ-๏ผ‰ๅŒๅบ•็ทš๏ผˆ_๏ผ‰" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 msgid "App password names must be at least 4 characters long" @@ -1840,7 +1787,7 @@ msgstr "ๅฏ†็ขผๅ็จฑๅฟ…้ ˆ่‡ณๅฐ‘ๆœ‰ 4 ๅ€‹ๅญ—ๅ…ƒ" msgid "App passwords" msgstr "ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ" @@ -1858,7 +1805,7 @@ msgstr "็”ณ่จดใ€Œ{0}ใ€ๆจ™่จ˜" #: src/components/moderation/ModerationDetailsDialog.tsx:159 msgid "Appeal label" -msgstr "" +msgstr "็”ณ่จดๆจ™่จ˜" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 msgid "Appeal livestream suspension" @@ -1889,10 +1836,10 @@ msgstr "ๅฐๆญคๆฑบๅฎšๆๅ‡บ็”ณ่จด" #: src/components/moderation/ModerationDetailsDialog.tsx:219 msgid "Appeal this label" -msgstr "" +msgstr "็”ณ่จดๆญคๆจ™่จ˜" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "ๅฅ—็”จ Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "ๅฐๅญ˜ๆ–ผ {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "ๅฐๅญ˜ๅ’—ๅ˜…ๅธ–ๆ–‡" @@ -1980,7 +1927,7 @@ msgstr "ไฝ ็ขบๅฎš่ฆๅ–บไฝ ๅ˜…ๅ‹•ๆ…‹ๆบๅบฆๅˆช้™คๅ‘ขๅ€‹๏ผŸ" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "ไฝ ็ขบๅฎš่ฆๆ’คๅ›ž็”ณ่ซ‹ๅŠ ๅ…ฅ {0}๏ผŸ" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "ไฝ ็ขบๅฎš่ฆๆ”พๆฃ„็™ผๅธƒๅ‘ขๆขๅธ–ๆ–‡๏ผŸ" @@ -2018,22 +1965,27 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "ๆฅตๅ…‰" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "่‡ชๅ‹•ๅŒ–ๅธณ่™Ÿ" #: src/screens/Login/components/HostingProviderDialog.tsx:165 #: src/screens/Login/components/HostingProviderDialog.tsx:167 msgid "Automatic" -msgstr "" +msgstr "่‡ชๅ‹•" #: src/screens/Settings/AccountSettings.tsx:155 #: src/screens/Settings/AccountSettings.tsx:158 msgid "Automation label" msgstr "ๆฉŸๆขฐไบบๆจ™่จ˜" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "ๆฉŸๆขฐไบบๆจ™่จ˜" @@ -2050,12 +2002,16 @@ msgstr "่‡ชๅ‹•ๆ’ญๆ”พๅฝฑ็‰‡ๅŒ GIF" msgid "Available" msgstr "็”จๅˆฐ" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2095,15 +2051,15 @@ msgstr "ๅœๆฌŠ็”จๆˆถๅ˜—่ฉฆ้€ƒ้ฟๆ‡ฒ็ฝฐ" #: src/ageAssurance/components/NoAccessScreen.tsx:184 msgid "Based on your device's location, we think you're in <0>{geolocationString}." -msgstr "" +msgstr "ๆ นๆ“šไฝ ่ฃ็ฝฎๅ˜…ไฝ็ฝฎ๏ผŒๆˆ‘ๅ“‹ไผฐไฝ ่บซ่™• <0>{geolocationString}ใ€‚" #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:236 msgid "Based on your device's location, we think you're in <0>{region}." -msgstr "" +msgstr "ๆ นๆ“šไฝ ่ฃ็ฝฎๅ˜…ไฝ็ฝฎ๏ผŒๆˆ‘ๅ“‹ไผฐไฝ ่บซ่™• <0>{region}ใ€‚" #: src/ageAssurance/components/NoAccessScreen.tsx:194 msgid "Based on your network, we think you're in <0>{geolocationString}. This estimate may be inaccurate if you're using a VPN." -msgstr "" +msgstr "ๆ นๆ“šไฝ ๅ˜…็ถฒ็ตก๏ผŒๆˆ‘ๅ“‹ไผฐไฝ ่บซ่™• <0>{geolocationString}ใ€‚่‹ฅ็„ถไฝ ็”จ็ทŠ VPN ๅ˜…่ฉฑ๏ผŒๅฏ่ƒฝๆœƒไผฐ้Œฏใ€‚" #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "ๅ–บไฝ ่ฎšๅฏซๅธ–ๆ–‡ๆˆ–ๅ›ž่ฆ†ไน‹ๅ‰๏ผŒไฝ ๅฟ…้ ˆ้ฉ—่ญ‰ไฝ ๅ˜…้›ป้ƒตๅ…ˆใ€‚" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "ๅ–บๅปบ็ซ‹ๆ–ฐๆ‰‹ๅŒ…ไน‹ๅ‰๏ผŒไฝ ๅฟ…้ ˆ้ฉ—่ญ‰ไฝ ๅ˜…้›ป้ƒตๅ…ˆใ€‚" @@ -2135,10 +2091,10 @@ msgstr "ๅ–บไฝ ๆŽฅๆ”ถ {name} ๅธ–ๆ–‡้€š็Ÿฅไน‹ๅ‰๏ผŒไฝ ๅฟ…้ ˆ้ฉ—่ญ‰ไฝ ๅ˜…้›ป้ƒตใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2116,28 @@ msgstr "่ซ‹ๅกซๅฏซไธ‹ไฝŽๆฌ„ไฝ๏ผŒไปฅ้–‹ๅง‹ๅนด้ฝก้ฉ—่ญ‰ๆต็จ‹ใ€‚" msgid "Beta Feature" msgstr "ๆธฌ่ฉฆๅŠŸ่ƒฝ" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" +msgstr "ๆธฌ่ฉฆๅŠŸ่ƒฝ" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" msgstr "" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "ๆธฌ่ฉฆๅŠŸ่ƒฝๅฏ่ƒฝๅ””็ฉฉๅฎšใ€‚้ƒจๅˆ†่ฎŠๆ›ดๅฏ่ƒฝ้œ€่ฆ้‡ๆ–ฐ่ผ‰ๅ…ฅๆ‡‰็”จ็จ‹ๅผใ€‚" #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "ๆธฌ่ฉฆๅŠŸ่ƒฝๅฏ่ƒฝๅ””็ฉฉๅฎšใ€‚้ƒจๅˆ†่ฎŠๆ›ดๅฏ่ƒฝ้œ€่ฆ้‡ๆ–ฐๅ•“ๅ‹•ๆ‡‰็”จ็จ‹ๅผใ€‚" #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2147,9 @@ msgstr "ๅ‡บไธ–ๆ—ฅๆœŸ" msgid "Birthday" msgstr "็”Ÿๆ—ฅ" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "ๅทฒ่ขซๅฐ้Ž–" msgid "Blocked accounts" msgstr "ๅทฒๅฐ้Ž–ๅธณ่™Ÿ" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "ๅทฒๅฐ้Ž–ๅ˜…ๅธณ่™Ÿ" @@ -2282,7 +2244,7 @@ msgstr "่ขซๅฐ้Ž–ๅ˜…ๅธณ่™Ÿๅ””ๅพ—ๅ–บไฝ ๅ˜…่จŽ่ซ–ไธฒๅบฆๅ›ž่ฆ†ใ€ๆๅŠไฝ ๆˆ–็”จๅ…ถ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "่ขซๅฐ้Ž–ๅ˜…ๅธณ่™Ÿๅ””ๅพ—ๅ–บไฝ ๅ˜…่จŽ่ซ–ไธฒๅบฆๅ›ž่ฆ†ใ€ๆๅŠไฝ ๆˆ–็”จๅ…ถไป–ๆ–นๅผๅŒไฝ ไบ’ๅ‹•ใ€‚ไฝ ๅ””ๆœƒ็‡ๅˆฐไฝขๅ“‹ๅ˜…ๅ…งๅฎน๏ผŒ่€Œไธ”ไฝขๅ“‹ๆœƒ้ƒฝ่ขซ้˜ปๆญข็‡ๅˆฐไฝ ๅ˜…ๅ…งๅฎนใ€‚" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ๅฐ้Ž–ๅ””ๆœƒ้˜ปๆญขๅ‘ขๅ€‹็”จๆˆถๆจ™่จ˜ไฝ ๅ˜…ๅธณ่™Ÿใ€‚" @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ็„กๆณ•็ขบ่ช่ฒผๆ–‡็™ผๅธƒๆ—ฅๆœŸๅ˜…็œŸๅฏฆๆ€งใ€‚" @@ -2330,7 +2293,7 @@ msgstr "Bluesky ไฟ‚ไธ€ๅ€‹้–‹ๆ”พๅ˜…็ถฒ็ตก๏ผŒไฝ ๅฏไปฅๅŽปๆ€ๅ…ถไป–่จ—็ฎกๆœๅ‹™ๆ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky ไฟ‚ไธ€ๅ€‹้–‹ๆ”พๅ˜…็ถฒ็ตก๏ผŒไฝ ๅฏไปฅๅŽปๆ€ๅ…ถไป–่จ—็ฎกๆœๅ‹™ๆไพ›่€…ใ€‚่‹ฅๆžœไฝ ไฟ‚ๆ–ฐๆ‰‹๏ผŒๆˆ‘ๅ“‹ๅปบ่ญฐไฝ ็”จไฝ้ ่จญๅ˜… Bluesky Social ้ธ้ …ๅ…ˆใ€‚" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky ไฟ‚่ฆๅŒๅคšๅ•ฒๅคฉๅ‹็Žฉๅ…ˆๆญฃ๏ผ" @@ -2358,7 +2321,7 @@ msgstr "Bluesky Social ๆœๅ‹™ๆขๆฌพ" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky ๅฐ‡ไฝ ๅ˜…่ฏ็ตกไบบๅ„ฒๅญ˜ๆˆๅŠ ๅฏ†่ณ‡่จŠ๏ผŒๅˆช้™ค่ฏ็ตกไบบไบฆ้ƒฝๆœƒๅณๅˆปๅˆช้™คๆญค่ณ‡่จŠใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky ๅฐ‡ๆœƒๅ–บไฝ ็คพไบค็ถฒ็ตกๅบฆๆ€ไธ€ๅ•ฒๆŽจ่–ฆๅ˜…ๅธณ่™Ÿใ€‚" @@ -2403,20 +2366,20 @@ msgstr "ๆœ€ๅคšๅฏไปฅๅŒ 50 ไฝๆœ‹ๅ‹ไธ€้ฝŠๅ‚พๅˆใ€‚" msgid "Browse custom feeds" msgstr "็€่ฆฝ่‡ช่จ‚ๅ‹•ๆ…‹ๆบ" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "็€่ฆฝๆ›ดๅคšๅธณ่™Ÿ" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "ๅ–บๆŽข็ดข้ ้ข็€่ฆฝๆ›ดๅคšๅ‹•ๆ…‹ๆบ" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "็€่ฆฝๆ›ดๅคšๅปบ่ญฐ" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "ๅ–บๆŽข็ดข้ ้ข็€่ฆฝๆ›ดๅคšๅปบ่ญฐ" @@ -2425,24 +2388,25 @@ msgstr "ๅ–บๆŽข็ดข้ ้ข็€่ฆฝๆ›ดๅคšๅปบ่ญฐ" msgid "Browse other feeds" msgstr "็€่ฆฝๅ…ถไป–ๅ‹•ๆ…‹ๆบ" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "็‡ๅ“ๅŒ {displayName} ๆœ‰ๆŒๆŽ•ๅ˜…่ฒผๆ–‡" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "็‡ๅ“็”จๅ’— {displayName} ๆจ™็ฑคๅ˜…่ฒผๆ–‡" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "็€่ฆฝๆ–ฐๆ‰‹ๅŒ… {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "็€่ฆฝ่ฉฑ้กŒ {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "็€่ฆฝ่ฉฑ้กŒ {displayName}" @@ -2461,8 +2425,8 @@ msgstr "ๅŽป่ฟ”้ฆ–้ ๆ™‚้–“่ปธ็ฒ’ๆŽฃ" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "ๅšŸ่‡ช {0}" @@ -2473,9 +2437,9 @@ msgstr "ๅšŸ่‡ช @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "ๅšŸ่‡ช <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "ๅปบ็ซ‹ๅธณ่™Ÿๅณไฟ‚่กจ็คบไฝ ๅŒๆ„<0>ๆœๅ‹™ๆขๆฌพๅŒ<1>็ง้šฑๆ”ฟ็ญ–Terms of Service." msgstr "ๅปบ็ซ‹ๅธณ่™Ÿๅณไฟ‚่กจ็คบไฝ ๅŒๆ„<0>ๆœๅ‹™ๆขๆฌพใ€‚" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "ไฝ ๆ‰€ๅปบ็ซ‹" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "็›ธๆฉŸ" @@ -2534,7 +2498,7 @@ msgstr "้œ€่ฆๅ–็”จ็›ธๆฉŸๆฌŠ้™" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "้œ€่ฆๅ–็”จ็›ธๆฉŸๆฌŠ้™" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,13 +2549,13 @@ msgstr "ๅ–ๆถˆ้‡ๆ–ฐๅ•“ๅ‹•ๅ…ผ็™ปๅ‡บ" msgid "Cancel reply" msgstr "ๅ””ๅ†่ฆ†ไฝข" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "ๅ””ๅ†ๆตๅ˜ข" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 msgid "Cancels signing in so you can check your username" -msgstr "" +msgstr "ๅ–ๆถˆ็™ปๅ…ฅไปฅไพฟไฝ ๆชขๆŸฅ็”จๆˆถๅ็จฑ" #: src/components/PostControls/index.tsx:108 #: src/components/PostControls/index.tsx:138 @@ -2620,7 +2584,7 @@ msgstr "ๆจ™็ฑค {tag}" #. Advanced search: Example of an โ€œall of these wordsโ€ search. Paired with โ€œcows pigsโ€. #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:250 msgid "cats dogs" -msgstr "" +msgstr "่ฒ“ ็‹—" #: src/components/Post/Translated/index.tsx:439 #: src/screens/Settings/components/Email2FAToggle.tsx:31 @@ -2649,7 +2613,7 @@ msgstr "่ฎŠๆ›ดๅธณ่™Ÿไปฃ็ขผ" #: src/screens/Login/LoginForm.tsx:644 msgid "Change hosting provider" -msgstr "" +msgstr "่ฎŠๆ›ด่จ—็ฎกๆœๅ‹™ๆไพ›่€…" #: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "ๆธ…ๅ–ฎๅปบ็ซ‹ๅพŒๆœƒไฟ‚ไธ€ๅ€‹็จ็ซ‹ๅ˜…ๅ‰ฏๆœฌ๏ผŒๆ–ฐๆ‰‹ๅŒ…ๆœ‰ๅ’ฉ่ฎŠๆ›ด้ƒฝๆœƒๅ””ๅฝฑ้Ÿฟๅˆฐไปฝๆธ…ๅ–ฎใ€‚" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "ๅทฒ้œ้Ÿณๅ‚พๅˆ" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "ๆตๅ””ๅˆฐๅ€‹ๅ‚พๅˆใ€‚" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "ๅ‚พๅˆ้ธ้ …" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "ๅ‚พๅˆๆ“ๆœ‰่€…ๅ””ๅฏไปฅ้›ข้–‹็พฃ็ต„ๅ‚พๅˆใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "ๅ‚ณ้€่€…ๆœชๆœ‰่ทŸ้šจ่จŠๆฏๆŽฅๆ”ถ่€…ใ€‚" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "ๅ‚พๅˆ้‚€่ซ‹ๆ”ถไปถ็ฎฑ" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "ๅ‚พๅˆ้‚€่ซ‹" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "ๅ‚พๅˆ่จญๅฎš" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "ๅทฒๅ””ๅ†้œ้Ÿณๅ‚พๅˆ" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "ๅ‚พๅˆ" @@ -2810,7 +2775,7 @@ msgstr "ๅ–บไธ‹ไฝŽ่ผธๅ…ฅๅ‚ณ้€่‡ณ <0>{currentEmail} ๅ˜…้ฉ—่ญ‰็ขผ๏ผš" #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "้ฒๅ•ฒ่‡ณ้ŽๅšŸ็‡็‡๏ผ" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2802,7 @@ msgstr "ๆ€้ธ็ถฒๅŸŸ้ฉ—่ญ‰ๆ–นๆณ•" msgid "Choose Feeds" msgstr "ๆ€้ธๅ‹•ๆ…‹ๆบ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "ๅนซๆˆ‘ๆ€" @@ -2854,7 +2819,7 @@ msgstr "ๆ€ไบบ" msgid "Choose post languages" msgstr "ๆ€้ธๅธ–ๆ–‡่ชž่จ€" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "็”จๅ‘ข้šป่‰ฒๅšไฝ ๅ˜…้ ญๅƒ่ƒŒๆ™ฏ" @@ -2869,7 +2834,7 @@ msgstr "ๆ€้ธ่ฆ้‚€่ซ‹ๅ˜…ไบบ" #: src/components/dialogs/ServerInput.tsx:134 #: src/screens/Login/components/HostingProviderDialog.tsx:155 msgid "Choose your hosting provider" -msgstr "" +msgstr "ๆ€้ธไฝ ๅ˜…่จ—็ฎกๆœๅ‹™ๆไพ›่€…" #: src/view/screens/Feeds.tsx:726 msgid "Choose your own timeline! Feeds built by the community help you find content you love." @@ -2879,7 +2844,7 @@ msgstr "่‡ช่จ‚ไฝ ่‡ชๅทฑๅ˜…ๆ™‚้–“่ปธ๏ผ็คพ็พฃๅปบ็ซ‹ๅ˜…ๅ‹•ๆ…‹ๆบๆœƒๅนซไฝ ๆตๅˆฐๅ•ฑ msgid "Choose your password" msgstr "่จญๅฎšไฝ ๅ˜…ๅฏ†็ขผ" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "่จญๅฎšไฝ ๅ˜…็”จๆˆถๅ็จฑ" @@ -2966,7 +2931,7 @@ msgstr "ๆ’ณๅ‘ขๅบฆ็‡ๅ“ๆญค็พฃ็ต„ๅ‚พๅˆๅ˜…้‚€่ซ‹้€ฃ็ต" msgid "Click to open tag menu for {0}" msgstr "ๆ’ณไฝŽๅŽปๆ‰“้–‹ {0} ๅ˜…ๆจ™็ฑค้ธๅ–ฎ" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "ๆ’ณไฝŽๅŽป่ฉฆๅคšๆฌกๅ‚ณ้€่จŠๆฏ" @@ -3003,7 +2968,7 @@ msgstr "ๆ’ณไฝŽๅŽป่ฉฆๅคšๆฌกๅ‚ณ้€่จŠๆฏ" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "ๆ’ณไฝŽๅŽป่ฉฆๅคšๆฌกๅ‚ณ้€่จŠๆฏ" msgid "Close" msgstr "้–‚" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "้–‚ๅ’—็›ฎๅ‰ๅ˜…ๅฐ่ฉฑๆก†" @@ -3047,7 +3012,7 @@ msgstr "้–‚ๅ’—ๆฉซ้ก" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "้–‚ๅ’—ๅœ–็‰‡ๆชข่ฆ–ๅ™จ" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "้–‚ๅ’—้ธๅ–ฎ" @@ -3090,7 +3055,7 @@ msgstr "้–‚ๅ’—ๅŠ ๅ…ฅ็”ณ่ซ‹้€š็Ÿฅๆฉซ้ก" msgid "Close this dialog" msgstr "้–‚ๅ‘ขๅ€‹ๅฐ่ฉฑๆก†" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "ๅˆชๅ’—ๆญก่ฟŽไป‹้ข" @@ -3098,7 +3063,7 @@ msgstr "ๅˆชๅ’—ๆญก่ฟŽไป‹้ข" msgid "Closes password update alert" msgstr "้–‚ๅ’—ๅฏ†็ขผๆ›ดๆ–ฐ่ญฆ็คบ" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "้–‚ๅ’—ๅธ–ๆ–‡็ทจ่ผฏๅ™จๅ…ผๆฃ„็ฝฎ่‰็จฟ" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "้ก่‰ฒ" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "้ก่‰ฒๆจกๅผ" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "ๆผซ็•ซ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "็คพ็พฃๆบ–ๅ‰‡" @@ -3141,7 +3106,7 @@ msgstr "็คพ็พฃๆบ–ๅ‰‡" msgid "Complete onboarding and start using your account" msgstr "ๆ”ชๆŽ‚ๅ…ฅ้–€ๆŒ‡ๅฐŽ่ทŸไฝ้–‹ๅง‹ไฝฟ็”จไฝ ๅ˜…ๅธณ่™Ÿ" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "ๅฎŒๆˆๅ‘ขๅ€‹ๆŒ‘ๆˆฐ" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "ๆ’ฐๅฏซๆ–ฐๅธ–ๆ–‡" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "ๆ’ฐๅฏซๆœ€ๅคš {0, plural,other {# ๅ€‹ๅญ—ๅ…ƒ}}ๅ˜…ๅธ–ๆ–‡" @@ -3160,11 +3125,11 @@ msgstr "ๆ’ฐๅฏซๆœ€ๅคš {0, plural,other {# ๅ€‹ๅญ—ๅ…ƒ}}ๅ˜…ๅธ–ๆ–‡" msgid "Compose reply" msgstr "ๆ’ฐๅฏซๅ›ž่ฆ†" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "ๅฃ“็ธฎ็ทŠ GIFโ€ฆโ€ฆ" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "ๅฃ“็ธฎ็ทŠๆข็‰‡โ€ฆโ€ฆ" @@ -3199,12 +3164,12 @@ msgstr "้€ฃ็ทŠ็ทšๅˆฐๆœๅ‹™โ€ฆโ€ฆ" #: src/screens/Login/LoginForm.tsx:542 msgid "Connecting to serviceโ€ฆ" -msgstr "" +msgstr "้€ฃ็ทŠ็ทšๅˆฐๆœๅ‹™โ€ฆโ€ฆ" #: src/screens/Login/ForgotPasswordForm.tsx:138 #: src/screens/Login/LoginForm.tsx:548 msgid "Connectingโ€ฆ" -msgstr "" +msgstr "้€ฃ็ทŠ็ทšโ€ฆโ€ฆ" #: src/ageAssurance/components/RedirectOverlay.tsx:297 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "่ฏ็ตกๆˆ‘ๅ“‹ๅ˜…ๆ”ฏๆดๅœ˜้šŠ" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "่ฏ็ตกๆ”ฏๆด" @@ -3253,7 +3218,7 @@ msgstr "ๅ…งๅฎนๅŒๅช’้ซ”" msgid "Content and media" msgstr "ๅ…งๅฎนๅŒๅช’้ซ”" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "ๅ…งๅฎนๅŒๅช’้ซ”" @@ -3265,10 +3230,6 @@ msgstr "ๅทฒๅฐ้Ž–ๅ…งๅฎน" msgid "Content filters" msgstr "ๅ…งๅฎน็ฏฉ้ธๅ™จ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "ๆˆ‘ๅ“‹็ฒพ้ธๅ’—ๅ•ฒๅ–บๅ””ๅŒ็คพไบค็ถฒ็ตกๆตๅˆฐ๏ผŒๅฏ่ƒฝๆœƒๅ•ฑไฝ ๅฟƒๆฐดๅ˜…ๅ…งๅฎนใ€‚" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "ๅ…งๅฎน่ชž่จ€" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "้ผ“ๅนๆˆ–ๆๅ€ก่‡ชๆฎ˜ๅ…งๅฎน" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "ๅ…งๅฎน่ญฆๅ‘Š" msgid "Content warnings" msgstr "ๅ…งๅฎน่ญฆๅ‘Š" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "ๅ…งๅฎน้ธๅ–ฎ่ƒŒๆ™ฏ๏ผŒๆ’ณไฝŽๅŽป้–‚ๅ’—้ธๅ–ฎใ€‚" @@ -3302,7 +3263,7 @@ msgstr "ๅ…งๅฎน้ธๅ–ฎ่ƒŒๆ™ฏ๏ผŒๆ’ณไฝŽๅŽป้–‚ๅ’—้ธๅ–ฎใ€‚" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3315,7 +3276,7 @@ msgstr "็”จ {0} ่บซไปฝ็นผ็บŒ (็›ฎๅ‰ๅทฒ็™ปๅ…ฅ)" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 msgid "Continue signing in" -msgstr "" +msgstr "็นผ็บŒ็™ปๅ…ฅ" #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 msgid "Continue thread" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "็นผ็บŒๆ’ˆๅ•ฒ่จŽ่ซ–ไธฒโ€ฆโ€ฆ" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "็นผ็บŒ่จญๅฎš็พฃ็ต„ๅ็จฑ" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "ๆตๅ””ๅˆฐๅฐ่ฉฑใ€‚" msgid "Copied build version to clipboard" msgstr "ๅทฒ่ค‡่ฃฝ็ต„ๅปบ็‰ˆๆœฌ่™Ÿๅˆฐๅ‰ช่ฒผ็ฐฟ" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "ๅทฒ่ค‡่ฃฝ้€ฃ็ตๅˆฐๅ‰ช่ฒผ็ฐฟ" @@ -3376,7 +3337,7 @@ msgstr "ๅทฒ่ค‡่ฃฝ้€ฃ็ตๅˆฐๅ‰ช่ฒผ็ฐฟ" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "่ค‡่ฃฝๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ" msgid "Copy at:// URI" msgstr "่ค‡่ฃฝ at:// ้€ฃ็ต" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "่ค‡่ฃฝ็™ผๅธƒ่€… DID" @@ -3449,10 +3410,10 @@ msgstr "่ค‡่ฃฝ้€ฃ็ต" msgid "Copy link to list" msgstr "่ค‡่ฃฝๆธ…ๅ–ฎ้€ฃ็ต" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "่ค‡่ฃฝ่ฒผๆ–‡้€ฃ็ต" @@ -3470,8 +3431,8 @@ msgstr "่ค‡่ฃฝๆ–ฐๆ‰‹ๅŒ…้€ฃ็ต" msgid "Copy message text" msgstr "่ค‡่ฃฝ่จŠๆฏๆ–‡ๅญ—" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "่ค‡่ฃฝ่ฒผๆ–‡ at:// ้€ฃ็ต" @@ -3490,7 +3451,7 @@ msgstr "่ค‡่ฃฝ TXT ่จ˜้Œ„ๅ€ผ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "็‰ˆๆฌŠๆ”ฟ็ญ–" @@ -3540,11 +3501,11 @@ msgstr "่ทŸๅ””ๅˆฐๆ‰€ๆœ‰็ขบ่ชๅ˜…่ฏ็ตกไบบใ€‚{0}" msgid "Could not leave chat" msgstr "้›ข้–‹ๅ””ๅˆฐๅ‘ขๅบฆๅ˜…ๅ‚พๅˆ" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "้›ข้–‹ๅ””ๅˆฐๅ‘ขๅบฆๅ˜…ๅ‚พๅˆใ€‚" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "ๆ’ˆๅ””ๅˆฐๅ‹•ๆ…‹ๆบ" @@ -3562,7 +3523,7 @@ msgstr "ๆ’ˆๅ””ๅˆฐๅ€‹ไบบๆช”ๆกˆ" msgid "Could not mute chat" msgstr "้œ้Ÿณๅ””ๅˆฐๅฐ่ฉฑ" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "็งป้™คๅ””ๅˆฐๆˆๅ“กใ€‚" @@ -3606,8 +3567,8 @@ msgstr "็‰› ่ฑฌ" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "ๅปบ็ซ‹" @@ -3624,26 +3585,26 @@ msgstr "ๅพžๅ‘ขๅ€‹ๆ–ฐๆ‰‹ๅŒ…ๅปบ็ซ‹ๆธ…ๅ–ฎ" msgid "Create a QR code for a starter pack" msgstr "ๅนซๆ–ฐๆ‰‹ๅŒ…ๅปบ็ซ‹ QR Code" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "ๅปบ็ซ‹ไธ€ๅ€‹ๆ–ฐๆ‰‹ๅŒ…" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "ๅปบ็ซ‹ๆ–ฐๆ‰‹ๅŒ…" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "ๅนซๆˆ‘ๅปบ็ซ‹ไธ€ๅ€‹ๆ–ฐๆ‰‹ๅŒ…" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "ๅปบ็ซ‹ๅธณ่™Ÿ" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "ๅปบ็ซ‹ไธ€ๅ€‹ๅธณ่™Ÿ" @@ -3666,15 +3627,15 @@ msgstr "ๅปบ็ซ‹ไธ€ๅ€‹ๅธณ่™Ÿ" msgid "Create an account without using this starter pack" msgstr "ๅ””็”จๅ‘ขๅ€‹ๆ–ฐๆ‰‹ๅŒ…่จปๅ†Šๅธณ่™Ÿ" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "ๆˆ–ๅปบ็ซ‹ไธ€ๅ€‹้ ญๅƒ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "ๅปบ็ซ‹ๅคšไธ€ๅ€‹" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "ๅปบ็ซ‹็พฃ็ต„ๅ‚พๅˆ" @@ -3741,9 +3702,9 @@ msgstr "ๆ–‡ๅŒ–" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "็›ฎๅ‰ๅ˜…ๆธฌ่ฉฆๅŠŸ่ƒฝ" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "็›ฎๅ‰ๅ˜…ๅ‚พๅˆ" @@ -3770,8 +3731,8 @@ msgstr "ๅฑ้šช็‰ฉ่ณชๆˆ–่—ฅ็‰ฉๆฟซ็”จ" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "ๆทฑ่‰ฒ" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "ๆทฑ่‰ฒ" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "ๆทฑ่‰ฒไธป้กŒ" @@ -3814,7 +3775,7 @@ msgstr "ๆ‹’็ต•ๆญคๅปบ่ญฐ่ชž่จ€" msgid "Deepfake adult content" msgstr "Deepfake ๆˆไบบๅ…งๅฎน" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "้ ่จญ" @@ -3894,7 +3855,7 @@ msgstr "ๅˆช้™คๆˆ‘ๅ˜…ๅธณ่™Ÿ" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "ๅˆช้™คๅธ–ๆ–‡" @@ -3986,9 +3947,9 @@ msgstr "ๅฐ่ฉฑๆก†๏ผš่ชฟๆ•ด้‚Šๅ•ฒไบบๅฏไปฅๅ–บๅ‘ขๆขๅธ–ๆ–‡ๅบฆไบ’ๅ‹•" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 msgid "Dialog: Set search filters" -msgstr "" +msgstr "ๅฐ่ฉฑๆก†๏ผš่จญๅฎšๆตๅ˜ข็ฏฉ้ธๆขไปถ" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "ๆ˜ๆš—" @@ -4002,7 +3963,7 @@ msgstr "ๅœ็”จ" msgid "Disable 2FA" msgstr "ๅœ็”จ้›™้‡้ฉ—่ญ‰" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "้—œ้–‰ๅญ—ๅน•" @@ -4045,9 +4006,9 @@ msgstr "ๅœ็”จ" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "ๆฃ„็ฝฎ" msgid "Discard changes?" msgstr "ไฟ‚ๅ’ช่ฆๆ”พๆฃ„่ฎŠๆ›ด๏ผŸ" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "ไฟ‚ๅ’ช่ฆๆฃ„็ฝฎไปฝ่‰็จฟ๏ผŸ" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "ไฟ‚ๅ’ช่ฆๆ”พๆฃ„็™ผๅธƒ๏ผŸ" @@ -4079,6 +4040,10 @@ msgstr "ไธญๆ–ท้€ฃ็ต Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "้˜ปๆญขๅ…ถไป– App ๅ‘ๆœช็™ปๅ…ฅๅ˜…็”จๆˆถ้กฏ็คบๆˆ‘ๅ˜…ๅธณ่™Ÿ" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "้˜ปๆญขๅ…ถไป– App ๅ‘ๆœช็™ปๅ…ฅๅ˜…็”จๆˆถ้กฏ็คบๆˆ‘ๅ˜…ๅธณ่™Ÿ" msgid "Discover new custom feeds" msgstr "็™ผๆŽ˜ๆ–ฐๅ˜…่‡ช่จ‚ๅ‹•ๆ…‹ๆบ" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "็™ผๆŽ˜ๆ–ฐๅ˜…ๅ‹•ๆ…‹ๆบ" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "็™ผๆŽ˜ๆ–ฐๅ˜…ๅ‹•ๆ…‹ๆบ" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "่ทณ้Ž" @@ -4103,28 +4064,28 @@ msgstr "่ทณ้Ž" msgid "Dismiss banner" msgstr "ๅฟฝ็•ฅๆ็คบ" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "่ทณ้Ž้Œฏ่ชค" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "่ทณ้Žๅ…ฅ้–€ๆŒ‡ๅ—" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "ๅ””ๅ•ฑๅฟƒๆฐด" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "้–‚ๅ’—็›ดๆ’ญๆดปๅ‹•ๆฉซๅน…" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "ๅฟฝ็•ฅๆญค้ƒจๅˆ†" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "ๅฟฝ็•ฅๆญคๅปบ่ญฐ" @@ -4142,7 +4103,7 @@ msgstr "้กฏ็คบๅคงๅ•ฒๅ˜…ๆ›ฟไปฃๆ–‡ๅญ—ๆจ™่ชŒ" msgid "Display name" msgstr "ๅ็จฑ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "้ ้›ขๆ’ฉไบคๅ—Œ่€…ๅŒๆจ™้กŒ้ปจใ€‚ๆต็œžๆญฃๅœจไนŽๅ˜…ไบบ๏ผŒๅ‚พ็œžๆญฃ้—œๅฟƒๅ•ฒไบ‹ใ€‚" @@ -4205,8 +4166,8 @@ msgstr "ๅ””ไฝฟ้ฉš๏ผไฝ ๆ‰€ๆœ‰็พๅญ˜ๅ˜…่จŠๆฏๅŒ่จญๅฎš็ถ“ๅทฒๅ„ฒๅญ˜๏ผŒๅช่ฆ้ฉ—่ญ‰ #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "ๅ””ไฝฟ้ฉš๏ผไฝ ๆ‰€ๆœ‰็พๅญ˜ๅ˜…่จŠๆฏๅŒ่จญๅฎš็ถ“ๅทฒๅ„ฒๅญ˜๏ผŒๅช่ฆ้ฉ—่ญ‰ msgid "Done" msgstr "ๆ”ชๆŽ‚" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "ๆ’ณๅ…ฉๅ“ๆˆ–ๆ’ณไฝ่จŠๆฏๅŽปๅŠ ๅ…ฅๅๆ‡‰" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "ๆ’ณๅ…ฉๅ“้–‚ๅ’—ๅ‘ขๅ€‹ๅฐ่ฉฑๆก†" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "ๆ’ณๅ…ฉๅ“่ฎšไฝข" @@ -4328,6 +4289,7 @@ msgstr "้ฃฒ้ฃŸๅคฑ่ชฟ" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "็ทจ่ผฏๅœ–็‰‡" msgid "Edit interaction settings" msgstr "็ทจ่ผฏไบ’ๅ‹•่จญๅฎš" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "็ทจ่ผฏๅฟƒๆฐดไธป้กŒ" @@ -4397,7 +4359,7 @@ msgstr "็ทจ่ผฏ็›ดๆ’ญ็‹€ๆ…‹" msgid "Edit moderation list" msgstr "็ทจ่ผฏๅ…งๅฎนๅฏฉ่ฆˆๆธ…ๅ–ฎ" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "็ทจ่ผฏๆˆ‘ๅ˜…ๅ‹•ๆ…‹ๆบ" @@ -4406,6 +4368,11 @@ msgstr "็ทจ่ผฏๆˆ‘ๅ˜…ๅ‹•ๆ…‹ๆบ" msgid "Edit name" msgstr "็ทจ่ผฏๅ็จฑ" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "็ทจ่ผฏ็”จๆˆถ" @@ -4444,7 +4411,7 @@ msgstr "็ทจ่ผฏ็”จๆˆถๆธ…ๅ–ฎ" msgid "Edit who can reply" msgstr "่ชฟๆ•ด้‚Šๅ•ฒไบบๅฏไปฅๅ›ž่ฆ†" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "็ทจ่ผฏไฝ ๅ˜…ๆ–ฐๆ‰‹ๅŒ…" @@ -4500,8 +4467,8 @@ msgstr "ๅตŒๅ…ฅ HTML ็จ‹ๅผ็ขผ" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "ๅตŒๅ…ฅๅธ–ๆ–‡" @@ -4509,7 +4476,7 @@ msgstr "ๅตŒๅ…ฅๅธ–ๆ–‡" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "ๅฐ‡ๅ‘ขๆขๅธ–ๆ–‡ๅตŒๅ…ฅๅˆฐไฝ ๅ˜…็ถฒ็ซ™ๅ˜…่ฉฑ๏ผŒๆทจไฟ‚้œ€่ฆ่ค‡่ฃฝไธ‹ไฝŽ็จ‹ๅผ็ขผ็‰‡ๆฎต๏ผŒ่ทŸไฝๅฐ‡ไฝข่ฒผๅˆฐ่ฝไฝ ็ถฒ็ซ™ๅ˜… HTML ็จ‹ๅผ็ขผๅบฆใ€‚" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "ๅตŒๅ…ฅๅผๅฝฑ็‰‡ๆ’ญๆ”พๅ™จ" @@ -4531,9 +4498,9 @@ msgstr "ๅ•“็”จๆˆไบบๅ…งๅฎน" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "ๅ•“็”จๆธฌ่ฉฆๅŠŸ่ƒฝ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "ๅ•“็”จๅญ—ๅน•" @@ -4550,12 +4517,13 @@ msgstr "ๅ•“็”จๅค–้ƒจๅช’้ซ”" msgid "Enable media players for" msgstr "ๅ•“็”จๅช’้ซ”ๆ’ญๆ”พๅ™จ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "ๅŽปๅˆฐๆญคๅธณ่™Ÿๅ˜…ๅ€‹ไบบๆช”ๆกˆ๏ผŒๆ’ณ<0>้˜ไป”ๅœ–ๆจ™๏ผŒๅณๅฏๆ”ถๅˆฐ่ฉฒๅธณ่™Ÿๅ‹•ๆ…‹้€š็Ÿฅ<1/>ใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "ๅ•“็”จๆŽจๆ’ญ้€š็Ÿฅ" @@ -4581,7 +4549,7 @@ msgstr "ๅ–บไฝ ใ€ŒDiscoverใ€ๅ‹•ๆ…‹ๆบๅบฆๅ•“็”จๆ™‚่ˆˆๅฝฑ็‰‡" msgid "Enabled" msgstr "ๅ•“็”จ" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "็‡ๆ™’ๅ†‡ๅ˜ขๅ–‡" @@ -4608,7 +4576,7 @@ msgstr "่ผธๅ…ฅๅญ—่ฉžๆˆ–ๆจ™็ฑค" msgid "Enter code" msgstr "่ผธๅ…ฅไปฃ็ขผ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "้€ฒๅ…ฅๅ…จ่žขๅน•" @@ -4650,11 +4618,11 @@ msgstr "่ผธๅ…ฅไฝ ๅ˜…็”จๆˆถๅ็จฑๅŒๅฏ†็ขผ" msgid "Enters full screen" msgstr "้€ฒๅ…ฅๅ…จ่žขๅน•" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "ๅจ›ๆจ‚" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "้Œฏ่ชค" @@ -4684,7 +4652,7 @@ msgstr "ๅ„ฒๅญ˜ๆช”ๆกˆๅ—ฐ้™ฃ็™ผ็”Ÿ้Œฏ่ชค" msgid "Error receiving captcha response." msgstr "ๆŽฅๆ”ถ CAPTCHA ๅ›ž่ฆ†ๅ—ฐ้™ฃ็™ผ็”Ÿ้Œฏ่ชคใ€‚" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "้Œฏ่ชค๏ผš{error}" @@ -4696,8 +4664,8 @@ msgstr "ๆ‰€ๆœ‰ไบบ้ƒฝๅฏไปฅๅ›ž่ฆ†" msgid "Everybody can reply to this post." msgstr "ๆ‰€ๆœ‰ไบบ้ƒฝๅฏไปฅๅ›ž่ฆ†ๅ‘ขๆขๅธ–ๆ–‡ใ€‚" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "ๆ‰€ๆœ‰ไบบ" @@ -4711,14 +4679,14 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "ๆ‰€ๆœ‰ไบบ" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "ๅ…ถไป–ๅ…งๅฎน" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 msgid "Everything look right?" -msgstr "" +msgstr "็ขบๅฎšไธ€ๅˆ‡ๅ•ฑๆ™’๏ผŸ" #. Advanced search filter #. Advanced search filter @@ -4738,7 +4706,7 @@ msgstr "ๆŽ’้™คไฝ ่ทŸๅ˜…็”จๆˆถ" msgid "Excludes users you follow" msgstr "ๆŽ’้™คไฝ ่ทŸๅ˜…็”จๆˆถ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "้›ข้–‹ๅ…จ่žขๅน•" @@ -4755,11 +4723,11 @@ msgstr "ๅฑ•้–‹็”จๆˆถๆธ…ๅ–ฎ" msgid "Expand or collapse the full post you are replying to" msgstr "ๅฑ•้–‹ๆˆ–ๆ‘บ็–Šไฝ ่ฆ†็ทŠๅ˜…ๅฎŒๆ•ดๅธ–ๆ–‡" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "ๅฑ•้–‹ๅธ–ๆ–‡ๆ–‡ๅญ—" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "ๅฑ•้–‹ๆˆ–ๆ‘บ็–Šๅธ–ๆ–‡ๆ–‡ๅญ—" @@ -4802,15 +4770,15 @@ msgstr "่ก€่…ฅใ€ๆšด้œฒๆˆ–็ตๅฅ‡็ญ‰ๅ…ถไป–ๅฏ่ƒฝไปคไบบๅๆ„Ÿๅ˜…ๅช’้ซ”ๅ…งๅฎนใ€‚" msgid "Explicit sexual images." msgstr "ๆ‰“ๅคง่ตค่‚‹ๅ˜…้นนๆบผ็›ธใ€‚" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "ๆŽข็ดข" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "ๆŽข็ดขๆ‡‰็”จ็จ‹ๅผ" @@ -4844,7 +4812,7 @@ msgstr "ๅค–้ƒจๅช’้ซ”" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ๅค–้ƒจๅช’้ซ”็ถฒ็ซ™ๅฏ่ƒฝๆœƒๆ”žไฝ ๅŒไฝ ้ƒจ่ฃ็ฝฎๅ•ฒ่ณ‡่จŠใ€‚้™ค้žไฝ ๆ’ณๅ’—ใ€Œๆ’ญๆ”พใ€ๆŽฃ๏ผŒๅฆๅ‰‡ๅ””ๆœƒๅ‚ณ้€ๆˆ–่ฆๆฑ‚็”จไปปไฝ•่ณ‡ๆ–™ๅŽปๅˆฐๅค–้ƒจๅช’้ซ”็ถฒ็ซ™ๅบฆใ€‚" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "ๅค–้ƒจๅช’้ซ”ๅๅฅฝ่จญๅฎš" @@ -4886,7 +4854,7 @@ msgstr "ๆ”นๅ””ๅˆฐๅธณ่™Ÿไปฃ็ขผ๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌกใ€‚" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "่ค‡่ฃฝๅ””ๅˆฐ้€ฃ็ต" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "้›ข้–‹ๅ””ๅˆฐ็พฃ็ต„ๅ‚พๅˆ" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "ๆ’ˆๅ””ๅˆฐๅฐ่ฉฑ" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "ๆ’ˆๅ””ๅˆฐๅ‹•ๆ…‹ๆบ" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "ๆ’ˆๅ””ๅˆฐๅ‹•ๆ…‹ๆบๅๅฅฝ่จญๅฎš" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "ๆ’ˆๅ””ๅˆฐ้€š็Ÿฅ่จญๅฎšใ€‚" @@ -5012,14 +4981,14 @@ msgstr "ๆ’ˆๅ””ๅˆฐๅๅฅฝ่จญๅฎšใ€‚" msgid "Failed to load profiles" msgstr "ๆ’ˆๅ””ๅˆฐๅ€‹ไบบๆช”ๆกˆ" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "ๆ’ˆๅ””ๅˆฐๅปบ่ญฐๅ˜…ๅ‹•ๆ…‹ๆบ" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "ๆ’ˆๅ””ๅˆฐๅปบ่ญฐไฝ ่ทŸๅ˜…ไบบ" @@ -5027,12 +4996,12 @@ msgstr "ๆ’ˆๅ””ๅˆฐๅปบ่ญฐไฝ ่ทŸๅ˜…ไบบ" msgid "Failed to lock group chat" msgstr "้Ž–ๅฎšๅ””ๅˆฐ้‚€่ซ‹้€ฃ็ต" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "ๆจ™่จ˜ๅ””ๅˆฐๆ‰€ๆœ‰ๅ‚พๅˆๅšๅทฒ่ฎ€" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "ๆ’คๅ›žๅ””ๅˆฐไฝ ๅ˜…็”ณ่ซ‹๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌกใ€‚" msgid "Failed to resolve location. Please try again." msgstr "ๅ–็”จๅ””ๅˆฐไฝ็ฝฎ่ณ‡่จŠ๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌกใ€‚" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "ๅญ˜ๅ„ฒๅ””ๅˆฐ่‰็จฟ" @@ -5191,7 +5160,7 @@ msgstr "่™›ๅ‡ๅธณ่™Ÿๆˆ–ๆฉŸๆขฐไบบ" msgid "False information about elections" msgstr "ๆ•ฃๆ’ญ้ธๆ“ง็›ธ้—œ่™›ๅ‡่ณ‡่จŠ" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "ๅ‹•ๆ…‹ๆบ" @@ -5212,7 +5181,7 @@ msgstr "ๅ‹•ๆ…‹ๆบๅปบ็ซ‹่€…" msgid "Feed identifier" msgstr "ๅ‹•ๆ…‹ๆบ ID" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "ๅ‹•ๆ…‹ๆบ้ธๅ–ฎ" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "ๅทฒๆไบคๆ„่ฆ‹ๅˆฐๅ‹•ๆ…‹ๆบ็ถญ่ญท่€…" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "ๅทฒๆ›ดๆ–ฐๅ‹•ๆ…‹ๆบ๏ผ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "ๆˆ‘ๅ“‹่ฆบๅพ—ๅ‘ขๅ•ฒๅ‹•ๆ…‹ๆบๅฏ่ƒฝๆœƒๅ•ฑไฝ ๅฟƒๆฐดใ€‚" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "ๅ–ๅพ—ๆ›ดๆ–ฐ" @@ -5273,34 +5238,22 @@ msgstr "ๅ–ๅพ—ๆ›ดๆ–ฐ" msgid "File saved successfully!" msgstr "ๆช”ๆกˆๅ„ฒๅญ˜ๆˆๅŠŸ๏ผ" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "ๆŒ‰็™ผๅธƒ่€…็ฏฉ้ธ" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "ๆŒ‰็™ผๅธƒ่€…็ฏฉ้ธ๏ผˆ็›ฎๅ‰๏ผš{currentLabel}๏ผ‰" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "ๆŒ‰ๅช’้ซ”็ฏฉ้ธ" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "ๆŒ‰ๅช’้ซ”็ฏฉ้ธ๏ผˆ็›ฎๅ‰๏ผš{currentLabel}๏ผ‰" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "ๅ–บๅ‹•ๆ…‹ๆบๅบฆ็ฏฉ้ธ" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "ๆŒ‰่ชž่จ€็ฏฉ้ธๅŽปๆต" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "ๆŒ‰่ชž่จ€็ฏฉ้ธๅŽปๆต๏ผˆ็›ฎๅ‰๏ผš{currentLanguageLabel}๏ผ‰" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "็”จ {0} ็ฏฉ้ธๆญคๆตๅ˜ข็ตๆžœ" msgid "Filter who can opt to receive notifications for your activity" msgstr "็ฏฉ้ธ้‚Šๅ€‹ๅฏไปฅ้ธๆ“‡ๆŽฅๆ”ถไฝ ๅ˜…ๅ‹•ๆ…‹้€š็Ÿฅ" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "็ฏฉ้ธไฝ ๆƒณๆŽฅๆ”ถๅ˜…้€š็Ÿฅไพ†ๆบ" @@ -5318,7 +5271,7 @@ msgstr "็ฏฉ้ธไฝ ๆƒณๆŽฅๆ”ถๅ˜…้€š็Ÿฅไพ†ๆบ" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 msgctxt "search" msgid "Filters" -msgstr "" +msgstr "็ฏฉ้ธๅ™จ" #: src/screens/Onboarding/StepFinished/index.tsx:335 msgid "Finalizing" @@ -5352,8 +5305,8 @@ msgstr "ๅŽป่ทŸๆ›ดๅคšๅธณ่™Ÿ" msgid "Find and invite friends" msgstr "ๅฐ‹ๆ‰พๅŒ้‚€่ซ‹ๆœ‹ๅ‹" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "ๅฐ‹ๆ‰พ่ฏ็ตกไบบ" @@ -5387,7 +5340,7 @@ msgstr "ๅฐ‹ๆ‰พไฝ ๅ˜…ๆœ‹ๅ‹" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "้€้Ž้ฉ—่ญ‰ไฝ ๅ˜…้›ป่ฉฑ่™Ÿ็ขผๅ…ผๅŒน้…่ฏ็ตกไบบ๏ผŒๅณๅฏๅฐ‹ๆ‰พไฝ  Bluesky ไธŠๅ˜…ๆœ‹ๅ‹ใ€‚ๆˆ‘ๅ“‹ไฟ่ญทไฝ ๅ˜…่ณ‡ๆ–™๏ผŒๅพŒ็บŒๆ“ไฝœไฝ ่ฉฑไบ‹ใ€‚<0>ๆƒณ็Ÿฅๅคšๅ•ฒ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "ๆตๅˆฐๅŒ่ฒๅŒๆฐฃๅ˜…ไบบ" @@ -5429,7 +5382,7 @@ msgstr "่š็„ฆๆตๅ˜ขๆฌ„ไฝ" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "่ทŸ {0}" msgid "Follow {displayName}" msgstr "่ทŸ้šจ {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "่ทŸ {handle}" @@ -5453,11 +5406,11 @@ msgstr "่ทŸ {handle}" msgid "Follow 10 accounts" msgstr "่ทŸ 10 ๅ€‹ไบบ" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "่ทŸ้šจ 10 ๅ€‹ไบบๅณๅฏ้–‹ๅง‹" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "่ทŸ 7 ๅ€‹ไบบ" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "ๆ“่บ‰ๅฏไปฅๅŠ ๅ…ฅ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "ไฝ ่ญ˜ๅ˜… @{0} ไบฆ้ƒฝ่ทŸๅ’—ไฝข" @@ -5544,7 +5497,7 @@ msgstr "ไฝ ่ญ˜ๅ˜…ๆ“่บ‰" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "่ทŸ็ทŠ {0}" msgid "Following {displayName}" msgstr "่ทŸ็ทŠ {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "่ทŸ็ทŠ {handle}" @@ -5578,21 +5531,21 @@ msgstr "่ทŸ็ทŠ {handle}" msgid "Following feed preferences" msgstr "ใ€ŒFollowingใ€ๅ‹•ๆ…‹ๆบๅๅฅฝ่จญๅฎš" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "ใ€ŒFollowingใ€ๅ‹•ๆ…‹ๆบๅๅฅฝ่จญๅฎš" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "่ทŸ็ทŠไฝ " -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "ๅญ—ๅž‹" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "ๅญ—ๅž‹ๅคง็ดฐ" @@ -5612,13 +5565,13 @@ msgstr "ๅŸบๆ–ผไฟๅฎ‰็†็”ฑ๏ผŒๆˆ‘ๅ“‹้œ€่ฆๅ‚ณ้€้ฉ—่ญ‰็ขผๅˆฐไฝ ๅ˜…้›ป้ƒตๅœฐๅ€ <0 msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "ๅŸบๆ–ผไฟๅฎ‰็†็”ฑ๏ผŒไฝ ๅ””ๅฏไปฅๅ†็‡่ฟ”ๅ‘ขๅ€‹ๅฏ†็ขผใ€‚่‹ฅ็„ถไฝ ็œŸไฟ‚ๅ””็Ÿฅๅ‘ขๅ€‹ๅฏ†็ขผๅ˜…่ฉฑ๏ผŒไฝ ๆœ€ๅฅฝๅŽป็”Ÿๆˆไธ€ๅ€‹ๆ–ฐๅ˜…ๅฏ†็ขผใ€‚" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "็ˆฒๅ’—ๆœ‰ๆœ€ไฝณ้ซ”้ฉ—๏ผŒๆˆ‘ๅ“‹ๅปบ่ญฐไฝฟ็”จไธป้กŒๅญ—ๅž‹ใ€‚" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "ไผฐไฝ ๅฟƒๆฐด" @@ -5628,7 +5581,7 @@ msgstr "ไผฐไฝ ๅฟƒๆฐด" msgid "Forever" msgstr "ๆฐธ้ " -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "ๅฟ˜่จ˜็„ก็›กๅ˜…้จทๆ“พ" @@ -5647,18 +5600,18 @@ msgstr "ๅ””่จ˜ๅพ—ๅฏ†็ขผ๏ผŸ" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "ๅ››ๅ€‹ไปฃ่กจ็พฃ็ต„ๅ‚พๅˆๅ˜…่จŠๆฏๆฐฃๆณกใ€‚็ฌฌไธ€ๆข่จŠๆฏ๏ผšใ€Œๆ”ถๅˆฐ้ขจๆœชๅ‘€๏ผŸๅฎถ้™ฃ Bluesky ้ƒฝๅฏไปฅ้–‹ Group ๅ‚พๅˆๅ–‡๏ผใ€๏ผŒ็ฌฌไบŒๆข่จŠๆฏ๏ผšใ€ŒOmg๏ผŒๅ””ไฟ‚ๅ•ฉใ€๏ผŒ็ฌฌไธ‰ๆข่จŠๆฏ๏ผšใ€Œๅ˜ฉ๏ผŒไธ€ๅ€‹ Group ๅฏไปฅๆœ‰ 50 ไบบๅ’ๅคšใ€๏ผŒ็ฌฌๅ››ๆข่จŠๆฏ๏ผšใ€Œไฝ ไปฒๅฏไปฅ send ๆข้‚€่ซ‹ Link ็•€ไบบๆทป๏ผใ€" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "ๅ…‰ๅพฉ Timeline" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "ๅšŸ่‡ช" #: src/screens/Hashtag.tsx:123 msgid "From {sanitizedAuthor}" -msgstr "" +msgstr "ๅšŸ่‡ช {sanitizedAuthor}" #: src/screens/Hashtag.tsx:124 msgid "From @{sanitizedAuthor}" @@ -5674,7 +5627,7 @@ msgstr "ๅšŸ่‡ช <0/>" msgid "From these people" msgstr "ๅšŸ่‡ชๅ‘ขๅ•ฒไบบ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "็”Ÿๆˆไธ€ๅ€‹ๆ–ฐๆ‰‹ๅŒ…" @@ -5712,45 +5665,45 @@ msgstr "้‡ๆ–ฐ้€ฃ็ต Germ DM" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features weโ€™re testing." -msgstr "" +msgstr "็އๅ…ˆ้ซ”้ฉ—ๆˆ‘ๅ“‹ๆธฌ่ฉฆ็ทŠๅ˜…ๅฏฆ้ฉ—ๆ€งๅŠŸ่ƒฝใ€‚" #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "ๅฐ‹ๆฑ‚ๅ”ๅŠฉ" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "ๆŽฅๆ”ถๆ–ฐๆ‰‹ๅŒ…ๅŠ ๅ…ฅใ€้ฉ—่ญ‰ๅŠๅ…ถไป–ๆดปๅ‹•ๅ‹•ๆ…‹้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "ๅ–บๆœ‰ไบบ่ทŸไฝ ๅ—ฐ้™ฃๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "ๅ–บๆœ‰ไบบ่ฎšไฝ ๅธ–ๆ–‡ๅ—ฐ้™ฃๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "ๅ–บๆœ‰ไบบ่ฎšไฝ ่ฝ‰็™ผๅ˜…ๅธ–ๆ–‡ๅ—ฐ้™ฃๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "ๅ–บๆœ‰ไบบๆๅŠไฝ ๅ—ฐ้™ฃๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "ๅ–บๆœ‰ไบบๅผ•็”จไฝ ๅธ–ๆ–‡ๅ—ฐ้™ฃๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "ๅ–บๆœ‰ไบบๅ›ž่ฆ†ไฝ ๅธ–ๆ–‡ๅ—ฐ้™ฃๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "ๅ–บๆœ‰ไบบ่ฝ‰็™ผไฝ ๅธ–ๆ–‡ๅ—ฐ้™ฃๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "ๅ–บๆœ‰ไบบ่ฝ‰็™ผๅ’—ไฝ ๅ˜…่ฝ‰็™ผๅธ–ๆ–‡ๅ—ฐ้™ฃๆ”ถๅˆฐ้€š็Ÿฅใ€‚" @@ -5762,15 +5715,15 @@ msgstr "ๅ–บๆœ‰ไบบๅŒไฝ ๅ‚ณ้€่จŠๆฏ่ซ‹ๆฑ‚ๅ—ฐ้™ฃๆ”ถๅˆฐ้€š็Ÿฅใ€‚" msgid "Get notifications when people send you messages." msgstr "ๅ–บๆœ‰ไบบๅ‘ไฝ ๅ‚ณ้€่จŠๆฏๅ—ฐ้™ฃๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "ๅ–บไฝ ่จ‚้–ฑๅ˜…ๅธ–ๆ–‡ๆœ‰ๅ‹•ๆ…‹ๆ›ดๆ–ฐๅ—ฐ้™ฃๆ”ถๅˆฐ้€š็Ÿฅใ€‚" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "ๅ–บไฝขๅ‡บๆ–ฐๅธ–ๅ—ฐ้™ฃๆ”ถๅˆฐ้€š็Ÿฅ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "ๅ–บ {name} ๅ‡บๆ–ฐๅธ–ๅ—ฐ้™ฃๆ”ถๅˆฐ้€š็Ÿฅ" @@ -5799,11 +5752,11 @@ msgstr "้–‹ๅง‹ๅ•ฆ" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF ๅทฒไธŠ่ผ‰" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "ๆ•ดๅผต็›ธๅ–บไฝ ๅ˜… profile ๅ—ฐๅบฆๅ…ˆๅ•ฆ" @@ -5813,20 +5766,20 @@ msgstr "ๆญŒ้ ŒๆšดๅŠ›" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,9 +5829,9 @@ msgid "Go live for" msgstr "็›ดๆ’ญๆŒ็บŒๆ™‚้•ท" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" -msgstr "" +msgstr "ๅŽปๅˆฐ {0} ๅ˜…ๅ€‹ไบบๆช”ๆกˆ" #: src/view/com/notifications/NotificationFeedItem.tsx:256 msgid "Go to {firstAuthorName}'s profile" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "ๅทฒๆ›ดๆ–ฐ็พฃ็ต„ๅ‚พๅˆๅ็จฑ" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "็พฃ็ต„ๅ‚พๅˆ่จญๅฎš" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "็พฃ็ต„ๅ‚พๅˆๅ””ๅพ—่ถ…้Ž {0, plural, other {# ๅ€‹ไบบ}}ใ€‚" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "็พฃ็ต„ๅทฒ้Ž–ๅฎš" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "็พฃ็ต„ๅ็จฑ" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "็พฃ็ต„ๅ็จฑๅคช้•ท๏ผŒ{MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {ๅ””ๅพ—่ถ…้Ž # ๅ€‹ๅญ—ๅ…ƒใ€‚}}" @@ -6077,7 +6031,7 @@ msgstr "ๆœ‰ๅฎณๆˆ–้ซ˜้ขจ้šชๆดปๅ‹•" msgid "Harming or endangering minors" msgstr "ไพตๅฎณๆˆ–ๅฑๅฎณๆœชๆˆๅนดไบบ" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "ๆจ™็ฑค" @@ -6098,7 +6052,7 @@ msgstr "ๆœ‰ๅ’—ไปฃ็ขผ๏ผŸ<0>ๆ’ณๅ‘ขๅบฆใ€‚" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "ไฟ‚ๅ’ชๆ”ช้Œฏๅ’—ไฝ ๅ˜…ไฝ็ฝฎ๏ผŸ<0>ๆ’ณๅ‘ขๅบฆ็”จ GPS ๆ›ดๆ–ฐไฝ ๅ˜…ไฝ็ฝฎใ€‚" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "้‡ๅˆฐๅ•้กŒ๏ผŸ" @@ -6114,7 +6068,7 @@ msgstr "็”ฑ Bluesky ไฟ็•™ 7 ๅคฉไปฅ้˜ฒๆฟซ็”จ๏ผŒ้šจๅพŒๅˆช้™ค" msgid "Help" msgstr "ๅ”ๅŠฉ" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "ไธŠ่ผ‰ไธ€ๅผต็›ธๆˆ–ๆ•ดๅผต้ ญๅƒ๏ผŒ็ญ‰ๅคงๅฎถ็Ÿฅ้“ไฝ ๅ””ไฟ‚ๆฉŸๆขฐไบบใ€‚" @@ -6135,12 +6089,12 @@ msgstr "ๅ“ˆไฝฌ๏ผ" msgid "Hi there!" msgstr "ๅ“ˆไฝฌ๏ผ" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "้šฑ่—" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "ไฟพไฝ ๅ˜…ๅ…งๅฎนๅฏฉ่ฆˆ่จญๅฎšๆ‰€้šฑ่—ใ€‚" @@ -6148,9 +6102,10 @@ msgstr "ไฟพไฝ ๅ˜…ๅ…งๅฎนๅฏฉ่ฆˆ่จญๅฎšๆ‰€้šฑ่—ใ€‚" msgid "Hidden list" msgstr "้šฑ่—ๆธ…ๅ–ฎ" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "้šฑ่—ๆธ…ๅ–ฎ" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "้šฑ่—" @@ -6181,7 +6137,7 @@ msgstr "้šฑ่—ๆธ…ๅ–ฎ" #: src/screens/Login/LoginForm.tsx:613 msgid "Hide password" -msgstr "" +msgstr "้šฑ่—ๅฏ†็ขผ" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 @@ -6198,7 +6154,7 @@ msgstr "ๅนซๆ‰€ๆœ‰ไบบ้šฑ่—ๅ›ž่ฆ†" msgid "Hide reply for me" msgstr "ๅนซๆˆ‘้šฑ่—ๅ›ž่ฆ†" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "้šฑ่—ๅ‘ขๅผตๅก็‰‡" @@ -6218,16 +6174,18 @@ msgstr "ไฟ‚ๅ’ช่ฆ้šฑ่—ๅ‘ขๅ€‹ๅ›ž่ฆ†๏ผŸ" msgid "Hide translation" msgstr "้šฑ่—็ฟป่ญฏ" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "้šฑ่—ๆ™‚่ˆˆ่ฉฑ้กŒ" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "ไฟ‚ๅ’ช่ฆ้šฑ่—ๆ™‚่ˆˆ่ฉฑ้กŒ๏ผŸ" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "ไฟ‚ๅ’ช่ฆ้šฑ่—ๆ™‚่ˆˆๅฝฑ็‰‡๏ผŸ" @@ -6240,7 +6198,7 @@ msgstr "้šฑ่—็”จๆˆถๆธ…ๅ–ฎ" msgid "Hide verification badges" msgstr "้šฑ่—่ช่ญ‰ๆจ™่จ˜" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "้šฑ่—ๅ…งๅฎน" @@ -6255,11 +6213,11 @@ msgstr "ๅ’ฆ๏ผŒ็‡ๅšŸไฝ ็”จ็ทŠ<0>ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ็™ปๅ…ฅใ€‚ๆƒณ่จญๅฎš #: src/ageAssurance/useVerificationFlow.ts:122 msgid "Hmm, it seems we weren't able to compute your level of access. Please try again." -msgstr "" +msgstr "Errrโ€ฆโ€ฆๆˆ‘ๅ“‹ๆšซๆ™‚ๅˆคๆ–ทๅ””ๅˆฐไฝ ๅ˜…ๅ–็”จๆฌŠ้™๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌกใ€‚" #: src/ageAssurance/useVerificationFlow.ts:141 msgid "Hmm, it seems your device was unable to share age information with us." -msgstr "" +msgstr "Errrโ€ฆโ€ฆ็‡่ฝไฝ ๅ˜…่ฃ็ฝฎๆไพ›ๅ””ๅˆฐๅนด้ฝก่ณ‡่จŠ็•€ๆˆ‘ๅ“‹ใ€‚" #: src/view/com/posts/PostFeedErrorMessage.tsx:125 msgid "Hmm, some kind of issue occurred when contacting the feed server. Please let the feed owner know about this issue." @@ -6293,8 +6251,8 @@ msgstr "ๅ””ๅฅฝๆ„ๆ€๏ผŒๆˆ‘ๅ“‹ๆ’ˆๅ””ๅˆฐๅ—ฐๅ€‹ๅฏฉ่ฆˆๆœๅ‹™ใ€‚" msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "ๅนซ็ทŠไฝ ๅนซ็ทŠไฝ ๏ผๆˆ‘ๅ“‹่€Œๅฎถ้€ๆญฅ้–‹ๆ”พๅฝฑ็‰‡ๅŠŸ่ƒฝ๏ผŒ่€Œไฝ ไปฒๅ–บ็ญ‰ๅ€™ๅๅ–ฎๅ—ฐๅบฆใ€‚้ฒๅ•ฒ่ฟ”ๅšŸ็‡ๅ“ๅ•ฆ๏ผ" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6315,15 +6273,11 @@ msgstr "่จ—็ฎกๆœๅ‹™ๆไพ›่€…" #. placeholder {0}: toNiceHostingUrl(state.pdsUrl) #: src/screens/Login/LoginForm.tsx:655 msgid "Hosting provider: {0}" -msgstr "" +msgstr "่จ—็ฎกๆœๅ‹™ๆไพ›่€…๏ผš{0}" #: src/screens/Login/LoginForm.tsx:657 msgid "Hosting provider: Bluesky" -msgstr "" - -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "็†ฑ้–€" +msgstr "่จ—็ฎกๆœๅ‹™ๆไพ›่€…๏ผšBluesky" #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" @@ -6409,6 +6363,7 @@ msgstr "่‹ฅ็„ถไฝ ๆ›ดๆ–ฐๅ’—้›ป้ƒตๅœฐๅ€๏ผŒ้›ป้ƒต้›™้‡้ฉ—่ญ‰ๅฐ‡ๆœƒๅœ็”จใ€‚" msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "่‹ฅ็„ถไฝ ๆƒณๆ”นไฝ ๅ˜…ๅฏ†็ขผ๏ผŒๆˆ‘ๅ“‹ๆœƒๅฐฑๆœƒๅ‚ณ้€ไธ€ๅ€‹้ฉ—่ญ‰็ขผ็•€ไฝ ้ฉ—่ญ‰ๅ‘ขๅ€‹ไฟ‚ไฝ ๅ˜…ๅธณ่™Ÿใ€‚" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "่‹ฅ็„ถไฝ ๆƒณ้™ๅˆถ้‚Šๅ€‹ๅฏไปฅๆ”ถๅˆฐไฝ ๅธณ่™Ÿๅ˜…ๅ‹•ๆ…‹้€š็Ÿฅ๏ผŒๅฏๅŽปๅˆฐ<0>่จญๅฎš โ†’ ็ง้šฑๅŒไฟๅฎ‰่ฎŠๆ›ดๅ‘ขๅ€‹่จญๅฎšใ€‚" @@ -6548,7 +6503,7 @@ msgstr "ๆ‡‰็”จ็จ‹ๅผๅ…งใ€ๆŽจๆ’ญใ€ๆ‰€ๆœ‰ไบบ" msgid "In-app, push, people you follow" msgstr "ๆ‡‰็”จ็จ‹ๅผๅ…งใ€ๆŽจๆ’ญใ€ไฝ ่ทŸๅ˜…ไบบ" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "ๆ”ถไปถ็ฎฑๅพ—ๅ€‹ๅ‰" @@ -6564,7 +6519,6 @@ msgstr "ๆ”ถไปถ็ฎฑไนพๆทจๆ™’๏ผ" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "ๅŒ…ๅซ" @@ -6573,7 +6527,7 @@ msgstr "ๅŒ…ๅซ" msgid "Include or exclude matching posts (currently: {0})" msgstr "ๅŒ…ๅซๆˆ–ๆŽ’้™ค็ฌฆๅˆๅ˜…ๅธ–ๆ–‡๏ผˆ็›ฎๅ‰๏ผš{0}๏ผ‰" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "ๅŒ…ๅซๅธ–ๆ–‡ๅŒ๏ผๆˆ–ๅ›ž่ฆ†๏ผˆ็›ฎๅ‰๏ผš{currentLabel}๏ผ‰" @@ -6587,10 +6541,6 @@ msgstr "ๅŒ…ๅซๆญคๆ—ฅๆœŸไน‹ๅพŒ็™ผๅธƒๅ˜…ๅธ–ๆ–‡" msgid "Include posts made until this date" msgstr "ๅŒ…ๅซๆญคๆ—ฅๆœŸไน‹ๅ‰็™ผไฝˆๅ˜…ๅธ–ๆ–‡" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "ๅŒ…ๅซๅ‘ขๅ•ฒ็ตๆžœ" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "็”จๆˆถๅ็จฑๆˆ–ๅฏ†็ขผๅ””ๅ•ฑ" @@ -6683,7 +6633,7 @@ msgstr "้‚€่ซ‹ {name} ๅŠ ๅ…ฅ Bluesky" msgid "Invite code" msgstr "้‚€่ซ‹็ขผ" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "้‚€่ซ‹็ขผ็„กๆ•ˆใ€‚่ซ‹ๆชขๆŸฅไฝ ่ผธๅ…ฅๅ˜…้ฉ—่ญ‰็ขผๅ•ฑๅฎšๅ””ๅ•ฑ๏ผŒ่ทŸไฝ่ฉฆๅคšๆฌกใ€‚" @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "่€Œๅฎถๆทจไฟ‚ๅพ—ไฝ ไธ€ๅ€‹ไบบ๏ผ็”จไธŠ้ซ˜ๆตๅ˜ขๅŠŸ่ƒฝๅฐ‡ๆ›ดๅŠ ๅคšไบบๆ“บๅˆฐ่ฝไฝ ๅ˜…ๆ–ฐๆ‰‹ๅŒ…ๅบฆใ€‚" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ไฝœๆฅญ ID๏ผš{0}" @@ -6816,8 +6766,8 @@ msgstr "ๅŠ ๅ…ฅๅฐ่ฉฑ" msgid "Journalism" msgstr "่จ˜่€…" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "็นผ็บŒ็ทจ่ผฏ" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "KWS ็ถฒ็ซ™" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "{0} ๆ‰€ๆจ™่จ˜ใ€‚" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "็™ผๅธƒ่€…ๆ‰€ๆจ™่จ˜ใ€‚" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "ๆจ™่จ˜" @@ -6850,9 +6800,9 @@ msgstr "ๅทฒๅŠ ๅ…ฅๆจ™่จ˜" #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "Labels applied to this post" -msgstr "" +msgstr "ๅฅ—็”จๅˆฐๆญคๅธ–ๆ–‡ๅ˜…ๆจ™่จ˜" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ๆจ™่จ˜ไฟ‚็”จๆˆถๅŒๅ…งๅฎนๅ˜…่จป่งฃใ€‚ไฝขๅ“‹ๅฏไปฅ็”จๅšŸ้šฑ่—ใ€่ญฆๅ‘ŠๅŒ็ฎก็†ไฝ ๅ˜…็คพไบค็ถฒ็ตกใ€‚" @@ -6864,7 +6814,7 @@ msgstr "ไฝ ๅธณ่™ŸไธŠๅ˜…ๆจ™่จ˜" msgid "Language" msgstr "่ชž่จ€" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "่ชž่จ€่จญๅฎš" @@ -6874,7 +6824,7 @@ msgstr "่ชž่จ€่จญๅฎš" msgid "Languages" msgstr "่ชž่จ€" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "ๅคงๅ•ฒ" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "ๆœ€ๅพŒไธ€ๆฌก่ซ‹ๆฑ‚ๅ–บๅ†‡ๅนพ่€ๅ‰" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "ๆœ€ๆ–ฐ" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "ๆƒณ็Ÿฅๅคšๅ•ฒ" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "ๆƒณ็Ÿฅๅคšๅ•ฒ" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "ๆƒณ็Ÿฅๅคšๅ•ฒ<0>้ปž็”จ้€ฒ้šŽๆตๅ˜ขใ€‚" @@ -6937,8 +6887,8 @@ msgstr "ๆƒณ็Ÿฅๅคšๅ•ฒๅŒฏๅ…ฅ่ฏ็ตกไบบๅŠŸ่ƒฝ" msgid "Learn more about self hosting your PDS." msgstr "ๆƒณ็Ÿฅๅคšๅ•ฒ้ปžๆจฃ่‡ช่กŒๆžถ่จญ PDSใ€‚" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "ๆƒณ็Ÿฅๅคšๅ•ฒๅ‘ขๅ€‹ๅ…งๅฎนๆ‰€ๅฅ—็”จๅ˜…ๅ…งๅฎนๅฏฉ่ฆˆๆŽชๆ–ฝ" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "ๆƒณ็Ÿฅๅคšๅ•ฒๅ‘ขๅ•ฒ่ฎŠๅŒ–่ณ‡่จŠไปฅๅŠ้ปžๆจฃๅŒๆˆ‘ๅ“‹ๅˆ†ไบซไฝ ๅ˜…็‡ๆณ•๏ผŒๅฏไปฅ้–ฑ่ฎ€ๆˆ‘ๅ“‹ๅ˜…็ถฒ่ชŒๆ–‡็ซ ใ€‚" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "ๆƒณ็Ÿฅๅคšๅ•ฒๅ‘ขๅ€‹่ญฆๅ‘Š" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "ๆƒณ็Ÿฅๅคšๅ•ฒๅŽปไฝ ๅ˜…<0>ๅธณ่™Ÿ่จญๅฎšใ€‚" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "ๆƒณ็Ÿฅๅคšๅ•ฒใ€‚" @@ -6993,8 +6943,8 @@ msgstr "้›ข้–‹" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "้›ข้–‹ Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "้›ข้–‹ๅ‘ขๅบฆๅ‚พๅˆไน‹ๅพŒๅฐ‡ๆœƒๆฐธไน…้Ž–ๅฎš๏ผŒไฝ ไน‹ๅพŒๆœƒๅŠ ๅ””่ฟ”ๅ…ฅๅšŸใ—Žใ€‚" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "้›ข้–‹็พฃ็ต„ๅ‚พๅˆใ€‚" @@ -7042,7 +6992,7 @@ msgstr "้›ข้–‹็พฃ็ต„ๅ‚พๅˆใ€‚" msgid "left to go." msgstr "ๅ€‹ไบบๆŽ’ๅ–บไฝ ๅ‰้ขใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "็ญ‰ๆˆ‘่‡ชๅทฑๆ€" @@ -7057,7 +7007,7 @@ msgstr "่กŒๅ•ฆๆˆ‘ๅ“‹๏ผ" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "ๆทบ่‰ฒ" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "ๆทบ่‰ฒ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "่ฎšไฝข" @@ -7076,7 +7026,7 @@ msgstr "่ฎšไฝข" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "่ฎšไฝข๏ผˆ{0, plural, one {# ไบบ่ฎšไฝข} other {# ไบบ่ฎšไฝข}}๏ผ‰" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "่ฎšๅฅฝ 10 ๆขๅธ–ๆ–‡" @@ -7085,7 +7035,7 @@ msgstr "่ฎšๅฅฝ 10 ๆขๅธ–ๆ–‡" msgid "Like 10 posts to train the Discover feed" msgstr "่ฎšๅค  10 ๆขๅธ–ๆ–‡ๅŽป่จ“็ทดใ€ŒDiscoverใ€ๅ‹•ๆ…‹ๆบ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "่ฎšๅฅฝๅ‘ขๅ€‹ๅ‹•ๆ…‹ๆบ" @@ -7093,8 +7043,8 @@ msgstr "่ฎšๅฅฝๅ‘ขๅ€‹ๅ‹•ๆ…‹ๆบ" msgid "Like this labeler" msgstr "่ฎšๅ‘ขๅ€‹ๆจ™่จ˜ๆœๅ‹™" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "่ฎš้Ž" @@ -7111,27 +7061,45 @@ msgstr "่ฎš้Ž" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "ๆœ‰ {0, plural, one {# ไบบ} other {# ไบบ}}่ฎšไฝข" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "ๆœ‰ {likeCount, plural, one {# ไบบ} other {# ไบบ}}่ฎšไฝข" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "่ฎšๅฅฝ" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "่ฎšๅฅฝไฝ ่ฝ‰็™ผๅ˜…ๅธ–ๆ–‡" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "ๅ‘ขๆขๅธ–ๆ–‡ๅ˜…่ฎšๆ•ธ" @@ -7144,7 +7112,7 @@ msgstr "็›ดๅˆ—ๆจกๅผ" msgid "Link copied to clipboard" msgstr "ๅทฒ่ค‡่ฃฝ้€ฃ็ตๅˆฐๅ‰ช่ฒผ็ฐฟ" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "ๆธ…ๅ–ฎ" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "ๅทฒๅ””ๅ†้œ้Ÿณๆธ…ๅ–ฎ" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "็›ดๆ’ญ" msgid "Live event happening now: {0}" msgstr "้€ฒ่กŒ็ทŠๅ˜…็›ดๆ’ญๆดปๅ‹•๏ผš{0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "ๅทฒ้šฑ่—็›ดๆ’ญๆดปๅ‹•" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "ๅทฒๅ””ๅ†้šฑ่—็›ดๆ’ญๆดปๅ‹•" @@ -7279,12 +7247,12 @@ msgstr "็›ดๆ’ญๅŠŸ่ƒฝไปฒๅ–บๆธฌ่ฉฆ้šŽๆฎต" msgid "Live link" msgstr "็›ดๆ’ญ้€ฃ็ต" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "ๅ†ๆ’ˆๅ•ฒ" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "ๅ†ๆ’ˆๅ•ฒๅปบ่ญฐๅ‹•ๆ…‹ๆบ" @@ -7292,8 +7260,8 @@ msgstr "ๅ†ๆ’ˆๅ•ฒๅปบ่ญฐๅ‹•ๆ…‹ๆบ" msgid "Load new notifications" msgstr "ๆ’ˆๅ“ๆ–ฐๅ˜…้€š็Ÿฅ" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "้Ž–ๅฎšๆญค็พฃ็ต„ๅ‚พๅˆ" msgid "Locked" msgstr "ๅทฒ้Ž–ๅฎš" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "ๆ—ฅ่ชŒ" @@ -7387,7 +7355,7 @@ msgstr "ๆ„›ๆƒ… GIF" msgid "Make adjustments to email settings for your account" msgstr "่ชฟๆ•ดไฝ ๅธณ่™Ÿ็ถๅฎšๅ˜…้›ป้ƒต่จญๅฎš" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "ๅนซๆˆ‘ๆ•ดไธ€ๅ€‹" @@ -7411,22 +7379,22 @@ msgstr "็ฎก็†ไฝ ๅ˜…้œ้Ÿณๅญ—่ฉžๅŒๆจ™็ฑค" #: src/screens/Login/components/HostingProviderDialog.tsx:173 #: src/screens/Login/components/HostingProviderDialog.tsx:174 msgid "Manual" -msgstr "" +msgstr "ๆ‰‹ๅ‹•" #: src/screens/Messages/Inbox.tsx:312 #: src/screens/Messages/Inbox.tsx:318 msgid "Mark all as read" msgstr "ๆจ™่จ˜ๆ™’ๅšๅทฒ่ฎ€" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "ๆจ™่จ˜ๆ™’ๆ‰€ๆœ‰ๅ‚พๅˆๅšๅทฒ่ฎ€" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "ๆจ™่จ˜ๅšๅทฒ่ฎ€" msgid "Marked all as read" msgstr "ๅทฒๆจ™่จ˜ๆ™’ๅšๅทฒ่ฎ€" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "ๅทฒๆจ™่จ˜ๆ™’ๆ‰€ๆœ‰ๅ‚พๅˆๅšๅทฒ่ฎ€" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "ๅทฒๆจ™่จ˜ๆ™’ๆ‰€ๆœ‰้‚€่ซ‹ๅšๅทฒ่ฎ€" @@ -7456,8 +7424,12 @@ msgstr "ๅทฒๆจ™่จ˜ๆ™’ๆ‰€ๆœ‰้‚€่ซ‹ๅšๅทฒ่ฎ€" msgid "Maybe later" msgstr "้ฒๅ•ฒๅ…ˆๅ•ฆ" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "ๅช’้ซ”" @@ -7475,7 +7447,7 @@ msgstr "ๅช’้ซ”ๅทฒๅ„ฒๅญ˜ๅˆฐๅ…ถไป–่ฃ็ฝฎ" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "ๅฏ่ƒฝๆœƒไปคๆŸๅ•ฒๅ—็œพๆ„Ÿๅˆฐไธๅฎ‰ๆˆ–้€ ๆˆไธ้ฉๅ˜…ๅช’้ซ”ๅ…งๅฎนใ€‚" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "ๅทฒๅพž็พฃ็ต„ๅ‚พๅˆ็งป้™คๆˆๅ“กใ€‚" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "ๆๅˆฐๅ˜…็”จๆˆถ" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "ๆๅŠ" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "ๅทฒๅˆช้™ค่จŠๆฏ" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "ๅ‚ณ้€ๅ””ๅˆฐ่จŠๆฏใ€‚" @@ -7563,15 +7535,15 @@ msgstr "่จŠๆฏๅ…งๅฎนๅคช้•ท๏ผˆ{graphemeCount}/{MAX_DM_GRAPHEME_LENGTH}๏ผ‰" msgid "Message options" msgstr "่จŠๆฏ้ธ้ …" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "ๅ‚พๅˆ" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "็•ถๅฐๆ–นๅฐ้Ž–ๅ’—ไฝ ๏ผŒไฝขๅ˜…่จŠๆฏๅฐ‡ๆœƒ้šฑ่—ใ€‚" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "็•ถไฝ ๅฐ้Ž–ๅ’—ๅฐๆ–น๏ผŒไฝขๅ˜…่จŠๆฏๅฐ‡ๆœƒ้šฑ่—ใ€‚" @@ -7592,7 +7564,7 @@ msgstr "่ชคๅฐŽ" msgid "Missing media" msgstr "็ผบๅคฑๅช’้ซ”ๆช”ๆกˆ" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "ๅ…งๅฎนๅฏฉ่ฆˆ" @@ -7636,7 +7608,7 @@ msgstr "ๅทฒๆ›ดๆ–ฐๅ…งๅฎนๅฏฉ่ฆˆๆธ…ๅ–ฎ" msgid "Moderation lists" msgstr "ๅ…งๅฎนๅฏฉ่ฆˆๆธ…ๅ–ฎ" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "ๅ…งๅฎนๅฏฉ่ฆˆๆธ…ๅ–ฎ" @@ -7645,7 +7617,7 @@ msgstr "ๅ…งๅฎนๅฏฉ่ฆˆๆธ…ๅ–ฎ" msgid "moderation settings" msgstr "ๅ…งๅฎนๅฏฉ่ฆˆ่จญๅฎš" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "ๅ…งๅฎนๅฏฉ่ฆˆ็‹€ๆ…‹" @@ -7786,7 +7758,7 @@ msgstr "ๅทฒ้œ้Ÿณ" msgid "Muted accounts" msgstr "้œ้Ÿณๅ’—ๅ˜…ๅธณ่™Ÿ" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "้œ้Ÿณๅ’—ๅ˜…ๅธณ่™Ÿ" @@ -7867,7 +7839,6 @@ msgstr "้œ€่ฆๆ“งๅ ฑไพต็Šฏ็‰ˆๆฌŠใ€ๆณ•ๅพ‹่ฆๆฑ‚๏ผŒๆˆ–็›ฃ็ฎกๅˆ่ฆๅ•้กŒ๏ผŸ" msgid "Nevermind, create a handle for me" msgstr "ๅ””ไฝฟๅ–‡๏ผŒๅนซๆˆ‘ๆ•ดๅ€‹ๅธณ่™Ÿไปฃ็ขผ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "่‡ณๆ–ฐ" @@ -7893,11 +7864,11 @@ msgstr "ๅšŸ่‡ช {firstAuthorName} ๅ˜…ๆ–ฐ{postsCount, plural, one {ๅธ–ๆ–‡} other { #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "ๅŒไบบๅ‚พๅˆ" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "ๆ–ฐๅŠŸ่ƒฝ" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "ๆ–ฐๆ“่บ‰" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "ๅปบ็ซ‹็พฃ็ต„ๅ‚พๅˆ" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "ๅปบ็ซ‹็พฃ็ต„ๅ‚พๅˆ" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "ๅŒๅ‘ขๅ•ฒไบบๅปบ็ซ‹็พฃ็ต„ๅ‚พๅˆ๏ผš" @@ -7966,13 +7937,13 @@ msgstr "ๆ–ฐๆธ…ๅ–ฎ" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "ๆ–ฐ่จŠๆฏ่ซ‹ๆฑ‚" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "ๆ–ฐ่จŠๆฏ" @@ -7982,12 +7953,12 @@ msgstr "ๆ–ฐ่จŠๆฏ" msgid "New password" msgstr "ๆ–ฐๅฏ†็ขผ" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "ๆ–ฐๅธ–ๆ–‡" @@ -8011,7 +7982,7 @@ msgstr "ๅปบ็ซ‹ๆ–ฐๆ‰‹ๅŒ…" #: src/screens/Login/LoginForm.tsx:569 msgid "New to Bluesky? <0>Sign up" -msgstr "" +msgstr "็ฌฌไธ€ๆฌก็”จ Bluesky๏ผŸ<0>่จปๅ†Š" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "ๆœ€ๆ–ฐๅ›ž่ฆ†่กŒๅ…ˆ" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "ๆ–ฐ่ž" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "ไธ‹ไธ€ๅผตๅœ–็‰‡" msgid "Night" msgstr "ๆ™š้ป‘" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "ๅ†‡ๅปฃๅ‘Š๏ผŒๅ†‡ไพตๅ…ฅๅผ่ฟฝ่ธช๏ผŒ็•ถ็„ถไบฆๅ†‡ๆˆ็™ฎๆ€ง่จญ่จˆใ€‚ Bluesky ๅฐŠ้‡ไฝ ๅ˜…ๆ™‚้–“ๅŒๆณจๆ„ๅŠ›ใ€‚" @@ -8065,9 +8036,14 @@ msgstr "ๅ†‡ๅปฃๅ‘Š๏ผŒๅ†‡ไพตๅ…ฅๅผ่ฟฝ่ธช๏ผŒ็•ถ็„ถไบฆๅ†‡ๆˆ็™ฎๆ€ง่จญ่จˆใ€‚ Bluesky msgid "No app passwords yet" msgstr "่€Œๅฎถไปฒๆœชๆœ‰ App ๅฐˆ็”จๅฏ†็ขผ" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "ๆšซๆ™‚ๆœชๆœ‰ๆธฌ่ฉฆๅŠŸ่ƒฝใ€‚" #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8074,7 @@ msgstr "ๆœชๆœ‰่จญๅฎš้ŽๆœŸๆ™‚้–“" msgid "No feeds found. Try searching for something else." msgstr "ๆตๅ””ๅˆฐไปปไฝ•ๅ‹•ๆ…‹ๆบ๏ผŒ่ฉฆๅ“ๆต้Ž็ฌฌๅ•ฒใ€‚" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "่€Œๅฎถไปฒๆœชๆœ‰ๆ“่บ‰" @@ -8116,9 +8092,15 @@ msgstr "ๆšซๆ™‚ๆœชๆœ‰ไปปไฝ• GIF ๅฏไปฅ้กฏ็คบใ€‚่ซ‹็จๅพŒๅ†่ฉฆใ€‚" msgid "No image" msgstr "ๅ†‡ๅœ–็‰‡" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "่€Œๅฎถไปฒๆœชๆœ‰ไบบ่ฎš" @@ -8135,7 +8117,12 @@ msgstr "ไปฒๆœชๆœ‰ๆธ…ๅ–ฎ" msgid "No longer following {0}" msgstr "ๅทฒๅ””ๅ†่ทŸ้š {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "่€Œๅฎถไปฒๆœชๆœ‰ๅช’้ซ”ๅ…งๅฎน" @@ -8143,7 +8130,7 @@ msgstr "่€Œๅฎถไปฒๆœชๆœ‰ๅช’้ซ”ๅ…งๅฎน" msgid "No messages yet" msgstr "่€Œๅฎถไปฒๆœชๆœ‰่จŠๆฏ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "ๅ‘Šๅˆฅ็„ก่ฌ‚ๆžไบบๆ†‚ๅคฉๅ˜…ๅžƒๅœพ่ณ‡่จŠๆผ”็ฎ—ๆณ•๏ผŒๆตๅ•ฒ็›Šไฝ ่€Œ้žๅฎณไฝ ๅ˜…ๅ‹•ๆ…‹ๆบใ€‚" @@ -8180,16 +8167,21 @@ msgstr "ๅ‡ˆไฟ‚ๅพ—ไฝœ่€…ๅฏไปฅๅผ•็”จๅ‘ข็ฏ‡ๅธ–ๆ–‡ใ€‚" msgid "No one can send messages" msgstr "ๅ†‡ไบบๅฏไปฅๅ‚ณ้€่จŠๆฏ" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "ๅ‘ขๅบฆๆœชๆœ‰ไปปไฝ•ๅธ–ๆ–‡" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "่€Œๅฎถไปฒๆœชๆœ‰ๅธ–ๆ–‡" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "่€Œๅฎถไปฒๆœชๆœ‰ไบบๅผ•็”จ" @@ -8198,11 +8190,7 @@ msgstr "่€Œๅฎถไปฒๆœชๆœ‰ไบบๅผ•็”จ" msgid "No recent GIFs yet. Pick one to see it here." msgstr "ๆœชๆœ‰่ฟ‘ๆŽ’ไฝฟ็”จๅ˜… GIF๏ผŒ่ฉฆไฝๅธ–ๆ–‡ๅŠ ๅ…ฅ GIF ๅ†่ฟ”ๅšŸ็‡ๅ“ๅ•ฆใ€‚" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "ๅ†‡ๅ›ž่ฆ†" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "่€Œๅฎถไปฒๆœชๆœ‰ไบบๅ›ž่ฆ†" @@ -8217,13 +8205,13 @@ msgstr "ๅ†‡ๅ˜ขๅˆฐ" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "ๅ†‡ๅ˜ขๅˆฐ" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "ๆตๅ””ๅˆฐใ€Œ{0}ใ€ๅ˜…็ตๆžœใ€‚" @@ -8236,23 +8224,23 @@ msgstr "ๆตๅ””ๅˆฐ็ตๆžœ" msgid "No results found for \"{query}\"" msgstr "ๆตๅ””ๅˆฐ็ฌฆๅˆใ€Œ{query}ใ€ๅ˜…็ตๆžœ" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "็”จๅ’—้€ฒ้šŽๆตๅ˜ข็ฏฉ้ธๅ™จๅพŒ๏ผŒๆตๅ””ๅˆฐ็ฌฆๅˆใ€Œ<0>{query}ใ€ๅ˜…็ตๆžœใ€‚" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "ๆตๅ””ๅˆฐ็ฌฆๅˆใ€Œ<0>{query}ใ€ๅ˜…็ตๆžœใ€‚" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "็”จๅ’—้€ฒ้šŽๆตๅ˜ข็ฏฉ้ธๅ™จๅพŒ๏ผŒๆตๅ””ๅˆฐ็ตๆžœใ€‚" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "ๅ†‡ๅ˜ขๅˆฐใ€‚" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "่€Œๅฎถไปฒๆœชๆœ‰ๆ–ฐๆ‰‹ๅŒ…" @@ -8265,7 +8253,7 @@ msgstr "ๅ””ไฝฟ๏ผŒๅคš่ฌ" msgid "No translation received from your device." msgstr "็„กๆณ•ๅพžไฝ ๅ˜…่ฃ็ฝฎๅ–ๅพ—็ฟป่ญฏ็ตๆžœใ€‚" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "่€Œๅฎถไปฒๆœชๆœ‰ๅŒ…ๅซๅฝฑ็‰‡ๅธ–ๆ–‡" @@ -8278,7 +8266,7 @@ msgstr "ๅ†‡ไบบ" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "่€Œๅฎถไปฒๆœชๆœ‰ไบบ่ฎšๅ–Ž๏ผŒไธ€ๅ””ไฟ‚ไฝ ๅš็ฌฌไธ€ๅ€‹ๅ•ฆ๏ผ" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "่€Œๅฎถไปฒๆœชๆœ‰ไบบๅผ•็”จๅ–Ž๏ผŒไธ€ๅ””ไฟ‚ไฝ ๅš็ฌฌไธ€ๅ€‹ๅ•ฆ๏ผ" @@ -8298,6 +8286,10 @@ msgstr "้ž่‡ช้ก˜ๅ˜…็งๅฏ†ๅฝฑๅƒ๏ผˆNCII๏ผ‰" msgid "Non-sexual Nudity" msgstr "้žๆ€ง่ฃธ้ซ”" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "ๅ–บๅ‘ขๅ€‹ๅนณ่‡บ็”จๅ””ๅˆฐใ€‚" msgid "Not followed by anyone youโ€™re following" msgstr "ไฝ ่ญ˜ๅพ—ๅ˜…ไบบๅ…ฅ้‚Šๅ†‡ไบบ่ทŸ้šจไฝข" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "ๆตๅ””ๅˆฐ" @@ -8333,7 +8325,7 @@ msgstr "้—œๆ–ผๅˆ†ไบซๅ˜…ๆณจๆ„ไบ‹้ …" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "่จป๏ผšBluesky ไฟ‚ไธ€ๅ€‹้–‹ๆ”พๅŒๅ…ฌ้–‹ๅ˜…็คพ็พฃ็ถฒ็ตกใ€‚ๅ‘ขๅ€‹่จญๅฎšๆทจไฟ‚ๆœƒ้™ๅˆถไฝ ๅ˜…ๅ…งๅฎนๅ–บ Bluesky ๆ‡‰็”จ็จ‹ๅผๅŒ็ถฒ็ซ™ไธŠ้ขๅ˜…ๅฏ่ฆ‹ๅบฆ๏ผŒ่€Œๅ…ถไป– App ๅฏ่ƒฝๅ””ๆœƒ้ตๅฎˆๅ‘ขๅ€‹่จญๅฎšใ€‚ไฝ ๅ˜…ๅ…งๅฎนไป็„ถๆœ‰ๅฏ่ƒฝๆœƒไฟพๅ…ถไป– App ๅŒ็ถฒ็ซ™้กฏ็คบ็•€ๆœช็™ปๅ…ฅๅ˜…็”จๆˆถใ€‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "่จป๏ผšๅ‘ขๆขๅธ–ๆ–‡ๆทจไฟ‚ๅพ—็™ปๅ…ฅๅ’—ๅ˜…็”จๆˆถๅ…ˆ็‡ๅˆฐใ€‚" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "่€Œๅฎถไปฒๆœชๆœ‰ๆ”ถ่—ๅ…งๅฎน" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "้€š็Ÿฅ่จญๅฎš" @@ -8353,11 +8345,12 @@ msgstr "้€š็Ÿฅ่จญๅฎš" msgid "Notification sounds" msgstr "้€š็Ÿฅ้Ÿณๆ•ˆ" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "ๅคง้‘Š๏ผ" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "ๅฅฝๅ˜…" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "ๅฅฝๅ˜…" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "้‡ๆ–ฐ้–‹ๅง‹ๅผ•ๅฐŽๆต็จ‹" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "ๆ€ไธญๅ˜…ไบบๅ…ฅ้‚Šๆœ‰ๅ€‹ไบบๅ””ๆŽฅๅ—็พฃ็ต„ๅ‚พๅˆใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "ๆ€ไธญๅ˜…ไบบๅ…ฅ้‚Šๆœ‰ๅ€‹ไบบๅฐ้Ž–ไฝ ๏ผŒๆ‰€ไปฅๅ‚ณ้€ๅ””ๅˆฐ่จŠๆฏใ€‚" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "้ƒจๅˆ† GIF ๅœ–็‰‡็ผบๅฐ‘ๆ›ฟไปฃๆ–‡ๅญ—ใ€‚" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "้ƒจๅˆ†ๅœ–็‰‡็ผบๅฐ‘ๆ›ฟไปฃๆ–‡ๅญ—ใ€‚" @@ -8454,11 +8449,11 @@ msgstr "ไฝ ๆ‰€ๆ€้ธๅ˜…้ƒจๅˆ†ๆช”ๆกˆๆ ผๅผๅ””ๆ”ฏๆดใ€‚" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "ไฝ ๆ€ไธญๅ˜…้ƒจๅˆ†ๆช”ๆกˆๅคชๅคง๏ผŒๆœ€ๅคงๆช”ๆกˆๅคง็ดฐไฟ‚ {VIDEO_MAX_SIZE_MB}ย MBใ€‚" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "้ƒจๅˆ†ๅธ–ๆ–‡ๅ…งๅฎนๅคช้•ท๏ผŒๅ„ฒๅญ˜ๅ””ๅˆฐๅš่‰็จฟใ€‚{MAX_DRAFT_GRAPHEME_LENGTH, plural, one {ๅญ—ๆ•ธไธŠ้™ # ๅ€‹ๅญ—ๅ…ƒใ€‚} other {ๅญ—ๆ•ธไธŠ้™ # ๅ€‹ๅญ—ๅ…ƒใ€‚}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "้ƒจๅˆ†ๅฝฑ็‰‡็ผบๅฐ‘ๆ›ฟไปฃๆ–‡ๅญ—ใ€‚" @@ -8471,7 +8466,7 @@ msgstr "ๆทจไฟ‚ๅพ—{0}ๅฏไปฅๅ›ž่ฆ†ใ€‚" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "ๅชไฟ็•™ๅ‰ {0} {2, plural, other {ๅผตๅœ–็‰‡}}๏ผˆๅ…ฑ {1} ๅผต๏ผ‰๏ผ›ๆœ€ๅคšๅŠ ๅ…ฅ {MAX_GALLERY_IMAGES} ๅผตๅœ–็‰‡" @@ -8507,6 +8502,10 @@ msgstr "ๅชๆœ‰ {0} ่ทŸๅ˜…ไบบๅ…ˆๅฏไปฅๅŠ ๅ…ฅใ€‚" msgid "Only people the chat owner follows can join" msgstr "ๅชๆœ‰็พฃ็ต„ๆ“ๆœ‰่€…่ทŸๅ˜…ไบบๅ…ˆๅฏไปฅๅŠ ๅ…ฅ" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "ๅช้กฏ็คบๅธถๆœ‰ๅช’้ซ”ๅ˜…ๅธ–ๆ–‡" @@ -8519,7 +8518,7 @@ msgstr "ๅช้กฏ็คบๅธถๆœ‰ๅฝฑ็‰‡ๅ˜…ๅธ–ๆ–‡" msgid "Only replies" msgstr "ๅช้กฏ็คบๅ›ž่ฆ†" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "ๆทจไฟ‚ๆ”ฏๆด WebVTT๏ผˆ.vtt๏ผ‰ๆช”ๆกˆ" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "ๅผŠ๏ผŒๆตๅ””ๅˆฐๅ‘ขไปฝๅ€‹ไบบๆช”ๆกˆ๏ผŒ่ฉฆๅ“ๆŽƒ็ฌฌๅ€‹ใ€‚" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "ๅคง้‘Š๏ผ" @@ -8544,7 +8543,7 @@ msgstr "ๅคง้‘Š๏ผ" msgid "Open advanced search options" msgstr "ๆ‰“้–‹้€ฒ้šŽๆตๅ˜ข้ธ้ …" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "ๆ‰“้–‹้ ญๅƒ่ฃฝไฝœๅ™จ" @@ -8570,21 +8569,22 @@ msgstr "ๆ‰“้–‹ๅฐ่ฉฑ้ธ้ …" msgid "Open draft" msgstr "ๆ‰“้–‹่‰็จฟ" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "ๆ‰“้–‹ๆซƒๆกถ้ธๅ–ฎ" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "ๆ‰“้–‹ Emoji ้ธๆ“‡ๅ™จ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "ๆ‰“้–‹ๅ‹•ๆ…‹ๆบ่ณ‡่จŠ็•ซ้ข" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "ๆ‰“้–‹ๅ‹•ๆ…‹ๆบ้ธ้ …้ธๅ–ฎ" @@ -8627,7 +8627,7 @@ msgstr "้–‹ๅ•“ๅ…งๅฎนๅฏฉ่ฆˆๅต้Œฏ้ ้ข" msgid "Open muted words and tags settings" msgstr "ๆ‰“้–‹้œ้Ÿณๅญ—่ฉžๅŒๆจ™็ฑค่จญๅฎš" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "ๆ‰“้–‹ๆ–ฐๆ‰‹ๅŒ…" @@ -8681,7 +8681,7 @@ msgstr "ๆ‰“้–‹ๅฐ่ฉฑๆก†ๅšŸๅ–บไฝ ๅ˜…ๅธ–ๆ–‡ๅบฆๅŠ ๅ…ฅๅ…งๅฎน่ญฆๅ‘Š" #: src/screens/Login/LoginForm.tsx:645 msgid "Opens a dialog to change the hosting provider you sign in to" -msgstr "" +msgstr "ๆ‰“้–‹ๅฐ่ฉฑๆก†ๅŽป่ฎŠๆ›ดไฝ ็™ปๅ…ฅๅ˜…่จ—็ฎกๆœๅ‹™ๆไพ›่€…" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 msgid "Opens a dialog to choose who can interact with this post" @@ -8699,7 +8699,7 @@ msgstr "ๆ‰“้–‹่ชฟ่ฉฆๆข็›ฎๅ˜…้กๅค–่ฉณ็ดฐ่ณ‡่จŠ" msgid "Opens alt text dialog" msgstr "ๆ‰“้–‹ๆ›ฟไปฃๆ–‡ๅญ—ๅฐ่ฉฑๆก†" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "ๆ‰“้–‹ไฝ ๅ˜…่ฃ็ฝฎไธŠๅ˜…็›ธๆฉŸ" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "ๆ‰“้–‹ๆต็จ‹ๅŽปๅปบ็ซ‹ไธ€ๅ€‹ๆ–ฐๅ˜… Bluesky ๅธณ่™Ÿ" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "ๆ‰“้–‹ๆต็จ‹ๅŽป็™ปๅ…ฅไฝ ็พๆœ‰ๅ˜… Bluesky ๅธณ่™Ÿ" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "ๅทฒๆ›ดๆ–ฐๅฏ†็ขผ๏ผ" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "ๆšซๅœ" @@ -8925,12 +8925,12 @@ msgstr "ๆšซๅœ" msgid "Pause GIF" msgstr "ๆšซๅœ GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "ๆšซๅœๅฝฑ็‰‡" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "็”จๆˆถ" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "{ownerName} ่ทŸๅ˜…ไบบๅฏไปฅ็”ณ่ซ‹ๅŠ ๅ…ฅ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "@{0} ่ทŸๅ’—ๅ˜…ไบบ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "่ทŸ็ทŠ @{0} ๅ˜…ไบบ" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "ๆˆ‘่ทŸๅ˜…ไบบ" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "ๆˆ‘่ทŸๅ˜…ไบบๅฏไปฅ็”ณ่ซ‹ๅŠ ๅ…ฅ" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "ไฝ ่ทŸๅ˜…ไบบ" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "ๅœ–็‰‡ๅ””ๅ•ฑ็ดฐ่ทฏ็‡ใ€‚" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "ๅ›บๅฎšๅ‹•ๆ…‹ๆบ" @@ -9034,7 +9034,7 @@ msgstr "ๅ›บๅฎšๅ‹•ๆ…‹ๆบ" msgid "Pin to home" msgstr "ๅ›บๅฎšๅˆฐ้ฆ–้ " -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "ๅ›บๅฎšๅˆฐ้ฆ–้ " @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "ๅ›บๅฎšๅ’—" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "ๅ›บๅฎš {0} ๅˆฐ้ฆ–้ " @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "ๅ›บๅฎšๅ–บไฝ ๅ˜…ๅ‹•ๆ…‹ๆบ" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "ๆ’ญๆ”พ" @@ -9076,8 +9076,8 @@ msgstr "ๆ’ญๆ”พ {0}" msgid "Play GIF" msgstr "ๆ’ญๆ”พ GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "ๆ’ญๆ”พๅฝฑ็‰‡" @@ -9109,11 +9109,11 @@ msgstr "่ซ‹ๅ–บไฝ ็™ผๅธƒๅช’้ซ”ๅ…งๅฎนๅบฆๅŠ ๅ…ฅ้ฉ็•ถๅ˜…ๅ…งๅฎน่ญฆๅ‘Šๆจ™่จ˜ใ€‚" msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "่ซ‹ๅŽปๅˆฐไฝ ๅ˜…้›ป้ƒตไฟก็ฎฑไปฅๅ–ๅพ—ๅพŒ็บŒๆŒ‡็คบใ€‚้›ป้ƒตๅฏ่ƒฝ้œ€่ฆไธ€ๅ…ฉๅˆ†้˜ๅ…ˆๆœƒ้€้”ใ€‚" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "่ซ‹่จญๅฎšไฝ ๅ˜…ๅธณ่™Ÿไปฃ็ขผใ€‚" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "่ซ‹่จญๅฎšไฝ ๅ˜…ๅฏ†็ขผใ€‚" @@ -9122,7 +9122,7 @@ 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 "่ซ‹ๆ‰“้–‹ๆˆ‘ๅ“‹ๆญฃ่ฉฑ้€ๅ’—ๅŽปไฝ ๆ–ฐ้›ป้ƒตๅ…ฅ้‚Šๅ—ฐๆข้€ฃ็ตๅšŸ้ฉ—่ญ‰ๆ–ฐ้›ป้ƒตใ€‚ๅ‘ขๅ€‹ๆญฅ้ฉŸ้—œไนŽไฝ ๅฏไปฅ็นผ็บŒไบซ็”จๆ‰€ๆœ‰ Bluesky ๅ˜…ๅŠŸ่ƒฝใ€‚" -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "่ซ‹ๅฎŒๆˆ Captcha ้ฉ—่ญ‰๏ผˆไบบๆฉŸ้ฉ—่ญ‰๏ผ‰ใ€‚" @@ -9179,7 +9179,7 @@ msgstr "่ซ‹่ผธๅ…ฅไฝ ๆ”ถๅˆฐๅ˜…ไปฃ็ขผๅŒๅŸ‹ไฝ ๆƒณ็”จๅ˜…ๆ–ฐๅฏ†็ขผใ€‚" msgid "Please enter the security code we sent to your previous email address." msgstr "่ซ‹่ผธๅ…ฅๆˆ‘ๅ“‹ๆญฃ่ฉฑ้€ๅ’—ๅŽปไฝ ้›ป้ƒตๅœฐๅ€ๅ—ฐๅ€‹ไฟๅฎ‰็ทจ็ขผใ€‚" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "่ซ‹่ผธๅ…ฅไฝ ๅ˜…้›ป้ƒตๅœฐๅ€ใ€‚" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "่ซ‹ๅ–บไธ‹ไฝŽๅฏซไฝŽไฝ ๅ˜…่จŠๆฏ๏ผš" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "ๆ”ฟๆฒป" @@ -9269,7 +9269,7 @@ msgstr "ๆ”ฟๆฒป" msgid "Porn" msgstr "่‰ฒๆƒ…" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "็™ผๅธƒ" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "ๅธ–ๆ–‡" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "็™ผๅธƒไธ€ๅผต็›ธ็‰‡" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "็™ผๅธƒไธ€ๆขๅฝฑ็‰‡" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "็™ผๆ™’ไฝขๅ“‹" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "้ปž้ƒฝ่ฆ็™ผๅธƒ" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "ๅทฒๅฐ้Ž–ๅธ–ๆ–‡" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} ๅ˜…ๅธ–ๆ–‡" @@ -9340,7 +9340,7 @@ msgstr "ๅ‘ขๆขๅธ–ๆ–‡ไฟพไฝ ้šฑ่—ๅ’—" msgid "Post interaction settings" msgstr "ๅธ–ๆ–‡ไบ’ๅ‹•่จญๅฎš" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "ๅธ–ๆ–‡ไบ’ๅ‹•่จญๅฎš" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "ๅทฒๅ›บๅฎšๅธ–ๆ–‡" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "ๅทฒๆ”ถ่—ๅธ–ๆ–‡" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "ๅทฒๅ””ๅ†ๅ›บๅฎšๅธ–ๆ–‡" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "ๅธ–ๆ–‡" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "ๅธ–ๆ–‡ๅŒๅ›ž่ฆ†" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "ๅฏไปฅๆ นๆ“šๅญ—่ฉžใ€ๆจ™็ฑค๏ผŒๅˆๆˆ–ๅ…ฉ็จฎไธ€้ฝŠๅŽป้œ้Ÿณๅธ–ๆ–‡ใ€‚ๆˆ‘ๅ“‹ๅปบ่ญฐ้ฟ้–‹ๅคง้‡ๅธ–ๆ–‡ๅบฆๆœƒๅ‡บ็พๅ˜…ๅธธ่ฆ‹ๅญ—่ฉž๏ผŒๅ””ไฟ‚ๅ˜…่ฉฑไปคๅˆฐไฝ ไธป้ ๅ†‡ๆ™’ๅธ–ๆ–‡ใ€‚" @@ -9398,6 +9396,10 @@ msgstr "ๅฏไปฅๆ นๆ“šๅญ—่ฉžใ€ๆจ™็ฑค๏ผŒๅˆๆˆ–ๅ…ฉ็จฎไธ€้ฝŠๅŽป้œ้Ÿณๅธ–ๆ–‡ใ€‚ๆˆ‘ๅ“‹ msgid "Posts hidden" msgstr "ๅธ–ๆ–‡้šฑ่—ๅ’—" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "ๆฝ›ๅœจ่ชคๅฐŽๆ€ง้€ฃ็ต" @@ -9449,20 +9451,21 @@ msgstr "็ง้šฑ" msgid "Privacy and security" msgstr "็ง้šฑๅŒไฟๅฎ‰" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "็ง้šฑๅŒไฟๅฎ‰" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "็ง้šฑๅŒไฟๅฎ‰่จญๅฎš" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "็ง้šฑๆ”ฟ็ญ–" msgid "Privacy violation of a minor" msgstr "ไพต็Šฏๆœชๆˆๅนดไบบ็ง้šฑ" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "่™•็†็ทŠ GIFโ€ฆโ€ฆ" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "่™•็†็ทŠๆข็‰‡โ€ฆโ€ฆ" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "ๅ…ฌ้–‹ใ€ๅฏๅˆ†ไบซๅ˜…ๆธ…ๅ–ฎ๏ผŒๅฏไปฅ็”จๅšŸๆ‰น้‡้œ้Ÿณๆˆ–ๅฐ้Ž–ๅธณ่™Ÿใ€‚" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "็™ผๅธƒๅธ–ๆ–‡" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "็™ผๅธƒๅธ–ๆ–‡" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "็™ผๅธƒๅ›ž่ฆ†" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "็™ผๅธƒๅ›ž่ฆ†" @@ -9599,12 +9602,12 @@ msgstr "ๅทฒๆ‹’็ต•ๅผ•็”จๅธ–ๆ–‡" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "ๅผ•็”จ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "ๅผ•็”จๅ‘ขๆข็ฏ‡ๅธ–ๆ–‡" @@ -9647,7 +9650,7 @@ msgstr "้‡ๆ–ฐๅ•“็”จไฝ ๅ˜…ๅธณ่™Ÿ" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "็นผ็บŒ้–ฑ่ฎ€ {0, plural, other {# ๆขๅ›ž่ฆ†}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "้–ฑ่ฎ€้ปž็”จ้€ฒ้šŽๆตๅ˜ข็ฏฉ้ธๅ™จ" @@ -9657,11 +9660,11 @@ msgstr "้–ฑ่ฎ€้ปž็”จ้€ฒ้šŽๆตๅ˜ข็ฏฉ้ธๅ™จ" msgid "Read blog post" msgstr "้–ฑ่ฎ€็ถฒ่ชŒๆ–‡็ซ " -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "็‡ๅฐ‘ๅ•ฒ" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "็‡ๅคšๅ•ฒ" @@ -9687,11 +9690,11 @@ msgstr "็‡ๅ“ Bluesky ็ง้šฑๆ”ฟ็ญ–" msgid "Read the Bluesky Terms of Service" msgstr "็‡ๅ“ Bluesky ๆœๅ‹™ๆขๆฌพ" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "็œžๅฏฆๅฐ่ฉฑใ€‚" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "็œžๅฏฆ็”จๆˆถใ€‚" @@ -9721,10 +9724,6 @@ msgstr "่ฟ‘ๆŽ’ๅ˜…ๆตๅ˜ข่จ˜้Œ„" msgid "Recently used" msgstr "่ฟ‘ๆŽ’ไฝฟ็”จ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "ๆŽจ่–ฆ" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "้‡ๆ–ฐ้€ฃ็ทš" @@ -9748,7 +9747,7 @@ msgstr "ๆ‹’็ต•ๅ‚พๅˆ้‚€่ซ‹" msgid "Reject join request" msgstr "ๆ‹’็ต•ๅŠ ๅ…ฅ็”ณ่ซ‹" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "ๆ’ˆๅคšๆฌกๅฐ่ฉฑ" @@ -9766,7 +9765,7 @@ msgstr "ๆ’ˆๅคšๆฌกๅฐ่ฉฑ" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "ๅˆช้™ค" @@ -9792,8 +9791,8 @@ msgstr "็งป้™ค {displayName}๏ผŸ" msgid "Remove {q}" msgstr "็งป้™ค {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "็งป้™คๅธณ่™Ÿ" @@ -9845,15 +9844,15 @@ msgstr "็งป้™ค็ฏฉ้ธๆขไปถ" msgid "Remove from chat" msgstr "ๅ–บๅ‚พๅˆๅบฆๅˆช้™ค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "ๅ–บๆˆ‘ๅ˜…ๅ‹•ๆ…‹ๆบๅบฆๅˆช้™ค" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "ไฟ‚ๅ’ช่ฆๅ–บๅฟซ้€Ÿๅญ˜ๅ–ไธญๅˆช้™ค๏ผŸ" @@ -9862,7 +9861,7 @@ msgstr "ไฟ‚ๅ’ช่ฆๅ–บๅฟซ้€Ÿๅญ˜ๅ–ไธญๅˆช้™ค๏ผŸ" msgid "Remove from saved feeds" msgstr "ๅ–บๅ„ฒๅญ˜ๅ’—ๅ˜…ๅ‹•ๆ…‹ๆบๅบฆๅˆช้™ค" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "ๅพžๅธ–ๆ–‡ๆ”ถ่—ๅบฆๅˆช้™ค" @@ -9880,8 +9879,8 @@ msgstr "ๅˆช้™คๅœ–็‰‡" msgid "Remove live status" msgstr "ๅˆช้™ค็›ดๆ’ญ็‹€ๆ…‹" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "็งป้™คๆˆๅ“ก" @@ -9943,7 +9942,7 @@ msgstr "ๅทฒๅพžๆธ…ๅ–ฎๅบฆๅˆช้™ค" msgid "Removed from saved feeds" msgstr "ๅทฒๅพžๅ„ฒๅญ˜ๅ’—ๅ˜…ๅ‹•ๆ…‹ๆบๅบฆๅˆช้™ค" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "ๅทฒๅพžๅธ–ๆ–‡ๆ”ถ่—ๅบฆๅˆช้™ค" @@ -9952,7 +9951,7 @@ msgstr "ๅทฒๅพžๅธ–ๆ–‡ๆ”ถ่—ๅบฆๅˆช้™ค" msgid "Removed from starter pack" msgstr "ๅทฒๅพžๆ–ฐๆ‰‹ๅŒ…ๅบฆๅˆช้™ค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "่ฆ†ไฝ " -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "{senderName} ่ฆ†ๅ’—่จŠๆฏ๏ผŒๆ’ณๅ“่ฝ†ๅˆฐๅ—ฐๅบฆ" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" -msgstr "" +msgstr "ๆญคๅ›ž่ฆ†ๅ˜…่จŠๆฏๅ–บไฝ ๅŠ ๅ…ฅๅ‰ๅ‚ณ้€" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "ๆœ‰ไบบ่ฆ†ๅ’—่จŠๆฏ๏ผŒๆ’ณๅ“่ฝ†ๅˆฐๅ—ฐๅบฆ" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "ๅ›ž่ฆ†" @@ -10037,7 +10037,7 @@ msgstr "ๅ‘ขๆขๅธ–ๆ–‡ๅ˜…ๅ›ž่ฆ†็ถ“ๅทฒ้—œ้–‰ใ€‚" msgid "Reply" msgstr "ๅ›ž่ฆ†" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "ๅ›ž่ฆ†" @@ -10098,8 +10098,8 @@ msgstr "ๆ“งๅ ฑๅฐ่ฉฑ" msgid "Report dialog" msgstr "ๆ“งๅ ฑๅฐ่ฉฑๆก†" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "ๆ“งๅ ฑๅ‹•ๆ…‹ๆบ" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "ไฝ ๆ‰€่ฝ‰็™ผ" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "่ฝ‰็™ผ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "่ฝ‰็™ผๅ‘ขๆขๅธ–ๆ–‡" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "่ฝ‰็™ผไฝ ่ฝ‰็™ผๅ˜…ๅธ–ๆ–‡" @@ -10253,7 +10253,7 @@ msgstr "ๅทฒ้€ๅ‡บ็”ณ่ซ‹" msgid "Requests" msgstr "้‚€่ซ‹" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10333,7 +10333,7 @@ msgstr "้‡่จญๅฏ†็ขผ" #: src/screens/Login/LoginForm.tsx:422 msgid "Reset your password by sending a code to your email" -msgstr "" +msgstr "้€้Žๅ‚ณ้€้ฉ—่ญ‰็ขผๅˆฐไฝ ๅ˜…้›ป้ƒตๅŽป้‡่จญๅฏ†็ขผ" #: src/screens/Settings/FindContactsSettings.tsx:544 #: src/screens/Settings/FindContactsSettings.tsx:560 @@ -10358,10 +10358,10 @@ msgstr "่ฉฆๅคšๆฌกๅŸท่กŒไธŠไธ€ๅ€‹ๅ‡บ้Œฏ่ชคๅ˜…ๅ‹•ไฝœ" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "่ฟ”ๅŽป้ฆ–้ " #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "่ฟ”ๅŽปไธŠไธ€้ " @@ -10406,7 +10406,7 @@ msgstr "่ฟ”ๅŽปไธŠไธ€ๆญฅ" #: src/screens/Login/LoginForm.tsx:613 msgid "Reveal password" -msgstr "" +msgstr "้กฏ็คบๅฏ†็ขผ" #. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. #: src/features/gifPicker/components/GifCategoryPills.tsx:75 @@ -10446,27 +10446,27 @@ msgstr "ๅ„ฒๅญ˜ๅ‡บไธ–ๆ—ฅๆœŸ" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "ๅ„ฒๅญ˜่ฎŠๆ›ด" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "ไฟ‚ๅ’ช่ฆๅ„ฒๅญ˜่ฎŠๆ›ด๏ผŸ" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "ๅ„ฒๅญ˜่‰็จฟ" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "ไฟ‚ๅ’ช่ฆๅ„ฒๅญ˜่‰็จฟ๏ผŸ" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "ๅ„ฒๅญ˜ QR code" msgid "Save these options for next time" msgstr "ๅ„ฒๅญ˜ๅ‘ขๅ•ฒ้ธ้ …ไพ›ไธ‹ๆฌกไฝฟ็”จ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "ๅ„ฒๅญ˜ๅˆฐๆˆ‘ๅ˜…ๅ‹•ๆ…‹ๆบๅบฆ" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "ๅ„ฒๅญ˜ๅ’—ๅ˜…ๅ‹•ๆ…‹ๆบ" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "ๅธ–ๆ–‡ๆ”ถ่—" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "ๅทฒๅ„ฒๅญ˜ๅˆฐไฝ ๅ˜…ๅ‹•ๆ…‹ๆบๅบฆ" @@ -10520,8 +10520,8 @@ msgstr "ๅทฒๅ„ฒๅญ˜ๅˆฐไฝ ๅ˜…ๅ‹•ๆ…‹ๆบๅบฆ" msgid "Say hello!" msgstr "Say ๅ“ˆๅ˜๏ผ" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "่ฉฆๅ“ๅŒๅ…ถไป–ไบบ say ๅ“ˆไฝฌๅ•ฆ" @@ -10535,7 +10535,7 @@ msgstr "ๆŽƒๆ" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "ๆŽƒๆ QR Code" @@ -10543,15 +10543,15 @@ msgstr "ๆŽƒๆ QR Code" msgid "Science" msgstr "็ง‘ๅญธ" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "ๅ‘ๅทฆๆฒๅ‹•" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "ๅ‘ๅณๆฒๅ‹•" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "่ฝ†ๅˆฐๅ›ž่ฆ†ๅ˜…่จŠๆฏๅบฆ" @@ -10564,8 +10564,8 @@ msgstr "่ฝ†ๅˆฐๅŽป้ ‚้ƒจ" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "ๆตๅ˜ข" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "ๆต @{0} ๅ˜…ๅธ–ๆ–‡" @@ -10602,21 +10602,21 @@ msgstr "ๆตใ€Œ{interestsDisplayName}ใ€๏ผˆๅทฒๆ€้ธ๏ผ‰" #: src/screens/Search/components/AutocompleteResults.tsx:49 msgid "Search for โ€œ{searchText}โ€" -msgstr "" +msgstr "ๆตใ€Œ{searchText}ใ€" #: src/screens/Search/components/SearchHistory.tsx:136 msgid "Search for {q}" -msgstr "" +msgstr "ๆต {q}" #: src/screens/StarterPack/Wizard/index.tsx:541 msgid "Search for feeds that you want to suggest to others." msgstr "ๆตไฝ ๆƒณๅŒๅ…ถไป–ไบบๆŽจ่–ฆๅ˜…ๅ‹•ๆ…‹ๆบใ€‚" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "ๆตๆ›ดๅคšๅธณ่™Ÿ" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "ๆตๆ›ดๅคšๅ‹•ๆ…‹ๆบ" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "ๆต GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "ๆœช็™ปๅ…ฅ็‹€ๆ…‹็”จๅ””ๅˆฐๆตๅ˜ขๅŠŸ่ƒฝ" @@ -10707,17 +10707,22 @@ msgstr "็‡ๅ“ๅ‘ขไฝ็”จๆˆถๅŒ…ๅซ #{tag} ๅ˜…ๅธ–ๆ–‡" msgid "See jobs at Bluesky" msgstr "ๅ–บ Bluesky ๅบฆๆตๅทฅ" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "็‡ๅคšๅ•ฒ" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "็‡ๅคšๅ•ฒๅปบ่ญฐๅ€‹ไบบๆช”ๆกˆ" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "็‡ๅ“ๅปบ่ญฐๅธณ่™Ÿ" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "ๆ’ญๆ”พ้€ฒๅบฆๆขใ€‚็”จๆ–นๅ‘ๆŽฃๆŽงๅˆถ่กŒๅ‰ๅŒ่คชๅพŒ๏ผŒๆ’ณ็ฉบ็™ฝๆŽฃๆŽงๅˆถๆ’ญๆ”พๆˆ–ๆšซๅœ" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "ๆ€้ธใ€Œ{interestsDisplayName}ใ€้กžๅˆฅ" @@ -10748,7 +10753,7 @@ msgstr "ๆ€้ธ {0}" msgid "Select {langName}" msgstr "ๆ€้ธ {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "ๆ€ไธ€้šป่‰ฒ" @@ -10764,11 +10769,11 @@ msgstr "ๆ€้ธๅธณ่™Ÿ" msgid "Select an app language" msgstr "ๆ€้ธๆ‡‰็”จ็จ‹ๅผ่ชž่จ€" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "ๆ€ๅ€‹้ ญๅƒ" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "ๆ€ๅ€‹ Emoji" @@ -10780,12 +10785,13 @@ msgstr "ๆ€้ธไธ€ๅ€‹้ธ้ …" msgid "Select app language" msgstr "ๆ€้ธๆ‡‰็”จ็จ‹ๅผ่ชž่จ€" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "ๆ€้ธๅญ—ๅน•ๆช”ๆกˆ๏ผˆ.vtt๏ผ‰" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "ๆ€้ธๅ‚พๅˆใ€Œ{name}ใ€" @@ -10826,7 +10832,7 @@ msgstr "ๆ€้ธ GIF" msgid "Select GIF \"{0}\"" msgstr "ๆ€้ธ GIFใ€Œ{0}ใ€" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "ๆ€้ธ็พฃ็ต„ๅ‚พๅˆๆˆๅ“ก" @@ -10864,7 +10870,7 @@ msgstr "ๆ€้ธๆ…ฃ็”จ่ชž่จ€" msgid "Select telephone code" msgstr "ๆ€้ธๅœ‹ๅฎถไปฃ็ขผ" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "ๆ€ๅ€‹ {emojiName} Emoji ๅšไฝ ๅ˜…้ ญๅƒ" @@ -10945,7 +10951,8 @@ msgstr "ๅ‚ณ้€่จŠๆฏ" msgid "Send post to {name}" msgstr "ๅ‚ณ้€ๅธ–ๆ–‡็•€ {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "ๅ‚ณ้€ๅธ–ๆ–‡ๅˆฐโ€ฆโ€ฆ" @@ -10963,12 +10970,12 @@ msgstr "ๅพžไฝ ๅ˜…้›ป่ฉฑๅ‚ณ้€ๅ‘ขๆข่จŠๆฏ" msgid "Send verification email" msgstr "ๅ‚ณ้€้ฉ—่ญ‰้›ป้ƒต" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "้€้Ž็ง่จŠๅ‚ณ้€" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11011,24 +11018,24 @@ msgstr "ๅ–บไธ‹ไฝŽ่จญๅฎšๅฅฝๅ‡บไธ–ๆ—ฅๆœŸ๏ผŒๆˆ‘ๅ“‹ๅณๅˆป็•€ไฝ ็นผ็บŒๅ‡บ Post ๅŒๆŽข #: src/screens/Login/LoginForm.tsx:352 msgid "set your hosting provider manually" -msgstr "" +msgstr "ๆ‰‹ๅ‹•่จญๅฎšไฝ ๅ˜…่จ—็ฎกๆœๅ‹™ๆไพ›่€…" #: src/screens/Login/LoginForm.tsx:486 msgid "Set your hosting provider manually" -msgstr "" +msgstr "ๆ‰‹ๅ‹•่จญๅฎšไฝ ๅ˜…่จ—็ฎกๆœๅ‹™ๆไพ›่€…" #: src/screens/Login/ForgotPasswordForm.tsx:104 msgid "Sets email for password reset" msgstr "่จญๅฎš้›ป้ƒตๅšŸ้‡่จญๅฏ†็ขผ" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "ๅšŸ่‡ชๅ…ถไป–ไบบๅ˜…ๅ‹•ๆ…‹้€š็Ÿฅ่จญๅฎš" @@ -11036,49 +11043,49 @@ msgstr "ๅšŸ่‡ชๅ…ถไป–ไบบๅ˜…ๅ‹•ๆ…‹้€š็Ÿฅ่จญๅฎš" msgid "Settings for allowing others to be notified of your posts" msgstr "ๅ…่จฑๅ…ถไป–ไบบๆŽฅๆ”ถไฝ ๅ‡บๆ–ฐ่ฒผ้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "่ฎšๅฅฝ้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "ๆๅŠ้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "ๆ–ฐๆ“่บ‰้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "ๅ…ถไป–้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "่ฝ‰็™ผๅ˜…่ฎšๅฅฝ้€š็Ÿฅ่จญๅฎš" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "ๆ–ฐ่จŠๆฏ่ซ‹ๆฑ‚ๅ˜…้€š็Ÿฅ่จญๅฎš" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "ๆ–ฐ่จŠๆฏๅ˜…้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "่ฝ‰็™ผๅ˜…่ฝ‰็™ผ้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "ๅผ•็”จ้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "ๅ›ž่ฆ†้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "่ฝ‰็™ผ้€š็Ÿฅ่จญๅฎš" @@ -11109,14 +11116,14 @@ msgstr "ๅˆ†ไบซ" #: src/ageAssurance/useVerificationFlow.ts:62 msgid "Share age range" -msgstr "" +msgstr "ๅˆ†ไบซๅนด้ฝก็ฏ„ๅœ" #: src/view/com/profile/ProfileMenu.tsx:549 msgid "Share anyway" msgstr "้ปž้ƒฝ่ฆๅˆ†ไบซ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "ๅˆ†ไบซ็™ผๅธƒ่€… DID" @@ -11125,9 +11132,9 @@ msgstr "ๅˆ†ไบซ็™ผๅธƒ่€… DID" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "ๅˆ†ไบซๆ„่ฆ‹" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "ๅˆ†ไบซ้€ฃ็ตๅฐ่ฉฑๆก†" msgid "Share my profile" msgstr "ๅˆ†ไบซๆˆ‘ๅ˜…ๅ€‹ไบบๆช”ๆกˆ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "ๅˆ†ไบซๅธ–ๆ–‡ at:// ้€ฃ็ต" @@ -11169,12 +11176,12 @@ msgstr "ๅˆ†ไบซๅ€‹ไบบๆช”ๆกˆ" msgid "Share QR code" msgstr "ๅˆ†ไบซ QR code" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "ๅˆ†ไบซๅ‘ขๅ€‹ๅ‹•ๆ…‹ๆบ" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "ๅˆ†ไบซๆญคๆตๅ˜ข็ตๆžœ" @@ -11186,8 +11193,8 @@ msgstr "ๅˆ†ไบซๅ‘ขๅ€‹ๆ–ฐๆ‰‹ๅŒ…" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "ๅˆ†ไบซๅ‘ขๅ€‹ๆ–ฐๆ‰‹ๅŒ…๏ผŒ็ญ‰ๆ›ดๅคšไบบๅŠ ๅ…ฅไฝ ๅ–บ Bluesky ๅบฆๅ˜…็คพ็พฃใ€‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,23 +11210,23 @@ msgstr "ๅˆ†ไบซไฝ ๅ˜…่ฏ็ตกไบบๅŽปๅฐ‹ๆ‰พๆœ‹ๅ‹" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughtsโ€ฆ" -msgstr "" +msgstr "ๅˆ†ไบซไฝ ๅ˜…่ซ—ๆณ•โ€ฆโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "ๅ…ฑ็”จๅๅฅฝๆธฌ่ฉฆๅ™จ" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 msgid "Sharing your age range reveals only the range associated with your Apple Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "ๅˆ†ไบซไฝ ๅ˜…ๅนด้ฝก็ฏ„ๅœๅชๆœƒๆญ้œฒๅŒไฝ  Apple ๅธณ่™Ÿ้—œ่ฏๅ˜…่ณ‡่จŠ๏ผˆไพ‹ๅฆ‚๏ผšไฝ ๅนดๆปฟ 18 ๆญฒ๏ผ‰ใ€‚<0>ไฝ ๅ˜…็ขบๅˆ‡ๅนด้ฝกๅŒ็”Ÿๆ—ฅ็ต•ๅฐๅ””ๆœƒ่ขซๅˆ†ไบซ๏ผŒ่€Œๅ‘ขๅ•ฒ่ณ‡ๆ–™ไบฆ็ต•ๅฐๅ””ๆœƒ้›ข้–‹ๅ‘ข้ƒจ่ฃ็ฝฎใ€‚ๅ› ๆญค๏ผŒๅ‘ขๅ€‹ๅŠŸ่ƒฝๅ‡ˆไฟ‚ๅนซๆญค่ฃ็ฝฎ่งฃ้™ค้™ๅˆถใ€‚ๆŠ‘ๆˆ–๏ผŒ<1>ไฝ ๅฏไปฅ็”จๆˆ‘ๅ“‹ไฟกไปปๅ˜…ๅˆไฝœๅคฅไผด KWSๅŽปๅฎŒๆˆ้ฉ—่ญ‰๏ผŒๆ–นไพฟๅ–บๆ‰€ๆœ‰ๅนณๅฐไธŠๅ•“็”จๅ–็”จๆฌŠ้™ใ€‚" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "ๅˆ†ไบซไฝ ๅ˜…ๅนด้ฝก็ฏ„ๅœๅชๆœƒๆญ้œฒๅŒไฝ  Google ๅธณ่™Ÿ้—œ่ฏๅ˜…่ณ‡่จŠ๏ผˆไพ‹ๅฆ‚๏ผšไฝ ๅนดๆปฟ 18 ๆญฒ๏ผ‰ใ€‚<0>ไฝ ๅ˜…็ขบๅˆ‡ๅนด้ฝกๅŒ็”Ÿๆ—ฅ็ต•ๅฐๅ””ๆœƒ่ขซๅˆ†ไบซ๏ผŒ่€Œๅ‘ขๅ•ฒ่ณ‡ๆ–™ไบฆ็ต•ๅฐๅ””ๆœƒ้›ข้–‹ๅ‘ข้ƒจ่ฃ็ฝฎใ€‚ๅ› ๆญค๏ผŒๅ‘ขๅ€‹ๅŠŸ่ƒฝๅ‡ˆไฟ‚ๅนซๆญค่ฃ็ฝฎ่งฃ้™ค้™ๅˆถใ€‚ๆŠ‘ๆˆ–๏ผŒ<1>ไฝ ๅฏไปฅ็”จๆˆ‘ๅ“‹ไฟกไปปๅ˜…ๅˆไฝœๅคฅไผด KWSๅŽปๅฎŒๆˆ้ฉ—่ญ‰๏ผŒๆ–นไพฟๅ–บๆ‰€ๆœ‰ๅนณๅฐไธŠๅ•“็”จๅ–็”จๆฌŠ้™ใ€‚" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "้กฏ็คบ" msgid "Show alt text" msgstr "้กฏ็คบๆ›ฟไปฃๆ–‡ๅญ—" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "้ปž้ƒฝ่ฆ้กฏ็คบ" @@ -11274,9 +11281,9 @@ msgstr "้ปž้ƒฝ่ฆ้กฏ็คบๅ‘ขๅ€‹ๆธ…ๅ–ฎ" msgid "Show lists of users to select from" msgstr "้กฏ็คบๆœ‰ๅพ—ๆ€้ธๅ˜…็”จๆˆถๆธ…ๅ–ฎ" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "้กฏ็คบๆ›ดๅคš" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "้กฏ็คบ่ญฆๅ‘Šๅ…ผไธ”ๅ–บๅ‹•ๆ…‹ๆบๅบฆ็ฏฉ้ธ" msgid "Show when youโ€™re live" msgstr "้กฏ็คบ็›ดๆ’ญ็‹€ๆ…‹" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "้กฏ็คบ้—œๆ–ผๅ‘ขๆขๅธ–ๆ–‡ๅ˜…ๅปบ็ซ‹ๆ™‚้–“่ณ‡่จŠ" @@ -11341,15 +11348,15 @@ msgstr "้กฏ็คบ้—œๆ–ผๅ‘ขๆขๅธ–ๆ–‡ๅ˜…ๅปบ็ซ‹ๆ™‚้–“่ณ‡่จŠ" msgid "Shows other accounts you can switch to" msgstr "้กฏ็คบๅ…ถไป–ไฝ ๅˆ‡ๆ›ๅพ—ๅˆฐๅ˜…ๅธณ่™Ÿ" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "้กฏ็คบๅ…งๅฎน" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "้กฏ็คบๅ…งๅฎน" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11379,7 +11386,7 @@ msgstr "็”จ {0} ่บซไปฝ็™ปๅ…ฅ" #: src/screens/Login/ChooseAccountForm.tsx:84 msgid "Sign in asโ€ฆ" -msgstr "" +msgstr "็™ปๅ…ฅ็ˆฒโ€ฆโ€ฆ" #: src/screens/Deactivated.tsx:195 #: src/screens/Deactivated.tsx:201 @@ -11434,9 +11441,9 @@ msgstr "ไฟ‚ๅ’ช่ฆ็™ปๅ‡บ๏ผŸ" #: src/screens/Login/LoginForm.tsx:572 msgid "Sign up" -msgstr "" +msgstr "่จปๅ†Š" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "้œ€่ฆ็™ปๅ…ฅ" @@ -11469,7 +11476,7 @@ msgstr "่ทณ้Ž" msgid "Skip contact sharing and continue to the app" msgstr "่ทณ้Žๅˆ†ไบซ่ฏ็ตกไบบๅ…ผ็นผ็บŒไฝฟ็”จๆ‡‰็”จ็จ‹ๅผ" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "่ทณ้Ž็ฉบ็™ฝๅธ–ๆ–‡๏ผŸ" @@ -11487,7 +11494,7 @@ msgstr "่ทณๅˆฐไธ‹ไธ€ๆญฅ" msgid "slide" msgstr "ๅนป็‡ˆ็‰‡" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "็ดฐๅ•ฒ" @@ -11499,14 +11506,14 @@ msgstr "ๆšซๅœๆ้†’" msgid "So many thoughts, you should post one" msgstr "ๅ’ๅคš่ซ—้ ญ๏ผŒไธๅฆ‚ๅ‡บ Post ่ฌ›ๅ“" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "็”ฑไฝ ่ฉฑไบ‹ๅ˜…็คพไบคๅนณ่‡บใ€‚" #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "่ญ˜ๅพ—ๅ˜…่ฎšๅฅฝ่€…ไบ’ๅ‹•ๆƒ…ๆณ" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11520,7 +11527,7 @@ msgstr "ๆธ…ๅ–ฎๅบฆๆœ‰้ƒจๅˆ†ๅ…งๅฎนๅฏฉๆ ธๆœๅ‹™ๅ””ๅ†็”จๅˆฐใ€‚" msgid "Some of your verifications are invalid." msgstr "ไฝ ็›ฎๅ‰่ขซๆŽˆไบˆๅ˜…้ƒจๅˆ†้ฉ—่ญ‰็„กๆ•ˆใ€‚" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "ๅ…ถไป–ๅฏ่ƒฝ้ƒฝๆœƒๅ•ฑไฝ ๅฟƒๆฐดๅ˜…ๅ‹•ๆ…‹ๆบ" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "ๆœ‰ไบบ้›ข้–‹ๅ’—็พฃ็ต„" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "ๆœ‰ไบบ็•€ๅ’—ๅ€‹ {0} ๅๆ‡‰" @@ -11554,9 +11561,9 @@ msgstr "ๆœ‰ไบบ็•€ๅ’—ๅ€‹ {0} ๅๆ‡‰" msgid "Someone reacted {0} to {target}" msgstr "ๆœ‰ไบบๅ‘ {target} ็•€ๅ’—ๅ€‹ {0} ๅๆ‡‰" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" -msgstr "" +msgstr "ๆœ‰ไบบ่ฆ†ๅ’—" #: src/components/dms/getSystemMessageInfo.ts:60 msgid "Someone was added" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "ๅ‡บๅ’—ๅ•้กŒ๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌก" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "ๅ‡บๅ’—ๅ•้กŒ๏ผŒๅ””่ฉฒ้ฒๅ•ฒ่ฉฆๅคšๆฌกใ€‚" msgid "Something went wrong. Please try again." msgstr "ๅ‡บๅ’—ๅ•้กŒ๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌกใ€‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "ๆœ‰่ผ˜่ผท๏ผŸ่ฉฑ็•€ๆˆ‘ๅ“‹็Ÿฅใ€‚" @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "ๅžƒๅœพ่จŠๆฏๆˆ–ๅ…ถไป–่™›ๅ‡ๆฌบ้จ™่กŒ็ˆฒ" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "้‹ๅ‹•" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "็‡ๅ“ไฝ ๅ˜…ๆœ‹ๅ‹ๅŒ่ทŸ็ทŠๅ˜…ไบบ่ฎš้Žๅ•ฒๅ’ฉๅ˜…ๅธ–ๆ–‡ใ€‚" #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "็•ถไฝ ๅŒ็ฌฌๅ€‹ไบบๅ‚พๅˆไน‹ๅพŒ๏ผŒๅฐ่ฉฑๅ…งๅฎนๅฐฑๆœƒๅ–บๅบฆๅ‡บ็พใ€‚" msgid "Start a group chat" msgstr "้–‹ๅง‹็พฃ็ต„ๅ‚พๅˆ" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "้–‹ๅง‹ๅŒไบบๅ‚พๅˆ" @@ -11682,17 +11689,17 @@ msgstr "้–‹ๅง‹ๆตไบบๅŠ ๅ…ฅ" msgid "Start adding people!" msgstr "้–‹ๅง‹ๆตไบบๅŠ ๅ…ฅ๏ผ" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "้–‹ๅง‹ๅ‚พๅˆ" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "้–‹ๅง‹ๅŒ {displayName} ๅ‚พๅˆ" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "ๆ–ฐๆ‰‹ๅŒ…" @@ -11715,12 +11722,16 @@ msgstr "ไฝ ๅ˜…ๆ–ฐๆ‰‹ๅŒ…" msgid "Starter pack is invalid" msgstr "็„กๆ•ˆๆ–ฐๆ‰‹ๅŒ…" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "ๆ–ฐๆ‰‹ๅŒ…" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "ๆ–ฐๆ‰‹ๅŒ…ๅฏไปฅๅนซไฝ ๅฅฝ่ผ•้ฌ†ๅ™‰ๅŒไฝ ๅ˜…ๆœ‹ๅ‹ๅˆ†ไบซไฝ ๆœ€้พๆ„ๅ˜…ๅ‹•ๆ…‹ๆบๅŒ็”จๆˆถใ€‚" @@ -11728,7 +11739,7 @@ msgstr "ๆ–ฐๆ‰‹ๅŒ…ๅฏไปฅๅนซไฝ ๅฅฝ่ผ•้ฌ†ๅ™‰ๅŒไฝ ๅ˜…ๆœ‹ๅ‹ๅˆ†ไบซไฝ ๆœ€้พๆ„ๅ˜…ๅ‹• msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "ๆ–ฐๆ‰‹ๅŒ…ๅฏไปฅๅนซไฝ ๅŒๆœ‹ๅ‹ๅˆ†ไบซไฝ ่‡ณๆ„›ๅ˜…ๅ‹•ๆ…‹ๆบๅŒไบบใ€‚" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "ๆ–ฐๆ‰‹ๅŒ…ๅฏไปฅๅนซไฝ ๅŒๆœ‹ๅ‹ๅˆ†ไบซไฝ ่‡ณๆ„›ๅ˜…ๅ‹•ๆ…‹ๆบๅŒไบบใ€‚" @@ -11742,7 +11753,7 @@ msgstr "็‹€ๆ…‹้ ้ข" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "็ฌฌ {0} ๆญฅ๏ผˆๅ…ฑ {1} ๆญฅ๏ผ‰" @@ -11754,7 +11765,7 @@ msgstr "ๅทฒๅ‰ทๆ™’ๅ„ฒๅญ˜่ณ‡ๆ–™๏ผŒ่ซ‹ๅณๅˆป้‡ๅ•“ๆ‡‰็”จ็จ‹ๅผใ€‚" msgid "Stored as part of a secure code for matching with others" msgstr "ๅ„ฒๅญ˜็‚บๅฎ‰ๅ…จไปฃ็ขผๅ˜…ไธ€้ƒจๅˆ†๏ผŒๅŽปๅŒน้…ๅ…ถไป–ไบบ" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "ๆ•…ไป”ๆ›ธ" @@ -11787,7 +11798,7 @@ msgstr "ๆไบค็”ณ่จด" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "ๆไบคๆ„่ฆ‹" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "ๅ–บ {0} ่จ‚้–ฑ {publicationTitle}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "่จ‚้–ฑ @ {0} ๅŽป็”จๅ‘ขๅ•ฒๆจ™่จ˜๏ผš" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "ๆˆๅŠŸ้ฉ—่ญ‰" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "ๅปบ่ญฐ" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "ๅปบ่ญฐๅธณ่™Ÿ" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "ไผฐไฝ ๅฟƒๆฐด" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "ๆ—ฅ่ฝ" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "ๆ‚จๆ‰€ๅœจๅœ‹ๅฎถ่€Œๅฎถๆœชๆ”ฏๆดๅ‘ขๅ€‹ๅŠŸ่ƒฝ๏ผๅ””่ฉฒ้ฒๅ•ฒ้ŽๅšŸ็‡็‡ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "ๅทฒๅœๆฌŠๅ˜…ๅธณ่™Ÿๅ””ๅพ—ๅƒ่ˆ‡็พฃ็ต„ๅ‚พๅˆใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "ๅทฒๅœๆฌŠๅ˜…ๅธณ่™Ÿๅ””ๅพ—ๅƒ่ˆ‡ๅ‚พๅˆใ€‚" @@ -11921,8 +11934,8 @@ msgstr "ๅˆ‡ๆ›ๅŽป {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "็ณป็ตฑ" @@ -11945,7 +11958,7 @@ msgstr "่ฝ‰ๅš็งๅฏ†ๅฐ่ฉฑใ€‚" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "ๆ’ณไธ‹ไฝŽใ€Œๅ…่จฑใ€ๆŽฃๅ…่จฑ Bluesky ๅ–็”จไฝ ๅ˜…ไฝ็ฝฎ่ณ‡่จŠ๏ผŒๆˆ‘ๅ“‹ๆœƒ็”จไฝขๅŽปๆ›ดๆบ–็ขบๅ™‰็ขบๅฎšไฝ ่บซ่™•ๅœฐๅ€ๅฏ็”จๅ…งๅฎนๅŒๅŠŸ่ƒฝใ€‚" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "ๆ’ณๅŽป็‡่ฉณ็ดฐ่ณ‡่จŠ" @@ -11976,7 +11989,7 @@ msgstr "ๆ’ณๅ“้–‚ๅ’—ๅ…งๅฎน้ธๅ–ฎ" msgid "Tap to copy this invite link" msgstr "ๆ’ณๅ“่ค‡่ฃฝๆญค้‚€่ซ‹้€ฃ็ต" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "ๆ’ณๅ“ๅณ่ทณ้Ž" @@ -12003,7 +12016,7 @@ msgstr "ๆ’ณๅ“็งป้™คไฝ ๅ˜… {0} ๅๆ‡‰" msgid "Tap to request access to join this group chat" msgstr "ๆ’ณๅ“็”ณ่ซ‹ๅŠ ๅ…ฅๆญค็พฃ็ต„ๅ‚พๅˆ" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "ๆ’ณๅ“่ฉฆๅคšๆฌก" @@ -12016,7 +12029,7 @@ msgstr "ๆ’ณๅ“้กฏ็คบ {0} ๅๆ‡‰" msgid "Tap to show all reactions" msgstr "ๆ’ณๅ“้กฏ็คบๆ‰€ๆœ‰ๅๆ‡‰" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "ๆ’ณๅ“้กฏ็คบๅๆ‡‰" @@ -12032,7 +12045,7 @@ msgstr "ๆ”ชๆŽ‚ๆ™’ - ่ทŸๅ’— 10 ๅ€‹ไบบ๏ผ" msgid "Task complete - 10 likes!" msgstr "ๆ”ชๆŽ‚ๆ™’ - ่ฎšๅค  10 ๆขๅธ–ๆ–‡๏ผ" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "ๆ•Ž่ญ˜ๆˆ‘ๅ“‹ๅ˜…ๆผ”็ฎ—ๆณ•็Ÿฅไฝ ้พๆ„ๅ•ฒไนœ" @@ -12060,7 +12073,7 @@ msgstr "ๆขๆฌพ" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12085,7 +12098,7 @@ msgstr "ๅคš่ฌไฝ ๅ˜…ๆ„่ฆ‹๏ผๆ„่ฆ‹็ถ“ๅทฒ่ฝ‰้”็•€็›ธ้—œๅ‹•ๆ…‹ๆบ็ถญ่ญท่€…ใ€‚" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "ๅคš่ฌไฝ ๅ˜…ๆ„่ฆ‹๏ผ" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "ๆตๅ””ๅˆฐๅ—ฐๅ€‹ๆ–ฐๆ‰‹ๅŒ…ใ€‚" msgid "That username is already taken" msgstr "ๅ‘ขๅ€‹็”จๆˆถๅ็จฑไฟพไบบ็”จๅ’—" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "ๅฐฑๅ™‰ๅ…ˆ๏ผŒๅ’ๅคšไฝ๏ผ" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "ๅฐฑไฟ‚ๅ’ๅคšๅ–‡๏ผ" @@ -12171,7 +12184,7 @@ msgstr "ๅ‘ขๅ€‹ๅ‹•ๆ…‹ๆบไฟพใ€ŒDiscoverใ€ๅ–ไปฃใ€‚" #: src/components/moderation/LabelsOnMeDialog.tsx:64 msgid "The following labels were applied to this post." -msgstr "" +msgstr "ไธ‹ไฝŽๅ•ฒๆจ™็ฑคๅทฒๅฅ—็”จๅˆฐๆญคๅธ–ๆ–‡ใ€‚" #: src/components/moderation/LabelsOnMeDialog.tsx:63 msgid "The following labels were applied to your account." @@ -12216,7 +12229,7 @@ msgstr "ไผบๆœๅ™จไผผไนŽ้‡ๅˆฐๅ•้กŒใ€‚ๅ””่ฉฒ้ฒๅ•ฒ่ฉฆๅคšๆฌกใ€‚" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "ไฝ ๆƒณ็‡ๅ˜…ๆ–ฐๆ‰‹ๅŒ…ๅทฒ็ถ“ๅคฑๆ•ˆใ€‚ไฝ ๅฏไปฅๅˆชๅ’—ๅ‘ขๅ€‹ๆ–ฐๆ‰‹ๅŒ…ๅŽปใ€‚" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "ๅ…งๅฎน้ธๅ–ฎๅฐๆ‡‰ๅ˜…่ฉฑ้กŒ" @@ -12238,7 +12251,7 @@ msgstr "ไฝ ๆไพ›ๅ˜…้ฉ—่ญ‰็ขผ็„กๆ•ˆใ€‚่ซ‹็ขบไฟไฝ ็”จๅ’—ๆญฃ็ขบๅ˜…้ฉ—่ญ‰้€ฃ็ต๏ผŒ msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "้ฉ—่ญ‰ๆœๅ‹™ๆไพ›่€…ๅ‚ณ้€ๅ””ๅˆฐไปฃ็ขผๅŽปไฝ ๅ˜…้›ป่ฉฑ่™Ÿ็ขผๅบฆ๏ผŒ่ซ‹ๆชขๆŸฅๆ‚จ็š„้›ป่ฉฑ่™Ÿ็ขผ่ทŸไฝ่ฉฆๅคšๆฌกใ€‚" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "ไธป้กŒ" @@ -12266,7 +12279,7 @@ msgstr "่ผ‰ๅ…ฅ GIF ๅ—ฐ้™ฃๅ‡บๅ’—ๅ•้กŒใ€‚่ซ‹ๆชขๆŸฅ็ถฒ็ตก้€ฃ็ทš็‹€ๆ…‹๏ผŒ่ทŸไฝ่ฉฆ msgid "There was a problem with your internet connection, please try again" msgstr "ไฝ ๅ˜…็ถฒ็ตก้€ฃ็ทšๅ‡บๅ’—ๅ•้กŒ๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌก" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "ไฝ ๅ˜…็ถฒ็ตก้€ฃ็ทšๅ‡บๅ’—ๅ•้กŒ๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌก" msgid "There was an issue contacting the server" msgstr "้€ฃ็ทšๅˆฐไผบๆœๅ™จๅ—ฐ้™ฃๅ‡บๅ’—ๅ•้กŒ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "้€ฃ็ทšๅˆฐไผบๆœๅ™จๅ—ฐ้™ฃๅ‡บๅ’—ๅ•้กŒ๏ผŒ่ซ‹ๆชขๆŸฅ็ถฒ็ตก้€ฃ็ทš็‹€ๆ…‹่ทŸไฝ่ฉฆๅคšๆฌกใ€‚" @@ -12283,8 +12296,8 @@ msgstr "้€ฃ็ทšๅˆฐไผบๆœๅ™จๅ—ฐ้™ฃๅ‡บๅ’—ๅ•้กŒ๏ผŒ่ซ‹ๆชขๆŸฅ็ถฒ็ตก้€ฃ็ทš็‹€ๆ…‹่ทŸไฝ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "ๆ”ž็ทŠ้€š็Ÿฅๅ—ฐ้™ฃๅ‡บๅ’—ๅ•้กŒ๏ผŒๆ’ณๅ‘ขๅบฆ่ฉฆๅคšๆฌกใ€‚" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "ๆ”ž็ทŠๅธ–ๆ–‡ๅ—ฐ้™ฃๅ‡บๅ’—ๅ•้กŒ๏ผŒๆ’ณๅ‘ขๅบฆ่ฉฆๅคšๆฌกใ€‚" @@ -12309,7 +12322,7 @@ msgstr "ๆ”ž็ทŠไฝ ๅ˜…ๆœๅ‹™่ณ‡ๆ–™ๅ—ฐ้™ฃๅ‡บๅ’—ๅ•้กŒ" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "ๅˆช้™คๅ‹•ๆ…‹ๆบๅ—ฐ้™ฃๅ‡บๅ’—ๅ•้กŒใ€‚่ซ‹ๆชขๆŸฅไฝ ๅ˜…็ถฒ็ตก้€ฃ็ทš็‹€ๆ…‹๏ผŒ่ทŸไฝ่ฉฆๅคšๆฌกใ€‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "ๅ‘ขๅ•ฒ่จญๅฎšๆทจไฟ‚ไฟพใ€ŒFollowingใ€ๅ‹•ๆ…‹ๆบ็”จใ€‚" msgid "These URLs" msgstr "ๅ‘ขๅ•ฒ็ถฒๅ€" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "ไฝขๅ“‹ๆญคๅ‚พๅˆๅ˜…ๆ“ๆœ‰่€…" @@ -12392,7 +12405,7 @@ msgstr "ไฝขๅ“‹ๆญคๅ‚พๅˆๅ˜…ๆ“ๆœ‰่€…" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "้™ค้žไฝ ๅ†ๆฌก้‚€่ซ‹๏ผŒๅฆๅ‰‡ไฝขๅ“‹ๅŠ ๅ””่ฟ”ๅ…ฅๅšŸใ€‚" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} ๅทฒ่ขซๆจ™่จ˜๏ผš" @@ -12408,7 +12421,7 @@ msgstr "ๅ‘ขๅ€‹ๅธณ่™Ÿๅทฒ่ขซๆ“ๆœ‰่€…ๆจ™่จ˜ๅš่‡ชๅ‹•ๅŒ–ๅธณ่™Ÿใ€‚" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "ๅ‘ขๅ€‹ๅธณ่™Ÿ่ฉฆ้ŽๆŽˆๆฌŠไธ€ๆฌกๆˆ–ๅคšๆฌก้ฉ—่ญ‰๏ผŒไฝ†ไฟ‚ไปฒๆœชๆญฃๅผ้ฉ—่ญ‰ๅˆฐใ€‚" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "ๅ‘ขๅ€‹ๅธณ่™Ÿ่ฆๆฑ‚็”จๆˆถ็™ปๅ…ฅไน‹ๅพŒๅ…ˆ่‡ณ็•€็‡ไฝขๅ˜…ๅ€‹ไบบๆช”ๆกˆใ€‚" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "ๅ‘ขๅ€‹ๅ‹•ๆ…‹ๆบๅบฆๅพ—ๅ€‹ๅ‰๏ผไฝ ๅฏ่ƒฝ้œ€่ฆ่ทŸๆ›ดๅคš็”จๆˆถ๏ผŒๆˆ–ๆชขๆŸฅไฝ ๅ˜…่ชž่จ€่จญๅฎšใ€‚" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "ๅ‘ขๅ€‹ๅ‹•ๆ…‹ๆบๅบฆๅพ—ๅ€‹ๅ‰ใ€‚" @@ -12554,7 +12567,7 @@ msgstr "ๅŸบๆ–ผๆ“ๆœ‰่€…่ขซ็ณป็ตฑๅฏฉๆ ธ้Ž–ๅฎšๅŽŸๅ› ๏ผŒๆญค็พฃ็ต„ๅทฒ้Ž–ๅฎš" msgid "This handle is reserved. Please try a different one." msgstr "ๅ‘ขๅ€‹ๅธณ่™Ÿไปฃ็ขผ้ ็•™ๅ’—็•€ๅ…ถไป–ๅœฐๆ–น็”จ๏ผŒๅ””่ฉฒ่ฉฆๅ“็ฌฌๅ€‹ใ€‚" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "็„กๆณ•ไฝฟ็”จๅ‘ขๅผตๅœ–็‰‡๏ผŒ่ฉฆๅ“็ฌฌ็จฎๆช”ๆกˆๆ ผๅผ๏ผŒๅฅฝไผผ .jpg ๆˆ– .pngใ€‚" @@ -12572,7 +12585,7 @@ msgstr "ๆญค้‚€่ซ‹้€ฃ็ต็„กๆ•ˆ" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 msgid "This is just a one-time security check, since we haven't seen this account on this device before." -msgstr "" +msgstr "ๅ‘ขๅ€‹ไฟ‚ไธ€ๆฌกๆ€งๅ˜…ๅฎ‰ๅ…จๆชขๆŸฅ๏ผŒไบ‹็ทฃๆˆ‘ๅ“‹ไน‹ๅ‰ๆœชๅ–บๅ‘ข้ƒจ่ฃ็ฝฎๅบฆ่ฆ‹้Žๅ‘ขๅ€‹ๅธณ่™Ÿใ€‚" #: src/features/liveNow/components/EditLiveDialog.tsx:171 #: src/features/liveNow/components/GoLiveDialog.tsx:161 @@ -12594,9 +12607,9 @@ msgstr "ๅ‘ขๅ€‹ๆจ™่จ˜ไฟ‚ไฝ ๆ‰€ๅŠ ใ€‚" #: src/components/moderation/LabelsOnMeDialog.tsx:156 #: src/components/moderation/ModerationDetailsDialog.tsx:231 msgid "This label was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "ๆญคๆจ™่จ˜ๅทฒๅฅ—็”จๆ–ผๆˆๅ€‹็”จๆˆถๅธณ่™Ÿ๏ผŒๅŒๆ™‚ๆœƒๅ–บๆ‰€ๆœ‰ๅธ–ๆ–‡ๅบฆๅ‡บ็พใ€‚" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "ๅ‘ขๅ€‹ๆจ™่จ˜ๆœๅ‹™ไปฒๆœชๅ…ฌ้–‹ไฝข็™ผๅธƒๅ˜…ๆจ™่จ˜้กžๅž‹๏ผŒไบฆๆœ‰ๅฏ่ƒฝๅ””ๆœƒๅ†ๆไพ›ๆœๅ‹™ใ€‚" @@ -12621,13 +12634,13 @@ msgstr "ๅ‘ขไปฝๆธ…ๅ–ฎๅบฆๅพ—ๅ€‹ๅ‰ใ€‚" msgid "This message is hidden" msgstr "ๆญค่จŠๆฏๅทฒ้šฑ่—" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "ไบ‹็ทฃๆญค็”จๆˆถๅฐ้Ž–ๅ’—ไฝ ๏ผŒๆญค่จŠๆฏๅทฒ้šฑ่—ใ€‚" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "ไบ‹็ทฃไฝ ๅฐ้Ž–ๅ’—ๆญค็”จๆˆถ๏ผŒๆญค่จŠๆฏๅทฒ้šฑ่—ใ€‚" @@ -12641,7 +12654,7 @@ msgstr "ๅ‘ขๅ€‹ไบบๅฐ้Ž–ๅ’—ไฝ " #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "ๅ‘ขๆขๅธ–ๆ–‡่ฉฑไฟ‚่ฉฑๅ–บ <0>{0} ็™ผๅธƒๅ˜…๏ผŒไฝ†ไฟ‚ๆœ€ๅ…ˆๅ‡บ็พๅ–บ Bluesky ๅ˜…ๆ™‚้–“ไฟ‚ๅ–บ <1>{1}ใ€‚" @@ -12649,7 +12662,7 @@ msgstr "ๅ‘ขๆขๅธ–ๆ–‡่ฉฑไฟ‚่ฉฑๅ–บ <0>{0} ็™ผๅธƒๅ˜…๏ผŒไฝ†ไฟ‚ๆœ€ๅ…ˆๅ‡บ็พๅ–บ Bl msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "ๅ‘ขๆขๅธ–ๆ–‡ๅญ˜ๅœจๆœช็Ÿฅๅ˜…ๅ…งๅฎน้กžๅž‹๏ผŒไฝ ๆ‡‰็”จ็จ‹ๅผๅ˜…็‰ˆๆœฌๅฏ่ƒฝ้Žๅ’—ๆœŸใ€‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "ๅ‘ขๆขๅธ–ๆ–‡ๆทจไฟ‚ๅพ—็™ปๅ…ฅๅ’—ๅ˜…็”จๆˆถๅ…ˆ็‡ๅˆฐใ€‚" @@ -12661,7 +12674,7 @@ msgstr "ๅ‘ขๆขๅธ–ๆ–‡็ถ“ๅทฒไฟพ็™ผๅธƒ่€…ๅˆช้™ค" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "ๅ‘ขๆขๅธ–ๆ–‡ๅฐ‡ๆœƒๅ–บ่จŽ่ซ–ไธฒๅŒๅ‹•ๆ…‹ๆบๅบฆ้šฑ่—๏ผŒๅ‘ขๅ€‹ๆ“ไฝœๅ†‡ๅพ—ๅ–ๆถˆใ€‚" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "ๅ‘ขๆขๅธ–ๆ–‡ๅ˜…็™ผๅธƒ่€…ๅ””ไฟพไบบๅผ•็”จใ€‚" @@ -12698,11 +12711,12 @@ msgstr "ๅ‘ขๅ€‹้Ž็จ‹ๅนพๅˆ†้˜ๅฐฑๆ”ชๆŽ‚ใ€‚" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "ๅ‘ขๅ€‹็”จๆˆถไปฒๆœช่จญๅฎšๅ็จฑ๏ผŒๅ› ๆญคๅ””ๅพ—ๆŽˆไบˆ้ฉ—่ญ‰ใ€‚" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "ๅ‘ขๅ€‹็”จๆˆถไปฒๆœชๆœ‰ไบบ่ทŸไฝขใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "ๅ‘ขๅ€‹็”จๆˆถๅฐ้Ž–ๅ’—ไฝ ๏ผŒๅ””ๅพ—ๅ‚ณ้€่จŠๆฏใ€‚" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "ๅ‘ขๅ€‹็”จๆˆถๅฐ้Ž–ๅ’—ไฝ ๏ผŒไฝ ๅ†‡ๅพ—็‡ไฝข็™ผๅ˜…ๅ…งๅฎนใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "ๅ‘ขๅ€‹็”จๆˆถๅœ็”จๅ’—ๅ‚พๅˆๅŠŸ่ƒฝ๏ผŒๅ””ๅพ—ๅ‚ณ้€่จŠๆฏใ€‚" @@ -12733,17 +12748,17 @@ msgstr "ๅ‘ขๅ€‹็”จๆˆถๅ–บไฝ ้œ้Ÿณๅ’—ๅ˜… <0>{0} ๆธ…ๅ–ฎๅบฆใ€‚" msgid "This user is new here. Press for more info about when they joined." msgstr "ๅ‘ขๅ€‹็”จๆˆถๅ•ฑๅšŸๅ†‡่€๏ผŒๆ’ณไฝŽๅŽป็‡ไฝขๅ…ท้ซ”ๅนพๆ™‚ๅ…ฅๅšŸๅ˜…ๆ™‚้–“ใ€‚" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "ๅ‘ขๅ€‹็”จๆˆถๆœชๆœ‰่ทŸ้Žไปปไฝ•ไบบใ€‚" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "ไฝ ๅ˜…่ฃ็ฝฎๆ’ญๆ”พๅ””ๅˆฐๅ‘ขๆขๅฝฑ็‰‡๏ผŒ็€่ฆฝๅ™จๆˆ–็ณป็ตฑๅฏ่ƒฝๅ””ๆ”ฏๆดๅฝฑ็‰‡่งฃ็ขผๅ™จ๏ผˆH.264/AAC๏ผ‰ใ€‚" #: src/view/com/composer/videos/VideoPreview.web.tsx:65 msgid "This video canโ€™t be previewed in your browser. It will still be uploaded." -msgstr "" +msgstr "ๅ‘ขๆข็‰‡ๅ–บไฝ ๅ˜…็€่ฆฝๅ™จๅบฆ็‡ๅ””ๅˆฐ๏ผŒไฝ†ไพ็„ถๆœƒไธŠ่ผ‰ใ€‚" #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 msgid "This will create a new list with the same name, description, and members as this starter pack." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "ๅ™‰ๅšๆœƒๆฐธไน…ๅˆช้™คไฝ ๅ˜… Bluesky ๅธณ่™Ÿ <0>{currentHandle} ๅŒๆ‰€ๆœ‰็›ธ้—œ่ณ‡ๆ–™ใ€‚็•™ๆ„่ฟ”๏ผŒๅ™‰ๆจฃไบฆๆœƒๅฝฑ้Ÿฟๅˆฐไฝ ็”จๅ‘ขๅ€‹ๅธณ่™Ÿไฝฟ็”จๅ…ถไป– <1>AT Protocol ๅ˜…ๆœๅ‹™ใ€‚" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "ๅ™‰ๆจฃๆœƒๅ–บๅฟซ้€Ÿๅญ˜ๅ–ๆธ…ๅ–ฎๅบฆ็งป้™ค @{0}ใ€‚" @@ -12786,7 +12801,7 @@ msgstr "่จŽ่ซ–ไธฒๅๅฅฝ่จญๅฎš" msgid "Threaded" msgstr "ๆจน็‹€ๆจกๅผ" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "่จŽ่ซ–ไธฒๅๅฅฝ่จญๅฎš" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "่ฏ็ตกไบบ้Žๅคš - ไฝ ๅŒฏๅ…ฅๅ˜…่ฏ็ตกไบบๆ•ธ้‡็ถ“ๅทฒ่ถ…้Žๅฐ‹ๆ‰พๆœ‹ๅ‹ไธŠ้™" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "่‡ณ Hit" @@ -12858,7 +12873,7 @@ msgstr "่‡ณ Hit" msgid "Top replies first" msgstr "็†ฑ้–€ๅ›ž่ฆ†่กŒๅ…ˆ" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "่ฉฑ้กŒ" @@ -12893,7 +12908,9 @@ msgstr "ไฝ ๅ˜…่ฃ็ฝฎๅ””ๆ”ฏๆดๅฐ‡ๅŽŸๆ–‡็ฟป่ญฏๆˆ็›ฎๆจ™่ชž่จ€ใ€‚" msgid "Tree view" msgstr "ๆจน็‹€ไป‹้ข" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "ๆ™‚่ˆˆ่ฉฑ้กŒ" @@ -12902,13 +12919,15 @@ msgstr "ๆ™‚่ˆˆ่ฉฑ้กŒ" msgid "Trending GIFs" msgstr "็†ฑ้–€ GIF" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "ๆ™‚่ˆˆ้ธ้ …" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "ๆ™‚่ˆˆๅฝฑ็‰‡" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "ๅผ•ๆˆฐ" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "ไฟกไปปๆบๆ–ผไบบ้š›้—œไฟ‚ใ€็คพ็พฃๅŒๅ…ฑไบซๅ˜…่ƒŒๆ™ฏ๏ผŒๆ‰€ไปฅๆˆ‘ๅ“‹ไบฆ้ƒฝๅผ•ๅ…ฅๅ’—<0>ๅ—ไฟกไปปๅ˜…้ฉ—่ญ‰่€…๏ผšๅฏไปฅ็›ดๆŽฅๆŽˆไบˆ้ฉ—่ญ‰ๅ…ถไป–ๅธณ่™Ÿๅ˜…็ต„็น”ใ€‚" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "่ฉฆๅ“ๆต็ฌฌๅ•ฒ้—œ้ตๅญ—๏ผŒๆˆ–็งป้™ค้ƒจๅˆ†็ฏฉ้ธๆขไปถใ€‚" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "่ฉฆๅ“ๆต็ฌฌๅ•ฒ้—œ้ตๅญ—ใ€‚" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "ๆ”ถๅ–ๅ””ๅˆฐๅŠ ๅ…ฅ็”ณ่ซ‹ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "ๆตๅ””ๅˆฐๆ€ๅ’—ๅ˜…ๆŽฅๆ”ถไบบใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "ๆตๅ””ๅˆฐๆ€ๅ’—ๅ˜…ๆ”ถไปถไบบใ€‚" @@ -13024,12 +13045,12 @@ msgstr "็›ฎๅ‰็”จๅ””ๅˆฐ" msgid "Unavailable feed information" msgstr "ๅ–็”จๅ””ๅˆฐๅ‹•ๆ…‹ๆบ่ณ‡่จŠ" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "ไฟ‚ๅ’ช่ฆ่งฃ้™คๅฐ้Ž–ๅธณ่™Ÿ๏ผŸ" msgid "Unblock list" msgstr "่งฃ้™คๅฐ้Ž–ๆธ…ๅ–ฎ" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "ๅ””ๅ†่ทŸ {0}" msgid "Unfollow account" msgstr "ๅ””ๅ†่ทŸไฝข" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "ๅ””ๅ†่ทŸๅ‘ขไฝ็”จๆˆถ" @@ -13132,7 +13153,7 @@ msgstr "ๆœชๆจ™่จ˜ๅ˜…ๆˆไบบๅ…งๅฎน" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "ๆœชๆจ™่จ˜ใ€ๅ…ท่™ๅพ…ๆ€งใ€ๆˆ–้ž่‡ช้ก˜ๅ˜…ๆˆไบบๅ…งๅฎน" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "ๅ””ๅ†่ฎšไฝข" @@ -13192,7 +13213,7 @@ msgstr "ๅ””ๅ†้œ้Ÿณๆญค็พฃ็ต„ๅ‚พๅˆ" msgid "Unmute thread" msgstr "ๅ””ๅ†้œ้Ÿณ่จŽ่ซ–ไธฒ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "ๅ””ๅ†้œ้Ÿณๅฝฑ็‰‡" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "ๅ””ๅ†ๅ›บๅฎš" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "ๅ””ๅ†ๅ›บๅฎšๅ‹•ๆ…‹ๆบ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "ๅ””ๅ†ๅ–บ้ฆ–้ ๅบฆๅ›บๅฎš" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "ๅ””ๅ†ๅ›บๅฎšๅ…งๅฎนๅฏฉ่ฆˆๆธ…ๅ–ฎ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "ๅ””ๅ†ๅ–บ้ฆ–้ ๅบฆๅ›บๅฎš {0}" @@ -13258,11 +13279,11 @@ msgstr "ๅ””ๅ†่จ‚้–ฑๅ‘ขๅ€‹ๆจ™่จ˜ๆœๅ‹™" msgid "Unsubscribed from list" msgstr "็ถ“ๅทฒๅ–บๆธ…ๅ–ฎๅบฆๅ””ๅ†่จ‚้–ฑ" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "ๅ””ๆ”ฏๆดๅ‘ข็จฎๅ‰ช่ฒผ็ฐฟๅ…งๅฎน" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "ๅ””ๆ”ฏๆดๅ˜…ๅฝฑ็‰‡้กžๅž‹๏ผš{mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "ๆ›ดๆ–ฐๅ””ๅˆฐๅ›ž่ฆ†ๅฏ่ฆ‹ๅบฆ" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "ๆˆ–ไธŠ่ผ‰ๅœ–็‰‡" @@ -13355,7 +13376,7 @@ msgstr "ๅ–บๆช”ๆกˆๅบฆไธŠ่ผ‰" msgid "Upload from Library" msgstr "ๅ–บ็›ธ็‰‡ๅœ–ๅบซๅบฆไธŠ่ผ‰" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "ไธŠ่ผ‰็ทŠ GIFโ€ฆโ€ฆ" @@ -13369,7 +13390,7 @@ msgstr "ไธŠ่ผ‰็ทŠๅœ–็‰‡โ€ฆโ€ฆ" msgid "Uploading link thumbnail..." msgstr "ไธŠ่ผ‰็ทŠ้€ฃ็ต็ธฎๅœ–โ€ฆโ€ฆ" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "ไธŠ่ผ‰็ทŠๆข็‰‡โ€ฆโ€ฆ" @@ -13408,7 +13429,7 @@ msgstr "็”จๅ‘ขๅ€‹ๅŒไฝ ๅ˜…ๅธณ่™Ÿไปฃ็ขผๅšŸไธ€้ฝŠ็™ปๅ…ฅ็ฌฌๅ€‹ๆ‡‰็”จ็จ‹ๅผใ€‚" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "็”จไฝ ๅธณ่™Ÿๅ˜…้›ป้ƒตๅœฐๅ€๏ผŒๆŠ‘ๆˆ–ไฟ‚ๆ“ๆœ‰ๅ˜…ๅ…ถไป–็œžๅฏฆ้›ป้ƒตๅœฐๅ€๏ผŒไปฅ้˜ฒ KWS ๆˆ– Bluesky ้œ€่ฆๅŒไฝ ่ฏ็ตกใ€‚" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "็”จๆˆถ" @@ -13482,7 +13503,7 @@ msgstr "็”จๆˆถๅ็จฑๅช่ƒฝๅŒ…ๅซๅญ—ๆฏ๏ผˆa-z๏ผ‰ใ€ๆ•ธๅญ—ๅŠ้€ฃๅญ—่™Ÿ๏ผˆ-๏ผ‰ใ€‚" #: src/screens/Login/LoginForm.tsx:305 msgid "Username or email" -msgstr "" +msgstr "็”จๆˆถๅ็จฑๆˆ–้›ป้ƒต" #: src/screens/Login/LoginForm.tsx:315 msgid "Username or email address" @@ -13510,7 +13531,7 @@ msgstr "ๆŽˆไบˆๅ””ๅˆฐ้ฉ—่ญ‰๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌกใ€‚" msgid "Verification settings" msgstr "้ฉ—่ญ‰่จญๅฎš" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "้ฉ—่ญ‰่จญๅฎš" @@ -13563,7 +13584,7 @@ msgstr "ๅณๅˆป้ฉ—่ญ‰" #: src/ageAssurance/components/DeviceSignalsNotice.tsx:34 #: src/ageAssurance/components/DeviceSignalsNotice.tsx:52 msgid "Verify now using KWS" -msgstr "" +msgstr "ๅณๅˆปไฝฟ็”จ KWS ้ฉ—่ญ‰" #: src/components/contacts/screens/PhoneInput.tsx:175 #: src/components/contacts/screens/VerifyNumber.tsx:217 @@ -13618,34 +13639,34 @@ msgstr "ๅฝฑ็‰‡" msgid "Video failed to process" msgstr "ๅฝฑ็‰‡่™•็†ๅคฑๆ•—" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "ๅฝฑ็‰‡ๅ‹•ๆ…‹ๆบ" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "ๅฝฑ็‰‡ๅšŸ่‡ช {0}๏ผš{text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "ๅฝฑ็‰‡ๅšŸ่‡ช{0}ใ€‚ๆ’ณไธ€ๅ“ๅŽปๆ’ญๆ”พๆˆ–ๆšซๅœๅฝฑ็‰‡" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "้›ปๅญ้Šๆˆฒ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "ๆข็‰‡็ถ“ๅทฒๆšซๅœ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "ๆข็‰‡ๆ’ญ็ทŠ" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "ๆตๅ””ๅˆฐๆข็‰‡ใ€‚" @@ -13653,7 +13674,7 @@ msgstr "ๆตๅ””ๅˆฐๆข็‰‡ใ€‚" msgid "Video settings" msgstr "ๅฝฑ็‰‡่จญๅฎš" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "ๅฝฑ็‰‡ไธŠ่ผ‰ๆˆๅŠŸ" @@ -13662,17 +13683,17 @@ msgstr "ๅฝฑ็‰‡ไธŠ่ผ‰ๆˆๅŠŸ" msgid "Video: {0}" msgstr "ๅฝฑ็‰‡๏ผš{0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "ๅฝฑ็‰‡" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "ๅฝฑ็‰‡้•ทๅบฆๅ””ๅพ—่ถ…้Ž 3 ๅˆ†้˜ใ€‚" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "็‡ๅ“" @@ -13691,9 +13712,9 @@ msgstr "็‡ๅ“ {0} ๅ˜…้ ญๅƒ" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "็‡ๅ“ {0} ๅ˜…ๅ€‹ไบบๆช”ๆกˆ" @@ -13724,13 +13745,13 @@ msgstr "็‡ๅ“็ถฒ่ชŒๆ–‡็ซ ๅšŸไบ†่งฃๆ›ดๅคš่ณ‡่จŠ" msgid "View debug entry" msgstr "็‡ๅ“่ชฟ่ฉฆๆข็›ฎ" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "็‡ๅ“่ฉณ็ดฐ่ณ‡่จŠ" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "็‡ๅ“ๅฎŒๆ•ดๅ˜…่จŽ่ซ–ไธฒ" @@ -13750,18 +13771,18 @@ msgstr "็‡ๅ“ๆญค็พฃ็ต„ๅ‚พๅˆๅ˜…ๆ”ถๅˆฐๅ˜…ๅŠ ๅ…ฅ็”ณ่ซ‹" msgid "View information about these labels" msgstr "็‡ๅ“ๅŒๅ‘ขๅ•ฒๆจ™่จ˜ๆœ‰ๆŒๆŽ•ๅ˜…่ฉณ็ดฐ่ณ‡่จŠ" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "็‡ๆ™’ไฝขๅ“‹" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "็‡ๅคšๅ•ฒๆ™‚่ˆˆๅฝฑ็‰‡" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "็‡ๅ“ๅธ–ๆ–‡" @@ -13798,15 +13819,15 @@ msgstr "็‡ๅ“ๆญค็พฃ็ต„ๅ‚พๅˆๅ˜…้‚€่ซ‹้€ฃ็ต" msgid "View the labeling service provided by @{0}" msgstr "็‡ๅ“ @{0} ๆไพ›ๅ˜…ๆจ™่จ˜ๆœๅ‹™" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "็‡ๅ“ๅ‘ขๅ€‹็”จๆˆถๅ˜…่ช่ญ‰" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "็‡ๅ“้‚Šๅ•ฒไบบ่ฎš้Žๅ‘ขๅ€‹ๅ‹•ๆ…‹ๆบ" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "็‡็‰‡" @@ -13831,7 +13852,7 @@ msgstr "็‡ๅ“ไฝ ๅ˜…ๅ…งๅฎนๅฏฉ่ฆˆๆธ…ๅ–ฎ" msgid "View your muted accounts" msgstr "็‡ๅ“ไฝ ้œ้Ÿณๅ’—ๅ˜…ๅธณ่™Ÿ" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "็‡ๅ“ไฝ ๅ˜…่ช่ญ‰" @@ -13840,7 +13861,7 @@ msgstr "็‡ๅ“ไฝ ๅ˜…่ช่ญ‰" msgid "Views full image" msgstr "็‡ๅ“ๅฎŒๆ•ดๅœ–็‰‡" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "้€ฒๅ…ฅๆฒ‰ๆตธๆจกๅผ็‡็‰‡" @@ -13898,7 +13919,7 @@ msgstr "ๆˆ‘ๅ“‹ๆตๅ””ๅˆฐๅ‘ขไปฝๆธ…ๅ–ฎ๏ผŒๅฏ่ƒฝๅทฒ็ถ“ๅˆชๅ’—ใ€‚" #: src/screens/Login/LoginForm.tsx:348 msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." -msgstr "" +msgstr "ๆˆ‘ๅ“‹ๆตๅ””ๅˆฐ็”จๆญค็”จๆˆถๅ็จฑๅ˜…ๅธณ่™Ÿใ€‚่ซ‹ๆชขๆŸฅๆœ‰ๅ†‡ๆ‰“้Œฏ๏ผŒๆŠ‘ๆˆ–<0>ๆ‰‹ๅ‹•่จญๅฎšไฝ ๅ˜…่จ—็ฎกๆœๅ‹™ๆไพ›่€…ใ€‚" #: src/screens/Hashtag.tsx:260 msgid "We couldn't find any results for that tag." @@ -13922,7 +13943,7 @@ msgstr "ๆˆ‘ๅ“‹ๆ’ˆๅ””ๅˆฐๅ‘ขๅ€‹ๅฐ่ฉฑ่จญๅฎš" #: src/screens/Login/LoginForm.tsx:482 msgid "We couldnโ€™t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." -msgstr "" +msgstr "ๆˆ‘ๅ“‹็„กๆณ•้ฉ—่ญ‰ไฝ ๅ˜…่จ—็ฎกๆœๅ‹™ๆไพ›่€…ใ€‚่ซ‹ๆชขๆŸฅไฝ ๅ˜…็ถฒ็ตก้€ฃ็ทš๏ผŒๆŠ‘ๆˆ–<0>ๆ‰‹ๅ‹•่จญๅฎšไฝ ๅ˜…่จ—็ฎกๆœๅ‹™ๆไพ›่€…ใ€‚" #: src/components/contacts/screens/GetContacts.tsx:244 msgid "We delete hashes after matches are made" @@ -14001,7 +14022,7 @@ msgstr "ๆˆ‘ๅ“‹ๆœƒๅ–บๆตๅˆฐไฝ ๆœ‹ๅ‹ๅ—ฐ้™ฃ้€š็Ÿฅไฝ ใ€‚" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "Weโ€™d love to hear about your experience testing beta features!" -msgstr "" +msgstr "ๆˆ‘ๅ“‹ๅฅฝๆƒณ่ฝๅ“ไฝ ๅฐ้ซ”้ฉ—ๆธฌ่ฉฆๅŠŸ่ƒฝๅ˜…่ซ—ๆณ•๏ผ" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "ๆˆ‘ๅ“‹้‡ๅˆฐ็ถฒ็ตกๅ•้กŒ๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌก" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "ๆˆ‘ๅ“‹้‡ๅˆฐ็ถฒ็ตกๅ•้กŒ๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌก" @@ -14043,13 +14064,13 @@ msgstr "ๆˆ‘ๅ“‹้‡ๅˆฐ็ถฒ็ตกๅ•้กŒ๏ผŒๅ””่ฉฒ่ฉฆๅคšๆฌก" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "ๅŒไฝ ไป‹็ดน Bluesky ๅ˜…ๅ…จๆ–ฐ้ฉ—่ญ‰ๆฉŸๅˆถ โ€”โ€” ้ฉ—่ญ‰ๆจ™่จ˜ใ€‚" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "ๆˆ‘ๅ“‹้žๅธธไน‹้ซ˜่ˆˆไฝ ๅŠ ๅ…ฅๆˆ‘ๅ“‹๏ผ" #: src/ageAssurance/useVerificationFlow.ts:117 msgid "We're sorry, but based on the data shared by your device, you are not old enough to access Bluesky." -msgstr "" +msgstr "ๅ””ๅฅฝๆ„ๆ€๏ผŒๆ นๆ“šไฝ ่ฃ็ฝฎๆไพ›ๅ˜…่ณ‡ๆ–™๏ผŒไฝ ๆœช้”ๅˆฐไฝฟ็”จ Bluesky ๅ˜…ๅนด้ฝก่ฆๆฑ‚ใ€‚" #: src/ageAssurance/components/NoAccessScreen.tsx:227 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:218 @@ -14064,13 +14085,15 @@ msgstr "ๅฐๅ””ไฝ๏ผŒไฝ†ไฟ‚ๆˆ‘ๅ“‹่งฃๆžๅ””ๅˆฐๅ‘ขไปฝๆธ…ๅ–ฎใ€‚่‹ฅ็„ถๅ‘ขๅ€‹ๅ•้กŒไปฒ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "ๅฐๅ””ไฝ๏ผŒๆˆ‘ๅ“‹่€Œๅฎถๆ’ˆๅ””ๅˆฐไฝ ๅ•ฒ้œ้Ÿณๅญ—่ฉžใ€‚ๅ””่ฉฒ่ฉฆๅคšๆฌกใ€‚" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." -msgstr "" +msgstr "ๅฐๅ””ไฝ๏ผŒๆœช่ƒฝๅฎŒๆˆไฝ ๅ˜…ๆตๅ˜ข่ซ‹ๆฑ‚ใ€‚" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "ๅฐๅ””ไฝ๏ผŒ็„กๆณ•ๅฎŒๆˆไฝ ๅ˜…ๆตๅ˜ข่ฆๆฑ‚ใ€‚ๅ””่ฉฒ็ญ‰ๅคšๅนพๅˆ†้˜่ฉฆๅ“ใ€‚" @@ -14078,7 +14101,7 @@ msgstr "ๅฐๅ””ไฝ๏ผŒ็„กๆณ•ๅฎŒๆˆไฝ ๅ˜…ๆตๅ˜ข่ฆๆฑ‚ใ€‚ๅ””่ฉฒ็ญ‰ๅคšๅนพๅˆ†้˜่ฉฆๅ“ msgid "We're sorry, you cannot access this screen at this time." msgstr "ๅ””ๅฅฝๆ„ๆ€๏ผŒไฝ ็›ฎๅ‰้€ฒๅ…ฅๅ””ๅˆฐๅ‘ขๅ€‹้ ้ขใ€‚" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "ๅฐๅ””ไฝ๏ผไฝ ่ฆ†็ทŠๅ˜…ๅธ–ๆ–‡็ถ“ๅทฒไฟพไบบๅˆชๅ’—ใ€‚" @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "่ฟ‘ๆŽ’้ปž" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "ๆœ‰ๅ’ฉๅคงไปถไบ‹๏ผŸ" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "้‚Šๅ•ฒไบบๅฏไปฅๆŽˆๆฌŠ่ช่ญ‰๏ผŸ" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "ๅคง้‘Š๏ผ" @@ -14220,21 +14243,21 @@ msgstr "้œ€่ฆๅฐ้Ž–ๅ‘ขๅ€‹็”จๆˆถๆˆ–้›ข้–‹ๅ‘ขๅ€‹ๅฐ่ฉฑ๏ผŒๅฎšไธ€้ฝŠๅŸท่กŒ๏ผŸ" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "็‡ๅ…ถไป–่‰็จฟไน‹ๅ‰๏ผŒไฝ ไฝฟๅ””ไฝฟๅ„ฒๅญ˜็พๆœ‰ๅ…งๅฎนๅ…ˆ๏ผŸ" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "ไฝ ไฝฟๅ””ไฝฟๅ„ฒๅญ˜็พๆœ‰ๅ…งๅฎนๅš่‰็จฟ๏ผŒ็•™่ฟ”้ฒๅ•ฒๅ†็ทจ่ผฏ๏ผŸ" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "ๆ’ฐๅฏซไธ€ๆขๅธ–ๆ–‡" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "ๆ’ฐๅฏซๅธ–ๆ–‡" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "ๅฏซไฝŽไฝ ๅ˜…ๅ›ž่ฆ†" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "ไฝ ่บซ่™•ๅ˜…ๅœฐๅ€ๆณ•ไพ‹่ฆๆฑ‚ๆˆ‘ๅ“‹ๅ…่จฑไฝ ไฝฟ็”จ Bluesky ไน‹ๅ‰้œ€่ฆ้ฉ—่ญ‰ไฝ ๅ˜…ๅนด้ฝกใ€‚" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "ไฝ ๅฐ้Ž–ๅ’— {0}" @@ -14342,7 +14365,7 @@ msgstr "ไฝ ๅทฒๅœๆญข็›ดๆ’ญ" msgid "You are not allowed to upload videos." msgstr "ไฝ ๅ””ๅพ—ไธŠ่ผ‰ๅฝฑ็‰‡ใ€‚" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "ไฝ ่€Œๅฎถไปฒๆœช่ทŸ้Žไปปไฝ•ไบบ" @@ -14362,7 +14385,7 @@ msgstr "ไฝ ็ถ“ๅทฒ้ฉ—่ญ‰ใ€‚่‹ฅ็„ถไฝ ่ฎŠๆ›ดๅ็จฑ๏ผŒๅฐ‡ๆœƒๅคฑๅŽป้ฉ—่ญ‰็‹€ๆ…‹ใ€‚<0> msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "ไฝ ็ถ“ๅทฒ้ฉ—่ญ‰ใ€‚่‹ฅ็„ถไฝ ่ฎŠๆ›ดๅธณ่™Ÿไปฃ็ขผ๏ผŒๅฐ‡ๆœƒๅคฑๅŽป้ฉ—่ญ‰็‹€ๆ…‹ใ€‚<0>ๆƒณ็Ÿฅๅคšๅ•ฒใ€‚" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "ไฝ ๅฏไปฅๅ–บใ€Œๅ…งๅฎนๅŒๅช’้ซ”ใ€่จญๅฎšๅบฆ้šจๆ™‚่ชฟๆ•ดไฝ ๅ˜…ๅฟƒๆฐดไธป้กŒใ€‚" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "ไฝ ่€Œๅฎถๅฏไปฅ็”จไฝ ๅ˜…ๆ–ฐๅฏ†็ขผ็™ปๅ…ฅใ€‚" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "ๅธ–ๆ–‡ๅ””ๅพ—่ถ…้Ž {MAX_GALLERY_IMAGES, plural, other {# ๅผตๅœ–็‰‡}}" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "ไฝ ๆทจไฟ‚ๅฏไปฅๅ„ฒๅญ˜ 1000 ๅญ—ๅ…ƒๅ˜…่‰็จฟใ€‚" @@ -14439,9 +14462,11 @@ msgstr "ไฝ ไป็„ถๅฏไปฅ็‡ๅˆฐๅ‚พๅˆ่จ˜้Œ„๏ผŒไฝ†ไฟ‚ๅ‚ณ้€ๅ””ๅˆฐๆ–ฐ่จŠๆฏใ€‚" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "ไฝ ๆœ€ๅคšๅฏไปฅๆ€ {MAX_GALLERY_IMAGES, plural, other {# ๅผตๅœ–็‰‡}}ใ€‚" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "ไฝ ๅฏไปฅ้ฒๅ•ฒๅ–บ่จญๅฎšๅบฆๆ”น่ฟ”ใ€‚" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "ไฝ ๅ””ๅพ—ๅŠ ๅ…ฅ่ถ…้Ž {EMOJI_REACTION_LIMIT, plural, other {# ๅ€‹ emoji ๅๆ‡‰}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "ไฝ ไปฒๆœชๅฏไปฅๅปบ็ซ‹็พฃ็ต„ๅ‚พๅˆใ€‚" @@ -14555,7 +14581,7 @@ msgstr "ไฝ ็ถ“ๅทฒๆˆๅŠŸ้ฉ—่ญ‰้›ป้ƒตๅœฐๅ€ใ€‚ไฝ ่€Œๅฎถๅฏไปฅ้–‚ๅ’—ๅ‘ขๅ€‹ๅฐ่ฉฑๆก† msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "ไฝ ๆšซๆ™‚็ถ“ๅทฒ้”ๅˆฐไธŠ่ผ‰ๅฝฑ็‰‡ๅ˜…ไธŠ้™๏ผŒๅ””่ฉฒ้ฒๅ•ฒ่ฉฆๅคšๆฌกใ€‚" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "ไฝ ๅ‘ขไปฝ่‰็จฟๆœ‰ๆœชๅ„ฒๅญ˜ๅ˜…่ฎŠๆ›ด๏ผŒไฝฟๅ””ไฝฟๅ„ฒๅญ˜ๅ’—ๅ…ˆ๏ผŸ" @@ -14563,7 +14589,7 @@ msgstr "ไฝ ๅ‘ขไปฝ่‰็จฟๆœ‰ๆœชๅ„ฒๅญ˜ๅ˜…่ฎŠๆ›ด๏ผŒไฝฟๅ””ไฝฟๅ„ฒๅญ˜ๅ’—ๅ…ˆ๏ผŸ" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "ไฝ ๆœ‰ๆœชๅ„ฒๅญ˜ๅ˜…่ฎŠๆ›ดใ€‚็‡ๅ…ถไป–่‰็จฟไน‹ๅ‰๏ผŒไฝฟๅ””ไฝฟๅ„ฒๅญ˜ๅ’—ๅ…ˆ๏ผŸ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "ไฝ ่€Œๅฎถไปฒๆœชๅปบ็ซ‹ไปปไฝ•ๆ–ฐๆ‰‹ๅŒ…๏ผ" @@ -14614,7 +14640,7 @@ msgstr "ไฝ ๆœ€ๅคšๅช่ƒฝๅŠ ๅ…ฅ {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PA msgid "You may only add up to 3 feeds" msgstr "ไฝ ๆœ€ๅคšๅฏไปฅๅŠ ๅ…ฅ 3 ๅ€‹ๅ‹•ๆ…‹ๆบ" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "ไฝ ๅฟ…้ ˆไฟ‚ๅ‚พๅˆๆ“ๆœ‰่€…ๅ…ˆๅฏไปฅ็งป้™คๆˆๅ“กใ€‚" @@ -14622,7 +14648,7 @@ msgstr "ไฝ ๅฟ…้ ˆไฟ‚ๅ‚พๅˆๆ“ๆœ‰่€…ๅ…ˆๅฏไปฅ็งป้™คๆˆๅ“กใ€‚" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "ๆ‚จๅฟ…้ ˆๅนดๆปฟ 13 ๆญฒๅ…ˆๅฏไปฅไฝฟ็”จ Blueskyใ€‚้–ฑ่ฎ€ๆˆ‘ๅ“‹ๅ˜…<0>ๆœๅ‹™ๆขๆฌพ็Ÿฅๅคšๅ•ฒใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "ไฝ ๅฟ…้ ˆ่ทŸไฝ่‡ณๅฐ‘ 7 ๅ€‹ไบบๅ…ˆ่‡ณๅฏไปฅ็”Ÿๆˆๆ–ฐๆ‰‹ๅฅ—่ฃใ€‚" @@ -14639,7 +14665,7 @@ msgstr "ไฝ ๅฟ…้ ˆๅ…่จฑๅ–็”จไฝ ๅ˜…ๅช’้ซ”ๅ…งๅฎนใ€‚" msgid "You need to verify your email address before you can enable email 2FA." msgstr "ไฝ ้œ€่ฆ้ฉ—่ญ‰ไฝ ๅ€‹้›ป้ƒตๅœฐๅ€ๅ…ˆ่‡ณๅ•“็”จๅˆฐ้›ป้ƒต้›™้‡้ฉ—่ญ‰ใ€‚" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "ไฝ ไฟ‚ๅ‘ขๅบฆๅ‚พๅˆๅ˜…ๆ“ๆœ‰่€…" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "ไฝ ๅฎถ้™ฃๅฏ่ƒฝ่ฆ้‡ๆ–ฐๅ•“็”จๅ€‹ๆ‡‰็”จ็จ‹ๅผใ€‚" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "ไฝ ็•€ๅ’—ๅ€‹ {0} ๅๆ‡‰" @@ -14667,15 +14693,15 @@ msgstr "ไฝ ๅ‘ {target} ็•€ๅ’—ๅ€‹ {0} ๅๆ‡‰" msgid "You recently changed your birthdate" msgstr "ไฝ ่ฟ‘ๆŽ’่ฎŠๆ›ดๅ’—ๅ‡บไธ–ๆ—ฅๆœŸ" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "ไฝ ่ฆ†ๅ’—" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "ไฝ ่ฆ†ๅ’— {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "ไฝ ่ฆ†ๅ’—่‡ชๅทฑ" @@ -14715,11 +14741,11 @@ msgstr "้™ค้ž็ฒๅพ—้‚€่ซ‹๏ผŒๅฆๅ‰‡็„กๆณ•้‡ๆ–ฐๅŠ ๅ…ฅใ€‚" msgid "You: {message}" msgstr "ไฝ ๏ผš{message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "ๅปบ็ซ‹ๅฎŒๅธณ่™Ÿไน‹ๅพŒ๏ผŒไฝ ๅฐฑๆœƒ่‡ชๅ‹•่ทŸๅ•ฒๅปบ่ญฐๅ˜…็”จๆˆถๅŒๅ‹•ๆ…‹ๆบ๏ผ" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "ๅปบ็ซ‹ๅฎŒๅธณ่™Ÿไน‹ๅพŒ๏ผŒไฝ ๅฐฑๆœƒ่‡ชๅ‹•่ทŸๅ•ฒๅปบ่ญฐๅ˜…็”จๆˆถ๏ผ" @@ -14747,11 +14773,11 @@ msgstr "ๅ‘ขๅ•ฒๅ‹•ๆ…‹ๆบๆœ‰ๆ–ฐๅ˜ขๅ˜…่ฉฑไฝ ้ƒฝๆœƒๆ”ถๅˆฐ" #: src/ageAssurance/useVerificationFlow.ts:133 msgid "You're all set!" -msgstr "" +msgstr "ๆ”ชๆŽ‚ๆ™’๏ผ" #: src/ageAssurance/useVerificationFlow.ts:127 msgid "You're all set! However, certain features may still be restricted until you're able to verify you're an adult." -msgstr "" +msgstr "ๆ”ชๆŽ‚ๆ™’๏ผไธ้Žๅ–บไฝ ่ญ‰ๆ˜Ž่‡ชๅทฑ็ถ“ๅทฒๆˆๅนดไน‹ๅ‰๏ผŒ้ƒจๅˆ†ๅŠŸ่ƒฝๅฏ่ƒฝไป็„ถๆœƒๅ—ๅˆฐ้™ๅˆถใ€‚" #: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 msgid "Youโ€™re in control" @@ -14791,7 +14817,7 @@ msgstr "ไฝ ็ถ“ๅทฒ่ฝ†ๅˆฐๆœ€ใž˜ใ€‚" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ไฝ ็ถ“ๅทฒ็‡ๆ™’ไฝ ๅ˜…ๅ‹•ๆ…‹ๆบๅ–‡๏ผๅŽปๆตๆ›ดๅคšไบบๅšŸ่ทŸไฝขๅ“‹ๅ•ฆใ€‚" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "ไฝ ็ถ“ๅทฒ้”ๅˆฐๅ„ฒๅญ˜่‰็จฟๆ•ธ้‡ไธŠ้™" @@ -14799,7 +14825,7 @@ msgstr "ไฝ ็ถ“ๅทฒ้”ๅˆฐๅ„ฒๅญ˜่‰็จฟๆ•ธ้‡ไธŠ้™" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "ไฝ ็ถ“ๅทฒ้”ๅˆฐ่ซ‹ๆฑ‚ๆ•ธไธŠ้™ใ€‚ๅ””่ฉฒ้ฒๅ•ฒ่ฉฆๅคšๆฌกใ€‚" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "ไฝ ๅทฒ็ถ“ๅŽปๅˆฐ {MAX_FILTERS, plural, other {# ๅ€‹็ฏฉ้ธๆขไปถ}} ๅ˜…ไธŠ้™ใ€‚่ฉฆๅ“ๅ–บ็พๆœ‰ๅ˜…็ฏฉ้ธๅ™จๅบฆๅŠ ๅคšๅ•ฒๆขไปถ๏ผŒๅ””ๅฅฝๅ†้–‹ๆ–ฐๅ˜…ๅ–‡ใ€‚" @@ -14815,11 +14841,11 @@ msgstr "ไฝ ็ถ“ๅทฒ้”ๅˆฐๆฏๆ—ฅไธŠ่ผ‰ๅฝฑ็‰‡ๅ˜…ไธŠ้™๏ผˆ็ธฝ่จˆๅฝฑ็‰‡ๅคง็ดฐ้Žๅคง๏ผ‰ msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "ไฝ ็ถ“ๅทฒ้”ๅˆฐๆฏๆ—ฅไธŠ่ผ‰ๅฝฑ็‰‡ๅ˜…ไธŠ้™๏ผˆๅฝฑ็‰‡ๆ•ธ้‡้Žๅคš๏ผ‰" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "ไฝ ็‡ๆ™’ๆ‰€ๆœ‰ๅ˜ขๅ–‡ใ€‚ๅฏ่ƒฝไฟ‚ๆ™‚ๅ€™่ฆๅ”ž้™ฃๅ…ˆ๏ผŸ" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "ไฝ ๅ˜…ๅธณ่™Ÿ" @@ -14835,11 +14861,11 @@ msgstr "ไฝ ๅ˜…ๅธณ่™Ÿๅทฒ่ขซๅœๆฌŠ" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "ไฝ ๅ˜…ๅธณ่™Ÿ่จปๅ†Šๆ™‚้–“ๅคช็Ÿญๆœช็•€ๅพ—ไฝ ไธŠ่ผ‰ๅฝฑ็‰‡ใ€‚ๅ””่ฉฒ้ฒๅ•ฒ่ฉฆๅคšๆฌกใ€‚" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "ไฝ ๅ˜…ๅธณ่™Ÿๅปบ็ซ‹ๆ™‚้–“ๅคช็Ÿญ" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "ไฝ ๅ˜…ๅธณ่™Ÿๅฟ…้ ˆๅปบ็ซ‹ 7 ๆ—ฅไปฅไธŠๅ…ˆๅฏไปฅๅปบ็ซ‹ๆ–ฐๅ˜…็พฃ็ต„ๅ‚พๅˆใ€‚" @@ -14896,7 +14922,7 @@ msgstr "ไฝ ๅ˜…้›ป้ƒต" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "ไฝ ๅ˜…้›ป้ƒตไผผไนŽ็„กๆ•ˆใ€‚" @@ -14924,14 +14950,14 @@ msgstr "ไฝ ๅ˜…ๅฎŒๆ•ดๅธณ่™Ÿไปฃ็ขผๆœƒไฟ‚ <0>@{0}" #: src/screens/Login/components/HostingProviderDialog.tsx:182 msgid "Your hosting provider canโ€™t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." -msgstr "" +msgstr "็„กๆณ•ๅ–บ้›ป้ƒตๅœฐๅ€ๅˆคๆ–ทๅˆฐไฝ ๅ˜…่จ—็ฎกๆœๅ‹™ๆไพ›่€…๏ผŒๅ› ๆญค็”จ่ฟ”้ ่จญๅ˜… Bluesky ๆœๅ‹™ใ€‚่ซ‹ๆ”นๆˆ่ผธๅ…ฅไฝ ๅ˜…็”จๆˆถๅ็จฑ๏ผŒๆŠ‘ๆˆ–ๆ‰‹ๅ‹•่จญๅฎšไฝ ๅ˜…่จ—็ฎกๆœๅ‹™ๆไพ›่€…ใ€‚" #: src/screens/Login/components/HostingProviderDialog.tsx:188 msgid "Your hosting provider is detected automatically from the username you enter." -msgstr "" +msgstr "็ณป็ตฑๆœƒๆ นๆ“šไฝ ่ผธๅ…ฅๅ˜…็”จๆˆถๅ็จฑ่‡ชๅ‹•ๅˆคๆ–ทไฝ ๅ˜…่จ—็ฎกๆœๅ‹™ๆไพ›่€…ใ€‚" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "ไฝ ๅ˜…ๅฟƒๆฐดไธป้กŒ็ถ“ๅทฒๆ›ดๆ–ฐ๏ผ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "ไฝ ๅ˜…ๅฟƒๆฐดไธป้กŒๅฏไปฅๅนซๆˆ‘ๅ“‹ๆตๅˆฐๆ›ดๅคšไฝ ๆ‰€้พๆ„ๅ˜…ๅ…งๅฎน๏ผ" @@ -14967,11 +14993,11 @@ msgstr "ไฝ ๅ˜…ๅฏ†็ขผ็ถ“ๅทฒ่ฎŠๆ›ดๆˆๅŠŸ๏ผ็”ฑ่€Œๅฎถ้–‹ๅง‹่ซ‹ไฝฟ็”จไฝ ๆ–ฐๅ˜…ๅฏ†็ขผ msgid "Your password must be at least 8 characters long." msgstr "ไฝ ่ผธๅ…ฅๅ˜…ๅฏ†็ขผๅฟ…้ ˆ่‡ณๅฐ‘่ฆ 8 ๅ€‹ๅญ—ๅ…ƒใ€‚" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "ๅทฒ็™ผๅธƒไฝ ๅ˜…ๅธ–ๆ–‡" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "ๅทฒ็™ผๅธƒไฝ ๅ˜…ๅธ–ๆ–‡" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "ไฝ ๅ˜…ๅๅฅฝ่ชž่จ€" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "ไฝ ๅ˜…้ ญๅƒ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "ไฝ ๅ˜…้ ญๅƒไฟพๅ…ถไป–็”จๆˆถๅ˜…้ ญๅƒไธ€ๅœˆๅœˆๅ™‰ๅœไฝ" @@ -14992,7 +15018,7 @@ msgstr "ไฝ ๅ˜…้ ญๅƒไฟพๅ…ถไป–็”จๆˆถๅ˜…้ ญๅƒไธ€ๅœˆๅœˆๅ™‰ๅœไฝ" msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "ไฝ ๅ˜…ๅ€‹ไบบๆช”ๆกˆใ€ๅธ–ๆ–‡ใ€ๅ‹•ๆ…‹ๆบๅŒๅŸ‹ๆธ…ๅ–ฎๅ””ๆœƒๅ†็•€ๅ…ถไป– Bluesky ็”จๆˆถ็‡ๅˆฐใ€‚ไฝ ๅนพๆ™‚้ƒฝๅฏไปฅ็™ปๅ…ฅ้‡ๆ–ฐๅ•“็”จไฝ ๅ˜…ๅธณ่™Ÿใ€‚" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "ๅทฒ็™ผๅธƒไฝ ๅ˜…ๅ›ž่ฆ†" @@ -15005,13 +15031,13 @@ msgstr "ไฝ ๅ˜…ๆ“งๅ ฑๆœƒๆไบคๅŽป <0>{0}ใ€‚" msgid "Your selected interests help us serve you content you care about." msgstr "ไฝ ๆ€้ธๅ˜…ๅฟƒๆฐดไธป้กŒๅฏไปฅๅนซๆˆ‘ๅ“‹ๆไพ›ๆ›ดๅคšไฝ ๆ‰€้—œๆณจๅ˜…ๅ…งๅฎนใ€‚" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "ไฝ ๅ˜…ๅธ–ๆ–‡ไธฒๅŒ…ๅซ็ฉบ็™ฝๅธ–ๆ–‡๏ผŒ็ฉบ็™ฝๅธ–ๆ–‡ๅฐ‡ๆœƒ่ทณ้Ž๏ผŒๅ‰ฉไฝŽๅ—ฐๅ•ฒๅธ–ๆ–‡ๆœƒ้‡ๆ–ฐๆ•ด็†ๆˆๅธ–ๆ–‡ไธฒ็™ผๅธƒใ€‚" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 msgid "Your username and password will be shared with <0>{host}. If you donโ€™t recognize this provider, double-check your username." -msgstr "" +msgstr "ไฝ ๅ˜…็”จๆˆถๅๅŒๅฏ†็ขผๆœƒๅˆ†ไบซ็•€ <0>{host}ใ€‚่‹ฅ็„ถไฝ ๅ””่ญ˜ๅ‘ขไฝๆไพ›่€…๏ผŒ่ซ‹ๅ†ๆชขๆŸฅๅ“ไฝ ๅ˜…็”จๆˆถๅ็จฑใ€‚" #: src/components/verification/VerificationsDialog.tsx:67 msgid "Your verifications" diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po index 56f1214969..0e5a0aff89 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: 2026-07-16 14:04\n" +"PO-Revision-Date: 2026-07-28 06:05\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -19,12 +19,12 @@ msgstr "" "X-Crowdin-File-ID: 11\n" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is currently selected. -#: src/components/InterestTabs.tsx:330 +#: src/components/InterestTabs.tsx:333 msgid "\"{interestsDisplayName}\" category (active)" msgstr "ใ€Œ{interestsDisplayName}ใ€้กžๅˆฅ๏ผˆๅทฒ้ธๅ–๏ผ‰" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:901 +#: src/components/dms/MessageItem.tsx:902 msgid "(blocked message hidden)" msgstr "๏ผˆๅทฒ้šฑ่—ๅฐ้Ž–็š„่จŠๆฏ๏ผ‰" @@ -39,7 +39,7 @@ msgid "(contains embedded content)" msgstr "๏ผˆๅŒ…ๅซๅตŒๅ…ฅๅ…งๅฎน๏ผ‰" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:915 +#: src/components/dms/MessageItem.tsx:916 msgid "(deleted message)" msgstr "๏ผˆๅทฒๅˆช้™ค็š„่จŠๆฏ๏ผ‰" @@ -54,7 +54,7 @@ msgid "(invalid chat invite link)" msgstr "๏ผˆ็„กๆ•ˆ็š„ๅฐ่ฉฑ้‚€่ซ‹้€ฃ็ต๏ผ‰" #. A reply summary in chat -#: src/components/dms/MessageItem.tsx:909 +#: src/components/dms/MessageItem.tsx:910 msgid "(message sent before you joined)" msgstr "๏ผˆ่จŠๆฏๅœจๆ‚จๅŠ ๅ…ฅๅ‰ๅ‚ณ้€๏ผ‰" @@ -103,14 +103,14 @@ msgid "{0, plural, one {# hour} other {# hours}}" msgstr "{0, plural, one {# ๅฐๆ™‚} other {# ๅฐๆ™‚}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:149 +#: src/components/moderation/PostAlerts.tsx:157 msgid "{0, plural, one {# label applied to your post} other {# labels applied to your post}}" -msgstr "" +msgstr "{0, plural, other {ๆ‚จ็š„่ฒผๆ–‡่ขซๅฅ—็”จไบ† # ๅ€‹ๆจ™่จ˜}}" #. placeholder {0}: labels.length -#: src/components/moderation/PostAlerts.tsx:156 +#: src/components/moderation/PostAlerts.tsx:164 msgid "{0, plural, one {# label applied} other {# labels applied}}" -msgstr "" +msgstr "{0, plural, other {ๅทฒๅฅ—็”จ # ๅ€‹ๆจ™่จ˜}}" #. placeholder {0}: likeCount ?? 0 #: src/screens/Post/PostLikedBy.tsx:34 @@ -119,6 +119,7 @@ msgstr "{0, plural, one {# ๅ€‹ๅ–œๆญก} other {# ๅ€‹ๅ–œๆญก}}" #. placeholder {0}: convo.details.memberCount #: src/components/dialogs/SearchablePeopleList.tsx:555 +#: src/components/dms/InitiateChatFlow.tsx:1038 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {# ๅ€‹ๆˆๅ“ก}}" @@ -139,7 +140,7 @@ msgstr "{0, plural, other {# ๅ€‹ๆ–ฐ็š„ๅŠ ๅ…ฅ็”ณ่ซ‹}}" #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:370 +#: src/components/dms/MessageItem.tsx:371 msgid "{0, plural, one {# person} other {# people}} reacted โ€“ {1}" msgstr "{0, plural, other {# ๅ€‹ไบบ}}ๅฐๆญคๅšๅ‡บไบ† {1} ๅๆ‡‰" @@ -224,7 +225,7 @@ msgid "{0} ยท {1}" msgstr "{0} ยท {1}" #. placeholder {0}: desc.name -#: src/components/moderation/ContentHider.tsx:100 +#: src/components/moderation/ContentHider.tsx:98 msgid "{0} (Account)" msgstr "{0}๏ผˆๅธณ่™Ÿ๏ผ‰" @@ -251,36 +252,13 @@ msgstr "{0} ๅทฒๅ—้‚€ๅŠ ๅ…ฅๅฐ่ฉฑ" msgid "{0} and {1} added to chat" msgstr "{0} ๅ’Œ {1} ๅทฒๅ—้‚€ๅŠ ๅ…ฅๅฐ่ฉฑ" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post and are its only likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#. placeholder {1}: nameLink(names[1]) -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:135 -#: src/screens/PostThread/components/LikesStat.tsx:191 -msgid "{0} and {1} like this" -msgstr "" - -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: formatPostStatCount(others) -#. placeholder {2}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:196 -msgid "{0} and {others, plural, one {{1} other} other {{2} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:137 -msgid "{0} and {othersLabel} like this" -msgstr "" - #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" msgstr "{0} ๅ€‹่ทŸ้šจไธญ" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:723 +#: src/components/dms/MessageItem.tsx:724 msgid "{0} is blocking you" msgstr "{0} ๅทฒๅฐ้Ž–ๆ‚จ" @@ -324,14 +302,6 @@ msgstr "{0} ้›ข้–‹ไบ†" msgid "{0} left the group" msgstr "{0} ้›ข้–‹ไบ†็พค็ต„" -#. Social proof on the likes stat; the bolded name is a person the viewer follows who liked the post and is its only like -#. placeholder {0}: nameLink(names[0]) -#. placeholder {0}: names[0].displayName -#: src/screens/PostThread/components/LikesStat.tsx:138 -#: src/screens/PostThread/components/LikesStat.tsx:206 -msgid "{0} likes this" -msgstr "" - #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/Scrubber.tsx:203 @@ -346,7 +316,7 @@ msgstr "ๅทฒ่ผธๅ…ฅ {0} ๅ€‹ๅญ—ๅ…ƒ๏ผŒๆœ€ๅคš 50 ๅ€‹ๅญ—ๅ…ƒ" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:365 +#: src/components/dms/MessageItem.tsx:366 msgid "{0} reacted {1}" msgstr "{0} ๅšๅ‡บไบ† {1} ๅๆ‡‰" @@ -388,21 +358,6 @@ msgstr "{0}ใ€" msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}ใ€{1} ๅŠ{memberCount, plural, other {ๅ…ถไป– # ไบบ}}ๅทฒๅ—้‚€ๅŠ ๅ…ฅๅฐ่ฉฑ" -#. Social proof on the likes stat; the bolded names are people the viewer follows who liked the post, and the count is the remaining number of likes -#. placeholder {0}: nameLink(names[0]) -#. placeholder {1}: nameLink(names[1]) -#. placeholder {2}: formatPostStatCount(others) -#. placeholder {3}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:181 -msgid "{0}, {1}, and {others, plural, one {{2} other} other {{3} others}} like this" -msgstr "" - -#. placeholder {0}: names[0].displayName -#. placeholder {1}: names[1].displayName -#: src/screens/PostThread/components/LikesStat.tsx:134 -msgid "{0}, {1}, and {othersLabel} like this" -msgstr "" - #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {2}: feed.likeCount || 0 @@ -689,8 +644,15 @@ msgstr "{firstAuthorName} ๅฐๆ‚จๆŽˆไบˆไบ†้ฉ—่ญ‰" msgid "{following} following" msgstr "{following} ๅ€‹่ทŸ้šจไธญ" +#. '{postCount} {posts}', e.g., '1.2K posts' +#. '{postCount} {posts}', e.g., '1.2K posts' +#: src/components/interstitials/FeedTrendingTopics.tsx:231 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:177 +msgid "{formattedPostCount} {postCount, plural, one {post} other {posts}}" +msgstr "" + #: src/components/dms/components/GroupChatProfileCard.tsx:62 -#: src/components/dms/InitiateChatFlow.tsx:945 +#: src/components/dms/InitiateChatFlow.tsx:1158 msgid "{handle} canโ€™t be added" msgstr "็„กๆณ•้‚€่ซ‹ {handle}" @@ -698,7 +660,7 @@ msgstr "็„กๆณ•้‚€่ซ‹ {handle}" msgid "{handle} can't be messaged" msgstr "็„กๆณ•ๅ‚ณ้€่จŠๆฏ็ตฆ {handle}" -#: src/components/dms/InitiateChatFlow.tsx:906 +#: src/components/dms/InitiateChatFlow.tsx:1119 msgid "{handle} canโ€™t be messaged" msgstr "็„กๆณ•ๅ‚ณ้€่จŠๆฏ็ตฆ {handle}" @@ -776,12 +738,6 @@ msgstr "{notificationCount, plural, one {# ๅ‰‡ๆœช่ฎ€้€š็Ÿฅ} other {# ๅ‰‡ๆœช่ฎ€ msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {ๆ‰พๅˆฐไบ† # ไฝ่ฏ็ตกไบบ}}" -#. placeholder {0}: formatPostStatCount(others) -#. placeholder {1}: formatPostStatCount(others) -#: src/screens/PostThread/components/LikesStat.tsx:127 -msgid "{others, plural, one {{0} other} other {{1} others}}" -msgstr "" - #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" msgstr "ใ€Œ{profileName}ใ€ๅœจ {timeAgoString}ๅ‰ๅŠ ๅ…ฅไบ† Bluesky" @@ -791,23 +747,25 @@ msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" msgstr "ใ€Œ{profileName}ใ€ๅœจ {timeAgoString}ๅ‰ไฝฟ็”จๆ–ฐๆ‰‹ๅŒ…ๅŠ ๅ…ฅไบ† Bluesky" #. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +#. The trending topic rank, i.e. "1. March Madness", "2. The Bachelor" +#: src/components/interstitials/FeedTrendingTopics.tsx:216 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:152 msgid "{rank}." msgstr "{rank}." #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:106 msgid "{remaining, plural, one {# character remaining} other {# characters remaining}}" -msgstr "" +msgstr "{remaining, plural, other {ๅ‰ฉ้ค˜ # ๅ€‹ๅญ—ๅ…ƒ}}" -#: src/components/dms/MessageItem.tsx:810 +#: src/components/dms/MessageItem.tsx:811 msgid "{replierDisplayName} replied" msgstr "{replierDisplayName} ๅ›ž่ฆ†ไบ†" -#: src/components/dms/MessageItem.tsx:809 +#: src/components/dms/MessageItem.tsx:810 msgid "{replierDisplayName} replied to {originalName}" msgstr "{replierDisplayName} ๅ›ž่ฆ†ไบ† {originalName}" -#: src/components/dms/MessageItem.tsx:807 +#: src/components/dms/MessageItem.tsx:808 msgid "{replierDisplayName} replied to you" msgstr "{replierDisplayName} ๅ›ž่ฆ†ไบ†ๆ‚จ" @@ -821,11 +779,6 @@ msgstr "{requestCount, plural, other {# ๅ€‹้‚€่ซ‹}}" msgid "{requestCount}+ requests" msgstr "่ถ…้Ž {requestCount} ๅ€‹้‚€่ซ‹" -#. trending topic time spent trending. should be as short as possible to fit in a pill -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:191 -msgid "{type}h ago" -msgstr "{type} ๅฐๆ™‚ๅ‰" - #: src/components/verification/VerifierDialog.tsx:62 msgid "{userName} is a trusted verifier" msgstr "{userName} ๆ˜ฏๅฏ้ ็š„้ฉ—่ญ‰่€…" @@ -842,13 +795,13 @@ msgstr "{userName} ็š„้ฉ—่ญ‰" #. Number of images beyond the first 3 #. placeholder {0}: labels.length #. placeholder {0}: totalNumber - 3 -#: src/components/moderation/PostAlerts.tsx:155 +#: src/components/moderation/PostAlerts.tsx:163 #: src/view/com/composer/ComposerReplyTo.tsx:278 msgid "+{0}" msgstr "+{0}" #. Indicates the number of additional profiles are in the Starter Pack e.g. +12 -#: src/screens/Search/components/StarterPackCard.tsx:250 +#: src/screens/Search/components/StarterPackCard.tsx:258 msgid "+{computedTotal}" msgstr "+{computedTotal}" @@ -883,14 +836,14 @@ msgstr "<0>{0} {1, plural, one {ๅ€‹่ทŸ้šจไธญ} other {ๅ€‹่ทŸ้šจไธญ}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:470 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {ๆฌกๅผ•็”จ}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:449 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {ๅ‰‡่ฝ‰็™ผ}}" @@ -903,9 +856,9 @@ msgstr "<0>{0} {1, plural, other {ๆฌกๆ”ถ่—}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(likeCount) -#: src/screens/PostThread/components/LikesStat.tsx:90 +#: src/screens/PostThread/components/LikesStat.tsx:44 msgid "<0>{0} {likeCount, plural, one {like} other {likes}}" -msgstr "" +msgstr "<0>{0} {likeCount, plural, other {ๅ€‹ๅ–œๆญก}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -931,7 +884,7 @@ msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> ๅทฒๅฐ‡ๆ‚จๅŠ ๅ…ฅ" #: src/screens/Hashtag.tsx:230 -#: src/screens/Search/SearchResults.tsx:385 +#: src/screens/Search/SearchResults.tsx:412 msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." msgstr "<0>็™ปๅ…ฅ<1>ๆˆ–<2>ๅปบ็ซ‹ๅธณ่™Ÿ<3><4>ๅณๅฏๅœจ Bluesky ไธŠๆœๅฐ‹ๆœ‰้—œๆ–ฐ่žใ€้ซ”่‚ฒใ€ๆ”ฟๆฒป็ญ‰ๆ–ฐ้ฎฎไบ‹ใ€‚" @@ -971,7 +924,7 @@ msgstr "30 ๅคฉ" msgid "7 days" msgstr "7 ๅคฉ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:27 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" msgstr "ๆ‚จๅฏไปฅๅœจ Bluesky ไธŠๆ‰พๅˆฐไธ€็ณปๅˆ—็†ฑ้–€ๅ‹•ๆ…‹ๆบ๏ผŒๅŒ…ๆ‹ฌ Newsใ€Bookskyใ€Game Devใ€Blacksky๏ผŒไปฅๅŠ โ€‹โ€‹Fountain Pens" @@ -988,9 +941,11 @@ msgstr "็™ผ็”Ÿไบ†็ถฒ่ทฏ้Œฏ่ชค๏ผŒ่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทš็‹€ๆ…‹" #: src/components/contacts/screens/VerifyNumber.tsx:155 #: src/components/dms/dialogs/NewChatDialog.tsx:56 #: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:71 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:110 #: src/components/dms/LeaveConvoPrompt.tsx:38 -#: src/components/moderation/BlockDialog.tsx:287 -#: src/components/moderation/BlockDialog.tsx:313 +#: src/components/moderation/BlockDialog.tsx:284 +#: src/components/moderation/BlockDialog.tsx:310 #: src/screens/Messages/JoinRequests.tsx:192 #: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." @@ -1004,7 +959,7 @@ msgstr "ๅทฒๅ‚ณ้€ๆ–ฐ็š„้ฉ—่ญ‰็ขผ" msgid "A new form of verification" msgstr "ๅ…จๆ–ฐ็š„้ฉ—่ญ‰ๆฉŸๅˆถ" -#: src/components/dms/MessageItem.tsx:820 +#: src/components/dms/MessageItem.tsx:821 msgid "A reply to a message sent before you joined" msgstr "ๅฐๆ‚จๅŠ ๅ…ฅไน‹ๅ‰ๅ‚ณ้€็š„่จŠๆฏ็š„ๅ›ž่ฆ†" @@ -1028,10 +983,11 @@ msgid "A screenshot of the post composer with a new button next to the post butt msgstr "ไธ€ๅผต่ฒผๆ–‡็ทจ่ผฏๅ™จ็š„่žขๅน•ๆˆชๅœ–ใ€‚ๅœจ็™ผๅธƒๆŒ‰้ˆ•ๆ—ๆœ‰ไธ€ๅ€‹ๆจ™็คบ็‚บ่‰็จฟ็š„ๆ–ฐๆŒ‰้ˆ•๏ผŒไธฆๅธถๆœ‰ๅฝฉ่™น็…™็ซ็‰นๆ•ˆใ€‚ไธ‹ๆ–น็š„็ทจ่ผฏๅ™จๆ–‡ๅญ—้กฏ็คบ๏ผšใ€Œๅ˜ฟ๏ผŒไฝ ่ฝ่ชชไบ†ๅ—Ž๏ผŸ Bluesky ็พๅœจๆœ‰่‰็จฟๅŠŸ่ƒฝไบ†๏ผ๏ผ๏ผใ€ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:125 msgid "A selected recipient is not followed by the sender." msgstr "้ธๆ“‡็š„้ƒจๅˆ†ๅฐ่ฑกๆฒ’ๆœ‰่ขซๅ‚ณ้€่€…่ทŸ้šจใ€‚" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:483 #: src/screens/Settings/AboutSettings.tsx:85 #: src/screens/Settings/Settings.tsx:264 #: src/screens/Settings/Settings.tsx:267 @@ -1080,11 +1036,11 @@ msgstr "ๅทฒ้€ๅ‡บ็”ณ่ซ‹๏ผ่ซ‹้œๅพ…ๆ“ๆœ‰่€…็ขบ่ชไปฅๅŠ ๅ…ฅ็พค็ต„ใ€‚" msgid "Accessibility" msgstr "็„ก้šœ็ค™" -#: src/Navigation.tsx:389 +#: src/Navigation.tsx:390 msgid "Accessibility Settings" msgstr "็„ก้šœ็ค™่จญๅฎš" -#: src/Navigation.tsx:405 +#: src/Navigation.tsx:406 #: src/screens/Settings/AccountSettings.tsx:54 #: src/screens/Settings/Settings.tsx:174 #: src/screens/Settings/Settings.tsx:177 @@ -1131,7 +1087,7 @@ msgstr "ๅธณ่™Ÿๅทฒ่ขซๅˆ—่กจ้œ้Ÿณ" msgid "Account options" msgstr "ๅธณ่™Ÿ่จญๅฎš" -#: src/screens/Settings/Settings.tsx:680 +#: src/screens/Settings/Settings.tsx:681 msgid "Account removed from quick access" msgstr "ๆˆๅŠŸๅพžๅฟซ้€Ÿๅญ˜ๅ–ไธญ็งป้™คๅธณ่™Ÿ" @@ -1159,11 +1115,15 @@ msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. msgstr "ๅธถๆœ‰ๆ‰‡ๅฝข่—่‰ฒๅ‹พ่™Ÿๅพฝ็ซ ็š„ๅธณ่™Ÿ<0><1/>ๅฏไปฅๅฐๅ…ถไป–ๅธณ่™ŸๆŽˆไบˆ้ฉ—่ญ‰ใ€‚้€™ไบ›ๅฏ้ ็š„้ฉ—่ญ‰่€…็”ฑ Bluesky ๅฎ˜ๆ–น่ฆช่‡ชๆŒ‘้ธใ€‚" #: src/lib/hooks/useNotificationHandler.ts:214 -#: src/screens/Settings/NotificationSettings/index.tsx:226 -#: src/screens/Settings/NotificationSettings/index.tsx:365 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Activity from others" msgstr "ไพ†่‡ชๅ…ถไป–ไบบ็š„ๅ‹•ๆ…‹" +#: src/Navigation.tsx:459 +msgid "Activity notifications" +msgstr "" + #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:191 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:319 #: src/components/dialogs/lists/UserAddRemoveListsDialog.tsx:326 @@ -1223,17 +1183,17 @@ msgstr "ๆ–ฐๅขžๆ›ฟไปฃๆ–‡ๅญ—๏ผˆ้ธๅกซ๏ผ‰" msgid "Add another account" msgstr "ๆ–ฐๅขžๅ…ถไป–ๅธณ่™Ÿ" -#: src/view/com/composer/Composer.tsx:1601 +#: src/view/com/composer/Composer.tsx:1607 msgid "Add another post" msgstr "ๅŠ ๅ…ฅๅฆไธ€ๅ‰‡่ฒผๆ–‡" -#: src/view/com/composer/Composer.tsx:2267 +#: src/view/com/composer/Composer.tsx:2273 msgid "Add another post to thread" msgstr "ๆ–ฐๅขžๅฆไธ€ๅ‰‡่ฒผๆ–‡่‡ณ่จŽ่ซ–ไธฒ" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:435 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:439 msgid "Add another search filter" -msgstr "" +msgstr "ๆ–ฐๅขžๅฆไธ€ๅ€‹ๆœๅฐ‹็ฏฉ้ธๆขไปถ" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 msgid "Add app password" @@ -1253,7 +1213,7 @@ msgstr "ๅŠ ๅ…ฅ่‡ชๅ‹•ๅŒ–ๆจ™่จ˜ๅˆฐๆญคๅธณ่™Ÿ" msgid "Add emoji reaction" msgstr "ๅŠ ๅ…ฅ่กจๆƒ…็ฌฆ่™Ÿๅๆ‡‰" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:443 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:447 msgid "Add filter" msgstr "ๆ–ฐๅขž็ฏฉ้ธๆขไปถ" @@ -1338,7 +1298,7 @@ msgstr "ๅฐ‡ๆญคๆ–ฐๅขž่‡ณๆ‚จ็š„ๅ‹•ๆ…‹ๆบ" msgid "Add to lists" msgstr "ๆ–ฐๅขž่‡ณๅˆ—่กจ" -#: src/components/PostControls/BookmarkButton.tsx:144 +#: src/components/PostControls/BookmarkButton.tsx:121 msgid "Add to saved posts" msgstr "ๆ–ฐๅขž่‡ณ่ฒผๆ–‡ๆ”ถ่—" @@ -1400,7 +1360,7 @@ msgstr "่‰ฒๆƒ…" msgid "Adult content" msgstr "ๆˆไบบๅ…งๅฎน" -#: src/components/moderation/ContentHider.tsx:131 +#: src/components/moderation/ContentHider.tsx:129 #: src/lib/moderation/useGlobalLabelStrings.ts:34 #: src/lib/moderation/useModerationCauseDescription.ts:149 #: src/view/com/composer/labels/LabelsBtn.tsx:123 @@ -1456,7 +1416,6 @@ msgstr "alice@example.com" #. the default tab in the interests tab bar #: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:26 #: src/view/screens/Notifications.tsx:86 msgid "All" msgstr "ๅ…จ้ƒจ" @@ -1477,9 +1436,6 @@ msgid "All friends followed!" msgstr "ๆˆๅŠŸ่ทŸ้šจๆ‰€ๆœ‰ๆœ‹ๅ‹๏ผ" #: src/components/dialogs/LanguageSelectDialog.tsx:255 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:94 -#: src/screens/Search/components/SearchLanguageDropdown.tsx:96 msgid "All languages" msgstr "ๅ…จ้ƒจ่ชž่จ€" @@ -1491,11 +1447,6 @@ msgstr "็ณป็ตฑๆœƒๅœจๆ‚จ็š„ๅ‹•ๆ…‹้กฏ็คบๆ‰€ๆœ‰่ชž่จ€็š„ๅ…งๅฎนใ€‚" msgid "All of these words" msgstr "ๅŒ…ๅซไธ‹ๅˆ—ๆ‰€ๆœ‰ๆ–‡ๅญ—" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 -msgid "All posts" -msgstr "ๆ‰€ๆœ‰่ฒผๆ–‡" - #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." msgstr "ไปฅไธ‹ๆ˜ฏๆ‚จๅ„ฒๅญ˜็š„ๅ‹•ๆ…‹ๆบใ€‚" @@ -1560,7 +1511,7 @@ msgstr "ๅ…่จฑๅญ˜ๅ–็งไบบ่จŠๆฏ" msgid "Already have a code?" msgstr "ๅทฒ็ถ“ๆœ‰้‡่จญ้ฉ—่ญ‰็ขผไบ†๏ผŸ" -#: src/components/WelcomeModal.tsx:192 +#: src/components/WelcomeModal.tsx:187 msgid "Already have an account?" msgstr "ๅทฒ็ถ“ๆœ‰ๅธณ่™Ÿไบ†๏ผŸ" @@ -1614,7 +1565,7 @@ msgstr "ไธ€ๅฐ้›ปๅญ้ƒตไปถๅทฒๅ‚ณ้€่‡ณ {0}ใ€‚่ซ‹ๆŸฅ็œ‹้ƒตไปถไธฆๅœจไธ‹ๆ–น่ผธๅ…ฅ msgid "An error has occurred" msgstr "็™ผ็”Ÿ้Œฏ่ชค" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:448 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:434 msgid "An error occurred" msgstr "็™ผ็”Ÿ้Œฏ่ชค" @@ -1631,7 +1582,7 @@ msgstr "ๅ–ๅพ—ๅปบ่ญฐๅธณ่™Ÿๆ™‚็™ผ็”Ÿ้Œฏ่ชคใ€‚" msgid "An error occurred while fetching the feed." msgstr "่ผ‰ๅ…ฅๅ‹•ๆ…‹ๆบๆ™‚็™ผ็”Ÿ้Œฏ่ชคใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:374 +#: src/components/StarterPack/ProfileStarterPacks.tsx:377 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "็”ข็”Ÿๆ‚จ็š„ๆ–ฐๆ‰‹ๅŒ…ๆ™‚็™ผ็”Ÿ้Œฏ่ชคใ€‚่ฆๅ†่ฉฆไธ€ๆฌกๅ—Ž๏ผŸ" @@ -1640,11 +1591,11 @@ msgstr "็”ข็”Ÿๆ‚จ็š„ๆ–ฐๆ‰‹ๅŒ…ๆ™‚็™ผ็”Ÿ้Œฏ่ชคใ€‚่ฆๅ†่ฉฆไธ€ๆฌกๅ—Ž๏ผŸ" msgid "An error occurred while hiding suggestion. {0}" msgstr "้šฑ่—ๅปบ่ญฐๆ™‚็™ผ็”Ÿ้Œฏ่ชคใ€‚{0}" -#: src/components/Post/Embed/VideoEmbed/index.tsx:188 +#: src/components/Post/Embed/VideoEmbed/index.tsx:197 msgid "An error occurred while loading the video. Please try again later." msgstr "่ผ‰ๅ…ฅๅฝฑ็‰‡ๆ™‚็™ผ็”Ÿ้Œฏ่ชคใ€‚่ซ‹็จๅพŒๅ†่ฉฆใ€‚" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:308 msgid "An error occurred while loading the video. Please try again." msgstr "่ผ‰ๅ…ฅๅฝฑ็‰‡ๆ™‚็™ผ็”Ÿ้Œฏ่ชคใ€‚่ซ‹็จๅพŒๅ†่ฉฆใ€‚" @@ -1684,7 +1635,7 @@ msgstr "็™ผ็”Ÿ้Œฏ่ชคใ€‚{0}" msgid "An illustration depicting user avatars flowing from a contact book into the Bluesky app" msgstr "ไธ€ๅผตๆ’ๅœ–๏ผŒๅฑ•็คบไฝฟ็”จ่€…ๅคง้ ญ่ฒผ็…งๅพž่ฏ็ตกไบบๆตๅ‘ Bluesky ๆ‡‰็”จ็จ‹ๅผ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:35 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:45 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Bluesky ็š„ๅนพๅ‰‡่ฒผๆ–‡ๆ’ๅœ–๏ผŒๆ—้‚Š้‚„ๆœ‰่ฝ‰็™ผใ€ๅ–œๆญกๅ’Œ็•™่จ€ๅœ–็คบ" @@ -1705,17 +1656,15 @@ msgstr "้‚€่ซ‹้€ฃ็ตๅฏไปฅ่ฎ“ๅ…ถไป–ไบบ็›ดๆŽฅๅŠ ๅ…ฅ็พค็ต„ๅฐ่ฉฑใ€‚ๆ‚จๅฏไปฅๆŽงๅˆถ msgid "An issue not included in these options" msgstr "ๅ•้กŒๆœชๅŒ…ๅซๅœจไธŠ่ฟฐ้ธ้ …" -#: src/components/dms/dialogs/NewChatDialog.tsx:92 -msgid "An issue occurred creating the group chat, please try again." -msgstr "ๅปบ็ซ‹็พค็ต„ๅฐ่ฉฑๆ™‚็™ผ็”Ÿๅ•้กŒ๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌกใ€‚" - #: src/components/dms/dialogs/NewChatDialog.tsx:54 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:69 msgid "An issue occurred starting the chat, please try again." msgstr "้–‹ๅง‹ๅฐ่ฉฑๆ™‚็™ผ็”Ÿๅ•้กŒ๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌกใ€‚" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 -msgid "An issue occurred while trying to open the chat" -msgstr "้–‹ๅ•Ÿๅฐ่ฉฑๆ™‚็™ผ็”Ÿๅ•้กŒ" +#: src/components/dms/dialogs/NewChatDialog.tsx:92 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:108 +msgid "An issue occurred starting the group chat, please try again." +msgstr "" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:52 @@ -1766,11 +1715,9 @@ msgstr "็‚บๆ‚จไป‹็ดน Bluesky ไธŠ็š„้ฉ—่ญ‰ๆฉŸๅˆถ" #. Placeholder text for a date picker #: src/screens/Search/components/AdvancedSearchDialog/ClearableDateField.tsx:43 msgid "Any date" -msgstr "" +msgstr "ไปปไฝ•ๆ—ฅๆœŸ" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:22 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:25 msgid "Anyone" msgstr "ไปปไฝ•ไบบ" @@ -1802,7 +1749,7 @@ msgstr "่ทŸ้šจๆˆ‘็š„ไบบ" msgid "Anyone who has it will no longer be able to join or request to join. You can always create a new one." msgstr "ไปปไฝ•ไบบ้ƒฝ็„กๆณ•ๅ†้€้Žๆญค้€ฃ็ตๅŠ ๅ…ฅ็พค็ต„๏ผŒไฝ†ๆ‚จๅฏไปฅ้šจๆ™‚ๅปบ็ซ‹ๆ–ฐ็š„้‚€่ซ‹้€ฃ็ตใ€‚" -#: src/Navigation.tsx:482 +#: src/Navigation.tsx:491 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1829,7 +1776,7 @@ msgstr "ๅฐˆ็”จๅฏ†็ขผๅ็จฑไธๅพ—่ˆ‡็พๆœ‰็š„้‡่ค‡" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:62 msgid "App password names can only contain letters, numbers, spaces, hyphens, and underscores" -msgstr "" +msgstr "ๆ‡‰็”จ็จ‹ๅผๅฏ†็ขผๅ็จฑๅช่ƒฝๅŒ…ๅซๅญ—ๆฏใ€ๆ•ธๅญ—ใ€็ฉบๆ ผใ€้€ฃๅญ—่™Ÿ (-) ๅŠๅบ•็ทš (_)" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 msgid "App password names must be at least 4 characters long" @@ -1840,7 +1787,7 @@ msgstr "ๅฏ†็ขผๅ็จฑๅฟ…้ ˆ่‡ณๅฐ‘ๅŒ…ๅซ 4 ๅ€‹ๅญ—ๅ…ƒ" msgid "App passwords" msgstr "ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ" -#: src/Navigation.tsx:357 +#: src/Navigation.tsx:358 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ" @@ -1858,7 +1805,7 @@ msgstr "็”ณ่จดใ€Œ{0}ใ€ๆจ™่จ˜" #: src/components/moderation/ModerationDetailsDialog.tsx:159 msgid "Appeal label" -msgstr "" +msgstr "็”ณ่จดๆจ™่จ˜" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 msgid "Appeal livestream suspension" @@ -1889,10 +1836,10 @@ msgstr "ๅฐๆญค่™•ๅˆ†ๆๅ‡บ็”ณ่จด" #: src/components/moderation/ModerationDetailsDialog.tsx:219 msgid "Appeal this label" -msgstr "" +msgstr "็”ณ่จดๆญคๆจ™่จ˜" -#: src/Navigation.tsx:397 -#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/Navigation.tsx:398 +#: src/screens/Settings/AppearanceSettings.tsx:71 #: src/screens/Settings/Settings.tsx:226 #: src/screens/Settings/Settings.tsx:229 msgid "Appearance" @@ -1909,12 +1856,12 @@ msgid "Apply Pull Request" msgstr "ๅฅ—็”จๆ‹‰ๅ–่ซ‹ๆฑ‚ (Pull Request)" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:610 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:611 msgid "Archived from {0}" msgstr "ๅฐๅญ˜ๆ–ผ {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:581 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:619 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:620 msgid "Archived post" msgstr "ๅทฒๅฐๅญ˜็š„่ฒผๆ–‡" @@ -1980,7 +1927,7 @@ msgstr "ๆ‚จ็ขบๅฎš่ฆๅฐ‡ๆญคๅพžๆ‚จ็š„ๅ‹•ๆ…‹ๆบไธญ็งป้™คๅ—Ž๏ผŸ" msgid "Are you sure you want to rescind your request to join {0}?" msgstr "ๆ‚จ็ขบๅฎš่ฆๆ’คๅ›žๅŠ ๅ…ฅ {0} ็š„็”ณ่ซ‹ๅ—Ž๏ผŸ" -#: src/view/com/composer/Composer.tsx:1737 +#: src/view/com/composer/Composer.tsx:1743 msgid "Are you sure you'd like to discard this post?" msgstr "ๆ‚จ็ขบๅฎš่ฆๆ”พๆฃ„็™ผๅธƒ้€™ๅ‰‡่ฒผๆ–‡ๅ—Ž๏ผŸ" @@ -2018,22 +1965,27 @@ msgctxt "Name of app icon variant" msgid "Aurora" msgstr "ๆฅตๅ…‰" +#. Filter search results by a specific post author +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:408 +msgid "Author" +msgstr "" + #: src/components/BotAccountAlert.tsx:32 -#: src/components/BotBadge.tsx:63 +#: src/components/BotBadge.tsx:65 msgid "Automated account" msgstr "่‡ชๅ‹•ๅŒ–ๅธณ่™Ÿ" #: src/screens/Login/components/HostingProviderDialog.tsx:165 #: src/screens/Login/components/HostingProviderDialog.tsx:167 msgid "Automatic" -msgstr "" +msgstr "่‡ชๅ‹•" #: src/screens/Settings/AccountSettings.tsx:155 #: src/screens/Settings/AccountSettings.tsx:158 msgid "Automation label" msgstr "่‡ชๅ‹•ๅŒ–ๆจ™่จ˜" -#: src/Navigation.tsx:421 +#: src/Navigation.tsx:422 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "่‡ชๅ‹•ๅŒ–ๆจ™่จ˜" @@ -2050,12 +2002,16 @@ msgstr "่‡ชๅ‹•ๆ’ญๆ”พๅฝฑ็‰‡ๅ’Œ GIF" msgid "Available" msgstr "ๅฏ็”จ" +#: src/screens/Onboarding/StepProfile/index.tsx:326 +msgid "Avatar creator" +msgstr "" + #: src/components/dms/AddMembersFlow.tsx:359 #: src/components/dms/AddMembersFlow.tsx:527 #: src/components/dms/AddMembersFlow.tsx:533 -#: src/components/dms/InitiateChatFlow.tsx:540 -#: src/components/dms/InitiateChatFlow.tsx:758 -#: src/components/dms/InitiateChatFlow.tsx:765 +#: src/components/dms/InitiateChatFlow.tsx:645 +#: src/components/dms/InitiateChatFlow.tsx:863 +#: src/components/dms/InitiateChatFlow.tsx:870 #: src/components/moderation/AppealForm.tsx:145 #: src/components/moderation/AppealForm.tsx:146 #: src/screens/Login/ChooseAccountForm.tsx:96 @@ -2119,9 +2075,9 @@ msgid "Before creating a post or replying, you must first verify your email." msgstr "ๅœจๆ’ฐๅฏซ่ฒผๆ–‡ๆˆ–ๅ›ž่ฆ†ไน‹ๅ‰๏ผŒๆ‚จๅฟ…้ ˆๅ…ˆ้ฉ—่ญ‰ๆ‚จ็š„้›ปๅญไฟก็ฎฑใ€‚" #: src/components/dialogs/StarterPackDialog.tsx:72 -#: src/components/StarterPack/ProfileStarterPacks.tsx:264 -#: src/components/StarterPack/ProfileStarterPacks.tsx:274 -#: src/view/screens/Profile.tsx:350 +#: src/components/StarterPack/ProfileStarterPacks.tsx:267 +#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/view/screens/Profile.tsx:352 msgid "Before creating a starter pack, you must first verify your email." msgstr "ๅœจๅปบ็ซ‹ๆ–ฐๆ‰‹ๅŒ…ไน‹ๅ‰๏ผŒๆ‚จๅฟ…้ ˆๅ…ˆ้ฉ—่ญ‰ๆ‚จ็š„้›ปๅญไฟก็ฎฑใ€‚" @@ -2135,10 +2091,10 @@ msgstr "ๅœจๆ‚จ้–‹ๅง‹ๆŽฅๆ”ถ {name} ็š„่ฒผๆ–‡้€š็Ÿฅไน‹ๅ‰๏ผŒๆ‚จๅฟ…้ ˆๅ…ˆ้ฉ—่ญ‰ๆ‚จ #: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:169 -#: src/screens/Messages/ChatList.tsx:187 -#: src/screens/Messages/ChatList.tsx:288 -#: src/screens/Messages/ChatList.tsx:544 +#: src/screens/Messages/ChatList.tsx:168 +#: src/screens/Messages/ChatList.tsx:186 +#: src/screens/Messages/ChatList.tsx:287 +#: src/screens/Messages/ChatList.tsx:543 #: src/screens/Messages/Conversation.tsx:203 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:99 msgid "Before you can message another user, you must first verify your email." @@ -2160,22 +2116,28 @@ msgstr "่ซ‹ๅกซๅฏซไปฅไธ‹ๆฌ„ไฝ๏ผŒไปฅ้–‹ๅง‹ๅนด้ฝก้ฉ—่ญ‰็จ‹ๅบใ€‚" msgid "Beta Feature" msgstr "ๆธฌ่ฉฆๅŠŸ่ƒฝ" -#: src/Navigation.tsx:413 +#: src/Navigation.tsx:414 #: src/screens/Settings/BetaFeaturesSettings.tsx:108 #: src/screens/Settings/Settings.tsx:248 #: src/screens/Settings/Settings.tsx:251 msgid "Beta features" +msgstr "ๆธฌ่ฉฆๅŠŸ่ƒฝ" + +#: src/components/BetaBadge.tsx:79 +#: src/components/BetaBadge.tsx:99 +#: src/components/BetaBadge.tsx:100 +msgid "Beta features enabled" msgstr "" #: src/screens/Settings/BetaFeaturesSettings.tsx:144 msgctxt "web" msgid "Beta features may be unstable. Some changes may require reloading the app." -msgstr "" +msgstr "ๆธฌ่ฉฆๅŠŸ่ƒฝๅฏ่ƒฝไธ็ฉฉๅฎš๏ผŒๆŸไบ›่ฎŠๆ›ดๅฏ่ƒฝ้œ€่ฆ้‡ๆ–ฐ่ผ‰ๅ…ฅๆ‡‰็”จ็จ‹ๅผใ€‚" #: src/screens/Settings/BetaFeaturesSettings.tsx:149 msgctxt "native" msgid "Beta features may be unstable. Some changes may require restarting the app." -msgstr "" +msgstr "ๆธฌ่ฉฆๅŠŸ่ƒฝๅฏ่ƒฝไธ็ฉฉๅฎš๏ผŒๆŸไบ›่ฎŠๆ›ดๅฏ่ƒฝ้œ€่ฆ้‡ๆ–ฐๅ•Ÿๅ‹•ๆ‡‰็”จ็จ‹ๅผใ€‚" #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" @@ -2185,9 +2147,9 @@ msgstr "ๅ‡บ็”Ÿๆ—ฅๆœŸ" msgid "Birthday" msgstr "็”Ÿๆ—ฅ" -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:192 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:193 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 msgid "Block" @@ -2269,7 +2231,7 @@ msgstr "ๅทฒ่ขซๅฐ้Ž–" msgid "Blocked accounts" msgstr "ๅทฒๅฐ้Ž–ๅธณ่™Ÿ" -#: src/Navigation.tsx:193 +#: src/Navigation.tsx:194 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "ๅทฒๅฐ้Ž–ๅธณ่™Ÿ" @@ -2282,7 +2244,7 @@ msgstr "่ขซๅฐ้Ž–็š„ๅธณ่™Ÿ็„กๆณ•ๅœจๆ‚จ็š„่จŽ่ซ–ไธฒไธญๅ›ž่ฆ†ใ€ๆๅŠๆ‚จ๏ผŒๆˆ–ไปฅ msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." msgstr "่ขซๅฐ้Ž–็š„ๅธณ่™Ÿ็„กๆณ•ๅœจๆ‚จ็š„่จŽ่ซ–ไธฒไธญๅ›ž่ฆ†ใ€ๆๅŠๆ‚จ๏ผŒๆˆ–ไปฅๅ…ถไป–ๆ–นๅผ่ˆ‡ๆ‚จไบ’ๅ‹•ใ€‚ๆ‚จๅฐ‡็œ‹ไธๅˆฐไป–ๅ€‘็š„ๅ…งๅฎน๏ผŒไป–ๅ€‘ไนŸๆœƒ่ขซ้˜ปๆญข็œ‹ๅˆฐๆ‚จ็š„ๅ…งๅฎนใ€‚" -#: src/screens/Profile/Sections/Labels.tsx:203 +#: src/screens/Profile/Sections/Labels.tsx:204 msgid "Blocking does not prevent this labeler from placing labels on your account." msgstr "ๅฐ้Ž–่ฉฒๅธณ่™Ÿ็„กๆณ•้˜ปๆญขๅ…ถๆจ™่จ˜ๆ‚จ็š„ๅธณ่™Ÿใ€‚" @@ -2305,10 +2267,11 @@ msgstr "bloomscrolling booksky" #: src/components/dialogs/ServerInput.tsx:144 #: src/components/dialogs/ServerInput.tsx:146 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:635 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:636 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ็„กๆณ•็ขบ่ช่ฒผๆ–‡็™ผๅธƒๆ—ฅๆœŸ็š„็œŸๅฏฆๆ€งใ€‚" @@ -2330,7 +2293,7 @@ msgstr "Bluesky ๆ˜ฏไธ€ๅ€‹้–‹ๆ”พ็š„็ถฒ่ทฏ๏ผŒๆ‚จๅฏไปฅ่‡ช่กŒๆŒ‘้ธ่จ—็ฎกๆœๅ‹™ๆ msgid "Bluesky is an open network where you can choose your own provider. If you're new here, we recommend sticking with the default Bluesky Social option." msgstr "Bluesky ๆ˜ฏไธ€ๅ€‹้–‹ๆ”พ็š„็ถฒ่ทฏ๏ผŒๆ‚จๅฏไปฅ่‡ช่กŒๆŒ‘้ธ่จ—็ฎกๆœๅ‹™ๆไพ›่€…ใ€‚ไฝ†ๅฆ‚ๆžœๆ‚จๆ˜ฏๆ–ฐไฝฟ็”จ่€…๏ผŒๆˆ‘ๅ€‘ๅปบ่ญฐไฝฟ็”จ้ ่จญ็š„ Bluesky Social ้ธ้ …ใ€‚" -#: src/components/ProgressGuide/List.tsx:117 +#: src/components/ProgressGuide/List.tsx:115 msgid "Bluesky is better with friends!" msgstr "Bluesky ๅ› ๆœ‹ๅ‹่€Œๆ›ดๅฅฝ๏ผ" @@ -2358,7 +2321,7 @@ msgstr "Bluesky Social ๆœๅ‹™ๆขๆฌพ" msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky ๆœƒๆŠŠๆ‚จ็š„่ฏ็ตกไบบไปฅ็ทจ็ขผๅŠ ๅฏ†ๅฝขๅผๅ„ฒๅญ˜ใ€‚ๅˆช้™ค่ฏ็ตกไบบไนŸๆœƒ็ซ‹ๅณๅˆช้™คๆญค่ณ‡่จŠใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:340 +#: src/components/StarterPack/ProfileStarterPacks.tsx:343 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky ๅฐ‡ๅพžๆ‚จ็š„ๅ€‹ไบบ็คพ็พค็ถฒ่ทฏไธญ้ธๆ“‡ไธ€็ต„ๆŽจ่–ฆ็š„ๅธณ่™Ÿใ€‚" @@ -2403,20 +2366,20 @@ msgstr "ๅœจไธ€ๅ€‹ๅฐ่ฉฑไธญๆœ€ๅคšๅฏๅฎน็ด 50 ไฝๆœ‹ๅ‹ใ€‚" msgid "Browse custom feeds" msgstr "็€่ฆฝ่‡ช่จ‚ๅ‹•ๆ…‹ๆบ" -#: src/components/FeedInterstitials.tsx:535 +#: src/components/FeedInterstitials.tsx:540 msgid "Browse more accounts" msgstr "็€่ฆฝๆ›ดๅคšๅธณ่™Ÿ" -#: src/components/FeedInterstitials.tsx:665 +#: src/components/FeedInterstitials.tsx:670 msgid "Browse more feeds on the Explore page" msgstr "ๅœจๆŽข็ดข้ ้ข็€่ฆฝๆ›ดๅคšๅ‹•ๆ…‹ๆบ" -#: src/components/FeedInterstitials.tsx:646 -#: src/components/FeedInterstitials.tsx:649 +#: src/components/FeedInterstitials.tsx:651 +#: src/components/FeedInterstitials.tsx:654 msgid "Browse more suggestions" msgstr "็€่ฆฝๆ›ดๅคšๅปบ่ญฐ" -#: src/components/FeedInterstitials.tsx:674 +#: src/components/FeedInterstitials.tsx:679 msgid "Browse more suggestions on the Explore page" msgstr "ๅœจๆŽข็ดข้ ้ข็€่ฆฝๆ›ดๅคšๅปบ่ญฐ" @@ -2425,24 +2388,25 @@ msgstr "ๅœจๆŽข็ดข้ ้ข็€่ฆฝๆ›ดๅคšๅปบ่ญฐ" msgid "Browse other feeds" msgstr "็€่ฆฝๅ…ถไป–ๅ‹•ๆ…‹ๆบ" -#: src/components/TrendingTopics.tsx:179 +#: src/components/TrendingTopics.tsx:78 msgid "Browse posts about {displayName}" msgstr "็€่ฆฝๆœ‰้—œ {displayName} ็š„่ฒผๆ–‡" -#: src/components/TrendingTopics.tsx:187 +#: src/components/TrendingTopics.tsx:86 msgid "Browse posts tagged with {displayName}" msgstr "็€่ฆฝๅธถๆœ‰ๆจ™็ฑค {displayName} ็š„่ฒผๆ–‡" -#: src/components/TrendingTopics.tsx:196 +#: src/components/TrendingTopics.tsx:95 msgid "Browse starter pack {displayName}" msgstr "็€่ฆฝๆ–ฐๆ‰‹ๅŒ… {displayName}" #. placeholder {0}: trend.displayName -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +#: src/components/interstitials/FeedTrendingTopics.tsx:188 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:133 msgid "Browse topic {0}" msgstr "็€่ฆฝ่ฉฑ้กŒ {0}" -#: src/components/TrendingTopics.tsx:233 +#: src/components/TrendingTopics.tsx:132 msgid "Browse topic {displayName}" msgstr "็€่ฆฝ่ฉฑ้กŒ {displayName}" @@ -2461,8 +2425,8 @@ msgstr "่ฟ”ๅ›ž้ฆ–้ ๆ™‚้–“่ปธ็š„ๆŒ‰้ˆ•" #: src/components/LabelingServiceCard/index.tsx:62 #: src/components/moderation/ReportDialog/index.tsx:847 #: src/screens/Messages/JoinRequest.tsx:177 -#: src/screens/Search/components/StarterPackCard.tsx:107 -#: src/screens/Search/Explore.tsx:971 +#: src/screens/Search/components/StarterPackCard.tsx:112 +#: src/screens/Search/Explore.tsx:960 msgid "By {0}" msgstr "ไพ†่‡ช {0}" @@ -2473,9 +2437,9 @@ msgstr "ไพ†่‡ช @{0}" #. The group chat creator, in the format 'By {displayName}'. #. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') +#. placeholder {0}: info.creatorHandle === TRENDING_HANDLE ? l`Bluesky` : sanitizeHandle(info.creatorHandle, '@') #: src/components/intents/GroupChatJoinDialog.tsx:379 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:502 msgid "By <0>{0}" msgstr "ไพ†่‡ช <0>{0}" @@ -2504,11 +2468,11 @@ msgstr "ๅปบ็ซ‹ๅธณ่™Ÿๅณ่กจ็คบๆ‚จๅŒๆ„<0>ๆœๅ‹™ๆขๆฌพๅŠ<1>้šฑ็งๆฌŠๆ”ฟ็ญ–Terms of Service." msgstr "ๅปบ็ซ‹ๅธณ่™Ÿๅณ่กจ็คบๆ‚จๅŒๆ„<0>ๆœๅ‹™ๆขๆฌพใ€‚" -#: src/screens/Search/components/StarterPackCard.tsx:106 +#: src/screens/Search/components/StarterPackCard.tsx:111 msgid "By you" msgstr "็”ฑๆ‚จๅปบ็ซ‹" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:65 msgid "Camera" msgstr "็›ธๆฉŸ" @@ -2534,7 +2498,7 @@ msgstr "้œ€่ฆ็›ธๆฉŸๅญ˜ๅ–ๆฌŠ้™" #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:175 #: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:181 #: src/components/Menu/index.tsx:373 -#: src/components/moderation/BlockDialog.tsx:202 +#: src/components/moderation/BlockDialog.tsx:204 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2565,8 +2529,8 @@ msgstr "้œ€่ฆ็›ธๆฉŸๅญ˜ๅ–ๆฌŠ้™" #: src/screens/Settings/Settings.tsx:309 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1815 -#: src/view/com/composer/Composer.tsx:1825 +#: src/view/com/composer/Composer.tsx:1821 +#: src/view/com/composer/Composer.tsx:1831 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 #: src/view/shell/desktop/LeftNav.tsx:228 @@ -2585,13 +2549,13 @@ msgstr "ๅ–ๆถˆ้‡ๆ–ฐๅ•Ÿ็”จไธฆ็™ปๅ‡บ" msgid "Cancel reply" msgstr "ๅ–ๆถˆๅ›ž่ฆ†" -#: src/screens/Search/Shell.tsx:595 +#: src/screens/Search/Shell.tsx:592 msgid "Cancel search" msgstr "ๆ”พๆฃ„ๆœๅฐ‹" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:161 msgid "Cancels signing in so you can check your username" -msgstr "" +msgstr "ๅ–ๆถˆ็™ปๅ…ฅไปฅไพฟๆ‚จๆชขๆŸฅไฝฟ็”จ่€…ๅ็จฑ" #: src/components/PostControls/index.tsx:108 #: src/components/PostControls/index.tsx:138 @@ -2649,7 +2613,7 @@ msgstr "่ฎŠๆ›ดๅธณ่™Ÿไปฃ็ขผ" #: src/screens/Login/LoginForm.tsx:644 msgid "Change hosting provider" -msgstr "" +msgstr "่ฎŠๆ›ด่จ—็ฎกๆœๅ‹™ๆไพ›่€…" #: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" @@ -2698,7 +2662,7 @@ msgid "Changes to the starter pack will not be reflected in the list after creat msgstr "ๅˆ—่กจๅœจ่ฝ‰ๅญ˜ๅพŒๆœƒๆ˜ฏไธ€ไปฝๅฎŒๅ…จ็จ็ซ‹็š„ๅ‰ฏๆœฌ๏ผŒไปปไฝ•ๅฐๆ–ฐๆ‰‹ๅŒ…็š„่ฎŠๆ›ด้ƒฝไธๆœƒๅฝฑ้Ÿฟๅทฒ่ฝ‰ๅญ˜็š„ๅˆ—่กจใ€‚" #: src/lib/hooks/useNotificationHandler.ts:133 -#: src/Navigation.tsx:500 +#: src/Navigation.tsx:509 #: src/view/shell/bottom-bar/BottomBar.tsx:242 #: src/view/shell/desktop/LeftNav.tsx:698 #: src/view/shell/Drawer.tsx:525 @@ -2738,26 +2702,27 @@ msgctxt "toast" msgid "Chat muted" msgstr "ๆˆๅŠŸ้œ้Ÿณๅฐ่ฉฑ" -#: src/components/moderation/BlockDialog.tsx:289 -#: src/components/moderation/BlockDialog.tsx:317 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:314 msgid "Chat not found." msgstr "ๆ‰พไธๅˆฐๅฐ่ฉฑใ€‚" -#: src/screens/Messages/ChatList.tsx:570 -#: src/screens/Messages/ChatList.tsx:605 -#: src/screens/Messages/ChatList.tsx:652 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/ChatList.tsx:651 msgid "Chat options" msgstr "ๅฐ่ฉฑ้ธ้ …" -#: src/components/moderation/BlockDialog.tsx:293 +#: src/components/moderation/BlockDialog.tsx:290 msgid "Chat owners cannot leave a group chat." msgstr "ๅฐ่ฉฑๆ“ๆœ‰่€…็„กๆณ•้›ข้–‹็พค็ต„ๅฐ่ฉฑใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:88 msgid "Chat recipient is not followed by the sender." msgstr "่จŠๆฏๆŽฅๆ”ถ่€…ๆฒ’ๆœ‰่ขซๅ‚ณ้€่€…่ทŸ้šจใ€‚" -#: src/Navigation.tsx:520 +#: src/Navigation.tsx:529 msgid "Chat request inbox" msgstr "ๅฐ่ฉฑ้‚€่ซ‹ๆ”ถไปถๅŒฃ" @@ -2767,11 +2732,11 @@ msgid "Chat requests" msgstr "ๅฐ่ฉฑ้‚€่ซ‹" #: src/components/dms/ConvoMenu.tsx:88 -#: src/Navigation.tsx:515 -#: src/screens/Messages/ChatList.tsx:98 -#: src/screens/Messages/ChatList.tsx:102 -#: src/screens/Messages/ChatList.tsx:672 -#: src/screens/Messages/ChatList.tsx:682 +#: src/Navigation.tsx:524 +#: src/screens/Messages/ChatList.tsx:97 +#: src/screens/Messages/ChatList.tsx:101 +#: src/screens/Messages/ChatList.tsx:671 +#: src/screens/Messages/ChatList.tsx:681 #: src/screens/Messages/Settings.tsx:48 msgid "Chat settings" msgstr "ๅฐ่ฉฑ่จญๅฎš" @@ -2798,9 +2763,9 @@ msgctxt "toast" msgid "Chat unmuted" msgstr "ๆˆๅŠŸๅ–ๆถˆ้œ้Ÿณๅฐ่ฉฑ" -#: src/screens/Messages/ChatList.tsx:92 -#: src/screens/Messages/ChatList.tsx:556 -#: src/screens/Messages/ChatList.tsx:596 +#: src/screens/Messages/ChatList.tsx:91 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:595 msgid "Chats" msgstr "ๅฐ่ฉฑ" @@ -2810,7 +2775,7 @@ msgstr "ๅœจไธ‹ๆ–น่ผธๅ…ฅๅ‚ณ้€่‡ณ <0>{currentEmail} ็š„้ฉ—่ญ‰็ขผ๏ผš" #: src/screens/Settings/BetaFeaturesSettings.tsx:182 msgid "Check back later!" -msgstr "" +msgstr "่ซ‹ๆ™š้ปžๅ†ๅ›žไพ†็œ‹็œ‹๏ผ" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2837,7 +2802,7 @@ msgstr "้ธๆ“‡็ถฒๅŸŸ้ฉ—่ญ‰ๆ–นๅผ" msgid "Choose Feeds" msgstr "้ธๆ“‡ๅ‹•ๆ…‹ๆบ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:349 +#: src/components/StarterPack/ProfileStarterPacks.tsx:352 msgid "Choose for me" msgstr "็‚บๆˆ‘ๆŒ‘้ธ" @@ -2854,7 +2819,7 @@ msgstr "้ธๆ“‡ไบบ็‰ฉ" msgid "Choose post languages" msgstr "้ธๆ“‡่ฒผๆ–‡่ชž่จ€" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:106 msgid "Choose this color as your avatar" msgstr "้ธๆ“‡้€™ๅ€‹้ก่‰ฒไฝœ็‚บๆ‚จ็š„ๅคง้ ญ่ฒผ็…ง่ƒŒๆ™ฏ" @@ -2869,7 +2834,7 @@ msgstr "้ธๆ“‡่ฆ้‚€่ซ‹็š„ไบบ" #: src/components/dialogs/ServerInput.tsx:134 #: src/screens/Login/components/HostingProviderDialog.tsx:155 msgid "Choose your hosting provider" -msgstr "" +msgstr "้ธๆ“‡ๆ‚จ็š„่จ—็ฎกๆœๅ‹™ๆไพ›่€…" #: src/view/screens/Feeds.tsx:726 msgid "Choose your own timeline! Feeds built by the community help you find content you love." @@ -2879,7 +2844,7 @@ msgstr "่‡ช่กŒ่จญ่จˆๅฐˆๅฑฌๆ–ผๆ‚จ็š„ๆฒณ้“๏ผ็”ฑ็คพ็พคๆ‰“้€ ็š„ๅ‹•ๆ…‹ๆบ่ƒฝๅ”ๅŠฉ msgid "Choose your password" msgstr "่จญๅฎšๆ‚จ็š„ๅฏ†็ขผ" -#: src/screens/Signup/index.tsx:203 +#: src/screens/Signup/index.tsx:201 msgid "Choose your username" msgstr "้ธๆ“‡ๆ‚จ็š„ไฝฟ็”จ่€…ๅ็จฑ" @@ -2966,7 +2931,7 @@ msgstr "้ปžไธ€ไธ‹้€™่ฃกไปฅๆชข่ฆ–ๆญค็พค็ต„ๅฐ่ฉฑ็š„้‚€่ซ‹้€ฃ็ต" msgid "Click to open tag menu for {0}" msgstr "้ปžๆญคไปฅ้–‹ๅ•Ÿ {0} ็š„ๆจ™็ฑค้ธๅ–ฎ" -#: src/components/dms/MessageItem.tsx:642 +#: src/components/dms/MessageItem.tsx:643 msgid "Click to retry failed message" msgstr "้ปžๆญคไปฅ้‡ๆ–ฐๅ‚ณ้€่จŠๆฏ" @@ -3003,7 +2968,7 @@ msgstr "้ปžๆญคไปฅ้‡ๆ–ฐๅ‚ณ้€่จŠๆฏ" #: src/components/dms/AfterReportDialog.tsx:212 #: src/components/dms/AfterReportDialog.tsx:217 #: src/components/dms/EmojiPopup.android.tsx:59 -#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:670 #: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 @@ -3027,8 +2992,8 @@ msgstr "้ปžๆญคไปฅ้‡ๆ–ฐๅ‚ณ้€่จŠๆฏ" msgid "Close" msgstr "้—œ้–‰" -#: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:317 +#: src/components/Dialog/index.web.tsx:129 +#: src/components/Dialog/index.web.tsx:342 msgid "Close active dialog" msgstr "้—œ้–‰็›ฎๅ‰็š„ๅฐ่ฉฑๆก†" @@ -3047,7 +3012,7 @@ msgstr "้—œ้–‰ๆฉซๅน…" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:102 -#: src/components/moderation/BlockDialog.tsx:199 +#: src/components/moderation/BlockDialog.tsx:201 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -3070,7 +3035,7 @@ msgstr "้—œ้–‰ๅœ–็‰‡ๆชข่ฆ–ๅ™จ" #: src/components/ContextMenu/Backdrop.ios.tsx:53 #: src/components/ContextMenu/Backdrop.ios.tsx:79 #: src/components/ContextMenu/Backdrop.tsx:45 -#: src/components/Lightbox/chrome/ImageMenu.tsx:84 +#: src/components/Lightbox/chrome/ImageMenu.tsx:85 msgid "Close menu" msgstr "้—œ้–‰้ธๅ–ฎ" @@ -3090,7 +3055,7 @@ msgstr "้—œ้–‰ๅŠ ๅ…ฅ็”ณ่ซ‹้€š็Ÿฅๆฉซๅน…" msgid "Close this dialog" msgstr "้—œ้–‰ๆญคๅฐ่ฉฑๆก†" -#: src/components/WelcomeModal.tsx:217 +#: src/components/WelcomeModal.tsx:212 msgid "Close welcome modal" msgstr "้—œ้–‰ๆญก่ฟŽ็•ซ้ข" @@ -3098,7 +3063,7 @@ msgstr "้—œ้–‰ๆญก่ฟŽ็•ซ้ข" msgid "Closes password update alert" msgstr "้—œ้–‰ๅฏ†็ขผๆ›ดๆ–ฐ่ญฆๅ‘Š" -#: src/view/com/composer/Composer.tsx:1823 +#: src/view/com/composer/Composer.tsx:1829 msgid "Closes post composer and discards post draft" msgstr "้—œ้–‰่ฒผๆ–‡็ทจ่ผฏๅ™จไธฆๆจๆฃ„่‰็จฟ" @@ -3115,7 +3080,7 @@ msgid "Color" msgstr "้ก่‰ฒ" #: src/components/dialogs/Embed.tsx:150 -#: src/screens/Settings/AppearanceSettings.tsx:81 +#: src/screens/Settings/AppearanceSettings.tsx:79 msgid "Color mode" msgstr "่‰ฒๅฝฉๆจกๅผ" @@ -3132,7 +3097,7 @@ msgid "Comics" msgstr "ๆผซ็•ซ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:347 +#: src/Navigation.tsx:348 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "็คพ็พคๆบ–ๅ‰‡" @@ -3141,7 +3106,7 @@ msgstr "็คพ็พคๆบ–ๅ‰‡" msgid "Complete onboarding and start using your account" msgstr "ๅฎŒๆˆๅ…ฅ้–€ๅผ•ๅฐŽไปฅ้–‹ๅง‹ไฝฟ็”จๆ‚จ็š„ๅธณ่™Ÿ" -#: src/screens/Signup/index.tsx:205 +#: src/screens/Signup/index.tsx:203 msgid "Complete the challenge" msgstr "ๅฎŒๆˆ้ฉ—่ญ‰" @@ -3152,7 +3117,7 @@ msgid "Compose new post" msgstr "ๆ’ฐๅฏซๆ–ฐ่ฒผๆ–‡" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1699 +#: src/view/com/composer/Composer.tsx:1705 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "ๆ’ฐๅฏซๆœ€ๅคš {0, plural,other {# ๅ€‹ๅญ—ๅ…ƒ}}็š„่ฒผๆ–‡" @@ -3160,11 +3125,11 @@ msgstr "ๆ’ฐๅฏซๆœ€ๅคš {0, plural,other {# ๅ€‹ๅญ—ๅ…ƒ}}็š„่ฒผๆ–‡" msgid "Compose reply" msgstr "ๆ’ฐๅฏซๅ›ž่ฆ†" -#: src/view/com/composer/Composer.tsx:2671 +#: src/view/com/composer/Composer.tsx:2677 msgid "Compressing GIF..." msgstr "ๆญฃๅœจๅฃ“็ธฎ GIFโ€ฆโ€ฆ" -#: src/view/com/composer/Composer.tsx:2673 +#: src/view/com/composer/Composer.tsx:2679 msgid "Compressing video..." msgstr "ๆญฃๅœจๅฃ“็ธฎๅฝฑ็‰‡โ€ฆโ€ฆ" @@ -3199,12 +3164,12 @@ msgstr "ๆญฃๅœจ้€ฃ็ทš่‡ณๆœๅ‹™โ€ฆโ€ฆ" #: src/screens/Login/LoginForm.tsx:542 msgid "Connecting to serviceโ€ฆ" -msgstr "" +msgstr "ๆญฃๅœจ้€ฃ็ทš่‡ณๆœๅ‹™โ€ฆโ€ฆ" #: src/screens/Login/ForgotPasswordForm.tsx:138 #: src/screens/Login/LoginForm.tsx:548 msgid "Connectingโ€ฆ" -msgstr "" +msgstr "้€ฃ็ทšไธญโ€ฆโ€ฆ" #: src/ageAssurance/components/RedirectOverlay.tsx:297 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 @@ -3222,8 +3187,8 @@ msgid "Contact our support team" msgstr "่ฏ็ตกๆˆ‘ๅ€‘็š„ๆ”ฏๆดๅœ˜้šŠ" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 -#: src/screens/Signup/index.tsx:250 -#: src/screens/Signup/index.tsx:253 +#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:251 msgid "Contact support" msgstr "่ฏ็ตกๆ”ฏๆด" @@ -3253,7 +3218,7 @@ msgstr "ๅ…งๅฎน่ˆ‡ๅช’้ซ”" msgid "Content and media" msgstr "ๅ…งๅฎน่ˆ‡ๅช’้ซ”" -#: src/Navigation.tsx:458 +#: src/Navigation.tsx:467 msgid "Content and Media" msgstr "ๅ…งๅฎน่ˆ‡ๅช’้ซ”" @@ -3265,10 +3230,6 @@ msgstr "ๅทฒๅฐ้Ž–ๅ…งๅฎน" msgid "Content filters" msgstr "ๅ…งๅฎน็ฏฉ้ธๅ™จ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:60 -msgid "Content from across the network we think you might like." -msgstr "ๆˆ‘ๅ€‘ๅพž็ถฒ่ทฏ็š„ๅ„ๅ€‹่ง’่ฝ็ฒพ้ธๅ‡บไบ†ๆ‚จๅฏ่ƒฝๆœƒๆ„Ÿ่ˆˆ่ถฃ็š„ๅ…งๅฎนใ€‚" - #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" msgstr "ๅ…งๅฎน่ชž่จ€" @@ -3283,7 +3244,7 @@ msgid "Content promoting or depicting self-harm" msgstr "ๅฎฃๆšๆˆ–ๆๅ€ก่‡ชๆฎ˜ๅ…งๅฎน" #: src/components/moderation/ModerationDetailsDialog.tsx:70 -#: src/components/moderation/ScreenHider.tsx:100 +#: src/components/moderation/ScreenHider.tsx:98 #: src/lib/moderation/useGlobalLabelStrings.ts:22 #: src/lib/moderation/useModerationCauseDescription.ts:46 msgid "Content Warning" @@ -3293,7 +3254,7 @@ msgstr "ๅ…งๅฎน่ญฆๅ‘Š" msgid "Content warnings" msgstr "ๅ…งๅฎน่ญฆๅ‘Š" -#: src/components/Menu/index.web.tsx:91 +#: src/components/Menu/index.web.tsx:93 msgid "Context menu backdrop, click to close the menu." msgstr "ๅ…งๅฎน้ธๅ–ฎ่ƒŒๆ™ฏ๏ผŒ้ปžไธ€ไธ‹ไปฅ้—œ้–‰้ธๅ–ฎใ€‚" @@ -3302,7 +3263,7 @@ msgstr "ๅ…งๅฎน้ธๅ–ฎ่ƒŒๆ™ฏ๏ผŒ้ปžไธ€ไธ‹ไปฅ้—œ้–‰้ธๅ–ฎใ€‚" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:149 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:152 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -3315,7 +3276,7 @@ msgstr "ไปฅ {0} ็š„่บซๅˆ†็นผ็บŒ๏ผˆ็›ฎๅ‰ๅทฒ็™ปๅ…ฅ๏ผ‰" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:150 msgid "Continue signing in" -msgstr "" +msgstr "็นผ็บŒ็™ปๅ…ฅ" #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 msgid "Continue thread" @@ -3326,12 +3287,12 @@ msgid "Continue thread..." msgstr "็นผ็บŒ่ผ‰ๅ…ฅ่จŽ่ซ–ไธฒโ€ฆโ€ฆ" #: src/components/dms/AddMembersFlow.tsx:324 -#: src/components/dms/InitiateChatFlow.tsx:493 +#: src/components/dms/InitiateChatFlow.tsx:598 msgid "Continue to group name" msgstr "็นผ็บŒ่จญๅฎš็พค็ต„ๅ็จฑ" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: src/screens/Onboarding/StepProfile/index.tsx:298 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:302 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:114 #: src/screens/Signup/BackNextButtons.tsx:61 @@ -3368,7 +3329,7 @@ msgstr "ๆ‰พไธๅˆฐๅฐ่ฉฑใ€‚" msgid "Copied build version to clipboard" msgstr "ๆˆๅŠŸ่ค‡่ฃฝ็ต„ๅปบ็‰ˆๆœฌ่™Ÿ่‡ณๅ‰ช่ฒผ็ฐฟ" -#: src/screens/Search/Shell.tsx:515 +#: src/screens/Search/Shell.tsx:512 msgid "Copied link to clipboard" msgstr "ๅทฒๅฐ‡้€ฃ็ต่ค‡่ฃฝ่‡ณๅ‰ช่ฒผ็ฐฟ" @@ -3376,7 +3337,7 @@ msgstr "ๅทฒๅฐ‡้€ฃ็ต่ค‡่ฃฝ่‡ณๅ‰ช่ฒผ็ฐฟ" #: src/components/dms/MessageContextMenu.tsx:97 #: src/components/PostControls/DiscoverDebug.tsx:36 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:75 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 msgid "Copied to clipboard" @@ -3410,8 +3371,8 @@ msgstr "่ค‡่ฃฝๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ" msgid "Copy at:// URI" msgstr "่ค‡่ฃฝ at:// ้€ฃ็ต" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:152 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:155 msgid "Copy author DID" msgstr "่ค‡่ฃฝ็™ผๅธƒ่€… DID" @@ -3449,10 +3410,10 @@ msgstr "่ค‡่ฃฝ้€ฃ็ต" msgid "Copy link to list" msgstr "่ค‡่ฃฝๅˆ—่กจ้€ฃ็ต" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:142 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:140 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:86 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:89 msgid "Copy link to post" msgstr "่ค‡่ฃฝ่ฒผๆ–‡้€ฃ็ต" @@ -3470,8 +3431,8 @@ msgstr "่ค‡่ฃฝๆ–ฐๆ‰‹ๅŒ…้€ฃ็ต" msgid "Copy message text" msgstr "่ค‡่ฃฝ่จŠๆฏๆ–‡ๅญ—" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:143 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:146 msgid "Copy post at:// URI" msgstr "่ค‡่ฃฝ่ฒผๆ–‡ at:// ้€ฃ็ต" @@ -3490,7 +3451,7 @@ msgstr "่ค‡่ฃฝ TXT ่จ˜้Œ„ๅ€ผ" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:352 +#: src/Navigation.tsx:353 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "่‘—ไฝœๆฌŠๆ”ฟ็ญ–" @@ -3540,11 +3501,11 @@ msgstr "็„กๆณ•่ทŸ้šจๆ‰€ๆœ‰็ขบ่ช็š„่ฏ็ตกไบบใ€‚{0}" msgid "Could not leave chat" msgstr "็„กๆณ•้›ข้–‹ๅฐ่ฉฑ" -#: src/components/moderation/BlockDialog.tsx:285 +#: src/components/moderation/BlockDialog.tsx:282 msgid "Could not leave chat." msgstr "็„กๆณ•้›ข้–‹ๅฐ่ฉฑใ€‚" -#: src/screens/Profile/ProfileFeed/index.tsx:73 +#: src/screens/Profile/ProfileFeed/index.tsx:72 msgid "Could not load feed" msgstr "็„กๆณ•่ผ‰ๅ…ฅๅ‹•ๆ…‹" @@ -3562,7 +3523,7 @@ msgstr "็„กๆณ•่ผ‰ๅ…ฅๅ€‹ไบบๆช”ๆกˆ" msgid "Could not mute chat" msgstr "็„กๆณ•้œ้Ÿณๅฐ่ฉฑ" -#: src/components/moderation/BlockDialog.tsx:311 +#: src/components/moderation/BlockDialog.tsx:308 msgid "Could not remove member." msgstr "็„กๆณ•็งป้™คๆˆๅ“กใ€‚" @@ -3606,8 +3567,8 @@ msgstr "็‰› ่ฑฌ" #. Text on button to create a new starter pack #: src/components/dialogs/StarterPackDialog.tsx:113 #: src/components/dialogs/StarterPackDialog.tsx:210 -#: src/components/dms/InitiateChatFlow.tsx:502 -#: src/components/StarterPack/ProfileStarterPacks.tsx:329 +#: src/components/dms/InitiateChatFlow.tsx:607 +#: src/components/StarterPack/ProfileStarterPacks.tsx:332 msgid "Create" msgstr "ๅปบ็ซ‹" @@ -3624,26 +3585,26 @@ msgstr "่ฝ‰ๅญ˜ๆญคๆ–ฐๆ‰‹ๅŒ…ๅˆฐๆ–ฐ็š„ๅˆ—่กจ" msgid "Create a QR code for a starter pack" msgstr "็‚บๆ–ฐๆ‰‹ๅŒ…ๅปบ็ซ‹ QR Code" -#: src/components/StarterPack/ProfileStarterPacks.tsx:207 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:551 +#: src/components/StarterPack/ProfileStarterPacks.tsx:210 +#: src/components/StarterPack/ProfileStarterPacks.tsx:319 +#: src/Navigation.tsx:560 msgid "Create a starter pack" msgstr "ๅปบ็ซ‹ไธ€ๅ€‹ๆ–ฐๆ‰‹ๅŒ…" -#: src/view/screens/Profile.tsx:562 -#: src/view/screens/Profile.tsx:563 +#: src/view/screens/Profile.tsx:576 +#: src/view/screens/Profile.tsx:577 msgid "Create a Starter Pack" msgstr "ๅปบ็ซ‹ๆ–ฐๆ‰‹ๅŒ…" -#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "Create a starter pack for me" msgstr "็‚บๆˆ‘็”ข็”Ÿไธ€ๅ€‹ๆ–ฐๆ‰‹ๅŒ…" -#: src/components/WelcomeModal.tsx:158 -#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:153 +#: src/components/WelcomeModal.tsx:161 #: src/screens/Messages/JoinRequest.tsx:310 -#: src/screens/Signup/index.tsx:141 -#: src/view/com/auth/SplashScreen.tsx:106 +#: src/screens/Signup/index.tsx:139 +#: src/view/com/auth/SplashScreen.tsx:108 #: src/view/com/auth/SplashScreen.web.tsx:118 #: src/view/shell/bottom-bar/BottomBar.tsx:351 #: src/view/shell/bottom-bar/BottomBar.tsx:355 @@ -3657,7 +3618,7 @@ msgstr "ๅปบ็ซ‹ๅธณ่™Ÿ" #: src/components/dialogs/Signin.tsx:87 #: src/components/dialogs/Signin.tsx:89 #: src/screens/Hashtag.tsx:236 -#: src/screens/Search/SearchResults.tsx:391 +#: src/screens/Search/SearchResults.tsx:418 msgid "Create an account" msgstr "ๅปบ็ซ‹ๅธณ่™Ÿ" @@ -3666,15 +3627,15 @@ msgstr "ๅปบ็ซ‹ๅธณ่™Ÿ" msgid "Create an account without using this starter pack" msgstr "ไธไฝฟ็”จๆญคๆ–ฐๆ‰‹ๅŒ…ๅปบ็ซ‹ๅธณ่™Ÿ" -#: src/screens/Onboarding/StepProfile/index.tsx:317 +#: src/screens/Onboarding/StepProfile/index.tsx:314 msgid "Create an avatar instead" msgstr "ๆˆ–ๆ˜ฏๅปบ็ซ‹ไธ€ๅ€‹ๅคง้ ญ่ฒผ็…ง" -#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +#: src/components/StarterPack/ProfileStarterPacks.tsx:217 msgid "Create another" msgstr "ๅ†ๅปบ็ซ‹ไธ€ๅ€‹" -#: src/components/dms/InitiateChatFlow.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:606 msgid "Create group chat" msgstr "ๅปบ็ซ‹็พค็ต„ๅฐ่ฉฑ" @@ -3741,9 +3702,9 @@ msgstr "ๆ–‡ๅŒ–" #: src/screens/Settings/BetaFeaturesSettings.tsx:188 msgid "Current beta features" -msgstr "" +msgstr "็›ฎๅ‰็š„ๆธฌ่ฉฆๅŠŸ่ƒฝ" -#: src/components/moderation/BlockDialog.tsx:378 +#: src/components/moderation/BlockDialog.tsx:375 msgid "Current chat" msgstr "็›ฎๅ‰็š„ๅฐ่ฉฑ" @@ -3770,8 +3731,8 @@ msgstr "ๅฑ้šช็‰ฉ่ณชๆˆ–่—ฅ็‰ฉๆฟซ็”จ" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 -#: src/screens/Settings/AppearanceSettings.tsx:93 -#: src/screens/Settings/AppearanceSettings.tsx:114 +#: src/screens/Settings/AppearanceSettings.tsx:91 +#: src/screens/Settings/AppearanceSettings.tsx:112 msgid "Dark" msgstr "ๆทฑ่‰ฒ" @@ -3780,7 +3741,7 @@ msgctxt "Name of app icon variant" msgid "Dark" msgstr "ๆทฑ่‰ฒ" -#: src/screens/Settings/AppearanceSettings.tsx:106 +#: src/screens/Settings/AppearanceSettings.tsx:104 msgid "Dark theme" msgstr "ๆทฑ่‰ฒไธป้กŒ" @@ -3814,7 +3775,7 @@ msgstr "ๅฟฝ็•ฅๆญคๅปบ่ญฐ่ชž่จ€" msgid "Deepfake adult content" msgstr "ๆทฑๅบฆๅฝ้€  (Deepfake) ๆˆไบบๅ…งๅฎน" -#: src/screens/Settings/AppearanceSettings.tsx:156 +#: src/screens/Settings/AppearanceSettings.tsx:154 msgid "Default" msgstr "้ ่จญ" @@ -3894,7 +3855,7 @@ msgstr "ๅˆช้™คๆˆ‘็š„ๅธณ่™Ÿ" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 -#: src/view/com/composer/Composer.tsx:1711 +#: src/view/com/composer/Composer.tsx:1717 msgid "Delete post" msgstr "ๅˆช้™ค่ฒผๆ–‡" @@ -3986,9 +3947,9 @@ msgstr "ๅฐ่ฉฑๆก†๏ผš่ชฟๆ•ดๅ“ชไบ›ไบบ่ƒฝๅค ่ˆ‡้€™ๅ‰‡่ฒผๆ–‡ไบ’ๅ‹•" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:233 msgid "Dialog: Set search filters" -msgstr "" +msgstr "ๅฐ่ฉฑๆก†๏ผš่จญๅฎšๆœๅฐ‹็ฏฉ้ธๆขไปถ" -#: src/screens/Settings/AppearanceSettings.tsx:110 +#: src/screens/Settings/AppearanceSettings.tsx:108 msgid "Dim" msgstr "ๆ˜ๆš—" @@ -4002,7 +3963,7 @@ msgstr "ๅœ็”จ" msgid "Disable 2FA" msgstr "ๅœ็”จ้›™้‡้ฉ—่ญ‰" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:400 msgid "Disable captions" msgstr "้—œ้–‰ๅญ—ๅน•" @@ -4045,9 +4006,9 @@ msgstr "ๅœ็”จ" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1491 -#: src/view/com/composer/Composer.tsx:1535 -#: src/view/com/composer/Composer.tsx:1744 +#: src/view/com/composer/Composer.tsx:1497 +#: src/view/com/composer/Composer.tsx:1541 +#: src/view/com/composer/Composer.tsx:1750 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -4058,14 +4019,14 @@ msgstr "ๆจๆฃ„" msgid "Discard changes?" msgstr "่ฆๆ”พๆฃ„่ฎŠๆ›ดๅ—Ž๏ผŸ" -#: src/view/com/composer/Composer.tsx:1489 +#: src/view/com/composer/Composer.tsx:1495 #: src/view/com/composer/drafts/DraftItem.tsx:239 #: src/view/com/composer/drafts/DraftsButton.tsx:98 msgid "Discard draft?" msgstr "่ฆๆจๆฃ„่‰็จฟๅ—Ž๏ผŸ" -#: src/view/com/composer/Composer.tsx:1506 -#: src/view/com/composer/Composer.tsx:1736 +#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1742 msgid "Discard post?" msgstr "่ฆๆ”พๆฃ„็™ผๅธƒๅ—Ž๏ผŸ" @@ -4079,6 +4040,10 @@ msgstr "ไธญๆ–ท้€ฃ็ต Germ DM" msgid "Discourage apps from showing my account to logged-out users" msgstr "้˜ฒๆญขๆ‡‰็”จ็จ‹ๅผๅ‘ๆœช็™ปๅ…ฅ็š„ไฝฟ็”จ่€…้กฏ็คบๆˆ‘็š„ๅธณ่™Ÿ" +#: src/screens/Search/Explore.tsx:448 +msgid "Discover feeds" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:64 #: src/view/com/posts/FollowingEmptyState.tsx:69 #: src/view/com/posts/FollowingEndOfFeed.tsx:65 @@ -4086,15 +4051,11 @@ msgstr "้˜ฒๆญขๆ‡‰็”จ็จ‹ๅผๅ‘ๆœช็™ปๅ…ฅ็š„ไฝฟ็”จ่€…้กฏ็คบๆˆ‘็š„ๅธณ่™Ÿ" msgid "Discover new custom feeds" msgstr "ๆŽข็ดขๆ–ฐ็š„่‡ช่จ‚ๅ‹•ๆ…‹ๆบ" -#: src/screens/Search/Explore.tsx:453 -msgid "Discover new feeds" -msgstr "ๆŽข็ดขๆ–ฐ็š„ๅ‹•ๆ…‹ๆบ" - #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "ๆŽข็ดขๆ–ฐ็š„ๅ‹•ๆ…‹ๆบ" -#: src/components/Dialog/index.tsx:413 +#: src/components/Dialog/index.tsx:398 #: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "่ทณ้Ž" @@ -4103,28 +4064,28 @@ msgstr "่ทณ้Ž" msgid "Dismiss banner" msgstr "้—œ้–‰ๆ็คบๆฉซๅน…" -#: src/view/com/composer/Composer.tsx:2592 +#: src/view/com/composer/Composer.tsx:2598 msgid "Dismiss error" msgstr "่ทณ้Ž้Œฏ่ชค" -#: src/components/ProgressGuide/List.tsx:82 +#: src/components/ProgressGuide/List.tsx:80 msgid "Dismiss getting started guide" msgstr "่ทณ้Žๅ…ฅ้–€ๆŒ‡ๅ—" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:42 msgid "Dismiss interests" msgstr "ๅฟฝ็•ฅ่ˆˆ่ถฃ" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:74 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" msgstr "้—œ้–‰็›ดๆ’ญๆดปๅ‹•ๆฉซๅน…" -#: src/components/interstitials/TrendingVideos.tsx:90 +#: src/components/interstitials/TrendingVideos.tsx:89 msgid "Dismiss this section" msgstr "ๅฟฝ็•ฅๆญค้ƒจๅˆ†" -#: src/components/FeedInterstitials.tsx:349 +#: src/components/FeedInterstitials.tsx:351 msgid "Dismiss this suggestion" msgstr "ๅฟฝ็•ฅๆญคๅปบ่ญฐ" @@ -4142,7 +4103,7 @@ msgstr "้กฏ็คบ่ผƒๅคง็š„ๆ›ฟไปฃๆ–‡ๅญ—ๆจ™่ชŒ" msgid "Display name" msgstr "ๅ็จฑ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:33 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." msgstr "ๅ‘Šๅˆฅ็ถฒ่ทฏ้…ธๆฐ‘ๅ’Œๆจ™้กŒ้ปจ๏ผŒๆ‰พๅˆฐๆ‚จ็œŸๆญฃๅœจๆ„็š„ไบบ่ˆ‡ๆ„Ÿ่ˆˆ่ถฃ็š„ๅฐ่ฉฑใ€‚" @@ -4205,8 +4166,8 @@ msgstr "ไธ็”จๆ“”ๅฟƒ๏ผๆ‚จ็พๆœ‰็š„่จŠๆฏๅ’Œ่จญๅฎš้ƒฝๅทฒๅ„ฒๅญ˜๏ผŒๅช้œ€้ฉ—่ญ‰ๆ‚จ #: src/lib/media/picker.tsx:37 #: src/screens/Login/components/HostingProviderDialog.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:255 -#: src/screens/Onboarding/StepProfile/index.tsx:354 -#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: src/screens/Onboarding/StepProfile/index.tsx:353 +#: src/screens/Onboarding/StepProfile/index.tsx:356 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -4216,15 +4177,15 @@ msgstr "ไธ็”จๆ“”ๅฟƒ๏ผๆ‚จ็พๆœ‰็š„่จŠๆฏๅ’Œ่จญๅฎš้ƒฝๅทฒๅ„ฒๅญ˜๏ผŒๅช้œ€้ฉ—่ญ‰ๆ‚จ msgid "Done" msgstr "ๅฎŒๆˆ" -#: src/components/dms/MessageItem.tsx:540 +#: src/components/dms/MessageItem.tsx:541 msgid "Double tap or long press the message to add a reaction" msgstr "้ปžๅ…ฉไธ‹ๆˆ–้•ทๆŒ‰่จŠๆฏไปฅๅŠ ๅ…ฅๅๆ‡‰" -#: src/components/Dialog/index.tsx:414 +#: src/components/Dialog/index.tsx:399 msgid "Double tap to close the dialog" msgstr "้ปžๅ…ฉไธ‹ไปฅ้—œ้–‰ๅฐ่ฉฑๆก†" -#: src/screens/VideoFeed/index.tsx:1161 +#: src/screens/VideoFeed/index.tsx:1178 msgid "Double tap to like" msgstr "้ปžๅ…ฉไธ‹ไปฅ่กจ็คบๅ–œๆญก" @@ -4328,6 +4289,7 @@ msgstr "้ฃฒ้ฃŸๅคฑ่ชฟ" #: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:148 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:250 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -4365,8 +4327,8 @@ msgstr "็ทจ่ผฏๅœ–็‰‡" msgid "Edit interaction settings" msgstr "็ทจ่ผฏไบ’ๅ‹•่จญๅฎš" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:99 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:93 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:100 msgid "Edit interests" msgstr "็ทจ่ผฏๆ„Ÿ่ˆˆ่ถฃ็š„ไธป้กŒ" @@ -4397,7 +4359,7 @@ msgstr "็ทจ่ผฏ็›ดๆ’ญ็‹€ๆ…‹" msgid "Edit moderation list" msgstr "็ทจ่ผฏๅ…งๅฎน็ฎก็†ๅˆ—่กจ" -#: src/Navigation.tsx:362 +#: src/Navigation.tsx:363 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "็ทจ่ผฏๆˆ‘็š„ๅ‹•ๆ…‹ๆบ" @@ -4406,6 +4368,11 @@ msgstr "็ทจ่ผฏๆˆ‘็š„ๅ‹•ๆ…‹ๆบ" msgid "Edit name" msgstr "็ทจ่ผฏๅ็จฑ" +#. placeholder {0}: createSanitizedDisplayName( profile, ) +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:242 +msgid "Edit notifications from {0}" +msgstr "" + #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "็ทจ่ผฏไฝฟ็”จ่€…" @@ -4444,7 +4411,7 @@ msgstr "็ทจ่ผฏไฝฟ็”จ่€…ๅˆ—่กจ" msgid "Edit who can reply" msgstr "ไฟฎๆ”นๅ“ชไบ›ไบบๅฏไปฅๅ›ž่ฆ†" -#: src/Navigation.tsx:556 +#: src/Navigation.tsx:565 msgid "Edit your starter pack" msgstr "็ทจ่ผฏๆ‚จ็š„ๆ–ฐๆ‰‹ๅŒ…" @@ -4500,8 +4467,8 @@ msgstr "ๅตŒๅ…ฅ HTML ็จ‹ๅผ็ขผ" #: src/components/dialogs/Embed.tsx:105 #: src/components/dialogs/Embed.tsx:109 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:118 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:123 msgid "Embed post" msgstr "ๅตŒๅ…ฅ่ฒผๆ–‡" @@ -4509,7 +4476,7 @@ msgstr "ๅตŒๅ…ฅ่ฒผๆ–‡" msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." msgstr "ๅฐ‡้€™ๅ‰‡่ฒผๆ–‡ๅตŒๅ…ฅๅˆฐๆ‚จ็š„็ถฒ็ซ™ใ€‚ๅช้œ€่ค‡่ฃฝไปฅไธ‹็จ‹ๅผ็ขผ็‰‡ๆฎต๏ผŒไธฆๅฐ‡ๅ…ถ่ฒผไธŠๅˆฐๆ‚จ็ถฒ็ซ™็š„ HTML ็จ‹ๅผ็ขผไธญๅณๅฏใ€‚" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:61 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx:66 msgid "Embedded video player" msgstr "ๅตŒๅ…ฅๅผๅฝฑ็‰‡ๆ’ญๆ”พๅ™จ" @@ -4531,9 +4498,9 @@ msgstr "้กฏ็คบๆˆไบบๅ…งๅฎน" #: src/screens/Settings/BetaFeaturesSettings.tsx:117 #: src/screens/Settings/BetaFeaturesSettings.tsx:124 msgid "Enable beta features" -msgstr "" +msgstr "ๅ•Ÿ็”จๆธฌ่ฉฆๅŠŸ่ƒฝ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:401 msgid "Enable captions" msgstr "้–‹ๅ•Ÿๅญ—ๅน•" @@ -4550,12 +4517,13 @@ msgstr "ๅ•Ÿ็”จๅค–้ƒจๅช’้ซ”" msgid "Enable media players for" msgstr "ๅ•Ÿ็”จๅช’้ซ”ๆ’ญๆ”พๅ™จ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:139 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "ๅ‰ๅพ€ๅ…ถๅ€‹ไบบๆช”ๆกˆ๏ผŒ้ปžไธ€ไธ‹ๆ—้‚Š็š„<0>้ˆด้บๅœ–็คบ <1/>๏ผŒๅณๅฏๆŽฅๆ”ถ่ฉฒๅธณ่™Ÿ็š„ๅ‹•ๆ…‹้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:136 -#: src/screens/Settings/NotificationSettings/index.tsx:140 +#: src/screens/Settings/NotificationSettings/index.tsx:135 +#: src/screens/Settings/NotificationSettings/index.tsx:139 msgid "Enable push notifications" msgstr "ๅ•Ÿ็”จๆŽจๆ’ญ้€š็Ÿฅ" @@ -4581,7 +4549,7 @@ msgstr "ๅœจๆ‚จ็š„ใ€ŒDiscoverใ€ๅ‹•ๆ…‹ๆบไธญๅ•Ÿ็”จ็†ฑ้–€ๅฝฑ็‰‡" msgid "Enabled" msgstr "ๅ•Ÿ็”จ" -#: src/screens/Profile/Sections/Feed.tsx:131 +#: src/screens/Profile/Sections/Feed.tsx:135 msgid "End of feed" msgstr "ๅทฒ็ถ“ๅˆฐๅบ•ๅ•ฆ๏ผ" @@ -4608,7 +4576,7 @@ msgstr "่ผธๅ…ฅๅญ—่ฉžๆˆ–ๆจ™็ฑค" msgid "Enter code" msgstr "่ผธๅ…ฅ้ฉ—่ญ‰็ขผ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:433 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:419 msgid "Enter fullscreen" msgstr "้€ฒๅ…ฅๅ…จ่žขๅน•" @@ -4650,11 +4618,11 @@ msgstr "่ผธๅ…ฅๆ‚จ็š„ไฝฟ็”จ่€…ๅ็จฑๅ’Œๅฏ†็ขผ" msgid "Enters full screen" msgstr "้€ฒๅ…ฅๅ…จ่žขๅน•" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:231 msgid "Entertainment" msgstr "ๅจ›ๆจ‚" -#: src/view/com/composer/Composer.tsx:2691 +#: src/view/com/composer/Composer.tsx:2697 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "้Œฏ่ชค" @@ -4684,7 +4652,7 @@ msgstr "ๅ„ฒๅญ˜ๆช”ๆกˆๆ™‚็™ผ็”Ÿ้Œฏ่ชค" msgid "Error receiving captcha response." msgstr "ๅ–ๅพ—ไบบๆฉŸ้ฉ—่ญ‰ (Captcha) ๅ›žๆ‡‰ๆ™‚็™ผ็”Ÿ้Œฏ่ชคใ€‚" -#: src/screens/Search/SearchResults.tsx:179 +#: src/screens/Search/SearchResults.tsx:206 msgid "Error: {error}" msgstr "้Œฏ่ชค๏ผš{error}" @@ -4696,8 +4664,8 @@ msgstr "ๆ‰€ๆœ‰ไบบ้ƒฝๅฏไปฅๅ›ž่ฆ†" msgid "Everybody can reply to this post." msgstr "ๆ‰€ๆœ‰ไบบ้ƒฝๅฏไปฅๅ›ž่ฆ†้€™ๅ‰‡่ฒผๆ–‡ใ€‚" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:168 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:170 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:173 msgid "Everyone" msgstr "ๆ‰€ๆœ‰ไบบ" @@ -4711,14 +4679,14 @@ msgctxt "allow messages from" msgid "Everyone" msgstr "ๆ‰€ๆœ‰ไบบ" -#: src/screens/Settings/NotificationSettings/index.tsx:299 -#: src/screens/Settings/NotificationSettings/index.tsx:401 +#: src/screens/Settings/NotificationSettings/index.tsx:298 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "Everything else" msgstr "ๅ…ถไป–ๅ…งๅฎน" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:76 msgid "Everything look right?" -msgstr "" +msgstr "ไธ€ๅˆ‡็œ‹่ตทไพ†้ƒฝๆญฃ็ขบๅ—Ž๏ผŸ" #. Advanced search filter #. Advanced search filter @@ -4738,7 +4706,7 @@ msgstr "ๆŽ’้™คๅทฒ่ทŸ้šจ็š„ไฝฟ็”จ่€…" msgid "Excludes users you follow" msgstr "ๆŽ’้™คๅทฒ่ทŸ้šจ็š„ไฝฟ็”จ่€…" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:432 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:418 msgid "Exit fullscreen" msgstr "้€€ๅ‡บๅ…จ่žขๅน•" @@ -4755,11 +4723,11 @@ msgstr "ๅฑ•้–‹ไฝฟ็”จ่€…ๅˆ—่กจ" msgid "Expand or collapse the full post you are replying to" msgstr "ๅฑ•้–‹ๆˆ–ๆ‘บ็–Šๆ‚จๆญฃๅœจๅ›ž่ฆ†็š„ๅฎŒๆ•ด่ฒผๆ–‡" -#: src/components/Post/ShowMoreTextButton.tsx:33 +#: src/components/Post/ShowMoreTextButton.tsx:31 msgid "Expand post text" msgstr "ๅฑ•้–‹่ฒผๆ–‡ๆ–‡ๅญ—" -#: src/screens/VideoFeed/index.tsx:1037 +#: src/screens/VideoFeed/index.tsx:1054 msgid "Expands or collapses post text" msgstr "ๅฑ•้–‹ๆˆ–ๆ‘บ็–Š่ฒผๆ–‡ๆ–‡ๅญ—" @@ -4802,15 +4770,15 @@ msgstr "่ก€่…ฅใ€้œฒ้ชจๆˆ–็ฝๅฎณ็ญ‰ๅฏ่ƒฝๆœƒๅผ•่ตทไธ้ฉ็š„ๅช’้ซ”ๅ…งๅฎนใ€‚" msgid "Explicit sexual images." msgstr "้œฒ้ชจ็š„่‰ฒๆƒ…ๅœ–็‰‡ใ€‚" -#: src/Navigation.tsx:760 -#: src/screens/Search/Shell.tsx:552 +#: src/Navigation.tsx:769 +#: src/screens/Search/Shell.tsx:549 #: src/view/shell/desktop/LeftNav.tsx:677 #: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "ๆŽข็ดข" -#: src/components/WelcomeModal.tsx:171 -#: src/components/WelcomeModal.tsx:180 +#: src/components/WelcomeModal.tsx:166 +#: src/components/WelcomeModal.tsx:175 msgid "Explore the app" msgstr "ๆŽข็ดขๆ‡‰็”จ็จ‹ๅผ" @@ -4844,7 +4812,7 @@ msgstr "ๅค–้ƒจๅช’้ซ”" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "ๅค–้ƒจๅช’้ซ”็ถฒ็ซ™ๅฏ่ƒฝๆœƒๆ”ถ้›†ๆœ‰้—œๆ‚จๅ€‹ไบบๅ’Œ่ฃ็ฝฎ็š„่ณ‡่จŠใ€‚ๅœจๆ‚จๆŒ‰ไธ‹ใ€Œๆ’ญๆ”พใ€ๆŒ‰้ˆ•ไน‹ๅ‰๏ผŒไธๆœƒๅ‚ณ่ผธไปปไฝ•่ณ‡ๆ–™ใ€‚" -#: src/Navigation.tsx:381 +#: src/Navigation.tsx:382 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "ๅค–้ƒจๅช’้ซ”้ธ้ …" @@ -4886,7 +4854,7 @@ msgstr "่ฎŠๆ›ดๅธณ่™Ÿไปฃ็ขผๆ™‚็™ผ็”Ÿๅ•้กŒ๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌกใ€‚" #: src/components/Lightbox/Lightbox.web.tsx:302 #: src/features/inviteFriends/InviteFriendsDialogInner.tsx:130 -#: src/screens/Search/Shell.tsx:516 +#: src/screens/Search/Shell.tsx:513 msgid "Failed to copy link" msgstr "่ค‡่ฃฝ้€ฃ็ตๆ™‚็™ผ็”Ÿๅ•้กŒ" @@ -4974,29 +4942,30 @@ msgctxt "toast" msgid "Failed to leave group chat" msgstr "้›ข้–‹็พค็ต„ๅฐ่ฉฑๆ™‚็™ผ็”Ÿๅ•้กŒ" -#: src/screens/Messages/ChatList.tsx:421 +#: src/screens/Messages/ChatList.tsx:420 #: src/screens/Messages/Inbox.tsx:202 msgid "Failed to load conversations" msgstr "่ผ‰ๅ…ฅๅฐ่ฉฑๆ™‚็™ผ็”Ÿๅ•้กŒ" -#: src/screens/Search/Explore.tsx:530 -#: src/screens/Search/Explore.tsx:575 -#: src/screens/Search/Explore.tsx:621 +#: src/screens/Search/Explore.tsx:526 +#: src/screens/Search/Explore.tsx:571 +#: src/screens/Search/Explore.tsx:617 msgid "Failed to load feeds" msgstr "่ผ‰ๅ…ฅๅ‹•ๆ…‹ๆ™‚็™ผ็”Ÿๅ•้กŒ" -#: src/screens/Search/Explore.tsx:489 -#: src/screens/Search/Explore.tsx:544 -#: src/screens/Search/Explore.tsx:589 -#: src/screens/Search/Explore.tsx:635 +#: src/screens/Search/Explore.tsx:485 +#: src/screens/Search/Explore.tsx:540 +#: src/screens/Search/Explore.tsx:585 +#: src/screens/Search/Explore.tsx:631 msgid "Failed to load feeds preferences" msgstr "่ผ‰ๅ…ฅๅ‹•ๆ…‹ๆบๅๅฅฝ่จญๅฎšๆ™‚็™ผ็”Ÿๅ•้กŒ" #: src/components/dialogs/NotificationSettingsDialog.tsx:85 #: src/screens/Messages/Settings.tsx:369 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/index.tsx:268 -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:112 +#: src/screens/Settings/NotificationSettings/index.tsx:148 +#: src/screens/Settings/NotificationSettings/index.tsx:267 +#: src/screens/Settings/NotificationSettings/index.tsx:284 msgid "Failed to load notification settings." msgstr "่ผ‰ๅ…ฅ้€š็Ÿฅ่จญๅฎšๆ™‚็™ผ็”Ÿๅ•้กŒใ€‚" @@ -5012,14 +4981,14 @@ msgstr "่ผ‰ๅ…ฅๅๅฅฝ่จญๅฎšๆ™‚็™ผ็”Ÿๅ•้กŒใ€‚" msgid "Failed to load profiles" msgstr "่ผ‰ๅ…ฅๅ€‹ไบบๆช”ๆกˆๆ™‚็™ผ็”Ÿๅ•้กŒ" -#: src/screens/Search/Explore.tsx:482 -#: src/screens/Search/Explore.tsx:537 -#: src/screens/Search/Explore.tsx:582 -#: src/screens/Search/Explore.tsx:628 +#: src/screens/Search/Explore.tsx:478 +#: src/screens/Search/Explore.tsx:533 +#: src/screens/Search/Explore.tsx:578 +#: src/screens/Search/Explore.tsx:624 msgid "Failed to load suggested feeds" msgstr "่ผ‰ๅ…ฅๅปบ่ญฐๅ‹•ๆ…‹ๆบๆ™‚็™ผ็”Ÿๅ•้กŒ" -#: src/screens/Search/Explore.tsx:391 +#: src/screens/Search/Explore.tsx:386 msgid "Failed to load suggested follows" msgstr "่ผ‰ๅ…ฅๅปบ่ญฐ่ทŸ้šจๅธณ่™Ÿๆ™‚็™ผ็”Ÿๅ•้กŒ" @@ -5027,12 +4996,12 @@ msgstr "่ผ‰ๅ…ฅๅปบ่ญฐ่ทŸ้šจๅธณ่™Ÿๆ™‚็™ผ็”Ÿๅ•้กŒ" msgid "Failed to lock group chat" msgstr "้Ž–ๅฎš้‚€่ซ‹้€ฃ็ตๆ™‚็™ผ็”Ÿๅ•้กŒ" -#: src/screens/Messages/ChatList.tsx:637 +#: src/screens/Messages/ChatList.tsx:636 #: src/view/shell/bottom-bar/BottomBar.tsx:447 msgid "Failed to mark all chats as read" msgstr "็„กๆณ•ๅฐ‡ๆ‰€ๆœ‰ๅฐ่ฉฑๆจ™็คบ็‚บๅทฒ่ฎ€" -#: src/screens/Messages/ChatList.tsx:646 +#: src/screens/Messages/ChatList.tsx:645 #: src/screens/Messages/Inbox.tsx:304 #: src/view/shell/bottom-bar/BottomBar.tsx:456 msgid "Failed to mark all requests as read" @@ -5096,7 +5065,7 @@ msgstr "็„กๆณ•ๆ’ค้Šทๆ‚จ็š„็”ณ่ซ‹๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌกใ€‚" msgid "Failed to resolve location. Please try again." msgstr "ๅญ˜ๅ–ไฝ็ฝฎ่ณ‡่จŠๆ™‚็™ผ็”Ÿๅ•้กŒ๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌกใ€‚" -#: src/view/com/composer/Composer.tsx:725 +#: src/view/com/composer/Composer.tsx:731 msgid "Failed to save draft" msgstr "ๅ„ฒๅญ˜่‰็จฟๆ™‚็™ผ็”Ÿๅ•้กŒ" @@ -5191,7 +5160,7 @@ msgstr "่™›ๅ‡ๅธณ่™Ÿๆˆ–ๆฉŸๅ™จไบบ" msgid "False information about elections" msgstr "ๆ•ฃๆ’ญ้ธ่ˆ‰็›ธ้—œ่™›ๅ‡่ณ‡่จŠ" -#: src/Navigation.tsx:292 +#: src/Navigation.tsx:293 msgid "Feed" msgstr "ๅ‹•ๆ…‹ๆบ" @@ -5212,7 +5181,7 @@ msgstr "ๅ‹•ๆ…‹ๆบๅปบ็ซ‹่€…" msgid "Feed identifier" msgstr "ๅ‹•ๆ…‹ๆบ ID" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:401 msgid "Feed menu" msgstr "ๅ‹•ๆ…‹ๆบ้ธๅ–ฎ" @@ -5236,13 +5205,13 @@ msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "ๆ„่ฆ‹ๅทฒๆไบค็ตฆๅ‹•ๆ…‹ๆบ็ถญ่ญท่€…" -#: src/Navigation.tsx:536 +#: src/Navigation.tsx:545 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 -#: src/screens/Search/SearchResults.tsx:104 +#: src/screens/Search/SearchResults.tsx:113 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 -#: src/view/screens/Profile.tsx:239 +#: src/view/screens/Profile.tsx:241 #: src/view/shell/desktop/LeftNav.tsx:712 #: src/view/shell/Drawer.tsx:589 msgid "Feeds" @@ -5260,10 +5229,6 @@ msgctxt "toast" msgid "Feeds updated!" msgstr "ๆˆๅŠŸๆ›ดๆ–ฐๅ‹•ๆ…‹ๆบ๏ผ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:66 -msgid "Feeds we think you might like." -msgstr "ๆˆ‘ๅ€‘่ฆบๅพ—ๆ‚จๅฏ่ƒฝๆœƒๅ–œๆญก็š„ๅ‹•ๆ…‹ๆบใ€‚" - #: src/screens/Settings/components/OTAInfo.tsx:61 msgid "Fetch update" msgstr "ๅ–ๅพ—ๆ›ดๆ–ฐ" @@ -5273,34 +5238,22 @@ msgstr "ๅ–ๅพ—ๆ›ดๆ–ฐ" msgid "File saved successfully!" msgstr "ๆˆๅŠŸๅ„ฒๅญ˜ๆช”ๆกˆ๏ผ" -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:48 -msgid "Filter by author" -msgstr "ไพ็™ผๅธƒ่€…็ฏฉ้ธ" - -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:29 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:31 msgid "Filter by author (currently: {currentLabel})" msgstr "ไพ็™ผๅธƒ่€…็ฏฉ้ธ๏ผˆ็›ฎๅ‰๏ผš{currentLabel}๏ผ‰" -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:50 -msgid "Filter by media" -msgstr "ไพๅช’้ซ”็ฏฉ้ธ" - -#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:31 -msgid "Filter by media (currently: {currentLabel})" -msgstr "ไพๅช’้ซ”็ฏฉ้ธ๏ผˆ็›ฎๅ‰๏ผš{currentLabel}๏ผ‰" - #: src/lib/moderation/useLabelBehaviorDescription.ts:69 msgid "Filter from feeds" msgstr "ๅพžๅ‹•ๆ…‹ไธญๆŽ’้™คๅ…งๅฎน" -#: src/screens/Search/components/SearchLanguageDropdown.tsx:92 -msgid "Filter search by language" -msgstr "ไพ่ชž่จ€็ฏฉ้ธๆœๅฐ‹" - #: src/screens/Search/components/SearchLanguageDropdown.tsx:70 msgid "Filter search by language (currently: {currentLanguageLabel})" msgstr "ไพ่ชž่จ€็ฏฉ้ธๆœๅฐ‹๏ผˆ็›ฎๅ‰๏ผš{currentLanguageLabel}๏ผ‰" +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:32 +msgid "Filter search by media (currently: {currentLabel})" +msgstr "" + #. placeholder {0}: lang.name #: src/screens/Search/components/DetectedLanguagesAdmonition.tsx:88 msgid "Filter this search by {0}" @@ -5310,7 +5263,7 @@ msgstr "ไปฅ {0} ็ฏฉ้ธๆญคๆœๅฐ‹็ตๆžœ" msgid "Filter who can opt to receive notifications for your activity" msgstr "็ฏฉ้ธๅ“ชไบ›ไบบๅฏไปฅ้ธๆ“‡ๆŽฅๆ”ถๆ‚จ็š„ๅ‹•ๆ…‹้€š็Ÿฅ" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:163 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:165 msgid "Filter who you receive notifications from" msgstr "็ฏฉ้ธๆ‚จๆƒณๆŽฅๆ”ถ็š„้€š็Ÿฅไพ†ๆบ" @@ -5318,7 +5271,7 @@ msgstr "็ฏฉ้ธๆ‚จๆƒณๆŽฅๆ”ถ็š„้€š็Ÿฅไพ†ๆบ" #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:238 msgctxt "search" msgid "Filters" -msgstr "" +msgstr "็ฏฉ้ธๆขไปถ" #: src/screens/Onboarding/StepFinished/index.tsx:335 msgid "Finalizing" @@ -5352,8 +5305,8 @@ msgstr "ๅŽป่ทŸ้šจๆ›ดๅคšๅธณ่™Ÿ" msgid "Find and invite friends" msgstr "ๅฐ‹ๆ‰พไธฆ้‚€่ซ‹ๆœ‹ๅ‹" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:578 +#: src/Navigation.tsx:446 +#: src/Navigation.tsx:587 msgid "Find Contacts" msgstr "ๅฐ‹ๆ‰พ่ฏ็ตกไบบ" @@ -5387,7 +5340,7 @@ msgstr "ๅฐ‹ๆ‰พๆ‚จ็š„ๆœ‹ๅ‹" msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "้ฉ—่ญ‰ๆ‚จ็š„้›ป่ฉฑ่™Ÿ็ขผไธฆๅŒน้…่ฏ็ตกไบบ๏ผŒๅณๅฏๅฐ‹ๆ‰พไนŸๅœจไฝฟ็”จ Bluesky ็š„ๆœ‹ๅ‹ใ€‚ๆˆ‘ๅ€‘ๆœƒๅšดๆ ผไฟ่ญทๆ‚จ็š„่ณ‡่จŠ๏ผŒ่€Œๆ‚จๆŽŒๆŽงๅพŒ็บŒๆ“ไฝœใ€‚<0>็žญ่งฃๆ›ดๅคš" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:31 msgid "Find your people" msgstr "ๆ‰พๅˆฐ่ˆ‡ๆ‚จๅฟ—ๅŒ้“ๅˆ็š„ไบบ" @@ -5429,7 +5382,7 @@ msgstr "่š็„ฆๆœๅฐ‹ๆฌ„ไฝ" #: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:409 -#: src/screens/VideoFeed/index.tsx:920 +#: src/screens/VideoFeed/index.tsx:937 #: src/view/com/notifications/NotificationFeedItem.tsx:864 #: src/view/com/notifications/NotificationFeedItem.tsx:871 msgid "Follow" @@ -5445,7 +5398,7 @@ msgstr "่ทŸ้šจ {0}" msgid "Follow {displayName}" msgstr "่ทŸ้šจ {displayName}" -#: src/screens/VideoFeed/index.tsx:899 +#: src/screens/VideoFeed/index.tsx:916 msgid "Follow {handle}" msgstr "่ทŸ้šจ {handle}" @@ -5453,11 +5406,11 @@ msgstr "่ทŸ้šจ {handle}" msgid "Follow 10 accounts" msgstr "่ทŸ้šจ 10 ๅ€‹ๅธณ่™Ÿ" -#: src/components/ProgressGuide/List.tsx:75 +#: src/components/ProgressGuide/List.tsx:73 msgid "Follow 10 people to get started" msgstr "่ทŸ้šจ 10 ๅ€‹ไบบๅณๅฏ้–‹ๅง‹" -#: src/components/ProgressGuide/List.tsx:116 +#: src/components/ProgressGuide/List.tsx:114 msgid "Follow 7 accounts" msgstr "่ทŸ้šจ 7 ๅ€‹ๅธณ่™Ÿ" @@ -5528,7 +5481,7 @@ msgid "Followers can join" msgstr "่ทŸ้šจ่€…ๅฏไปฅๅŠ ๅ…ฅ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Followers of @{0} that you know" msgstr "ๆ‚จ่ช่ญ˜็š„้€™ไบ›ไบบไนŸ่ทŸ้šจไบ† @{0}" @@ -5544,7 +5497,7 @@ msgstr "ๆ‚จไนŸ่ช่ญ˜็š„่ทŸ้šจ่€…" #: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:160 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:405 -#: src/screens/VideoFeed/index.tsx:918 +#: src/screens/VideoFeed/index.tsx:935 #: src/view/com/notifications/NotificationFeedItem.tsx:842 #: src/view/com/notifications/NotificationFeedItem.tsx:859 msgid "Following" @@ -5569,7 +5522,7 @@ msgstr "ๆˆๅŠŸ่ทŸ้šจ {0}" msgid "Following {displayName}" msgstr "ๆญฃๅœจ่ทŸ้šจ {displayName}" -#: src/screens/VideoFeed/index.tsx:898 +#: src/screens/VideoFeed/index.tsx:915 msgid "Following {handle}" msgstr "ๆˆๅŠŸ่ทŸ้šจ {handle}" @@ -5578,21 +5531,21 @@ msgstr "ๆˆๅŠŸ่ทŸ้šจ {handle}" msgid "Following feed preferences" msgstr "ใ€ŒFollowingใ€๏ผˆ่ทŸ้šจไธญ๏ผ‰ๅ‹•ๆ…‹ๆบ้ธ้ …" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:369 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "ใ€ŒFollowingใ€๏ผˆ่ทŸ้šจไธญ๏ผ‰ๅ‹•ๆ…‹ๆบ้ธ้ …" -#: src/components/Pills.tsx:212 +#: src/components/Pills.tsx:213 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "่ทŸ้šจๆ‚จ" -#: src/screens/Settings/AppearanceSettings.tsx:128 +#: src/screens/Settings/AppearanceSettings.tsx:126 msgid "Font" msgstr "ๅญ—ๅž‹" -#: src/screens/Settings/AppearanceSettings.tsx:148 +#: src/screens/Settings/AppearanceSettings.tsx:146 msgid "Font size" msgstr "ๅญ—ๅž‹ๅคงๅฐ" @@ -5612,13 +5565,13 @@ msgstr "็‚บไบ†็ขบไฟๆ‚จ็š„ๅธณ่™Ÿๅฎ‰ๅ…จ๏ผŒๆˆ‘ๅ€‘ๅฐ‡ๅ‚ณ้€ไธ€็ต„้ฉ—่ญ‰็ขผๅˆฐๆ‚จ็š„ msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." msgstr "็‚บไบ†็ขบไฟๆ‚จ็š„ๅธณ่™Ÿๅฎ‰ๅ…จ๏ผŒๅฐ‡็„กๆณ•ๅ†ๆฌกๆŸฅ็œ‹ๆญคๅฏ†็ขผใ€‚ๅฆ‚ๆžœๆ‚จไธๆ…ŽไธŸๅคฑไบ†๏ผŒๅ‰‡้œ€่ฆๅ†็”ข็”Ÿไธ€ๅ€‹ๆ–ฐ็š„ๅฏ†็ขผใ€‚" -#: src/screens/Settings/AppearanceSettings.tsx:130 +#: src/screens/Settings/AppearanceSettings.tsx:128 msgid "For the best experience, we recommend using the theme font." msgstr "ๆˆ‘ๅ€‘ๅปบ่ญฐไฝฟ็”จไธป้กŒๅญ—ๅž‹๏ผŒไปฅไบซๆœ‰ๆœ€ไฝณ้ซ”้ฉ—ใ€‚" #: src/components/ProgressGuide/FollowDialog.tsx:131 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:349 -#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:88 +#: src/screens/Search/modules/ExploreSuggestedAccounts.tsx:86 msgid "For You" msgstr "็‚บๆ‚จๆŽจ่–ฆ" @@ -5628,7 +5581,7 @@ msgstr "็‚บๆ‚จๆŽจ่–ฆ" msgid "Forever" msgstr "ๆฐธ้ " -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:40 msgid "Forget the noise" msgstr "ๅฟ˜่จ˜้‚ฃไบ›็„ก็›ก็š„ๅ–งๆ“พ" @@ -5647,11 +5600,11 @@ msgstr "ๅฟ˜่จ˜ๅฏ†็ขผ๏ผŸ" msgid "Four message bubbles representing a group chat. First message: \"Did you hear the news? Bluesky has group chats now!\" Second message: \"omg, no way\" Third message: \"Wow, 50 people in one chat!\" Fourth message: \"You can send invite links too!\"" msgstr "ๅ››ๅ€‹็พค็ต„ๅฐ่ฉฑไธญ็š„่จŠๆฏๆณกๆณกใ€‚็ฌฌไธ€ๅ‰‡ๅฏซ่‘—๏ผšใ€Œไฝ ่ฝ่ชชไบ†ๅ—Ž๏ผŸBluesky ็พๅœจๆœ‰็พค็ต„ๅฐ่ฉฑไบ†๏ผใ€็ฌฌไบŒๅ‰‡่จŠๆฏ๏ผšใ€Œ็œŸ็š„ๅ‡็š„ใ€็ฌฌไธ‰ๅ‰‡่จŠๆฏ๏ผšใ€Œ็พค็ต„ๆœ€ๅคšๅฏไปฅๅŠ ๅ…ฅ 50 ๅ€‹ไบบ๏ผใ€็ฌฌๅ››ๅ‰‡่จŠๆฏ๏ผšใ€Œ้‚„ๅฏไปฅๅ‚ณ้€้‚€่ซ‹้€ฃ็ต๏ผใ€" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:22 msgid "Free your feed" msgstr "้‚„ๆ‚จไธ€ๅ€‹ไนพๆทจ็š„ๆฒณ้“" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:406 +#. Filter who you receive notifications from #: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 msgid "From" msgstr "ไพ†่‡ช" @@ -5674,7 +5627,7 @@ msgstr "ไพ†่‡ช <0/>" msgid "From these people" msgstr "ไพ†่‡ช้€™ไบ›ไบบ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +#: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Generate a starter pack" msgstr "็”ข็”Ÿไธ€ๅ€‹ๆ–ฐๆ‰‹ๅŒ…" @@ -5712,45 +5665,45 @@ msgstr "้‡ๆ–ฐ้€ฃ็ต Germ DM" #: src/screens/Settings/BetaFeaturesSettings.tsx:132 msgid "Get early access to experimental features weโ€™re testing." -msgstr "" +msgstr "ๆถๅ…ˆ้ซ”้ฉ—ๆˆ‘ๅ€‘ๆญฃๅœจๆธฌ่ฉฆ็š„ๅฏฆ้ฉ—ๆ€งๅŠŸ่ƒฝใ€‚" #: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "ๅ–ๅพ—ๅนซๅŠฉ" -#: src/screens/Settings/NotificationSettings/index.tsx:403 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Get notifications for starter pack joins, verification, and other activity." msgstr "ๅœจๆŽˆไบˆ้ฉ—่ญ‰ใ€ๆœ‰ไบบไฝฟ็”จๆ‚จ็š„ๆ–ฐๆ‰‹ๅŒ…ๅŠ ๅ…ฅ็ญ‰ๆดปๅ‹•ๆ™‚ๆ™‚ๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:325 +#: src/screens/Settings/NotificationSettings/index.tsx:324 msgid "Get notifications when people follow you." msgstr "ๅœจๆœ‰ไบบ่ทŸ้šจๆ‚จๆ™‚ๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:317 +#: src/screens/Settings/NotificationSettings/index.tsx:316 msgid "Get notifications when people like your posts." msgstr "ๅœจๆœ‰ไบบๅฐๆ‚จ็š„่ฒผๆ–‡่กจ็คบๅ–œๆญกๆ™‚ๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:380 +#: src/screens/Settings/NotificationSettings/index.tsx:366 msgid "Get notifications when people like your reposts." msgstr "ๅœจๆœ‰ไบบๅฐๆ‚จ่ฝ‰็™ผ็š„่ฒผๆ–‡่กจ็คบๅ–œๆญกๆ™‚ๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:341 +#: src/screens/Settings/NotificationSettings/index.tsx:340 msgid "Get notifications when people mention you." msgstr "ๅœจๆœ‰ไบบๆๅŠๆ‚จๆ™‚ๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:349 +#: src/screens/Settings/NotificationSettings/index.tsx:348 msgid "Get notifications when people quote your posts." msgstr "ๅœจๆœ‰ไบบๅผ•็”จๆ‚จ็š„่ฒผๆ–‡ๆ™‚ๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:333 +#: src/screens/Settings/NotificationSettings/index.tsx:332 msgid "Get notifications when people reply to your posts." msgstr "ๅœจๆœ‰ไบบๅ›ž่ฆ†ๆ‚จ็š„่ฒผๆ–‡ๆ™‚ๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:358 +#: src/screens/Settings/NotificationSettings/index.tsx:357 msgid "Get notifications when people repost your posts." msgstr "ๅœจๆœ‰ไบบ่ฝ‰็™ผๆ‚จ็š„่ฒผๆ–‡ๆ™‚ๆ”ถๅˆฐ้€š็Ÿฅใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:389 +#: src/screens/Settings/NotificationSettings/index.tsx:375 msgid "Get notifications when people repost your reposts." msgstr "ๅœจๆœ‰ไบบ่ฝ‰็™ผไบ†ๆ‚จ่ฝ‰็™ผ็š„่ฒผๆ–‡ๆ™‚ๆ”ถๅˆฐ้€š็Ÿฅใ€‚" @@ -5762,15 +5715,15 @@ msgstr "ๅœจๆœ‰ไบบๅ‘ๆ‚จๅ‚ณ้€่จŠๆฏ่ซ‹ๆฑ‚ๆ™‚้€š็Ÿฅๆ‚จใ€‚" msgid "Get notifications when people send you messages." msgstr "ๅœจๆœ‰ไบบๅ‘ๆ‚จๅ‚ณ้€่จŠๆฏๆ™‚้€š็Ÿฅๆ‚จใ€‚" -#: src/screens/Settings/NotificationSettings/index.tsx:367 -msgid "Get notifications when there's activity on posts you're subscribed to." -msgstr "ๅœจๆ‚จ่จ‚้–ฑ็š„่ฒผๆ–‡ๆœ‰ๅ‹•ๆ…‹ๆ›ดๆ–ฐๆ™‚ๆ”ถๅˆฐ้€š็Ÿฅใ€‚" - #: src/components/activity-notifications/SubscribeProfileButton.tsx:89 #: src/components/activity-notifications/SubscribeProfileButton.tsx:90 msgid "Get notified about new posts" msgstr "ๅœจ่ฒผๆ–‡็™ผๅธƒๆ™‚ๆ”ถๅˆฐ้€š็Ÿฅ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:106 +msgid "Get notified about posts and replies from accounts you choose." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "ๅœจ {name} ็™ผๅธƒ่ฒผๆ–‡ๆ™‚ๆ”ถๅˆฐ้€š็Ÿฅ" @@ -5799,11 +5752,11 @@ msgstr "้–‹ๅง‹ๅง" msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2696 +#: src/view/com/composer/Composer.tsx:2702 msgid "GIF uploaded" msgstr "GIF ไธŠๅ‚ณๆˆๅŠŸ" -#: src/screens/Onboarding/StepProfile/index.tsx:259 +#: src/screens/Onboarding/StepProfile/index.tsx:256 msgid "Give your profile a face" msgstr "็‚บๆ‚จ็š„ๅ€‹ไบบๆช”ๆกˆ้ธๆ“‡ๅคง้ ญ่ฒผ็…ง" @@ -5813,20 +5766,20 @@ msgstr "็พŽๅŒ–ๆšดๅŠ›" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 -#: src/components/Layout/Header/index.tsx:133 -#: src/components/moderation/ScreenHider.tsx:161 -#: src/components/moderation/ScreenHider.tsx:170 +#: src/components/Layout/Header/index.tsx:134 +#: src/components/moderation/ScreenHider.tsx:157 +#: src/components/moderation/ScreenHider.tsx:166 #: src/screens/Login/components/AuthLayout/Header/index.tsx:74 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:160 #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:163 #: src/screens/ProfileList/components/ErrorScreen.tsx:35 #: src/screens/ProfileList/components/ErrorScreen.tsx:41 #: src/screens/VideoFeed/components/Header.tsx:163 -#: src/screens/VideoFeed/index.tsx:1222 -#: src/screens/VideoFeed/index.tsx:1226 +#: src/screens/VideoFeed/index.tsx:1239 +#: src/screens/VideoFeed/index.tsx:1243 #: src/view/com/auth/LoggedOut.tsx:127 -#: src/view/com/profile/ProfileFollowers.tsx:211 -#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/com/profile/ProfileFollowers.tsx:225 +#: src/view/com/profile/ProfileFollowers.tsx:226 #: src/view/screens/NotFound.tsx:51 #: src/view/screens/NotFound.tsx:52 #: src/view/screens/NotFound.tsx:57 @@ -5876,9 +5829,9 @@ msgid "Go live for" msgstr "็›ดๆ’ญๆŒ็บŒๆ™‚้•ท" #. placeholder {0}: name.displayName -#: src/screens/PostThread/components/LikesStat.tsx:152 +#: src/screens/PostThread/components/LikesStat.tsx:146 msgid "Go to {0}'s profile" -msgstr "" +msgstr "ๅ‰ๅพ€ {0} ็š„ๅ€‹ไบบๆช”ๆกˆ" #: src/view/com/notifications/NotificationFeedItem.tsx:256 msgid "Go to {firstAuthorName}'s profile" @@ -5980,7 +5933,7 @@ msgctxt "toast" msgid "Group chat name updated" msgstr "ๅทฒๆ›ดๆ–ฐ็พค็ต„ๅฐ่ฉฑๅ็จฑ" -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:514 #: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "็พค็ต„ๅฐ่ฉฑ่จญๅฎš" @@ -6010,16 +5963,17 @@ msgid "Group chats can only have a maximum of {0, plural, other {# people}}." msgstr "็พค็ต„ๅฐ่ฉฑไธๅพ—่ถ…้Ž {0, plural, other {# ๅ€‹ๆˆๅ“ก}}ใ€‚" #: src/components/dialogs/SearchablePeopleList.tsx:565 +#: src/components/dms/InitiateChatFlow.tsx:1048 msgid "Group is locked" msgstr "็พค็ต„ๅทฒ้Ž–ๅฎš" -#: src/components/dms/InitiateChatFlow.tsx:264 -#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/components/dms/InitiateChatFlow.tsx:292 +#: src/components/dms/InitiateChatFlow.tsx:705 #: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "็พค็ต„ๅ็จฑ" -#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/components/dms/InitiateChatFlow.tsx:730 #: src/screens/Messages/ConversationSettings/prompts.tsx:69 msgid "Group name is too long. {MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {The maximum number of characters is #.}}" msgstr "็พค็ต„ๅฐ่ฉฑๅ็จฑๅคช้•ทไบ†๏ผŒ{MAX_GROUP_NAME_GRAPHEME_LENGTH, plural, other {ไธๅพ—่ถ…้Ž # ๅ€‹ๅญ—ๅ…ƒใ€‚}}" @@ -6077,7 +6031,7 @@ msgstr "ๆœ‰ๅฎณๆˆ–้ซ˜้ขจ้šชๆดปๅ‹•" msgid "Harming or endangering minors" msgstr "ๅ‚ทๅฎณๆˆ–ๅฑๅŠๆœชๆˆๅนดไบบๅฎ‰ๅ…จ" -#: src/Navigation.tsx:489 +#: src/Navigation.tsx:498 msgid "Hashtag" msgstr "ไธป้กŒๆจ™็ฑค" @@ -6098,7 +6052,7 @@ msgstr "ๅทฒ็ถ“ๆœ‰้ฉ—่ญ‰็ขผไบ†๏ผŸ<0>้ปžไธ€ไธ‹้€™่ฃกใ€‚" msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." msgstr "ไฝ็ฝฎ่ณ‡่จŠๅˆคๆ–ท้Œฏ่ชคๅ—Ž๏ผŸ<0>้ปžไธ€ไธ‹้€™่ฃกไปฅไฝฟ็”จ GPS ๆ›ดๆ–ฐๆ‚จ็š„ไฝ็ฝฎใ€‚" -#: src/screens/Signup/index.tsx:248 +#: src/screens/Signup/index.tsx:246 msgid "Having trouble?" msgstr "้‡ๅˆฐๅ•้กŒ๏ผŸ" @@ -6114,7 +6068,7 @@ msgstr "็”ฑ Bluesky ไฟ็•™ 7 ๅคฉไปฅ้˜ฒๆญขๆฟซ็”จ๏ผŒไธฆๅœจไน‹ๅพŒๅˆช้™ค" msgid "Help" msgstr "ๅนซๅŠฉ" -#: src/screens/Onboarding/StepProfile/index.tsx:262 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "้€้ŽไธŠๅ‚ณๅœ–็‰‡ๆˆ–ๅปบ็ซ‹ๅคง้ ญ่ฒผ็…ง๏ผŒ่ฎ“ๅคงๅฎถ็Ÿฅ้“ๆ‚จไธๆ˜ฏๆฉŸๅ™จไบบใ€‚" @@ -6135,12 +6089,12 @@ msgstr "ๅ—จ๏ผ" msgid "Hi there!" msgstr "ๅ—จ๏ผ" -#: src/components/VideoPostCard.tsx:178 -#: src/components/VideoPostCard.tsx:462 +#: src/components/VideoPostCard.tsx:176 +#: src/components/VideoPostCard.tsx:459 msgid "Hidden" msgstr "้šฑ่—" -#: src/screens/VideoFeed/index.tsx:697 +#: src/screens/VideoFeed/index.tsx:714 msgid "Hidden by your moderation settings." msgstr "ๆ‚จๅœจๅ…งๅฎน็ฏฉ้ธ่จญๅฎšไธญ้ธๆ“‡้šฑ่—ไบ†ๆญค้กžๅฝฑ็‰‡ใ€‚" @@ -6148,9 +6102,10 @@ msgstr "ๆ‚จๅœจๅ…งๅฎน็ฏฉ้ธ่จญๅฎšไธญ้ธๆ“‡้šฑ่—ไบ†ๆญค้กžๅฝฑ็‰‡ใ€‚" msgid "Hidden list" msgstr "้šฑ่—ๅˆ—่กจ" -#: src/components/interstitials/Trending.tsx:133 -#: src/components/interstitials/TrendingVideos.tsx:139 -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/interstitials/FeedTrendingTopics.tsx:156 +#: src/components/interstitials/Trending.tsx:144 +#: src/components/interstitials/TrendingVideos.tsx:138 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 @@ -6158,7 +6113,8 @@ msgstr "้šฑ่—ๅˆ—่กจ" #: src/lib/moderation/useLabelBehaviorDescription.ts:23 #: src/lib/moderation/useLabelBehaviorDescription.ts:28 #: src/lib/moderation/useLabelBehaviorDescription.ts:33 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:128 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:90 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:139 msgid "Hide" msgstr "้šฑ่—" @@ -6181,7 +6137,7 @@ msgstr "้šฑ่—ๅˆ—่กจ" #: src/screens/Login/LoginForm.tsx:613 msgid "Hide password" -msgstr "" +msgstr "้šฑ่—ๅฏ†็ขผ" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 @@ -6198,7 +6154,7 @@ msgstr "็‚บๆ‰€ๆœ‰ไบบ้šฑ่—ๅ›ž่ฆ†" msgid "Hide reply for me" msgstr "็‚บๆˆ‘้šฑ่—ๅ›ž่ฆ†" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:111 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:105 msgid "Hide this card" msgstr "้šฑ่—้€™ๅผตๅก็‰‡" @@ -6218,16 +6174,18 @@ msgstr "่ฆ้šฑ่—้€™ๅ‰‡ๅ›ž่ฆ†ๅ—Ž๏ผŸ" msgid "Hide translation" msgstr "้šฑ่—็ฟป่ญฏ" -#: src/components/interstitials/Trending.tsx:115 +#: src/components/interstitials/Trending.tsx:126 msgid "Hide trending topics" msgstr "้šฑ่—ๆต่กŒ่ถจๅ‹ข" -#: src/components/interstitials/Trending.tsx:131 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:126 +#: src/components/interstitials/FeedTrendingTopics.tsx:154 +#: src/components/interstitials/Trending.tsx:142 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:88 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:137 msgid "Hide trending topics?" msgstr "่ฆ้šฑ่—ๆต่กŒ่ถจๅ‹ขๅ—Ž๏ผŸ" -#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/components/interstitials/TrendingVideos.tsx:136 msgid "Hide trending videos?" msgstr "่ฆ้šฑ่—็†ฑ้–€ๅฝฑ็‰‡ๅ—Ž๏ผŸ" @@ -6240,7 +6198,7 @@ msgstr "้šฑ่—ไฝฟ็”จ่€…ๅˆ—่กจ" msgid "Hide verification badges" msgstr "้šฑ่—้ฉ—่ญ‰ๆจ™่จ˜" -#: src/components/moderation/ContentHider.tsx:171 +#: src/components/moderation/ContentHider.tsx:168 #: src/components/moderation/PostHider.tsx:94 msgid "Hides the content" msgstr "้šฑ่—ๅ…งๅฎน" @@ -6293,8 +6251,8 @@ msgstr "ๆŠฑๆญ‰๏ผŒๆˆ‘ๅ€‘็„กๆณ•่ผ‰ๅ…ฅ่ฉฒๅ…งๅฎน็ฎก็†ๆœๅ‹™ใ€‚" msgid "Hold up! Weโ€™re gradually giving access to video, and youโ€™re still waiting in line. Check back soon!" msgstr "็ญ‰ไธ€ไธ‹๏ผๆˆ‘ๅ€‘ๆญฃๅœจ้€ๆญฅ้–‹ๆ”พไธŠๅ‚ณๅฝฑ็‰‡ๅŠŸ่ƒฝใ€‚ๆ‚จ้‚„ๅœจ็ญ‰ๅ€™ๅๅ–ฎไธญ๏ผŒ่ซ‹็จๅพŒๅ†ๅ›žไพ†็œ‹็œ‹๏ผ" -#: src/Navigation.tsx:755 -#: src/Navigation.tsx:776 +#: src/Navigation.tsx:764 +#: src/Navigation.tsx:785 #: src/view/shell/bottom-bar/BottomBar.tsx:196 #: src/view/shell/desktop/LeftNav.tsx:667 #: src/view/shell/Drawer.tsx:499 @@ -6315,15 +6273,11 @@ msgstr "่จ—็ฎกๆœๅ‹™ๆไพ›่€…" #. placeholder {0}: toNiceHostingUrl(state.pdsUrl) #: src/screens/Login/LoginForm.tsx:655 msgid "Hosting provider: {0}" -msgstr "" +msgstr "่จ—็ฎกๆœๅ‹™ๆไพ›่€…๏ผš{0}" #: src/screens/Login/LoginForm.tsx:657 msgid "Hosting provider: Bluesky" -msgstr "" - -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 -msgid "Hot" -msgstr "็†ฑ้–€" +msgstr "่จ—็ฎกๆœๅ‹™ๆไพ›่€…๏ผšBluesky" #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" @@ -6409,6 +6363,7 @@ msgstr "ๅฆ‚ๆžœๆ‚จๆ›ดๆ–ฐไบ†้›ปๅญ้ƒตไปถๅœฐๅ€๏ผŒ้›ปๅญ้ƒตไปถ้›™้‡้ฉ—่ญ‰ๅฐ‡ๆœƒ่‡ช msgid "If you want to change your password, we will send you a code to verify that this is your account." msgstr "ๅฆ‚ๆžœๆ‚จๆƒณ่ฎŠๆ›ดๅฏ†็ขผ๏ผŒๆˆ‘ๅ€‘ๅฐ‡ๅ‘ๆ‚จๅ‚ณ้€ไธ€็ต„้ฉ—่ญ‰็ขผ๏ผŒไปฅ็ขบ่ช้€™ๆ˜ฏๆ‚จ็š„ๅธณ่™Ÿใ€‚" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:157 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings โ†’ Privacy and Security." msgstr "ๅฆ‚ๆžœๆ‚จๆƒณ้™ๅˆถๅ…ถไป–ไบบๆŽฅๆ”ถๆ‚จๅธณ่™Ÿ็š„ๅ‹•ๆ…‹้€š็Ÿฅ๏ผŒๅฏไปฅๅ‰ๅพ€ <0>่จญๅฎš โ†’ ้šฑ็ง่ˆ‡ๅฎ‰ๅ…จ ่ฎŠๆ›ด่จญๅฎšใ€‚" @@ -6548,7 +6503,7 @@ msgstr "ๆ‡‰็”จ็จ‹ๅผๅ…งใ€ๆŽจๆ’ญใ€ๆ‰€ๆœ‰ไบบ" msgid "In-app, push, people you follow" msgstr "ๆ‡‰็”จ็จ‹ๅผๅ…งใ€ๆŽจๆ’ญใ€ๆ‚จ่ทŸ้šจ็š„ไบบ" -#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:437 msgid "Inbox empty" msgstr "ๆ”ถไปถๅŒฃ็‚บ็ฉบ" @@ -6564,7 +6519,6 @@ msgstr "ๆ”ถไปถๅŒฃๆธ…้›ถ๏ผ" #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:58 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:75 #: src/screens/Search/components/AdvancedSearchDialog/FilterBlock.tsx:81 -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 msgid "Include" msgstr "ๅŒ…ๅซ" @@ -6573,7 +6527,7 @@ msgstr "ๅŒ…ๅซ" msgid "Include or exclude matching posts (currently: {0})" msgstr "ๅŒ…ๅซๆˆ–ๆŽ’้™ค็ฌฆๅˆ็š„่ฒผๆ–‡๏ผˆ็›ฎๅ‰๏ผš{0}๏ผ‰" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:31 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:32 msgid "Include posts and/or replies (currently: {currentLabel})" msgstr "ๅŒ…ๅซ่ฒผๆ–‡ๅ’Œ/ๆˆ–ๅ›ž่ฆ†๏ผˆ็›ฎๅ‰๏ผš{currentLabel}๏ผ‰" @@ -6587,10 +6541,6 @@ msgstr "ๅŒ…ๅซ่‡ชๆญคๆ—ฅๆœŸไน‹ๅพŒ็™ผๅธƒ็š„่ฒผๆ–‡" msgid "Include posts made until this date" msgstr "ๅŒ…ๅซๅœจๆญคๆ—ฅๆœŸไน‹ๅ‰็™ผๅธƒ็š„่ฒผๆ–‡" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:50 -msgid "Include these results" -msgstr "ๅŒ…ๅซ้€™ไบ›็ตๆžœ" - #: src/screens/Login/LoginForm.tsx:165 msgid "Incorrect username or password" msgstr "ไฝฟ็”จ่€…ๅ็จฑๆˆ–ๅฏ†็ขผ้Œฏ่ชค" @@ -6683,7 +6633,7 @@ msgstr "้‚€่ซ‹ {name} ๅŠ ๅ…ฅ Bluesky" msgid "Invite code" msgstr "้‚€่ซ‹็ขผ" -#: src/screens/Signup/state.ts:347 +#: src/screens/Signup/state.ts:363 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "้‚€่ซ‹็ขผ็„กๆ•ˆใ€‚่ซ‹ๆชขๆŸฅๆ˜ฏๅฆ่ผธๅ…ฅๆญฃ็ขบ๏ผŒ็„ถๅพŒๅ†่ฉฆไธ€ๆฌกใ€‚" @@ -6776,7 +6726,7 @@ msgid "It's just you right now! Add more people to your starter pack by searchin msgstr "็พๅœจๆ–ฐๆ‰‹ๅŒ…่ฃกๅชๆœ‰ๆ‚จไธ€ๅ€‹ไบบ๏ผไฝฟ็”จไธŠ้ข็š„ๆœๅฐ‹ๅŠŸ่ƒฝ๏ผŒๅฐ‡ๆ›ดๅคšไบบๆ–ฐๅขžๅˆฐๆ‚จ็š„ๆ–ฐๆ‰‹ๅŒ…ไธญใ€‚" #. placeholder {0}: videoState.jobId -#: src/view/com/composer/Composer.tsx:2611 +#: src/view/com/composer/Composer.tsx:2617 msgid "Job ID: {0}" msgstr "ไฝœๆฅญ ID๏ผš{0}" @@ -6816,8 +6766,8 @@ msgstr "ๅŠ ๅ…ฅ่จŽ่ซ–" msgid "Journalism" msgstr "่จ˜่€…" -#: src/view/com/composer/Composer.tsx:1539 -#: src/view/com/composer/Composer.tsx:1549 +#: src/view/com/composer/Composer.tsx:1545 +#: src/view/com/composer/Composer.tsx:1555 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "็นผ็บŒ็ทจ่ผฏ" @@ -6831,16 +6781,16 @@ msgid "KWS website" msgstr "KWS ็ถฒ็ซ™" #. placeholder {0}: sanitizeDisplayName(desc.source!) -#: src/components/moderation/ContentHider.tsx:251 +#: src/components/moderation/ContentHider.tsx:245 msgid "Labeled by {0}." msgstr "็”ฑ {0} ๆจ™่จ˜ใ€‚" -#: src/components/moderation/ContentHider.tsx:249 +#: src/components/moderation/ContentHider.tsx:243 msgid "Labeled by the author." msgstr "็”ฑ็™ผๅธƒ่€…ๆจ™่จ˜ใ€‚" #: src/view/com/composer/labels/LabelsBtn.tsx:70 -#: src/view/screens/Profile.tsx:232 +#: src/view/screens/Profile.tsx:234 msgid "Labels" msgstr "ๆจ™่จ˜" @@ -6850,9 +6800,9 @@ msgstr "ๅทฒๅŠ ๅ…ฅๆจ™่จ˜" #: src/components/moderation/LabelsOnMeDialog.tsx:78 msgid "Labels applied to this post" -msgstr "" +msgstr "ๅฅ—็”จ่‡ณๆญค่ฒผๆ–‡็š„ๆจ™่จ˜" -#: src/screens/Profile/Sections/Labels.tsx:194 +#: src/screens/Profile/Sections/Labels.tsx:195 msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "ๆจ™่จ˜ๅฏ็”จๆ–ผ้šฑ่—ใ€่ญฆๅ‘Šๆˆ–ๅˆ†้กžไฝฟ็”จ่€…ๅ’Œๅ…งๅฎนใ€‚" @@ -6864,7 +6814,7 @@ msgstr "ๆ‚จๅธณ่™ŸไธŠ็š„ๆจ™่จ˜" msgid "Language" msgstr "่ชž่จ€" -#: src/Navigation.tsx:219 +#: src/Navigation.tsx:220 msgid "Language Settings" msgstr "่ชž่จ€่จญๅฎš" @@ -6874,7 +6824,7 @@ msgstr "่ชž่จ€่จญๅฎš" msgid "Languages" msgstr "่ชž่จ€" -#: src/screens/Settings/AppearanceSettings.tsx:160 +#: src/screens/Settings/AppearanceSettings.tsx:158 msgid "Larger" msgstr "ๆ›ดๅคง" @@ -6889,7 +6839,7 @@ msgid "Last initiated just now" msgstr "ๆœ€ๅพŒไธ€ๆฌก่ซ‹ๆฑ‚ๆ–ผไธไน…ๅ‰" #: src/screens/Hashtag.tsx:97 -#: src/screens/Search/SearchResults.tsx:86 +#: src/screens/Search/SearchResults.tsx:95 #: src/screens/Topic.tsx:64 msgid "Latest" msgstr "ๆœ€ๆ–ฐ" @@ -6904,11 +6854,11 @@ msgctxt "english-only-resource" msgid "Learn more" msgstr "็žญ่งฃ่ฉณๆƒ…๏ผˆ่‹ฑๆ–‡๏ผ‰" -#: src/components/moderation/ScreenHider.tsx:147 +#: src/components/moderation/ScreenHider.tsx:143 msgid "Learn More" msgstr "็žญ่งฃ่ฉณๆƒ…" -#: src/screens/Search/SearchResults.tsx:246 +#: src/screens/Search/SearchResults.tsx:273 msgctxt "english-only-resource" msgid "Learn more about <0>how to use advanced search." msgstr "้€ฒไธ€ๆญฅ็žญ่งฃ<0>ๅฆ‚ไฝ•ไฝฟ็”จ้€ฒ้šŽๆœๅฐ‹ใ€‚" @@ -6937,8 +6887,8 @@ msgstr "ๆทฑๅ…ฅ็žญ่งฃๅŒฏๅ…ฅ่ฏ็ตกไบบๅŠŸ่ƒฝ" msgid "Learn more about self hosting your PDS." msgstr "ๆทฑๅ…ฅ็žญ่งฃๅฆ‚ไฝ•่‡ช่กŒๆžถ่จญ PDSใ€‚" -#: src/components/moderation/ContentHider.tsx:169 -#: src/components/moderation/ContentHider.tsx:235 +#: src/components/moderation/ContentHider.tsx:166 +#: src/components/moderation/ContentHider.tsx:230 msgid "Learn more about the moderation applied to this content" msgstr "ๆทฑๅ…ฅ็žญ่งฃๅฐ้€™้ …ๅ…งๅฎนๅฅ—็”จ็š„ๅฏฉๆ ธๆŽชๆ–ฝ" @@ -6951,7 +6901,7 @@ msgid "Learn more about these changes and how to share your thoughts with us by msgstr "ๆ‚จๅฏไปฅ้–ฑ่ฎ€ๆˆ‘ๅ€‘็š„้ƒจ่ฝๆ ผๆ–‡็ซ ๏ผŒ็žญ่งฃๆœ‰้—œ้€™ไบ›่ฎŠๅŒ–็š„ๆ›ดๅคš่ณ‡่จŠ๏ผŒไปฅๅŠๅฆ‚ไฝ•่ˆ‡ๆˆ‘ๅ€‘ๅˆ†ไบซๆ‚จ็š„ๆƒณๆณ•ใ€‚" #: src/components/moderation/PostHider.tsx:116 -#: src/components/moderation/ScreenHider.tsx:134 +#: src/components/moderation/ScreenHider.tsx:132 msgid "Learn more about this warning" msgstr "ๆทฑๅ…ฅ็žญ่งฃ้€™ๅ€‹่ญฆๅ‘Š" @@ -6975,7 +6925,7 @@ msgid "Learn more in your <0>account settings." msgstr "ๅœจๆ‚จ็š„<0>ๅธณ่™Ÿ่จญๅฎš็žญ่งฃ่ฉณๆƒ…ใ€‚" #: src/components/dialogs/ServerInput.tsx:222 -#: src/components/moderation/ContentHider.tsx:259 +#: src/components/moderation/ContentHider.tsx:253 #: src/screens/Login/components/HostingProviderDialog.tsx:243 msgid "Learn more." msgstr "็žญ่งฃ่ฉณๆƒ…ใ€‚" @@ -6993,8 +6943,8 @@ msgstr "้›ข้–‹" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/components/moderation/BlockDialog.tsx:384 -#: src/components/moderation/BlockDialog.tsx:391 +#: src/components/moderation/BlockDialog.tsx:381 +#: src/components/moderation/BlockDialog.tsx:388 #: src/screens/Messages/components/ChatEnded.tsx:66 #: src/screens/Messages/components/ChatLocked.tsx:112 msgid "Leave chat" @@ -7034,7 +6984,7 @@ msgstr "้›ข้–‹ Bluesky" msgid "Leaving this chat will lock it permanently and you wonโ€™t be able to rejoin." msgstr "้›ข้–‹ๆญคๅฐ่ฉฑ็š„ๅŒๆ™‚ไนŸๆœƒๅฐ‡ๅ…ถๆฐธไน…้Ž–ๅฎš๏ผŒๆ‚จๅฐ‡็„กๆณ•ๅ†ๆฌกๅŠ ๅ…ฅใ€‚" -#: src/components/moderation/BlockDialog.tsx:277 +#: src/components/moderation/BlockDialog.tsx:274 msgid "Left group chat." msgstr "ๅทฒ้›ข้–‹็พค็ต„ๅฐ่ฉฑใ€‚" @@ -7042,7 +6992,7 @@ msgstr "ๅทฒ้›ข้–‹็พค็ต„ๅฐ่ฉฑใ€‚" msgid "left to go." msgstr "ๅ€‹ไบบๅœจๆŽ’ๅœจๆ‚จๅ‰้ขใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +#: src/components/StarterPack/ProfileStarterPacks.tsx:357 msgid "Let me choose" msgstr "่ฎ“ๆˆ‘่‡ชๅทฑ้ธๆ“‡" @@ -7057,7 +7007,7 @@ msgstr "่ฎ“ๆˆ‘ๅ€‘้–‹ๅง‹ๅง๏ผ" #: src/components/dialogs/Embed.tsx:159 #: src/components/dialogs/Embed.tsx:161 -#: src/screens/Settings/AppearanceSettings.tsx:89 +#: src/screens/Settings/AppearanceSettings.tsx:87 msgid "Light" msgstr "ๆทบ่‰ฒ" @@ -7066,7 +7016,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "ๆทบ่‰ฒ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Like" msgstr "ๅ–œๆญก" @@ -7076,7 +7026,7 @@ msgstr "ๅ–œๆญก" msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "ๅ–œๆญก๏ผˆ{0, plural, other {# ๅ€‹ๅ–œๆญก}}๏ผ‰" -#: src/components/ProgressGuide/List.tsx:110 +#: src/components/ProgressGuide/List.tsx:108 msgid "Like 10 posts" msgstr "ๅ–œๆญก 10 ๅ‰‡่ฒผๆ–‡" @@ -7085,7 +7035,7 @@ msgstr "ๅ–œๆญก 10 ๅ‰‡่ฒผๆ–‡" msgid "Like 10 posts to train the Discover feed" msgstr "ๅ–œๆญก 10 ๅ‰‡่ฒผๆ–‡๏ผŒไปฅ่จ“็ทดใ€ŒDiscoverใ€ๅ‹•ๆ…‹ๆบ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:552 msgid "Like this feed" msgstr "ๅฐๆญคๅ‹•ๆ…‹ๆบ่กจ็คบๅ–œๆญก" @@ -7093,8 +7043,8 @@ msgstr "ๅฐๆญคๅ‹•ๆ…‹ๆบ่กจ็คบๅ–œๆญก" msgid "Like this labeler" msgstr "ๅฐๆญคๆจ™่จ˜ๆœๅ‹™่กจ็คบๅ–œๆญก" -#: src/Navigation.tsx:297 -#: src/Navigation.tsx:302 +#: src/Navigation.tsx:298 +#: src/Navigation.tsx:303 msgid "Liked by" msgstr "่กจ็คบๅ–œๆญก็š„ไฝฟ็”จ่€…" @@ -7111,27 +7061,45 @@ msgstr "่กจ็คบๅ–œๆญก็š„ไฝฟ็”จ่€…" msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {# ๅ€‹ไฝฟ็”จ่€…} other {# ๅ€‹ไฝฟ็”จ่€…}}่กจ็คบๅ–œๆญก" +#. Social proof below the post stats; the bolded name is a person the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#: src/screens/PostThread/components/LikesStat.tsx:132 +#: src/screens/PostThread/components/LikesStat.tsx:173 +msgid "Liked by {0}" +msgstr "" + +#. Social proof below the post stats; the bolded names are people the viewer follows who liked the post +#. placeholder {0}: nameLink(names[0]) +#. placeholder {0}: names[0].displayName +#. placeholder {1}: nameLink(names[1]) +#. placeholder {1}: names[1].displayName +#: src/screens/PostThread/components/LikesStat.tsx:131 +#: src/screens/PostThread/components/LikesStat.tsx:169 +msgid "Liked by {0} and {1}" +msgstr "" + #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:540 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:169 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {# ๅ€‹ไฝฟ็”จ่€…} other {# ๅ€‹ไฝฟ็”จ่€…}}่กจ็คบๅ–œๆญก" #: src/lib/hooks/useNotificationHandler.ts:158 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/index.tsx:315 -#: src/view/screens/Profile.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:159 +#: src/screens/Settings/NotificationSettings/index.tsx:314 +#: src/view/screens/Profile.tsx:240 msgid "Likes" msgstr "ๅ–œๆญก" #: src/lib/hooks/useNotificationHandler.ts:200 -#: src/screens/Settings/NotificationSettings/index.tsx:239 -#: src/screens/Settings/NotificationSettings/index.tsx:378 +#: src/screens/Settings/NotificationSettings/index.tsx:238 +#: src/screens/Settings/NotificationSettings/index.tsx:364 msgid "Likes of your reposts" msgstr "ๅ–œๆญกๆ‚จ่ฝ‰็™ผ็š„่ฒผๆ–‡" -#: src/screens/PostThread/components/LikesStat.tsx:85 +#: src/screens/PostThread/components/LikesStat.tsx:39 msgid "Likes on this post" msgstr "้€™ๅ‰‡่ฒผๆ–‡็š„ๅ–œๆญกๆ•ธ" @@ -7144,7 +7112,7 @@ msgstr "็›ดๅˆ—ๆจกๅผ" msgid "Link copied to clipboard" msgstr "ๅทฒ่ค‡่ฃฝ้€ฃ็ต่‡ณๅ‰ช่ฒผ็ฐฟ" -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:253 msgid "List" msgstr "ๅˆ—่กจ" @@ -7230,10 +7198,10 @@ msgctxt "toast" msgid "List unmuted" msgstr "ๆˆๅŠŸๅ–ๆถˆ้œ้Ÿณๅˆ—่กจ" -#: src/Navigation.tsx:173 +#: src/Navigation.tsx:174 #: src/view/screens/Lists.tsx:60 -#: src/view/screens/Profile.tsx:233 -#: src/view/screens/Profile.tsx:241 +#: src/view/screens/Profile.tsx:235 +#: src/view/screens/Profile.tsx:243 #: src/view/shell/desktop/LeftNav.tsx:722 #: src/view/shell/Drawer.tsx:604 msgid "Lists" @@ -7258,12 +7226,12 @@ msgstr "็›ดๆ’ญ" msgid "Live event happening now: {0}" msgstr "ๆญฃๅœจ้€ฒ่กŒ็š„็›ดๆ’ญๆดปๅ‹•๏ผš{0}" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:43 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" msgstr "ๅทฒ้šฑ่—็›ดๆ’ญๆดปๅ‹•" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:45 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" msgstr "ๅทฒๅ–ๆถˆ้šฑ่—็›ดๆ’ญๆดปๅ‹•" @@ -7279,12 +7247,12 @@ msgstr "็›ดๆ’ญๅŠŸ่ƒฝๆญฃๅœจๆธฌ่ฉฆ้šŽๆฎต" msgid "Live link" msgstr "็›ดๆ’ญ้€ฃ็ต" -#: src/screens/Search/Explore.tsx:90 +#: src/screens/Search/Explore.tsx:87 msgid "Load more" msgstr "่ผ‰ๅ…ฅๆ›ดๅคš" -#: src/screens/Search/Explore.tsx:519 -#: src/screens/Search/Explore.tsx:610 +#: src/screens/Search/Explore.tsx:515 +#: src/screens/Search/Explore.tsx:606 msgid "Load more suggested feeds" msgstr "่ผ‰ๅ…ฅๆ›ดๅคšๅปบ่ญฐๅ‹•ๆ…‹ๆบ" @@ -7292,8 +7260,8 @@ msgstr "่ผ‰ๅ…ฅๆ›ดๅคšๅปบ่ญฐๅ‹•ๆ…‹ๆบ" msgid "Load new notifications" msgstr "่ผ‰ๅ…ฅๆ›ดๅคš้€š็Ÿฅ" -#: src/screens/Profile/ProfileFeed/index.tsx:206 -#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/Profile/ProfileFeed/index.tsx:208 +#: src/screens/Profile/Sections/Feed.tsx:121 #: src/screens/ProfileList/FeedSection.tsx:113 #: src/view/com/feeds/FeedPage.tsx:168 msgid "Load new posts" @@ -7336,7 +7304,7 @@ msgstr "้Ž–ๅฎšๆญค็พค็ต„ๅฐ่ฉฑ" msgid "Locked" msgstr "ๅทฒ้Ž–ๅฎš" -#: src/Navigation.tsx:327 +#: src/Navigation.tsx:328 msgid "Log" msgstr "่จ˜้Œ„ๆช”" @@ -7387,7 +7355,7 @@ msgstr "ๆ„›ๆƒ… GIFs" msgid "Make adjustments to email settings for your account" msgstr "่ชฟๆ•ดๆ‚จๅธณ่™Ÿ็ถๅฎš็š„้›ปๅญไฟก็ฎฑ่จญๅฎš" -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:314 msgid "Make one for me" msgstr "็‚บๆˆ‘่ฃฝไฝœไธ€ๅ€‹" @@ -7411,22 +7379,22 @@ msgstr "็ฎก็†ๆ‚จ้œ้Ÿณ็š„ๅญ—่ฉžๅ’Œๆจ™็ฑค" #: src/screens/Login/components/HostingProviderDialog.tsx:173 #: src/screens/Login/components/HostingProviderDialog.tsx:174 msgid "Manual" -msgstr "" +msgstr "ๆ‰‹ๅ‹•" #: src/screens/Messages/Inbox.tsx:312 #: src/screens/Messages/Inbox.tsx:318 msgid "Mark all as read" msgstr "ๅ…จ้ƒจๆจ™็คบ็‚บๅทฒ่ฎ€" -#: src/screens/Messages/ChatList.tsx:656 -#: src/screens/Messages/ChatList.tsx:660 +#: src/screens/Messages/ChatList.tsx:655 +#: src/screens/Messages/ChatList.tsx:659 #: src/view/shell/bottom-bar/BottomBar.tsx:465 #: src/view/shell/bottom-bar/BottomBar.tsx:469 msgid "Mark all chats as read" msgstr "ๅฐ‡ๆ‰€ๆœ‰ๅฐ่ฉฑๆจ™็คบ็‚บๅทฒ่ฎ€" -#: src/screens/Messages/ChatList.tsx:664 -#: src/screens/Messages/ChatList.tsx:668 +#: src/screens/Messages/ChatList.tsx:663 +#: src/screens/Messages/ChatList.tsx:667 #: src/view/shell/bottom-bar/BottomBar.tsx:473 #: src/view/shell/bottom-bar/BottomBar.tsx:477 msgid "Mark all requests as read" @@ -7441,12 +7409,12 @@ msgstr "ๆจ™็คบ็‚บๅทฒ่ฎ€" msgid "Marked all as read" msgstr "ๆˆๅŠŸๅ…จ้ƒจๆจ™็คบ็‚บๅทฒ่ฎ€" -#: src/screens/Messages/ChatList.tsx:634 +#: src/screens/Messages/ChatList.tsx:633 #: src/view/shell/bottom-bar/BottomBar.tsx:444 msgid "Marked all chats as read" msgstr "ๅทฒๆจ™็คบๆ‰€ๆœ‰ๅฐ่ฉฑ็‚บๅทฒ่ฎ€" -#: src/screens/Messages/ChatList.tsx:643 +#: src/screens/Messages/ChatList.tsx:642 #: src/view/shell/bottom-bar/BottomBar.tsx:453 msgid "Marked all requests as read" msgstr "ๅทฒๆจ™็คบๆ‰€ๆœ‰้‚€่ซ‹็‚บๅทฒ่ฎ€" @@ -7456,8 +7424,12 @@ msgstr "ๅทฒๆจ™็คบๆ‰€ๆœ‰้‚€่ซ‹็‚บๅทฒ่ฎ€" msgid "Maybe later" msgstr "ไน‹ๅพŒๅ†่ชช" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:24 +msgid "Me" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:375 -#: src/view/screens/Profile.tsx:236 +#: src/view/screens/Profile.tsx:238 msgid "Media" msgstr "ๅช’้ซ”" @@ -7475,7 +7447,7 @@ msgstr "ๅช’้ซ”ๅ„ฒๅญ˜ๆ–ผๅ…ถไป–่ฃ็ฝฎ" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "ๅฏ่ƒฝๆœƒไฝฟ้ƒจๅˆ†ๅ—็œพๆ„Ÿๅˆฐไธๅฎ‰ๆˆ–้€ ๆˆไธ้ฉ็š„ๅช’้ซ”ๅ…งๅฎนใ€‚" -#: src/components/moderation/BlockDialog.tsx:303 +#: src/components/moderation/BlockDialog.tsx:300 msgid "Member removed from group chat." msgstr "ๅทฒๅพž็พค็ต„ๅฐ่ฉฑ็งป้™คๆˆๅ“กใ€‚" @@ -7493,8 +7465,8 @@ msgid "mentioned users" msgstr "่ขซๆๅŠ็š„ไฝฟ็”จ่€…" #: src/lib/hooks/useNotificationHandler.ts:179 -#: src/screens/Settings/NotificationSettings/index.tsx:193 -#: src/screens/Settings/NotificationSettings/index.tsx:340 +#: src/screens/Settings/NotificationSettings/index.tsx:192 +#: src/screens/Settings/NotificationSettings/index.tsx:339 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "ๆๅŠ" @@ -7536,7 +7508,7 @@ msgctxt "toast" msgid "Message deleted" msgstr "ๆˆๅŠŸๅˆช้™ค่จŠๆฏ" -#: src/components/dms/MessageItem.tsx:636 +#: src/components/dms/MessageItem.tsx:637 msgid "Message failed to send." msgstr "ๅ‚ณ้€่จŠๆฏๆ™‚็™ผ็”Ÿๅ•้กŒใ€‚" @@ -7563,15 +7535,15 @@ msgstr "่จŠๆฏๅ…งๅฎนๅคช้•ทไบ†๏ผˆ{graphemeCount}/{MAX_DM_GRAPHEME_LENGTH}๏ผ‰" msgid "Message options" msgstr "่จŠๆฏ้ธ้ …" -#: src/Navigation.tsx:770 +#: src/Navigation.tsx:779 msgid "Messages" msgstr "่จŠๆฏ" -#: src/components/dms/MessageItem.tsx:735 +#: src/components/dms/MessageItem.tsx:736 msgid "Messages from this person are hidden while they are blocking you." msgstr "็•ถๅฐๆ–นๅฐ้Ž–ๆ‚จๆ™‚๏ผŒๅ…ถๅ‚ณ้€็š„่จŠๆฏๅฐ‡่ขซ้šฑ่—ใ€‚" -#: src/components/dms/MessageItem.tsx:730 +#: src/components/dms/MessageItem.tsx:731 msgid "Messages from this person are hidden while you are blocking them." msgstr "็•ถๆ‚จๅฐ้Ž–ๅฐๆ–นๆ™‚๏ผŒๅ…ถๅ‚ณ้€็š„่จŠๆฏๅฐ‡่ขซ้šฑ่—ใ€‚" @@ -7592,7 +7564,7 @@ msgstr "ไธๅฏฆ่ณ‡่จŠ" msgid "Missing media" msgstr "็ผบๅคฑๅช’้ซ”ๆช”ๆกˆ" -#: src/Navigation.tsx:178 +#: src/Navigation.tsx:179 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "ๅ…งๅฎน็ฎก็†" @@ -7636,7 +7608,7 @@ msgstr "ๆˆๅŠŸๆ›ดๆ–ฐๅ…งๅฎน็ฎก็†ๅˆ—่กจ" msgid "Moderation lists" msgstr "ๅ…งๅฎน็ฎก็†ๅˆ—่กจ" -#: src/Navigation.tsx:183 +#: src/Navigation.tsx:184 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "ๅ…งๅฎน็ฎก็†ๅˆ—่กจ" @@ -7645,7 +7617,7 @@ msgstr "ๅ…งๅฎน็ฎก็†ๅˆ—่กจ" msgid "moderation settings" msgstr "ๅ…งๅฎน็ฎก็†่จญๅฎš" -#: src/Navigation.tsx:312 +#: src/Navigation.tsx:313 msgid "Moderation states" msgstr "ๅ…งๅฎน็ฎก็†็‹€ๆ…‹" @@ -7786,7 +7758,7 @@ msgstr "ๅทฒ้œ้Ÿณ" msgid "Muted accounts" msgstr "ๅทฒ้œ้Ÿณๅธณ่™Ÿ" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:189 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "ๅทฒ้œ้Ÿณๅธณ่™Ÿ" @@ -7867,7 +7839,6 @@ msgstr "้œ€่ฆๆชข่ˆ‰ไพตๅฎณ่‘—ไฝœๆฌŠใ€ๆณ•ๅพ‹่ฆๆฑ‚๏ผŒๆˆ–ๆณ•ไปค้ตๅพช็›ธ้—œๅ•้กŒ msgid "Nevermind, create a handle for me" msgstr "็ฎ—ไบ†๏ผŒ็‚บๆˆ‘ๅปบ็ซ‹ไธ€ๅ€‹ๅธณ่™Ÿไปฃ็ขผ" -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:398 msgid "New" msgstr "ๆœ€ๆ–ฐ" @@ -7893,11 +7864,11 @@ msgstr "ไพ†่‡ช {firstAuthorName} ็š„ๆ–ฐ{postsCount, plural, other {่ฒผๆ–‡}}" #: src/components/dms/dialogs/NewChatDialog.tsx:169 #: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:231 #: src/screens/Messages/ChatList.tsx:232 -#: src/screens/Messages/ChatList.tsx:233 +#: src/screens/Messages/ChatList.tsx:455 #: src/screens/Messages/ChatList.tsx:456 -#: src/screens/Messages/ChatList.tsx:457 -#: src/screens/Messages/ChatList.tsx:581 +#: src/screens/Messages/ChatList.tsx:580 msgid "New chat" msgstr "ๆ–ฐๅฐ่ฉฑ" @@ -7931,25 +7902,25 @@ msgid "New Feature" msgstr "ๆ–ฐๅŠŸ่ƒฝ" #: src/lib/hooks/useNotificationHandler.ts:193 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/index.tsx:324 +#: src/screens/Settings/NotificationSettings/index.tsx:170 +#: src/screens/Settings/NotificationSettings/index.tsx:323 msgid "New followers" msgstr "ๆ–ฐ่ทŸ้šจ่€…" -#: src/components/dms/InitiateChatFlow.tsx:249 -#: src/components/dms/InitiateChatFlow.tsx:263 +#: src/components/dms/InitiateChatFlow.tsx:277 +#: src/components/dms/InitiateChatFlow.tsx:291 msgid "New group chat" msgstr "ๅปบ็ซ‹็พค็ต„ๅฐ่ฉฑ" #. Button used to create a new group chat. #. Button used to create a new group chat. -#: src/components/dms/InitiateChatFlow.tsx:800 -#: src/components/dms/InitiateChatFlow.tsx:834 +#: src/components/dms/InitiateChatFlow.tsx:905 +#: src/components/dms/InitiateChatFlow.tsx:939 msgctxt "action" msgid "New group chat" msgstr "ๅปบ็ซ‹็พค็ต„ๅฐ่ฉฑ" -#: src/components/dms/InitiateChatFlow.tsx:300 +#: src/components/dms/InitiateChatFlow.tsx:332 msgid "New group chat with:" msgstr "่ˆ‡้€™ไบ›ไบบๅปบ็ซ‹็พค็ต„ๅฐ่ฉฑ๏ผš" @@ -7966,13 +7937,13 @@ msgstr "ๆ–ฐๅˆ—่กจ" #: src/screens/Messages/Settings.tsx:289 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:282 +#: src/screens/Settings/NotificationSettings/index.tsx:281 msgid "New message requests" msgstr "ๆ–ฐ่จŠๆฏ็”ณ่ซ‹" #: src/screens/Messages/Settings.tsx:268 #: src/screens/Settings/NotificationSettings/components/ChatNotificationDialogs.tsx:21 -#: src/screens/Settings/NotificationSettings/index.tsx:265 +#: src/screens/Settings/NotificationSettings/index.tsx:264 msgid "New messages" msgstr "ๆ–ฐ่จŠๆฏ" @@ -7982,12 +7953,12 @@ msgstr "ๆ–ฐ่จŠๆฏ" msgid "New password" msgstr "ๆ–ฐๅฏ†็ขผ" -#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: src/screens/Profile/ProfileFeed/index.tsx:218 #: src/screens/ProfileList/index.tsx:237 #: src/screens/ProfileList/index.tsx:280 #: src/view/screens/Feeds.tsx:545 #: src/view/screens/Notifications.tsx:165 -#: src/view/screens/Profile.tsx:593 +#: src/view/screens/Profile.tsx:607 msgid "New post" msgstr "ๆ–ฐ่ฒผๆ–‡" @@ -8011,7 +7982,7 @@ msgstr "ๅปบ็ซ‹ๆ–ฐๆ‰‹ๅŒ…" #: src/screens/Login/LoginForm.tsx:569 msgid "New to Bluesky? <0>Sign up" -msgstr "" +msgstr "็ฌฌไธ€ๆฌกไฝฟ็”จ Bluesky๏ผŸ<0>่จปๅ†Š" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -8025,14 +7996,14 @@ msgid "Newest replies first" msgstr "ๆœ€ๆ–ฐๅ›ž่ฆ†ๅ„ชๅ…ˆ" #: src/lib/interests.ts:67 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:226 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:233 msgid "News" msgstr "ๆ–ฐ่ž" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 #: src/components/dms/AddMembersFlow.tsx:325 -#: src/components/dms/InitiateChatFlow.tsx:494 +#: src/components/dms/InitiateChatFlow.tsx:599 #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:171 @@ -8057,7 +8028,7 @@ msgstr "ไธ‹ไธ€ๅผตๅœ–็‰‡" msgid "Night" msgstr "ๅคœๆ™š" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:42 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "็„กๅปฃๅ‘Šใ€็„กไพตๅ…ฅๅผ่ฟฝ่นค๏ผŒๆ›ดๆฒ’ๆœ‰ๆˆ็™ฎๆ€ง่จญ่จˆใ€‚Bluesky ๅฐŠ้‡ๆ‚จๅฏถ่ฒด็š„ๆ™‚้–“่ˆ‡ๆณจๆ„ๅŠ›ใ€‚" @@ -8065,9 +8036,14 @@ msgstr "็„กๅปฃๅ‘Šใ€็„กไพตๅ…ฅๅผ่ฟฝ่นค๏ผŒๆ›ดๆฒ’ๆœ‰ๆˆ็™ฎๆ€ง่จญ่จˆใ€‚Bluesky ๅฐŠ msgid "No app passwords yet" msgstr "็›ฎๅ‰้‚„ๆฒ’ๆœ‰ๆ‡‰็”จ็จ‹ๅผๅฐˆ็”จๅฏ†็ขผ" +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:27 +msgid "No author filter" +msgstr "" + #: src/screens/Settings/BetaFeaturesSettings.tsx:177 msgid "No beta features at the moment." -msgstr "" +msgstr "็›ฎๅ‰ๆฒ’ๆœ‰ๆธฌ่ฉฆๅŠŸ่ƒฝใ€‚" #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" @@ -8098,7 +8074,7 @@ msgstr "ๆฒ’ๆœ‰่จญๅฎš้ŽๆœŸๆ™‚้–“" msgid "No feeds found. Try searching for something else." msgstr "ๆ‰พไธๅˆฐไปปไฝ•ๅ‹•ๆ…‹ๆบใ€‚่ฉฆ่ฉฆไปฅๅ…ถไป–้—œ้ตๅญ—ๆœๅฐ‹ใ€‚" -#: src/view/com/profile/ProfileFollowers.tsx:202 +#: src/view/com/profile/ProfileFollowers.tsx:216 msgid "No followers yet" msgstr "็›ฎๅ‰้‚„ๆฒ’ๆœ‰่ทŸ้šจ่€…" @@ -8116,9 +8092,15 @@ msgstr "็›ฎๅ‰ๆฒ’ๆœ‰ๅฏไปฅ้กฏ็คบ็š„ GIFsใ€‚่ซ‹็จๅพŒๅ†่ฉฆใ€‚" msgid "No image" msgstr "ๆฒ’ๆœ‰ๅœ–็‰‡" +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:91 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:93 +msgid "No language filter" +msgstr "" + #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 -#: src/view/screens/Profile.tsx:525 +#: src/view/screens/Profile.tsx:539 msgid "No likes yet" msgstr "็›ฎๅ‰้‚„ๆฒ’ๆœ‰ๅ–œๆญก" @@ -8135,7 +8117,12 @@ msgstr "ๆฒ’ๆœ‰ๅˆ—่กจ" msgid "No longer following {0}" msgstr "ๆˆๅŠŸๅ–ๆถˆ่ทŸ้šจ {0}" -#: src/view/screens/Profile.tsx:471 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:27 +msgid "No media filter" +msgstr "" + +#: src/view/screens/Profile.tsx:485 msgid "No media yet" msgstr "็›ฎๅ‰้‚„ๆฒ’ๆœ‰ไปปไฝ•ๅช’้ซ”ๅ…งๅฎน" @@ -8143,7 +8130,7 @@ msgstr "็›ฎๅ‰้‚„ๆฒ’ๆœ‰ไปปไฝ•ๅช’้ซ”ๅ…งๅฎน" msgid "No messages yet" msgstr "็›ฎๅ‰้‚„ๆฒ’ๆœ‰่จŠๆฏ" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:24 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." msgstr "ๅ‘Šๅˆฅ้‚ฃไบ›ๅ……ๆปฟๅžƒๅœพ่ณ‡่จŠ็š„ๆผ”็ฎ—ๆณ•๏ผŒๆ‰พๅˆฐๅฐๆ‚จๆœ‰ๅˆฉ่€Œ้žๆœ‰ๅฎณ็š„ๅ‹•ๆ…‹ๆบใ€‚" @@ -8180,16 +8167,21 @@ msgstr "ๅƒ…้™็™ผๅธƒ่€…ๅฏไปฅๅผ•็”จ้€™ๅ‰‡่ฒผๆ–‡ใ€‚" msgid "No one can send messages" msgstr "ๆฒ’ๆœ‰ไบบๅฏไปฅๅ‚ณ้€่จŠๆฏ" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:27 +msgid "No post filter" +msgstr "" + #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" msgstr "้€™่ฃก็›ฎๅ‰้‚„ๆฒ’ๆœ‰ไปปไฝ•่ฒผๆ–‡" -#: src/screens/Profile/Sections/Feed.tsx:81 -#: src/view/screens/Profile.tsx:430 +#: src/screens/Profile/Sections/Feed.tsx:84 +#: src/view/screens/Profile.tsx:443 msgid "No posts yet" msgstr "็›ฎๅ‰้‚„ๆฒ’ๆœ‰ไปปไฝ•่ฒผๆ–‡" -#: src/view/com/post-thread/PostQuotes.tsx:107 +#: src/view/com/post-thread/PostQuotes.tsx:114 msgid "No quotes yet" msgstr "็›ฎๅ‰้‚„ๆฒ’ๆœ‰ๅผ•็”จ" @@ -8198,11 +8190,7 @@ msgstr "็›ฎๅ‰้‚„ๆฒ’ๆœ‰ๅผ•็”จ" msgid "No recent GIFs yet. Pick one to see it here." msgstr "้‚„ๆฒ’ๆœ‰ๆœ€่ฟ‘ไฝฟ็”จ็š„ GIFsใ€‚่ฉฆ่‘—ๅœจ่ฒผๆ–‡ๅŠ ๅ…ฅ GIF ๅ†ๅ›žไพ†็œ‹็œ‹ๅงใ€‚" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 -msgid "No replies" -msgstr "็„กๅ›ž่ฆ†" - -#: src/view/screens/Profile.tsx:456 +#: src/view/screens/Profile.tsx:470 msgid "No replies yet" msgstr "็›ฎๅ‰้‚„ๆฒ’ๆœ‰ไปปไฝ•ๅ›ž่ฆ†" @@ -8217,13 +8205,13 @@ msgstr "ๆฒ’ๆœ‰็ตๆžœ" #: src/components/dialogs/SearchablePeopleList.tsx:250 #: src/components/dms/AddMembersFlow.tsx:257 -#: src/components/dms/InitiateChatFlow.tsx:376 +#: src/components/dms/InitiateChatFlow.tsx:469 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "ๆฒ’ๆœ‰็ตๆžœ" #. placeholder {0}: interestsDisplayNames[selectedInterest] -#: src/screens/Search/Explore.tsx:828 +#: src/screens/Search/Explore.tsx:817 msgid "No results for \"{0}\"." msgstr "ๆ‰พไธๅˆฐ็ฌฆๅˆใ€Œ{0}ใ€็š„็ตๆžœใ€‚" @@ -8236,23 +8224,23 @@ msgstr "ๆ‰พไธๅˆฐ็ตๆžœ" msgid "No results found for \"{query}\"" msgstr "ๆ‰พไธๅˆฐ็ฌฆๅˆใ€Œ{query}ใ€็š„็ตๆžœ" -#: src/screens/Search/SearchResults.tsx:206 +#: src/screens/Search/SearchResults.tsx:233 msgid "No results found for โ€œ<0>{query}โ€ with advanced search filters applied." msgstr "ๅฅ—็”จ้€ฒ้šŽๆœๅฐ‹็ฏฉ้ธๆขไปถๅพŒ๏ผŒๆ‰พไธๅˆฐ็ฌฆๅˆใ€Œ<0>{query}ใ€็š„็ตๆžœใ€‚" -#: src/screens/Search/SearchResults.tsx:218 +#: src/screens/Search/SearchResults.tsx:245 msgid "No results found for โ€œ<0>{query}โ€." msgstr "ๆ‰พไธๅˆฐ็ฌฆๅˆใ€Œ<0>{query}ใ€็š„็ตๆžœใ€‚" -#: src/screens/Search/SearchResults.tsx:212 +#: src/screens/Search/SearchResults.tsx:239 msgid "No results found for your query with advanced search filters applied." msgstr "ๅฅ—็”จ้€ฒ้šŽๆœๅฐ‹็ฏฉ้ธๆขไปถๅพŒ๏ผŒๆ‰พไธๅˆฐ็ฌฆๅˆๆ‚จๆŸฅ่ฉข็š„็ตๆžœใ€‚" -#: src/screens/Search/Explore.tsx:832 +#: src/screens/Search/Explore.tsx:821 msgid "No results." msgstr "ๆฒ’ๆœ‰็ตๆžœใ€‚" -#: src/view/screens/Profile.tsx:557 +#: src/view/screens/Profile.tsx:571 msgid "No Starter Packs yet" msgstr "็›ฎๅ‰้‚„ๆฒ’ๆœ‰ๆ–ฐๆ‰‹ๅŒ…" @@ -8265,7 +8253,7 @@ msgstr "ไธ็”จไบ†๏ผŒ่ฌ่ฌ" msgid "No translation received from your device." msgstr "็„กๆณ•ๅพžๆ‚จ็š„่ฃ็ฝฎๅ–ๅพ—็ฟป่ญฏ็ตๆžœใ€‚" -#: src/view/screens/Profile.tsx:498 +#: src/view/screens/Profile.tsx:512 msgid "No video posts yet" msgstr "็›ฎๅ‰้‚„ๆฒ’ๆœ‰ไปปไฝ•ๅฝฑ็‰‡่ฒผๆ–‡" @@ -8278,7 +8266,7 @@ msgstr "ๆฒ’ๆœ‰ไบบ" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "้‚„ๆฒ’ๆœ‰ไบบๅฐๆญค่กจ็คบๅ–œๆญก๏ผŒไนŸ่จฑๆ‚จๅฏไปฅๆˆ็‚บ็ฌฌไธ€ๅ€‹๏ผ" -#: src/view/com/post-thread/PostQuotes.tsx:109 +#: src/view/com/post-thread/PostQuotes.tsx:116 msgid "Nobody has quoted this yet. Maybe you should be the first!" msgstr "้‚„ๆฒ’ๆœ‰ไบบๅผ•็”จ้€™ๅ‰‡่ฒผๆ–‡๏ผŒไนŸ่จฑๆ‚จๅฏไปฅๆˆ็‚บ็ฌฌไธ€ๅ€‹๏ผ" @@ -8298,6 +8286,10 @@ msgstr "้ž่‡ช้ก˜็š„่ฆชๅฏ†ๅฝฑๅƒ (NCII)" msgid "Non-sexual Nudity" msgstr "้ž่‰ฒๆƒ…่ฃธ้œฒ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:220 +msgid "None" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:263 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:266 msgid "None of these words" @@ -8316,8 +8308,8 @@ msgstr "ๆญคๅŠŸ่ƒฝ็„กๆณ•ๅœจ้€™ๅ€‹ๅนณๅฐไธŠไฝฟ็”จใ€‚" msgid "Not followed by anyone youโ€™re following" msgstr "ๆฒ’ๆœ‰่ขซไปปไฝ•ๆ‚จ่ช่ญ˜็š„ไบบ่ทŸ้šจ" -#: src/Navigation.tsx:168 -#: src/view/screens/Profile.tsx:132 +#: src/Navigation.tsx:169 +#: src/view/screens/Profile.tsx:133 msgid "Not Found" msgstr "ๆ‰พไธๅˆฐ" @@ -8333,7 +8325,7 @@ msgstr "้—œๆ–ผๅˆ†ไบซ็š„ๆณจๆ„ไบ‹้ …" msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "่จป๏ผšBluesky ๆ˜ฏไธ€ๅ€‹้–‹ๆ”พ็š„ๅ…ฌๅ…ฑ็คพ็พค็ถฒ่ทฏใ€‚้€™้ …่จญๅฎšๅƒ…้™ๅˆถๆ‚จ็š„ๅ…งๅฎนๅœจ Bluesky ๅฎ˜ๆ–นๆ‡‰็”จ็จ‹ๅผๅ’Œ็ถฒ็ซ™ไธŠ็š„ๅฏ่ฆ‹ๅบฆ๏ผŒๅ…ถไป–็ฌฌไธ‰ๆ–นๆ‡‰็”จ็จ‹ๅผๅฏ่ƒฝไธๆœƒ้ตๅพช้€™้ …่จญๅฎšใ€‚ๆ‚จ็š„ๅ…งๅฎนไปๅฏ่ƒฝ่ขซๅ…ถไป–ๆ‡‰็”จ็จ‹ๅผๅ’Œ็ถฒ็ซ™้กฏ็คบ็ตฆๆœช็™ปๅ…ฅ็š„ไฝฟ็”จ่€…ใ€‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:133 msgid "Note: This post is only visible to logged-in users." msgstr "่จป๏ผš้€™ๅ‰‡่ฒผๆ–‡ๅƒ…้™ๅทฒ็™ปๅ…ฅ็š„ไฝฟ็”จ่€…ๅฏไปฅๆชข่ฆ–ใ€‚" @@ -8342,8 +8334,8 @@ msgid "Nothing saved yet" msgstr "้‚„ๆฒ’ๆœ‰ๆ”ถ่—ไปปไฝ•ๅ…งๅฎน" #: src/components/dialogs/NotificationSettingsDialog.tsx:72 -#: src/Navigation.tsx:452 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:453 +#: src/Navigation.tsx:540 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "้€š็Ÿฅ่จญๅฎš" @@ -8353,11 +8345,12 @@ msgstr "้€š็Ÿฅ่จญๅฎš" msgid "Notification sounds" msgstr "้€š็Ÿฅ้Ÿณๆ•ˆ" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:765 +#: src/Navigation.tsx:535 +#: src/Navigation.tsx:774 #: src/screens/Messages/Settings.tsx:255 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:126 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 +#: src/screens/Settings/NotificationSettings/index.tsx:125 #: src/screens/Settings/Settings.tsx:198 #: src/screens/Settings/Settings.tsx:201 #: src/view/screens/Notifications.tsx:128 @@ -8396,7 +8389,7 @@ msgstr "็ณŸ็ณ•๏ผ" #. Confirm button text. #: src/components/contacts/screens/GetContacts.tsx:317 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 #: src/screens/Settings/AppIconSettings/index.tsx:46 #: src/screens/Settings/AppIconSettings/index.tsx:232 msgid "OK" @@ -8404,10 +8397,10 @@ msgstr "ๅฅฝ็š„" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:733 -#: src/components/dms/MessageItem.tsx:742 +#: src/components/dms/InitiateChatFlow.tsx:838 +#: src/components/dms/MessageItem.tsx:743 #: src/screens/Login/PasswordUpdatedForm.tsx:35 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 msgid "Okay" msgstr "ไบ†่งฃ" @@ -8431,18 +8424,20 @@ msgid "Onboarding reset" msgstr "้‡ๆ–ฐ้–‹ๅง‹ๅ…ฅ้–€ๅผ•ๅฐŽ" #: src/components/dms/dialogs/NewChatDialog.tsx:117 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:133 msgid "One of the selected recipients does not allow group chats." msgstr "้ธๆ“‡็š„้ƒจๅˆ†ๅฐ่ฑก้ธๆ“‡ไธๆŽฅๅ—็พค็ต„่Šๅคฉใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:100 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:116 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "้ธๆ“‡็š„้ƒจๅˆ†ๅฐ่ฑกๅทฒๅฐ้Ž–ๆ‚จ๏ผŒ็„กๆณ•ๅ‚ณ้€่จŠๆฏใ€‚" -#: src/view/com/composer/Composer.tsx:933 +#: src/view/com/composer/Composer.tsx:939 msgid "One or more GIFs is missing alt text." msgstr "่‡ณๅฐ‘ๆœ‰ไธ€ๅผต GIF ็ผบๅฐ‘ไบ†ๆ›ฟไปฃๆ–‡ๅญ—ใ€‚" -#: src/view/com/composer/Composer.tsx:930 +#: src/view/com/composer/Composer.tsx:936 msgid "One or more images is missing alt text." msgstr "่‡ณๅฐ‘ๆœ‰ไธ€ๅผตๅœ–็‰‡็ผบๅฐ‘ไบ†ๆ›ฟไปฃๆ–‡ๅญ—ใ€‚" @@ -8454,11 +8449,11 @@ msgstr "่‡ณๅฐ‘ๆœ‰ไธ€ๅ€‹้ธๆ“‡็š„ๆช”ๆกˆ็‚บไธๆ”ฏๆด็š„ๆ ผๅผใ€‚" msgid "One or more of your selected files are too large. Maximum size is {VIDEO_MAX_SIZE_MB}ย MB." msgstr "่‡ณๅฐ‘ๆœ‰ไธ€ๅ€‹้ธๆ“‡็š„ๆช”ๆกˆๅคชๅคงไบ†ใ€‚ๆœ€ๅคงๆช”ๆกˆๅฐบๅฏธ็‚บ {VIDEO_MAX_SIZE_MB}ย MBใ€‚" -#: src/view/com/composer/Composer.tsx:736 +#: src/view/com/composer/Composer.tsx:742 msgid "One or more posts are too long to save as a draft. {MAX_DRAFT_GRAPHEME_LENGTH, plural, one {The maximum number of characters is # character.} other {The maximum number of characters is # characters.}}" msgstr "ๆœ‰ไธ€ๅ‰‡ๆˆ–ๅคšๅ‰‡่ฒผๆ–‡ๅ…งๅฎน้Ž้•ท๏ผŒ็„กๆณ•ๅ„ฒๅญ˜็‚บ่‰็จฟใ€‚{MAX_DRAFT_GRAPHEME_LENGTH, plural, other {ๅญ—ๆ•ธไธŠ้™็‚บ # ๅ€‹ๅญ—ๅ…ƒใ€‚}}" -#: src/view/com/composer/Composer.tsx:940 +#: src/view/com/composer/Composer.tsx:946 msgid "One or more videos is missing alt text." msgstr "่‡ณๅฐ‘ๆœ‰ไธ€ๆฎตๅฝฑ็‰‡็ผบๅฐ‘ไบ†ๆ›ฟไปฃๆ–‡ๅญ—ใ€‚" @@ -8471,7 +8466,7 @@ msgstr "ๅชๆœ‰{0}ๅฏไปฅๅ›ž่ฆ†ใ€‚" #. placeholder {0}: result.accepted.length #. placeholder {1}: next.length #. placeholder {2}: next.length -#: src/view/com/composer/Composer.tsx:234 +#: src/view/com/composer/Composer.tsx:235 msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" msgstr "ๅƒ…ๆœƒไฟ็•™ๅ‰ {0} {2, plural, other {ๅผตๅœ–็‰‡}}๏ผˆๆ‚จไธŠๅ‚ณไบ† {1} ๅผต๏ผ‰๏ผ›ไธŠ้™็‚บ {MAX_GALLERY_IMAGES} ๅผตๅœ–็‰‡" @@ -8507,6 +8502,10 @@ msgstr "ๅชๆœ‰ {0} ่ทŸ้šจ็š„ไบบๅฏไปฅๅŠ ๅ…ฅใ€‚" msgid "Only people the chat owner follows can join" msgstr "ๅชๆœ‰็พค็ต„ๆ“ๆœ‰่€…่ทŸ้šจ็š„ไบบๅฏไปฅๅŠ ๅ…ฅ" +#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:23 +msgid "Only posts" +msgstr "" + #: src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx:23 msgid "Only posts with media" msgstr "ๅƒ…้™ๅŒ…ๅซๅช’้ซ”็š„่ฒผๆ–‡" @@ -8519,7 +8518,7 @@ msgstr "ๅƒ…้™ๅŒ…ๅซๅฝฑ็‰‡็š„่ฒผๆ–‡" msgid "Only replies" msgstr "ๅƒ…้™ๅ›ž่ฆ†" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:39 msgid "Only WebVTT (.vtt) files are supported" msgstr "ๅƒ…ๆ”ฏๆด WebVTT (.vtt) ๆช”ๆกˆ" @@ -8532,11 +8531,11 @@ msgid "Oops, this profile doesn't exist. Try scanning another one." msgstr "ๆŠฑๆญ‰๏ผŒๆญคๅ€‹ไบบๆช”ๆกˆไธๅญ˜ๅœจใ€‚ๆ›ไธ€ๅ€‹ QR Code ่ฉฆ่ฉฆใ€‚" #: src/components/Lists.tsx:184 -#: src/components/StarterPack/ProfileStarterPacks.tsx:363 -#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/components/StarterPack/ProfileStarterPacks.tsx:366 +#: src/components/StarterPack/ProfileStarterPacks.tsx:375 #: src/screens/Settings/AppPasswords.tsx:59 #: src/screens/Settings/components/ChangeHandleDialog.tsx:108 -#: src/view/screens/Profile.tsx:132 +#: src/view/screens/Profile.tsx:133 msgid "Oops!" msgstr "็ณŸ็ณ•๏ผ" @@ -8544,7 +8543,7 @@ msgstr "็ณŸ็ณ•๏ผ" msgid "Open advanced search options" msgstr "้–‹ๅ•Ÿ้€ฒ้šŽๆœๅฐ‹้ธ้ …" -#: src/screens/Onboarding/StepProfile/index.tsx:311 +#: src/screens/Onboarding/StepProfile/index.tsx:308 msgid "Open avatar creator" msgstr "้–‹ๅ•Ÿๅคง้ ญ่ฒผ็…งๅปบ็ซ‹ๅทฅๅ…ท" @@ -8570,21 +8569,22 @@ msgstr "้–‹ๅ•Ÿๅฐ่ฉฑ้ธ้ …" msgid "Open draft" msgstr "้–‹ๅ•Ÿ่‰็จฟ" -#: src/components/Layout/Header/index.tsx:167 +#: src/components/Layout/Header/index.tsx:168 msgid "Open drawer menu" msgstr "้–‹ๅ•Ÿๅด้‚Š้ธๅ–ฎ" #: src/screens/Messages/components/MessageComposer.tsx:213 -#: src/view/com/composer/Composer.tsx:2244 +#: src/view/com/composer/Composer.tsx:2250 msgid "Open emoji picker" msgstr "้–‹ๅ•Ÿ่กจๆƒ…็ฌฆ่™Ÿ้ธๆ“‡ๅ™จ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:214 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:228 msgid "Open feed info screen" msgstr "้–‹ๅ•Ÿๅ‹•ๆ…‹ๆบ่ณ‡่จŠ็•ซ้ข" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:338 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:343 msgid "Open feed options menu" msgstr "้–‹ๅ•Ÿๅ‹•ๆ…‹้ธ้ …้ธๅ–ฎ" @@ -8627,7 +8627,7 @@ msgstr "้–‹ๅ•Ÿๅ…งๅฎน็ฎก็†ๅต้Œฏ้ ้ข" msgid "Open muted words and tags settings" msgstr "้–‹ๅ•Ÿ้œ้Ÿณๅญ—่ฉžๅ’Œๆจ™็ฑค่จญๅฎš" -#: src/screens/Search/components/StarterPackCard.tsx:120 +#: src/screens/Search/components/StarterPackCard.tsx:128 msgid "Open pack" msgstr "้–‹ๅ•Ÿๆ–ฐๆ‰‹ๅŒ…" @@ -8681,7 +8681,7 @@ msgstr "้–‹ๅ•Ÿๅฐ่ฉฑๆก†ไพ†ๅ‘ๆ‚จ็š„่ฒผๆ–‡ๅŠ ๅ…ฅๅ…งๅฎน่ญฆๅ‘Š" #: src/screens/Login/LoginForm.tsx:645 msgid "Opens a dialog to change the hosting provider you sign in to" -msgstr "" +msgstr "้–‹ๅ•Ÿๅฐ่ฉฑๆก†ไพ†่ฎŠๆ›ดๆ‚จ็™ปๅ…ฅ็š„่จ—็ฎกๆœๅ‹™ๆไพ›่€…" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:151 msgid "Opens a dialog to choose who can interact with this post" @@ -8699,7 +8699,7 @@ msgstr "้–‹ๅ•Ÿๅต้Œฏ้ …็›ฎ็š„้กๅค–่ฉณ็ดฐ่ณ‡่จŠ" msgid "Opens alt text dialog" msgstr "้–‹ๅ•Ÿๆ›ฟไปฃๆ–‡ๅญ—ๅฐ่ฉฑๆก†" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:66 msgid "Opens camera on device" msgstr "้–‹ๅ•Ÿ่ฃ็ฝฎ็›ธๆฉŸ" @@ -8731,7 +8731,7 @@ msgid "Opens flow to create a new Bluesky account" msgstr "้–‹ๅ•Ÿๅปบ็ซ‹ๆ–ฐ็š„ Bluesky ๅธณ่™Ÿ็š„ๆต็จ‹" #: src/screens/Messages/JoinRequest.tsx:291 -#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:126 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "้–‹ๅ•Ÿ็™ปๅ…ฅ็พๆœ‰ Bluesky ๅธณ่™Ÿ็š„ๆต็จ‹" @@ -8917,7 +8917,7 @@ msgid "Password updated!" msgstr "ๆˆๅŠŸๆ›ดๆ–ฐๅฏ†็ขผ๏ผ" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:381 msgid "Pause" msgstr "ๆšซๅœ" @@ -8925,12 +8925,12 @@ msgstr "ๆšซๅœ" msgid "Pause GIF" msgstr "ๆšซๅœ GIF" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:332 msgid "Pause video" msgstr "ๆšซๅœๅฝฑ็‰‡" #: src/screens/ProfileList/index.tsx:167 -#: src/screens/Search/SearchResults.tsx:98 +#: src/screens/Search/SearchResults.tsx:107 #: src/screens/StarterPack/StarterPackScreen.tsx:195 msgid "People" msgstr "ไฝฟ็”จ่€…" @@ -8944,17 +8944,18 @@ msgid "People {ownerName} follows can request to join" msgstr "่ขซ {ownerName} ่ทŸ้šจ็š„ไบบๅฏไปฅ็”ณ่ซ‹ๅŠ ๅ…ฅ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:240 msgid "People followed by @{0}" msgstr "่ขซ @{0} ่ทŸ้šจ็š„ไบบ" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:232 +#: src/Navigation.tsx:233 msgid "People following @{0}" msgstr "่ทŸ้šจ @{0} ็š„ไบบ" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:178 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx:23 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:180 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:184 msgid "People I follow" msgstr "ๆˆ‘่ทŸ้šจ็š„ไบบ" @@ -8977,7 +8978,6 @@ msgid "People I follow can request to join" msgstr "ๆˆ‘่ทŸ้šจ็š„ไบบๅฏไปฅ็”ณ่ซ‹ๅŠ ๅ…ฅ" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 -#: src/screens/Search/components/AdvancedSearchDialog/FollowingDropdown.tsx:23 msgid "People you follow" msgstr "ๆ‚จ่ทŸ้šจ็š„ไบบ" @@ -9023,8 +9023,8 @@ msgid "Pictures meant for adults." msgstr "ๅฏ่ƒฝๆœƒๅผ•็™ผๆ€ง่ฏๆƒณ็š„ๅ…งๅฎนใ€‚" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:578 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "้‡˜้ธๅ‹•ๆ…‹ๆบ" @@ -9034,7 +9034,7 @@ msgstr "้‡˜้ธๅ‹•ๆ…‹ๆบ" msgid "Pin to home" msgstr "้‡˜้ธๅˆฐ้ฆ–้ " -#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:385 msgid "Pin to Home" msgstr "้‡˜้ธๅˆฐ้ฆ–้ " @@ -9048,8 +9048,8 @@ msgid "Pinned" msgstr "ๅทฒ้‡˜้ธ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:166 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:180 msgid "Pinned {0} to Home" msgstr "ๆˆๅŠŸ้‡˜้ธ {0} ๅˆฐ้ฆ–้ " @@ -9063,7 +9063,7 @@ msgid "Pinned to your feeds" msgstr "ๆˆๅŠŸ้‡˜้ธๅˆฐๆ‚จ็š„ๅ‹•ๆ…‹ๆบ" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:168 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:382 msgid "Play" msgstr "ๆ’ญๆ”พ" @@ -9076,8 +9076,8 @@ msgstr "ๆ’ญๆ”พ {0}" msgid "Play GIF" msgstr "ๆ’ญๆ”พ GIF" -#: src/components/Post/Embed/VideoEmbed/index.tsx:169 -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +#: src/components/Post/Embed/VideoEmbed/index.tsx:178 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:333 msgid "Play video" msgstr "ๆ’ญๆ”พๅฝฑ็‰‡" @@ -9109,11 +9109,11 @@ msgstr "่ซ‹็‚บๆ‚จๆ‰€็™ผๅธƒ็š„ๅช’้ซ”ๅ…งๅฎนไธŠๅŠ ๅ…ฅ้ฉ็•ถ็š„ๅ…งๅฎน่ญฆๅ‘Šๆจ™่จ˜ใ€‚ msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." msgstr "่ซ‹ๅ‰ๅพ€ๆ‚จ็š„้›ปๅญไฟก็ฎฑไปฅๅฎŒๆˆๆŽฅไธ‹ไพ†็š„็จ‹ๅบใ€‚็›ธ้—œ้ƒตไปถๆ‡‰่ฉฒๆœƒๅœจๅ…ฉๅˆ†้˜ๅ…งๅ‚ณ้€่‡ณๆ‚จ็š„ไฟก็ฎฑใ€‚" -#: src/screens/Signup/state.ts:294 +#: src/screens/Signup/state.ts:313 msgid "Please choose your handle." msgstr "่ซ‹้ธๆ“‡ๆ‚จ็š„ๅธณ่™Ÿไปฃ็ขผใ€‚" -#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/state.ts:305 #: src/screens/Signup/StepInfo/index.tsx:149 msgid "Please choose your password." msgstr "่ซ‹่จญๅฎšๆ‚จ็š„ๅฏ†็ขผใ€‚" @@ -9122,7 +9122,7 @@ 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 "่ซ‹ๆชข่ฆ–ๆˆ‘ๅ€‘ๅ‰›ๅ‰›ๅ‚ณ้€็š„้ƒตไปถ๏ผŒไธฆๆ‰“้–‹ๅ…ถไธญๅŒ…ๅซ็š„้€ฃ็ตไพ†้ฉ—่ญ‰ๆ‚จ็š„ๆ–ฐ้›ปๅญ้ƒตไปถๅœฐๅ€ใ€‚ๆ‚จ้œ€่ฆๅ…ˆๅฎŒๆˆๆญคๆญฅ้ฉŸๆ‰่ƒฝ็นผ็บŒไฝฟ็”จ Bluesky ็š„ๆ‰€ๆœ‰ๅŠŸ่ƒฝใ€‚" -#: src/screens/Signup/state.ts:309 +#: src/screens/Signup/state.ts:325 msgid "Please complete the verification captcha." msgstr "่ซ‹ๅฎŒๆˆไบบๆฉŸ้ฉ—่ญ‰ (Captcha)ใ€‚" @@ -9179,7 +9179,7 @@ msgstr "่ซ‹่ผธๅ…ฅๆ”ถๅˆฐ็š„้ฉ—่ญ‰็ขผไปฅๅŠๆƒณ่ฆไฝฟ็”จ็š„ๆ–ฐๅฏ†็ขผใ€‚" msgid "Please enter the security code we sent to your previous email address." msgstr "่ซ‹่ผธๅ…ฅๆˆ‘ๅ€‘ๅ…ˆๅ‰ๅ‚ณ้€ๅˆฐๆ‚จ้›ปๅญ้ƒตไปถๅœฐๅ€็š„้ฉ—่ญ‰็ขผใ€‚" -#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/state.ts:289 #: src/screens/Signup/StepInfo/index.tsx:122 msgid "Please enter your email." msgstr "่ซ‹่ผธๅ…ฅๆ‚จ็š„้›ปๅญ้ƒตไปถๅœฐๅ€ใ€‚" @@ -9261,7 +9261,7 @@ msgid "Please write your message below:" msgstr "่ซ‹ๅœจไธ‹ๅˆ—ๆฌ„ไฝๅกซๅฏซๆ‚จ็š„่จŠๆฏ๏ผš" #: src/lib/interests.ts:70 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:227 msgid "Politics" msgstr "ๆ”ฟๆฒป" @@ -9269,7 +9269,7 @@ msgstr "ๆ”ฟๆฒป" msgid "Porn" msgstr "่‰ฒๆƒ…" -#: src/view/com/composer/Composer.tsx:1889 +#: src/view/com/composer/Composer.tsx:1895 msgctxt "action" msgid "Post" msgstr "็™ผๅธƒ" @@ -9279,22 +9279,22 @@ msgctxt "description" msgid "Post" msgstr "่ฒผๆ–‡" -#: src/view/screens/Profile.tsx:475 -#: src/view/screens/Profile.tsx:476 +#: src/view/screens/Profile.tsx:489 +#: src/view/screens/Profile.tsx:490 msgid "Post a photo" msgstr "็™ผๅธƒไธ€ๅผต็…ง็‰‡" -#: src/view/screens/Profile.tsx:502 -#: src/view/screens/Profile.tsx:503 +#: src/view/screens/Profile.tsx:516 +#: src/view/screens/Profile.tsx:517 msgid "Post a video" msgstr "็™ผๅธƒไธ€ๆฎตๅฝฑ็‰‡" -#: src/view/com/composer/Composer.tsx:1887 +#: src/view/com/composer/Composer.tsx:1893 msgctxt "action" msgid "Post All" msgstr "ๅ…จ้ƒจ็™ผๅธƒ" -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1554 msgid "Post anyway" msgstr "ไป็„ถ็™ผๅธƒ" @@ -9303,10 +9303,10 @@ msgid "Post blocked" msgstr "่ฒผๆ–‡ๅทฒ่ขซๅฐ้Ž–" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:265 -#: src/Navigation.tsx:272 -#: src/Navigation.tsx:279 -#: src/Navigation.tsx:286 +#: src/Navigation.tsx:266 +#: src/Navigation.tsx:273 +#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 msgid "Post by @{0}" msgstr "@{0} ็š„่ฒผๆ–‡" @@ -9340,7 +9340,7 @@ msgstr "้€™ๅ‰‡่ฒผๆ–‡่ขซๆ‚จ้šฑ่—" msgid "Post interaction settings" msgstr "่ฒผๆ–‡ไบ’ๅ‹•่จญๅฎš" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:200 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "่ฒผๆ–‡ไบ’ๅ‹•่จญๅฎš" @@ -9369,9 +9369,10 @@ msgctxt "toast" msgid "Post pinned" msgstr "ๆˆๅŠŸ้‡˜้ธ่ฒผๆ–‡" -#: src/components/PostControls/BookmarkButton.tsx:67 -msgid "Post saved" -msgstr "ๆˆๅŠŸๆ”ถ่—่ฒผๆ–‡" +#. Include search results with or without replies +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:392 +msgid "Post type" +msgstr "" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -9381,15 +9382,12 @@ msgstr "ๆˆๅŠŸๅ–ๆถˆ้‡˜้ธ่ฒผๆ–‡" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:257 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:269 #: src/screens/ProfileList/index.tsx:167 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:216 #: src/screens/StarterPack/StarterPackScreen.tsx:197 -#: src/view/screens/Profile.tsx:234 +#: src/view/screens/Profile.tsx:236 msgid "Posts" msgstr "่ฒผๆ–‡" -#: src/screens/Search/components/AdvancedSearchDialog/RepliesDropdown.tsx:22 -msgid "Posts and replies" -msgstr "่ฒผๆ–‡ๅ’Œๅ›ž่ฆ†" - #: src/components/dialogs/MutedWords.tsx:123 msgid "Posts can be muted based on their text, their tags, or both. We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." msgstr "ๅฏไปฅๆ นๆ“šๆ–‡ๅญ—ใ€ๆจ™็ฑคๆˆ–็ตๅˆๅ…ฉ่€…ไพ†้œ้Ÿณ่ฒผๆ–‡ใ€‚ๆˆ‘ๅ€‘ๅปบ่ญฐ้ฟๅ…ๆ–ฐๅขžๅธธ็”จ็š„่ฉžๅฝ™๏ผŒๅฆๅ‰‡ๅฏ่ƒฝๅฐŽ่‡ดๅคง้‡่ฒผๆ–‡่ขซ้šฑ่—ใ€‚" @@ -9398,6 +9396,10 @@ msgstr "ๅฏไปฅๆ นๆ“šๆ–‡ๅญ—ใ€ๆจ™็ฑคๆˆ–็ตๅˆๅ…ฉ่€…ไพ†้œ้Ÿณ่ฒผๆ–‡ใ€‚ๆˆ‘ๅ€‘ๅปบ่ญฐ msgid "Posts hidden" msgstr "ๅทฒ้šฑ่—่ฒผๆ–‡" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:214 +msgid "Posts, Replies" +msgstr "" + #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "ๆฝ›ๅœจ่ชคๅฐŽๆ€ง้€ฃ็ต" @@ -9449,20 +9451,21 @@ msgstr "้šฑ็ง" msgid "Privacy and security" msgstr "้šฑ็ง่ˆ‡ๅฎ‰ๅ…จ" -#: src/Navigation.tsx:429 -#: src/Navigation.tsx:437 +#: src/Navigation.tsx:430 +#: src/Navigation.tsx:438 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "้šฑ็ง่ˆ‡ๅฎ‰ๅ…จ" +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:161 #: src/view/screens/Storybook/Admonitions.tsx:94 msgid "Privacy and Security settings" msgstr "้šฑ็ง่ˆ‡ๅฎ‰ๅ…จ่จญๅฎš" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:337 +#: src/Navigation.tsx:338 #: src/screens/Settings/AboutSettings.tsx:102 #: src/screens/Settings/AboutSettings.tsx:105 #: src/view/screens/PrivacyPolicy.tsx:25 @@ -9475,11 +9478,11 @@ msgstr "้šฑ็งๆฌŠๆ”ฟ็ญ–" msgid "Privacy violation of a minor" msgstr "ไพต็Šฏๆœชๆˆๅนด่€…้šฑ็ง" -#: src/view/com/composer/Composer.tsx:2685 +#: src/view/com/composer/Composer.tsx:2691 msgid "Processing GIF..." msgstr "ๆญฃๅœจ่™•็† GIFโ€ฆโ€ฆ" -#: src/view/com/composer/Composer.tsx:2687 +#: src/view/com/composer/Composer.tsx:2693 msgid "Processing video..." msgstr "ๆญฃๅœจ่™•็†ๅฝฑ็‰‡โ€ฆโ€ฆ" @@ -9526,22 +9529,22 @@ msgid "Public, sharable lists of users to mute or block in bulk." msgstr "ๅ…ฌ้–‹ใ€ๅฏๅˆ†ไบซ็š„ๅˆ—่กจ๏ผŒๅฏ็”จไพ†ๆ‰นๆฌก้œ้Ÿณๆˆ–ๅฐ้Ž–ๅธณ่™Ÿใ€‚" #. Accessibility label for button to publish a single post -#: src/view/com/composer/Composer.tsx:1873 +#: src/view/com/composer/Composer.tsx:1879 msgid "Publish post" msgstr "็™ผๅธƒ่ฒผๆ–‡" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1868 +#: src/view/com/composer/Composer.tsx:1874 msgid "Publish posts" msgstr "็™ผๅธƒ่ฒผๆ–‡" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1857 +#: src/view/com/composer/Composer.tsx:1863 msgid "Publish replies" msgstr "็™ผๅธƒๅ›ž่ฆ†" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1862 +#: src/view/com/composer/Composer.tsx:1868 msgid "Publish reply" msgstr "็™ผๅธƒๅ›ž่ฆ†" @@ -9599,12 +9602,12 @@ msgstr "ๅทฒๆ‹’็ต•ๅผ•็”จ่ฒผๆ–‡" #: src/lib/hooks/useNotificationHandler.ts:186 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:204 -#: src/screens/Settings/NotificationSettings/index.tsx:347 +#: src/screens/Settings/NotificationSettings/index.tsx:203 +#: src/screens/Settings/NotificationSettings/index.tsx:346 msgid "Quotes" msgstr "ๅผ•็”จ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:466 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:465 msgid "Quotes of this post" msgstr "ๅผ•็”จ้€™ๅ‰‡่ฒผๆ–‡" @@ -9647,7 +9650,7 @@ msgstr "้‡ๆ–ฐๅ•Ÿ็”จๆ‚จ็š„ๅธณ่™Ÿ" msgid "Read {0, plural, one {# more reply} other {# more replies}}" msgstr "็นผ็บŒ้–ฑ่ฎ€ {0, plural, other {# ๅ‰‡ๅ›ž่ฆ†}}" -#: src/screens/Search/SearchResults.tsx:249 +#: src/screens/Search/SearchResults.tsx:276 msgctxt "english-only-resource" msgid "Read about how to use advanced search filters" msgstr "้–ฑ่ฎ€ๅฆ‚ไฝ•ไฝฟ็”จ้€ฒ้šŽๆœๅฐ‹็ฏฉ้ธๅ™จ" @@ -9657,11 +9660,11 @@ msgstr "้–ฑ่ฎ€ๅฆ‚ไฝ•ไฝฟ็”จ้€ฒ้šŽๆœๅฐ‹็ฏฉ้ธๅ™จ" msgid "Read blog post" msgstr "้–ฑ่ฎ€้ƒจ่ฝๆ ผๆ–‡็ซ " -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read less" msgstr "้–ฑ่ฎ€่ผƒๅฐ‘" -#: src/screens/VideoFeed/index.tsx:1038 +#: src/screens/VideoFeed/index.tsx:1055 msgid "Read more" msgstr "้–ฑ่ฎ€ๆ›ดๅคš" @@ -9687,11 +9690,11 @@ msgstr "้–ฑ่ฎ€ Bluesky ้šฑ็งๆฌŠๆ”ฟ็ญ–" msgid "Read the Bluesky Terms of Service" msgstr "้–ฑ่ฎ€ Bluesky ๆœๅ‹™ๆขๆฌพ" -#: src/components/WelcomeModal.tsx:149 +#: src/components/WelcomeModal.tsx:144 msgid "Real conversations." msgstr "็œŸๅฏฆ็š„ๅฐ่ฉฑใ€‚" -#: src/components/WelcomeModal.tsx:147 +#: src/components/WelcomeModal.tsx:142 msgid "Real people." msgstr "็œŸๅฏฆ็š„ไฝฟ็”จ่€…ใ€‚" @@ -9721,10 +9724,6 @@ msgstr "ๆœ€่ฟ‘็š„ๆœๅฐ‹่จ˜้Œ„" msgid "Recently used" msgstr "ๆœ€่ฟ‘ไฝฟ็”จ" -#: src/screens/Search/modules/ExploreRecommendations.tsx:55 -msgid "Recommended" -msgstr "ๆŽจ่–ฆ" - #: src/screens/Messages/components/MessageListError.tsx:19 msgid "Reconnect" msgstr "้‡ๆ–ฐ้€ฃ็ทš" @@ -9748,7 +9747,7 @@ msgstr "ๆ‹’็ต•ๅฐ่ฉฑ้‚€่ซ‹" msgid "Reject join request" msgstr "ๆ‹’็ต•ๅŠ ๅ…ฅ็”ณ่ซ‹" -#: src/screens/Messages/ChatList.tsx:425 +#: src/screens/Messages/ChatList.tsx:424 #: src/screens/Messages/Inbox.tsx:206 msgid "Reload conversations" msgstr "้‡ๆ–ฐ่ผ‰ๅ…ฅๅฐ่ฉฑ" @@ -9766,7 +9765,7 @@ msgstr "้‡ๆ–ฐ่ผ‰ๅ…ฅๅฐ่ฉฑ" #: src/screens/Messages/ConversationSettings/Member.tsx:162 #: src/screens/Messages/ConversationSettings/prompts.tsx:178 #: src/screens/Moderation/index.tsx:477 -#: src/screens/Settings/Settings.tsx:682 +#: src/screens/Settings/Settings.tsx:683 #: src/view/com/posts/PostFeedErrorMessage.tsx:221 msgid "Remove" msgstr "ๅˆช้™ค" @@ -9792,8 +9791,8 @@ msgstr "่ฆ็งป้™ค {displayName} ๅ—Ž๏ผŸ" msgid "Remove {q}" msgstr "็งป้™ค {q}" -#: src/screens/Settings/Settings.tsx:663 -#: src/screens/Settings/Settings.tsx:666 +#: src/screens/Settings/Settings.tsx:664 +#: src/screens/Settings/Settings.tsx:667 msgid "Remove account" msgstr "็งป้™คๅธณ่™Ÿ" @@ -9845,15 +9844,15 @@ msgstr "็งป้™ค็ฏฉ้ธๆขไปถ" msgid "Remove from chat" msgstr "ๅพžๅฐ่ฉฑไธญ็งป้™ค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:373 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 msgid "Remove from my feeds" msgstr "ๅพžๆˆ‘็š„ๅ‹•ๆ…‹ๆบไธญๅˆช้™ค" -#: src/screens/Settings/Settings.tsx:676 +#: src/screens/Settings/Settings.tsx:677 msgid "Remove from quick access?" msgstr "่ฆๅพžๅฟซ้€Ÿๅญ˜ๅ–ไธญ็งป้™คๅ—Ž๏ผŸ" @@ -9862,7 +9861,7 @@ msgstr "่ฆๅพžๅฟซ้€Ÿๅญ˜ๅ–ไธญ็งป้™คๅ—Ž๏ผŸ" msgid "Remove from saved feeds" msgstr "ๅพžๅ„ฒๅญ˜็š„ๅ‹•ๆ…‹ๆบไธญๅˆช้™ค" -#: src/components/PostControls/BookmarkButton.tsx:143 +#: src/components/PostControls/BookmarkButton.tsx:120 #: src/screens/Bookmarks.tsx:252 msgid "Remove from saved posts" msgstr "ๅพž่ฒผๆ–‡ๆ”ถ่—ไธญๅˆช้™ค" @@ -9880,8 +9879,8 @@ msgstr "ๅˆช้™คๅœ–็‰‡" msgid "Remove live status" msgstr "ๅˆช้™ค็›ดๆ’ญ็‹€ๆ…‹" -#: src/components/moderation/BlockDialog.tsx:365 -#: src/components/moderation/BlockDialog.tsx:372 +#: src/components/moderation/BlockDialog.tsx:362 +#: src/components/moderation/BlockDialog.tsx:369 msgid "Remove member" msgstr "็งป้™คๆˆๅ“ก" @@ -9943,7 +9942,7 @@ msgstr "ๆˆๅŠŸๅพžๅˆ—่กจไธญๅˆช้™ค" msgid "Removed from saved feeds" msgstr "ๆˆๅŠŸๅพžๅ„ฒๅญ˜็š„ๅ‹•ๆ…‹ๆบไธญๅˆช้™ค" -#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/components/PostControls/BookmarkButton.tsx:88 #: src/screens/Bookmarks.tsx:211 msgid "Removed from saved posts" msgstr "ๆˆๅŠŸๅพž่ฒผๆ–‡ๆ”ถ่—ไธญๅˆช้™ค" @@ -9952,7 +9951,7 @@ msgstr "ๆˆๅŠŸๅพž่ฒผๆ–‡ๆ”ถ่—ไธญๅˆช้™ค" msgid "Removed from starter pack" msgstr "ๆˆๅŠŸๅพžๆ–ฐๆ‰‹ๅŒ…ๅˆช้™ค" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:128 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -10003,24 +10002,25 @@ msgctxt "description" msgid "Replied to you" msgstr "ๅฐๆ‚จๅ›ž่ฆ†" -#: src/components/dms/MessageItem.tsx:925 +#: src/components/dms/MessageItem.tsx:926 msgid "Replied-to message from {senderName}, tap to scroll to it" msgstr "ไพ†่‡ช {senderName} ็š„ๅ›ž่ฆ†่จŠๆฏ๏ผŒ้ปž้ธไปฅๆฒๅ‹•่‡ณ่ฉฒ่จŠๆฏ" -#: src/components/dms/MessageItem.tsx:923 +#: src/components/dms/MessageItem.tsx:924 msgid "Replied-to message was sent before you joined" msgstr "ๆญคๅ›ž่ฆ†็š„่จŠๆฏๅœจๆ‚จๅŠ ๅ…ฅๅ‰ๅ‚ณ้€" -#: src/components/dms/MessageItem.tsx:926 +#: src/components/dms/MessageItem.tsx:927 msgid "Replied-to message, tap to scroll to it" msgstr "ๅ›ž่ฆ†็š„่จŠๆฏ๏ผŒ้ปž้ธไปฅๆฒๅ‹•่‡ณ่ฉฒ่จŠๆฏ" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:172 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/index.tsx:331 -#: src/view/screens/Profile.tsx:235 +#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:218 +#: src/screens/Settings/NotificationSettings/index.tsx:181 +#: src/screens/Settings/NotificationSettings/index.tsx:330 +#: src/view/screens/Profile.tsx:237 msgid "Replies" msgstr "ๅ›ž่ฆ†" @@ -10037,7 +10037,7 @@ msgstr "้€™ๅ‰‡่ฒผๆ–‡็š„ๅ›ž่ฆ†ๅทฒ้—œ้–‰ใ€‚" msgid "Reply" msgstr "ๅ›ž่ฆ†" -#: src/view/com/composer/Composer.tsx:1885 +#: src/view/com/composer/Composer.tsx:1891 msgctxt "action" msgid "Reply" msgstr "ๅ›ž่ฆ†" @@ -10098,8 +10098,8 @@ msgstr "ๆชข่ˆ‰ๅฐ่ฉฑ" msgid "Report dialog" msgstr "ๆชข่ˆ‰ๅฐ่ฉฑๆก†" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:596 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:602 msgid "Report feed" msgstr "ๆชข่ˆ‰ๅ‹•ๆ…‹ๆบ" @@ -10207,18 +10207,18 @@ msgid "Reposted by you" msgstr "็”ฑๆ‚จ่ฝ‰็™ผ" #: src/lib/hooks/useNotificationHandler.ts:165 -#: src/screens/Settings/NotificationSettings/index.tsx:215 -#: src/screens/Settings/NotificationSettings/index.tsx:356 +#: src/screens/Settings/NotificationSettings/index.tsx:214 +#: src/screens/Settings/NotificationSettings/index.tsx:355 msgid "Reposts" msgstr "่ฝ‰็™ผ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:445 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:444 msgid "Reposts of this post" msgstr "่ฝ‰็™ผ้€™ๅ‰‡่ฒผๆ–‡" #: src/lib/hooks/useNotificationHandler.ts:207 -#: src/screens/Settings/NotificationSettings/index.tsx:252 -#: src/screens/Settings/NotificationSettings/index.tsx:387 +#: src/screens/Settings/NotificationSettings/index.tsx:251 +#: src/screens/Settings/NotificationSettings/index.tsx:373 msgid "Reposts of your reposts" msgstr "่ฝ‰็™ผๆ‚จ่ฝ‰็™ผ็š„่ฒผๆ–‡" @@ -10253,7 +10253,7 @@ msgstr "ๅทฒ้€ๅ‡บ็”ณ่ซ‹" msgid "Requests" msgstr "้‚€่ซ‹" -#: src/Navigation.tsx:510 +#: src/Navigation.tsx:519 #: src/screens/Messages/JoinRequests.tsx:59 #: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" @@ -10333,7 +10333,7 @@ msgstr "้‡่จญๅฏ†็ขผ" #: src/screens/Login/LoginForm.tsx:422 msgid "Reset your password by sending a code to your email" -msgstr "" +msgstr "้€้Žๅ‚ณ้€้ฉ—่ญ‰็ขผ่‡ณๆ‚จ็š„้›ปๅญ้ƒตไปถไพ†้‡่จญๅฏ†็ขผ" #: src/screens/Settings/FindContactsSettings.tsx:544 #: src/screens/Settings/FindContactsSettings.tsx:560 @@ -10358,10 +10358,10 @@ msgstr "้‡ๆ–ฐๅŸท่กŒไธŠไธ€ๅ€‹ๅ‡บ็พ้Œฏ่ชค็š„ๅ‹•ไฝœ" #: src/components/moderation/ReportDialog/index.tsx:297 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:56 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoFallback.tsx:59 -#: src/components/StarterPack/ProfileStarterPacks.tsx:377 +#: src/components/StarterPack/ProfileStarterPacks.tsx:380 #: src/screens/Login/LoginForm.tsx:531 #: src/screens/Login/LoginForm.tsx:537 -#: src/screens/Messages/ChatList.tsx:430 +#: src/screens/Messages/ChatList.tsx:429 #: src/screens/Messages/components/MessageListError.tsx:24 #: src/screens/Messages/Inbox.tsx:211 #: src/screens/Messages/JoinRequests.tsx:361 @@ -10395,7 +10395,7 @@ msgstr "่ฟ”ๅ›ž้ฆ–้ " #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 -#: src/screens/VideoFeed/index.tsx:1223 +#: src/screens/VideoFeed/index.tsx:1240 #: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "่ฟ”ๅ›žไธŠไธ€้ " @@ -10406,7 +10406,7 @@ msgstr "่ฟ”ๅ›žไธŠไธ€ๆญฅ" #: src/screens/Login/LoginForm.tsx:613 msgid "Reveal password" -msgstr "" +msgstr "้กฏ็คบๅฏ†็ขผ" #. Accessibility label for the icon-only pill that filters the GIF picker to sad/crying GIFs. #: src/features/gifPicker/components/GifCategoryPills.tsx:75 @@ -10446,27 +10446,27 @@ msgstr "ๅ„ฒๅญ˜ๅ‡บ็”Ÿๆ—ฅๆœŸ" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "ๅ„ฒๅญ˜่ฎŠๆ›ด" -#: src/view/com/composer/Composer.tsx:1501 +#: src/view/com/composer/Composer.tsx:1507 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "ๅ„ฒๅญ˜่ฎŠๆ›ด๏ผŸ" -#: src/view/com/composer/Composer.tsx:1529 +#: src/view/com/composer/Composer.tsx:1535 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "ๅ„ฒๅญ˜่‰็จฟ" -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1509 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "ๅ„ฒๅญ˜่‰็จฟ๏ผŸ" -#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/Lightbox/chrome/ImageMenu.tsx:99 #: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 @@ -10487,8 +10487,8 @@ msgstr "ๅ„ฒๅญ˜ QR Code" msgid "Save these options for next time" msgstr "ๅ„ฒๅญ˜้€™ไบ›้ธ้ …ไปฅไพ›ไธ‹ๆฌกไฝฟ็”จ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:368 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:374 msgid "Save to my feeds" msgstr "ๅ„ฒๅญ˜ๅˆฐๆˆ‘็š„ๅ‹•ๆ…‹ๆบ" @@ -10504,12 +10504,12 @@ msgid "Saved Feeds" msgstr "ๅทฒๅ„ฒๅญ˜็š„ๅ‹•ๆ…‹ๆบ" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:570 +#: src/Navigation.tsx:579 #: src/screens/Bookmarks.tsx:59 msgid "Saved Posts" msgstr "่ฒผๆ–‡ๆ”ถ่—" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:138 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "ๆˆๅŠŸๅ„ฒๅญ˜ๅˆฐๆ‚จ็š„ๅ‹•ๆ…‹ๆบ" @@ -10520,8 +10520,8 @@ msgstr "ๆˆๅŠŸๅ„ฒๅญ˜ๅˆฐๆ‚จ็š„ๅ‹•ๆ…‹ๆบ" msgid "Say hello!" msgstr "่ชชๅฅใ€Œไฝ ๅฅฝ๏ผ๐Ÿ‘‹ใ€" -#: src/screens/Messages/ChatList.tsx:223 -#: src/screens/Messages/ChatList.tsx:447 +#: src/screens/Messages/ChatList.tsx:222 +#: src/screens/Messages/ChatList.tsx:446 msgid "Say hi to someone" msgstr "่ฉฆ่‘—่ทŸๆŸไบบๆ‰“ๅ€‹ๆ‹›ๅ‘ผๅง" @@ -10535,7 +10535,7 @@ msgstr "ๆŽƒๆ" #: src/features/inviteFriends/InviteScannerScreen.tsx:82 #: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 -#: src/Navigation.tsx:317 +#: src/Navigation.tsx:318 msgid "Scan QR code" msgstr "ๆŽƒๆ QR Code" @@ -10543,15 +10543,15 @@ msgstr "ๆŽƒๆ QR Code" msgid "Science" msgstr "็ง‘ๅญธ" -#: src/components/InterestTabs.tsx:255 +#: src/components/InterestTabs.tsx:258 msgid "Scroll left" msgstr "ๅ‘ๅทฆๆฒๅ‹•" -#: src/components/InterestTabs.tsx:289 +#: src/components/InterestTabs.tsx:292 msgid "Scroll right" msgstr "ๅ‘ๅณๆฒๅ‹•" -#: src/components/dms/MessageItem.tsx:819 +#: src/components/dms/MessageItem.tsx:820 msgid "Scroll to the message this is replying to" msgstr "ๆฒๅ‹•่‡ณๆญคๅ›ž่ฆ†ๆ‰€ๅฐๆ‡‰็š„่จŠๆฏ" @@ -10564,8 +10564,8 @@ msgstr "ๆฒๅ‹•ๅˆฐ้ ‚้ƒจ" #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:218 #: src/screens/Search/components/AdvancedSearchDialog/index.tsx:224 -#: src/screens/Search/Shell.tsx:552 -#: src/screens/Search/Shell.tsx:616 +#: src/screens/Search/Shell.tsx:549 +#: src/screens/Search/Shell.tsx:612 #: src/screens/Search/Shell.tsx:753 #: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" @@ -10573,7 +10573,7 @@ msgstr "ๆœๅฐ‹" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:259 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "ๆœๅฐ‹ @{0} ็š„่ฒผๆ–‡" @@ -10606,17 +10606,17 @@ msgstr "ๆœๅฐ‹ใ€Œ{searchText}ใ€" #: src/screens/Search/components/SearchHistory.tsx:136 msgid "Search for {q}" -msgstr "" +msgstr "ๆœๅฐ‹ {q}" #: src/screens/StarterPack/Wizard/index.tsx:541 msgid "Search for feeds that you want to suggest to others." msgstr "ๆœๅฐ‹ๆ‚จๆƒณๆŽจ่–ฆ็ตฆๅˆฅไบบ็š„ๅ‹•ๆ…‹ๆบใ€‚" -#: src/screens/Search/Explore.tsx:378 +#: src/screens/Search/Explore.tsx:373 msgid "Search for more accounts" msgstr "ๆœๅฐ‹ๆ›ดๅคšๅธณ่™Ÿ" -#: src/screens/Search/Explore.tsx:456 +#: src/screens/Search/Explore.tsx:452 msgid "Search for more feeds" msgstr "ๆœๅฐ‹ๆ›ดๅคšๅ‹•ๆ…‹ๆบ" @@ -10630,7 +10630,7 @@ msgid "Search GIFs" msgstr "ๆœๅฐ‹ GIF" #: src/screens/Hashtag.tsx:228 -#: src/screens/Search/SearchResults.tsx:383 +#: src/screens/Search/SearchResults.tsx:410 msgid "Search is currently unavailable when logged out" msgstr "ๆœช็™ปๅ…ฅ็‹€ๆ…‹็„กๆณ•ไฝฟ็”จๆœๅฐ‹ๅŠŸ่ƒฝ" @@ -10707,17 +10707,22 @@ msgstr "ๆชข่ฆ–ๆญคไฝฟ็”จ่€…ๅŒ…ๅซ #{tag} ็š„่ฒผๆ–‡" msgid "See jobs at Bluesky" msgstr "็€่ฆฝๅœจ Bluesky ็š„ๅทฅไฝœๆฉŸๆœƒ" -#: src/components/FeedInterstitials.tsx:491 -#: src/components/FeedInterstitials.tsx:549 +#: src/components/FeedInterstitials.tsx:495 +#: src/components/FeedInterstitials.tsx:554 +#: src/components/interstitials/FeedTrendingTopics.tsx:106 msgid "See more" msgstr "ๆชข่ฆ–ๆ›ดๅคš" -#: src/components/FeedInterstitials.tsx:472 +#: src/components/FeedInterstitials.tsx:475 msgid "See more suggested profiles" msgstr "ๆชข่ฆ–ๆ›ดๅคšๅปบ่ญฐๅ€‹ไบบๆช”ๆกˆ" -#: src/view/com/profile/ProfileFollows.tsx:190 -#: src/view/com/profile/ProfileFollows.tsx:191 +#: src/components/interstitials/FeedTrendingTopics.tsx:92 +msgid "See more trending topics" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:204 +#: src/view/com/profile/ProfileFollows.tsx:205 msgid "See suggested accounts" msgstr "ๆชข่ฆ–ๅปบ่ญฐๅธณ่™Ÿ" @@ -10731,7 +10736,7 @@ msgid "Seek slider. Use the arrow keys to seek forwards and backwards, and space msgstr "ๆ’ญๆ”พ้€ฒๅบฆๅˆ—ใ€‚ไฝฟ็”จๆ–นๅ‘้ตไพ†ๅฟซ่ฝ‰ๆˆ–ๅ€’่ฝ‰๏ผŒ็ฉบ็™ฝ้ตๆŽงๅˆถๆ’ญๆ”พๆˆ–ๆšซๅœ" #. Accessibility label for a category (e.g. Art, Video Games, Sports, etc.) that shows suggested accounts for the user to follow. The tab is not currently active and can be selected. -#: src/components/InterestTabs.tsx:337 +#: src/components/InterestTabs.tsx:340 msgid "Select \"{interestsDisplayName}\" category" msgstr "้ธๆ“‡ใ€Œ{interestsDisplayName}ใ€้กžๅˆฅ" @@ -10748,7 +10753,7 @@ msgstr "้ธๆ“‡ {0}" msgid "Select {langName}" msgstr "้ธๆ“‡ {langName}" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:67 msgid "Select a color" msgstr "้ธๆ“‡ไธ€ๅ€‹้ก่‰ฒ" @@ -10764,11 +10769,11 @@ msgstr "้ธๆ“‡ๅธณ่™Ÿ" msgid "Select an app language" msgstr "้ธๆ“‡ๆ‡‰็”จ็จ‹ๅผ่ชž่จ€" -#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:65 msgid "Select an avatar" msgstr "้ธๆ“‡ไธ€ๅ€‹ๅคง้ ญ่ฒผ็…ง" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:65 msgid "Select an emoji" msgstr "้ธๆ“‡ไธ€ๅ€‹่กจๆƒ…็ฌฆ่™Ÿ" @@ -10780,12 +10785,13 @@ msgstr "้ธๆ“‡ไธ€ๅ€‹้ธ้ …" msgid "Select app language" msgstr "้ธๆ“‡ๆ‡‰็”จ็จ‹ๅผ่ชž่จ€" -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 -#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:58 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:65 msgid "Select caption file (.vtt)" msgstr "้ธๆ“‡ๅญ—ๅน•ๆช”ๆกˆ (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 +#: src/components/dms/InitiateChatFlow.tsx:984 msgid "Select chat \"{name}\"" msgstr "้ธๆ“‡ๅฐ่ฉฑใ€Œ{name}ใ€" @@ -10826,7 +10832,7 @@ msgstr "้ธๆ“‡ GIF" msgid "Select GIF \"{0}\"" msgstr "้ธๆ“‡ GIFใ€Œ{0}ใ€" -#: src/components/dms/InitiateChatFlow.tsx:725 +#: src/components/dms/InitiateChatFlow.tsx:830 msgid "Select group chat members" msgstr "้ธๆ“‡็พค็ต„ๅฐ่ฉฑๆˆๅ“ก" @@ -10864,7 +10870,7 @@ msgstr "้ธๆ“‡ๆ…ฃ็”จ่ชž่จ€" msgid "Select telephone code" msgstr "้ธๆ“‡ๅœ‹ๅฎถไปฃ็ขผ" -#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:82 msgid "Select the {emojiName} emoji as your avatar" msgstr "้ธๆ“‡ {emojiName} ่กจๆƒ…็ฌฆ่™Ÿไฝœ็‚บๆ‚จ็š„ๅคง้ ญ่ฒผ็…ง" @@ -10945,7 +10951,8 @@ msgstr "้‡้€่จŠๆฏ" msgid "Send post to {name}" msgstr "ๅ‚ณ้€่ฒผๆ–‡็ตฆ {name}" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:167 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:176 msgid "Send post to..." msgstr "ๅ‚ณ้€่ฒผๆ–‡็ตฆโ€ฆโ€ฆ" @@ -10963,12 +10970,12 @@ msgstr "ๅพžๆ‚จ็š„ๆ‰‹ๆฉŸๅ‚ณ้€้€™ๅ‰‡่จŠๆฏ" msgid "Send verification email" msgstr "ๅ‚ณ้€้ฉ—่ญ‰้›ปๅญ้ƒตไปถ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:116 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:122 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:105 -#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:111 -msgid "Send via direct message" -msgstr "้€้Ž็งไบบ่จŠๆฏๅ‚ณ้€" +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:114 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:103 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:109 +msgid "Send via chat" +msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) #: src/components/dms/MessageContextMenu.tsx:175 @@ -11011,24 +11018,24 @@ msgstr "่ซ‹ๅœจไธ‹ๆ–น่จญๅฎšๆ‚จ็š„ๅ‡บ็”Ÿๆ—ฅๆœŸ๏ผŒๆˆ‘ๅ€‘ๅพˆๅฟซๅฐฑๆœƒ่ฎ“ๆ‚จ็นผ็บŒๅ›› #: src/screens/Login/LoginForm.tsx:352 msgid "set your hosting provider manually" -msgstr "" +msgstr "ๆ‰‹ๅ‹•้ธๆ“‡ๆ‚จ็š„่จ—็ฎกๆœๅ‹™ๆไพ›่€…" #: src/screens/Login/LoginForm.tsx:486 msgid "Set your hosting provider manually" -msgstr "" +msgstr "ๆ‰‹ๅ‹•้ธๆ“‡ๆ‚จ็š„่จ—็ฎกๆœๅ‹™ๆไพ›่€…" #: src/screens/Login/ForgotPasswordForm.tsx:104 msgid "Sets email for password reset" msgstr "่จญๅฎš็”จๆ–ผ้‡่จญๅฏ†็ขผ็š„้›ปๅญ้ƒตไปถ" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:215 #: src/screens/Settings/Settings.tsx:99 #: src/view/shell/desktop/LeftNav.tsx:755 #: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:221 +#: src/screens/Settings/NotificationSettings/index.tsx:220 msgid "Settings for activity from others" msgstr "ไพ†่‡ชๅ…ถไป–ไบบ็š„ๅ‹•ๆ…‹้€š็Ÿฅ่จญๅฎš" @@ -11036,49 +11043,49 @@ msgstr "ไพ†่‡ชๅ…ถไป–ไบบ็š„ๅ‹•ๆ…‹้€š็Ÿฅ่จญๅฎš" msgid "Settings for allowing others to be notified of your posts" msgstr "ๅ…่จฑๅ…ถไป–ไบบๆŽฅๆ”ถๆ‚จ็š„่ฒผๆ–‡็™ผๅธƒ้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:154 msgid "Settings for like notifications" msgstr "ๅ–œๆญก้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:187 msgid "Settings for mention notifications" msgstr "ๆๅŠ้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:165 msgid "Settings for new follower notifications" msgstr "ๆ–ฐ่ทŸ้šจ่€…้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:294 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Settings for notifications for everything else" msgstr "ๅ…ถไป–้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:234 +#: src/screens/Settings/NotificationSettings/index.tsx:233 msgid "Settings for notifications for likes of your reposts" msgstr "่ฝ‰็™ผ็š„ๅ–œๆญก้€š็Ÿฅ่จญๅฎš" #: src/screens/Messages/Settings.tsx:280 -#: src/screens/Settings/NotificationSettings/index.tsx:277 +#: src/screens/Settings/NotificationSettings/index.tsx:276 msgid "Settings for notifications for new message requests" msgstr "ๆ–ฐ่จŠๆฏ่ซ‹ๆฑ‚็š„้€š็Ÿฅ่จญๅฎš" #: src/screens/Messages/Settings.tsx:259 -#: src/screens/Settings/NotificationSettings/index.tsx:260 +#: src/screens/Settings/NotificationSettings/index.tsx:259 msgid "Settings for notifications for new messages" msgstr "ๆ–ฐ่จŠๆฏ็š„้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:247 +#: src/screens/Settings/NotificationSettings/index.tsx:246 msgid "Settings for notifications for reposts of your reposts" msgstr "่ฝ‰็™ผ็š„่ฝ‰็™ผ้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:199 +#: src/screens/Settings/NotificationSettings/index.tsx:198 msgid "Settings for quote notifications" msgstr "ๅผ•็”จ้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:176 msgid "Settings for reply notifications" msgstr "ๅ›ž่ฆ†้€š็Ÿฅ่จญๅฎš" -#: src/screens/Settings/NotificationSettings/index.tsx:210 +#: src/screens/Settings/NotificationSettings/index.tsx:209 msgid "Settings for repost notifications" msgstr "่ฝ‰็™ผ้€š็Ÿฅ่จญๅฎš" @@ -11109,14 +11116,14 @@ msgstr "ๅˆ†ไบซ" #: src/ageAssurance/useVerificationFlow.ts:62 msgid "Share age range" -msgstr "" +msgstr "ๅˆ†ไบซๅนด้ฝกๅฑค" #: src/view/com/profile/ProfileMenu.tsx:549 msgid "Share anyway" msgstr "ไป็„ถๅˆ†ไบซ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:174 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:177 msgid "Share author DID" msgstr "ๅˆ†ไบซไฝœ่€… DID" @@ -11125,9 +11132,9 @@ msgstr "ๅˆ†ไบซไฝœ่€… DID" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:93 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:98 msgid "Share feedback" -msgstr "" +msgstr "ๅˆ†ไบซๆ„่ฆ‹ๅ›ž้ฅ‹" -#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/chrome/ImageMenu.tsx:94 #: src/components/Lightbox/Lightbox.web.tsx:281 #: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" @@ -11154,8 +11161,8 @@ msgstr "ๅˆ†ไบซ้€ฃ็ตๅฐ่ฉฑๆก†" msgid "Share my profile" msgstr "ๅˆ†ไบซๆˆ‘็š„ๅ€‹ไบบๆช”ๆกˆ" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:165 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:168 msgid "Share post at:// URI" msgstr "ๅˆ†ไบซ่ฒผๆ–‡ at:// ้€ฃ็ต" @@ -11169,12 +11176,12 @@ msgstr "ๅˆ†ไบซๅ€‹ไบบๆช”ๆกˆ" msgid "Share QR code" msgstr "ๅˆ†ไบซ QR Code" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:522 msgid "Share this feed" msgstr "ๅˆ†ไบซ้€™ๅ€‹ๅ‹•ๆ…‹ๆบ" -#: src/screens/Search/Shell.tsx:568 -#: src/screens/Search/Shell.tsx:638 +#: src/screens/Search/Shell.tsx:565 +#: src/screens/Search/Shell.tsx:634 msgid "Share this search" msgstr "ๅˆ†ไบซ้€™ๅ€‹ๆœๅฐ‹็ตๆžœ" @@ -11186,8 +11193,8 @@ msgstr "ๅˆ†ไบซ้€™ๅ€‹ๆ–ฐๆ‰‹ๅŒ…" msgid "Share this starter pack and help people join your community on Bluesky." msgstr "ๅˆ†ไบซ้€™ๅ€‹ๆ–ฐๆ‰‹ๅŒ…๏ผŒไปฅๅ”ๅŠฉไป–ไบบ่žๅ…ฅๆ‚จๅœจ Bluesky ไธŠ็š„็คพ็พคใ€‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:132 -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:130 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:133 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:160 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:166 #: src/screens/StarterPack/StarterPackScreen.tsx:638 @@ -11203,23 +11210,23 @@ msgstr "ๅˆ†ไบซๆ‚จ็š„่ฏ็ตกไบบไพ†ๅฐ‹ๆ‰พๆœ‹ๅ‹" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:123 msgid "Share your thoughtsโ€ฆ" -msgstr "" +msgstr "ๅˆ†ไบซๆ‚จ็š„ๆƒณๆณ•โ€ฆโ€ฆ" -#: src/Navigation.tsx:322 +#: src/Navigation.tsx:323 msgid "Shared Preferences Tester" msgstr "ๅ…ฑ็”จๅๅฅฝๆธฌ่ฉฆๅ™จ" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:25 msgid "Sharing your age range reveals only the range associated with your Apple Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "ๅˆ†ไบซๆ‚จ็š„ๅนด้ฝกๅฑคๅƒ…ๆœƒๆญ้œฒ่ˆ‡ๆ‚จ Apple ๅธณ่™Ÿ็›ธ้—œ่ฏ็š„่ณ‡่จŠ๏ผˆไพ‹ๅฆ‚๏ผšๆ‚จๅทฒๅนดๆปฟ 18 ๆญฒ๏ผ‰ใ€‚<0>ๆ‚จ็š„็ขบๅˆ‡ๅนด้ฝกๅ’Œ็”Ÿๆ—ฅ็ต•ไธๆœƒ่ขซๅˆ†ไบซ๏ผŒไธ”ๆญค่ณ‡่จŠ็ต•ไธๆœƒ้›ข้–‹ๆญค่ฃ็ฝฎ๏ผŒๆ•…ๆญคๅŠŸ่ƒฝๅƒ…่ƒฝ็‚บๆญค่ฃ็ฝฎ่งฃ้™ค้™ๅˆถใ€‚ๆˆ–่€…๏ผŒ<1>ๆ‚จๅฏไปฅไฝฟ็”จๆˆ‘ๅ€‘ไฟกไปป็š„ๅˆไฝœๅคฅไผด KWS ไพ†ๅฎŒๆˆ้ฉ—่ญ‰๏ผŒไปฅๅœจๆ‰€ๆœ‰ๅนณๅฐไธŠๅ•Ÿ็”จๅญ˜ๅ–ๆฌŠ้™ใ€‚" #. Shown next to the 'Share age range' button when on-device age verification is available. KWS is the name of a third-party verification partner. #: src/ageAssurance/components/DeviceSignalsNotice.tsx:43 msgid "Sharing your age range reveals only the range associated with your Google Account โ€“ for example, that youโ€™re at least 18. <0>Your exact age and birthday are never shared, and this data never leaves this device. Therefore, it only enables access on this device. Alternatively, <1>you can use our trusted partner, KWS, to complete your verification and enable access on all platforms." -msgstr "" +msgstr "ๅˆ†ไบซๆ‚จ็š„ๅนด้ฝกๅฑคๅƒ…ๆœƒๆญ้œฒ่ˆ‡ๆ‚จ Google ๅธณ่™Ÿ็›ธ้—œ่ฏ็š„่ณ‡่จŠ๏ผˆไพ‹ๅฆ‚๏ผšๆ‚จๅทฒๅนดๆปฟ 18 ๆญฒ๏ผ‰ใ€‚<0>ๆ‚จ็š„็ขบๅˆ‡ๅนด้ฝกๅ’Œ็”Ÿๆ—ฅ็ต•ไธๆœƒ่ขซๅˆ†ไบซ๏ผŒไธ”ๆญค่ณ‡่จŠ็ต•ไธๆœƒ้›ข้–‹ๆญค่ฃ็ฝฎ๏ผŒๆ•…ๆญคๅŠŸ่ƒฝๅƒ…่ƒฝ็‚บๆญค่ฃ็ฝฎ่งฃ้™ค้™ๅˆถใ€‚ๆˆ–่€…๏ผŒ<1>ๆ‚จๅฏไปฅไฝฟ็”จๆˆ‘ๅ€‘ไฟกไปป็š„ๅˆไฝœๅคฅไผด KWS ไพ†ๅฎŒๆˆ้ฉ—่ญ‰๏ผŒไปฅๅœจๆ‰€ๆœ‰ๅนณๅฐไธŠๅ•Ÿ็”จๅญ˜ๅ–ๆฌŠ้™ใ€‚" -#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/ContentHider.tsx:217 #: src/components/moderation/LabelPreference.tsx:143 #: src/components/moderation/PostHider.tsx:140 msgid "Show" @@ -11229,13 +11236,13 @@ msgstr "้กฏ็คบ" msgid "Show alt text" msgstr "้กฏ็คบๆ›ฟไปฃๆ–‡ๅญ—" -#: src/components/moderation/ScreenHider.tsx:179 -#: src/components/moderation/ScreenHider.tsx:182 +#: src/components/moderation/ScreenHider.tsx:175 +#: src/components/moderation/ScreenHider.tsx:178 #: src/features/liveNow/components/LiveStatusDialog.tsx:318 #: src/features/liveNow/components/LiveStatusDialog.tsx:322 #: src/screens/List/ListHiddenScreen.tsx:194 -#: src/screens/VideoFeed/index.tsx:700 -#: src/screens/VideoFeed/index.tsx:706 +#: src/screens/VideoFeed/index.tsx:717 +#: src/screens/VideoFeed/index.tsx:723 msgid "Show anyway" msgstr "ไป็„ถ้กฏ็คบ" @@ -11274,9 +11281,9 @@ msgstr "ไป็„ถ้กฏ็คบๅˆ—่กจ" msgid "Show lists of users to select from" msgstr "้กฏ็คบๅฏไพ›้ธๆ“‡็š„ไฝฟ็”จ่€…ๅˆ—่กจ" -#: src/components/Post/ShowMoreTextButton.tsx:52 -msgid "Show More" -msgstr "้กฏ็คบๆ›ดๅคš" +#: src/components/Post/ShowMoreTextButton.tsx:50 +msgid "Show more" +msgstr "" #: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 #: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 @@ -11333,7 +11340,7 @@ msgstr "้กฏ็คบ่ญฆๅ‘Š๏ผŒไธฆๅพžๅ‹•ๆ…‹ไธญๆŽ’้™คๅ…งๅฎน" msgid "Show when youโ€™re live" msgstr "้กฏ็คบ็›ดๆ’ญ็‹€ๆ…‹" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:582 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:583 msgid "Shows information about when this post was created" msgstr "้กฏ็คบๆœ‰้—œๆญค่ฒผๆ–‡ๅปบ็ซ‹ๆ™‚้–“็š„่ณ‡่จŠ" @@ -11341,15 +11348,15 @@ msgstr "้กฏ็คบๆœ‰้—œๆญค่ฒผๆ–‡ๅปบ็ซ‹ๆ™‚้–“็š„่ณ‡่จŠ" msgid "Shows other accounts you can switch to" msgstr "้กฏ็คบๅ…ถไป–ๆ‚จๅฏไปฅๅˆ‡ๆ›็š„ๅธณ่™Ÿ" -#: src/components/moderation/ContentHider.tsx:172 +#: src/components/moderation/ContentHider.tsx:169 #: src/components/moderation/PostHider.tsx:94 msgid "Shows the content" msgstr "้กฏ็คบๅ…งๅฎน" #: src/components/dialogs/Signin.tsx:98 #: src/components/dialogs/Signin.tsx:100 -#: src/components/WelcomeModal.tsx:197 -#: src/components/WelcomeModal.tsx:209 +#: src/components/WelcomeModal.tsx:193 +#: src/components/WelcomeModal.tsx:204 #: src/screens/Hashtag.tsx:231 #: src/screens/Login/index.tsx:143 #: src/screens/Login/index.tsx:165 @@ -11358,9 +11365,9 @@ msgstr "้กฏ็คบๅ…งๅฎน" #: src/screens/Login/LoginForm.tsx:560 #: src/screens/Messages/JoinRequest.tsx:290 #: src/screens/Messages/JoinRequest.tsx:296 -#: src/screens/Search/SearchResults.tsx:386 -#: src/view/com/auth/SplashScreen.tsx:116 -#: src/view/com/auth/SplashScreen.tsx:123 +#: src/screens/Search/SearchResults.tsx:413 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:125 #: src/view/com/auth/SplashScreen.web.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:132 #: src/view/shell/bottom-bar/BottomBar.tsx:360 @@ -11379,7 +11386,7 @@ msgstr "ไปฅ {0} ็š„่บซๅˆ†็™ปๅ…ฅ" #: src/screens/Login/ChooseAccountForm.tsx:84 msgid "Sign in asโ€ฆ" -msgstr "" +msgstr "็™ปๅ…ฅ็‚บโ€ฆโ€ฆ" #: src/screens/Deactivated.tsx:195 #: src/screens/Deactivated.tsx:201 @@ -11434,9 +11441,9 @@ msgstr "็ขบๅฎš่ฆ็™ปๅ‡บๅ—Ž๏ผŸ" #: src/screens/Login/LoginForm.tsx:572 msgid "Sign up" -msgstr "" +msgstr "่จปๅ†Š" -#: src/components/moderation/ScreenHider.tsx:98 +#: src/components/moderation/ScreenHider.tsx:96 #: src/lib/moderation/useGlobalLabelStrings.ts:28 msgid "Sign-in Required" msgstr "้œ€่ฆ็™ปๅ…ฅ" @@ -11469,7 +11476,7 @@ msgstr "่ทณ้Ž" msgid "Skip contact sharing and continue to the app" msgstr "็•ฅ้Žๅˆ†ไบซ่ฏ็ตกไบบไธฆ็นผ็บŒไฝฟ็”จๆ‡‰็”จ็จ‹ๅผ" -#: src/view/com/composer/Composer.tsx:1546 +#: src/view/com/composer/Composer.tsx:1552 msgid "Skip empty posts?" msgstr "่ทณ้Ž็ฉบ็™ฝ่ฒผๆ–‡๏ผŸ" @@ -11487,7 +11494,7 @@ msgstr "็•ฅ้Žๆญคๆญฅ้ฉŸ" msgid "slide" msgstr "ๅนป็‡ˆ็‰‡" -#: src/screens/Settings/AppearanceSettings.tsx:152 +#: src/screens/Settings/AppearanceSettings.tsx:150 msgid "Smaller" msgstr "ๆ›ดๅฐ" @@ -11499,14 +11506,14 @@ msgstr "ๆšซๅœๆ้†’" msgid "So many thoughts, you should post one" msgstr "ๆ—ข็„ถ้ˆๆ„Ÿ้€™้บผๅคš๏ผŒไธๅฆ‚้ธไธ€็ฏ‡ๅˆ†ไบซๅ‡บไพ†ๅง" -#: src/components/WelcomeModal.tsx:151 +#: src/components/WelcomeModal.tsx:146 msgid "Social media you control." msgstr "็”ฑๆ‚จๆŽŒๆŽง็š„็คพ็พคๅช’้ซ”ใ€‚" #. Name for a feature flag #: src/analytics/features/index.ts:84 msgid "Social proofing on posts" -msgstr "" +msgstr "้กฏ็คบ่ช่ญ˜็š„ๆŒ‰่ฎš่€…" #: src/lib/interests.ts:58 msgid "Software Dev" @@ -11520,7 +11527,7 @@ msgstr "ๅˆ—่กจไธญ็š„้ƒจๅˆ†ๅ…งๅฎน็ฎก็†ๆœๅ‹™ๅทฒ็„กๆณ•ไฝฟ็”จใ€‚" msgid "Some of your verifications are invalid." msgstr "ๆ‚จ็›ฎๅ‰่ขซๆŽˆไบˆ็š„้ƒจๅˆ†้ฉ—่ญ‰็„กๆ•ˆใ€‚" -#: src/components/FeedInterstitials.tsx:628 +#: src/components/FeedInterstitials.tsx:633 msgid "Some other feeds you might like" msgstr "ๅ…ถไป–ๆ‚จๅฏ่ƒฝๅ–œๆญก็š„ๅ‹•ๆ…‹ๆบ" @@ -11545,7 +11552,7 @@ msgid "Someone left the group" msgstr "ๆŸไบบ้›ข้–‹ไบ†็พค็ต„" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:367 +#: src/components/dms/MessageItem.tsx:368 msgid "Someone reacted {0}" msgstr "ๆœ‰ไบบๅšๅ‡บไบ† {0} ๅๆ‡‰" @@ -11554,7 +11561,7 @@ msgstr "ๆœ‰ไบบๅšๅ‡บไบ† {0} ๅๆ‡‰" msgid "Someone reacted {0} to {target}" msgstr "ๆœ‰ไบบๅฐ {target} ๅšๅ‡บไบ† {0} ๅๆ‡‰" -#: src/components/dms/MessageItem.tsx:812 +#: src/components/dms/MessageItem.tsx:813 msgid "Someone replied" msgstr "ๆœ‰ไบบๅ›ž่ฆ†ไบ†" @@ -11593,7 +11600,7 @@ msgid "Something went wrong, please try again" msgstr "็™ผ็”Ÿ้Œฏ่ชค๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌก" #: src/screens/Moderation/index.tsx:112 -#: src/screens/Profile/Sections/Labels.tsx:184 +#: src/screens/Profile/Sections/Labels.tsx:185 #: src/screens/Settings/BetaFeaturesSettings.tsx:80 #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:84 msgid "Something went wrong, please try again." @@ -11611,7 +11618,7 @@ msgstr "็™ผ็”Ÿ้Œฏ่ชค๏ผŒ่ซ‹็จๅพ…็‰‡ๅˆปๅพŒๅ†่ฉฆไธ€ๆฌกใ€‚" msgid "Something went wrong. Please try again." msgstr "็™ผ็”Ÿ้Œฏ่ชค๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌกใ€‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:592 msgid "Something wrong? Let us know." msgstr "็œ‹่ตทไพ†ไธๅคชๅฐๅ‹๏ผŸ่ฎ“ๆˆ‘ๅ€‘็Ÿฅ้“ใ€‚" @@ -11650,14 +11657,14 @@ msgid "Spam or other inauthentic behavior or deception" msgstr "ๅžƒๅœพๅ…งๅฎนๆˆ–ๅ…ถไป–่™›ๅ‡ไบ’ๅ‹•่กŒ็‚บ" #: src/lib/interests.ts:72 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:225 msgid "Sports" msgstr "้‹ๅ‹•" #. Description of a feature flag (Social proofing on posts) #: src/analytics/features/index.ts:90 msgid "Spot posts your friends and follows have liked." -msgstr "" +msgstr "ๅœจๆ‚จ็š„ๆœ‹ๅ‹่ˆ‡่ทŸ้šจไธญไบบ็‰ฉๅ–œๆญก็š„่ฒผๆ–‡ไธŠ้กฏ็คบๅ…ถๅ็จฑใ€‚" #: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." @@ -11668,7 +11675,7 @@ msgstr "็•ถๆ‚จ่ˆ‡ๅ…ถไป–ไบบ้–‹ๅง‹่ŠๅคฉๅพŒ๏ผŒๅฐ่ฉฑๅฐฑๆœƒๅ‡บ็พๅœจ้€™่ฃกใ€‚" msgid "Start a group chat" msgstr "้–‹ๅง‹็พค็ต„ๅฐ่ฉฑ" -#: src/components/dms/dialogs/NewChatDialog.tsx:191 +#: src/components/dms/dialogs/NewChatDialog.tsx:192 msgid "Start a new chat" msgstr "้–‹ๅง‹ๆ–ฐๅฐ่ฉฑ" @@ -11682,17 +11689,17 @@ msgstr "้–‹ๅง‹ๆ–ฐๅขžไฝฟ็”จ่€…" msgid "Start adding people!" msgstr "้–‹ๅง‹ๆ–ฐๅขžไฝฟ็”จ่€…๏ผ" -#: src/components/dms/InitiateChatFlow.tsx:726 +#: src/components/dms/InitiateChatFlow.tsx:831 msgid "Start chat" msgstr "้–‹ๅง‹ๅฐ่ฉฑ" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:874 +#: src/components/dms/InitiateChatFlow.tsx:1087 msgid "Start chat with {displayName}" msgstr "่ˆ‡ {displayName} ้–‹ๅง‹ๅฐ่ฉฑ" -#: src/Navigation.tsx:541 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:550 +#: src/Navigation.tsx:555 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "ๆ–ฐๆ‰‹ๅŒ…" @@ -11715,12 +11722,16 @@ msgstr "ๆ‚จ็š„ๆ–ฐๆ‰‹ๅŒ…" msgid "Starter pack is invalid" msgstr "็„กๆ•ˆ็š„ๆ–ฐๆ‰‹ๅŒ…" -#: src/screens/Search/Explore.tsx:665 -#: src/view/screens/Profile.tsx:240 +#: src/screens/Search/SearchResults.tsx:120 +msgid "Starter packs" +msgstr "" + +#: src/screens/Search/Explore.tsx:661 +#: src/view/screens/Profile.tsx:242 msgid "Starter Packs" msgstr "ๆ–ฐๆ‰‹ๅŒ…" -#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +#: src/components/StarterPack/ProfileStarterPacks.tsx:298 msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "ๆ–ฐๆ‰‹ๅŒ…่ƒฝ่ฎ“ๆ‚จ่ผ•้ฌ†ๅœฐ่ˆ‡ๆœ‹ๅ‹ๅˆ†ไบซๅ–œๆ„›็š„ๅ‹•ๆ…‹ๆบ่ˆ‡ไบบ็‰ฉใ€‚" @@ -11728,7 +11739,7 @@ msgstr "ๆ–ฐๆ‰‹ๅŒ…่ƒฝ่ฎ“ๆ‚จ่ผ•้ฌ†ๅœฐ่ˆ‡ๆœ‹ๅ‹ๅˆ†ไบซๅ–œๆ„›็š„ๅ‹•ๆ…‹ๆบ่ˆ‡ไบบ็‰ฉใ€‚ msgid "Starter packs let you share your favorite feeds and people with your friends." msgstr "ๆ–ฐๆ‰‹ๅŒ…ๅฏไปฅๅŠฉๆ‚จ่ˆ‡ๆœ‹ๅ‹ๅˆ†ไบซๅ–œๆ„›็š„ๅ‹•ๆ…‹ๆบ่ˆ‡ไบบ็‰ฉใ€‚" -#: src/view/screens/Profile.tsx:555 +#: src/view/screens/Profile.tsx:569 msgid "Starter Packs let you share your favorite feeds and people with your friends." msgstr "ๆ–ฐๆ‰‹ๅŒ…ๅฏไปฅๅŠฉๆ‚จ่ˆ‡ๆœ‹ๅ‹ๅˆ†ไบซๅ–œๆ„›็š„ๅ‹•ๆ…‹ๆบ่ˆ‡ไบบ็‰ฉใ€‚" @@ -11742,7 +11753,7 @@ msgstr "ๆœๅ‹™็‹€ๆ…‹้ ้ข" #. placeholder {1}: state.serviceDescription && !state.serviceDescription.phoneVerificationRequired ? '2' : '3' #. placeholder {1}: state.totalSteps #: src/screens/Onboarding/Layout.tsx:226 -#: src/screens/Signup/index.tsx:191 +#: src/screens/Signup/index.tsx:189 msgid "Step {0} of {1}" msgstr "็ฌฌ {0} ๆญฅ๏ผˆๅ…ฑ {1} ๆญฅ๏ผ‰" @@ -11754,7 +11765,7 @@ msgstr "ๅทฒๆธ…้™คๅ„ฒๅญ˜่ณ‡ๆ–™๏ผŒ่ซ‹็ซ‹ๅณ้‡ๆ–ฐๅ•Ÿๅ‹•ๆ‡‰็”จ็จ‹ๅผใ€‚" msgid "Stored as part of a secure code for matching with others" msgstr "ๅ„ฒๅญ˜็‚บๅฎ‰ๅ…จไปฃ็ขผ็š„ไธ€้ƒจๅˆ†๏ผŒไปฅๅŒน้…ๅ…ถไป–ไบบ" -#: src/Navigation.tsx:307 +#: src/Navigation.tsx:308 #: src/screens/Settings/Settings.tsx:465 msgid "Storybook" msgstr "ๆ•…ไบ‹ๆ›ธ" @@ -11787,7 +11798,7 @@ msgstr "ๆไบค็”ณ่จด" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:139 msgid "Submit feedback" -msgstr "" +msgstr "ๆไบคๆ„่ฆ‹ๅ›ž้ฅ‹" #: src/components/moderation/ReportDialog/index.tsx:508 #: src/components/moderation/ReportDialog/index.tsx:569 @@ -11811,7 +11822,7 @@ msgid "Subscribe to {publicationTitle} on {0}" msgstr "่จ‚้–ฑ {0} ็š„ {publicationTitle}" #. placeholder {0}: labelerInfo.creator.handle -#: src/screens/Profile/Sections/Labels.tsx:231 +#: src/screens/Profile/Sections/Labels.tsx:232 msgid "Subscribe to @{0} to use these labels:" msgstr "่จ‚้–ฑ @{0} ไปฅไฝฟ็”จ้€™ไบ›ๆจ™่จ˜๏ผš" @@ -11850,16 +11861,16 @@ msgid "Successfully verified" msgstr "ๆˆๅŠŸ้ฉ—่ญ‰" #: src/components/dms/AddMembersFlow.tsx:243 -#: src/components/dms/InitiateChatFlow.tsx:350 +#: src/components/dms/InitiateChatFlow.tsx:432 msgid "Suggested" msgstr "ๅปบ่ญฐ" -#: src/screens/Search/Explore.tsx:375 +#: src/screens/Search/Explore.tsx:369 msgid "Suggested accounts" msgstr "ๅปบ่ญฐๅธณ่™Ÿ" #. Accounts suggested to the user for them to follow -#: src/components/FeedInterstitials.tsx:469 +#: src/components/FeedInterstitials.tsx:472 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 msgid "Suggested for you" msgstr "็‚บๆ‚จๆŽจ่–ฆ" @@ -11883,7 +11894,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "ๆ—ฅ่ฝ" -#: src/Navigation.tsx:332 +#: src/Navigation.tsx:333 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -11894,10 +11905,12 @@ msgid "Support for this feature in your country has not been enabled yet! Please msgstr "ๆ‚จๆ‰€ๅœจ็š„ๅœ‹ๅฎถๅฐšๆœชๆ”ฏๆด้€™ๅ€‹ๅŠŸ่ƒฝ๏ผ่ซ‹ๆ™š้ปžๅ†ๅ›žไพ†็œ‹็œ‹ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:114 msgid "Suspended accounts cannot participate in a group chat." msgstr "ๅทฒๅœๆฌŠ็š„ๅธณ่™Ÿ็„กๆณ•ๅƒ่ˆ‡็พค็ต„ๅฐ่ฉฑใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:75 msgid "Suspended accounts cannot participate in chat." msgstr "ๅทฒๅœๆฌŠ็š„ๅธณ่™Ÿ็„กๆณ•ๅƒ่ˆ‡ๅฐ่ฉฑใ€‚" @@ -11921,8 +11934,8 @@ msgstr "ๅˆ‡ๆ›ๅˆฐ {0}" #: src/components/dialogs/Embed.tsx:154 #: src/components/dialogs/Embed.tsx:156 -#: src/screens/Settings/AppearanceSettings.tsx:85 -#: src/screens/Settings/AppearanceSettings.tsx:135 +#: src/screens/Settings/AppearanceSettings.tsx:83 +#: src/screens/Settings/AppearanceSettings.tsx:133 msgid "System" msgstr "็ณป็ตฑ" @@ -11945,7 +11958,7 @@ msgstr "็งไธ‹่จŽ่ซ–ใ€‚" msgid "Tap below to allow Bluesky to access your GPS location. We will then use that data to more accurately determine the content and features available in your region." msgstr "่ผ•่งธไธ‹ๆ–น็š„ใ€Œๅ…่จฑใ€ๆŒ‰้ˆ•ไพ†่ฎ“ Bluesky ๅญ˜ๅ–ๆ‚จ็š„ๆ‰€ๅœจไฝ็ฝฎใ€‚ๆˆ‘ๅ€‘ๆœƒๅˆฉ็”จ่ฉฒ่ณ‡่จŠไพ†ๆ›ด็ฒพ็ขบๅœฐๅˆคๆ–ทๆ‚จๆ‰€ๅœจๅ€ๅŸŸๅฏ็”จ็š„ๅ…งๅฎนๅ’ŒๅŠŸ่ƒฝใ€‚" -#: src/components/dms/MessageItem.tsx:681 +#: src/components/dms/MessageItem.tsx:682 msgid "Tap for details" msgstr "่ผ•่งธไปฅ็žญ่งฃ่ฉณ็ดฐ่ณ‡่จŠ" @@ -11976,7 +11989,7 @@ msgstr "่ผ•่งธไปฅ้—œ้–‰ๅ…งๅฎน้ธๅ–ฎ" msgid "Tap to copy this invite link" msgstr "่ผ•่งธไปฅ่ค‡่ฃฝๆญค้‚€่ซ‹้€ฃ็ต" -#: src/components/ProgressGuide/Toast.tsx:163 +#: src/components/ProgressGuide/Toast.tsx:159 msgid "Tap to dismiss" msgstr "่ผ•่งธไปฅ่ทณ้Ž" @@ -12003,7 +12016,7 @@ msgstr "่ผ•่งธไปฅๆ”ถๅ›žๆ‚จ็š„ {0} ๅๆ‡‰" msgid "Tap to request access to join this group chat" msgstr "่ผ•่งธไปฅ็”ณ่ซ‹ๅŠ ๅ…ฅๆญค็พค็ต„ๅฐ่ฉฑ" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:647 msgid "Tap to retry" msgstr "่ผ•่งธไปฅ้‡่ฉฆ" @@ -12016,7 +12029,7 @@ msgstr "่ผ•่งธไปฅ้กฏ็คบ {0} ๅๆ‡‰" msgid "Tap to show all reactions" msgstr "่ผ•่งธไปฅ้กฏ็คบๆ‰€ๆœ‰ๅๆ‡‰" -#: src/components/dms/MessageItem.tsx:393 +#: src/components/dms/MessageItem.tsx:394 msgid "Tap to view reactions" msgstr "่ผ•่งธไปฅ้กฏ็คบๅๆ‡‰" @@ -12032,7 +12045,7 @@ msgstr "ไปปๅ‹™ๅฎŒๆˆโธบ่ทŸ้šจ 10 ๅ€‹ไบบ๏ผ" msgid "Task complete - 10 likes!" msgstr "ไปปๅ‹™ๅฎŒๆˆโธบๅ–œๆญก 10 ๅ‰‡่ฒผๆ–‡๏ผ" -#: src/components/ProgressGuide/List.tsx:111 +#: src/components/ProgressGuide/List.tsx:109 msgid "Teach our algorithm what you like" msgstr "่ฎ“ๆˆ‘ๅ€‘็š„ๆผ”็ฎ—ๆณ•็Ÿฅ้“ๆ‚จๅ–œๆญกไป€้บผ" @@ -12060,7 +12073,7 @@ msgstr "ๆขๆฌพ" #: src/components/dialogs/BirthDateSettings.tsx:181 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:31 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:98 -#: src/Navigation.tsx:342 +#: src/Navigation.tsx:343 #: src/screens/Settings/AboutSettings.tsx:94 #: src/screens/Settings/AboutSettings.tsx:97 #: src/view/screens/TermsOfService.tsx:25 @@ -12081,11 +12094,11 @@ msgstr "ๆ–‡ๅญ—่ผธๅ…ฅๆก†" #: src/view/com/posts/ShowLessFollowup.tsx:39 msgid "Thank you for your feedback! It has been sent to the feed operator." -msgstr "" +msgstr "ๆ„Ÿ่ฌๆ‚จ็š„ๅ›ž้ฅ‹๏ผๆ„่ฆ‹ๅทฒๆไบค็ตฆๅ‹•ๆ…‹ๆบ็ถญ่ญท่€…ใ€‚" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:77 msgid "Thanks for your feedback!" -msgstr "" +msgstr "ๆ„Ÿ่ฌๆ‚จ็š„ๅ›ž้ฅ‹๏ผ" #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -12113,11 +12126,11 @@ msgstr "ๆ‰พไธๅˆฐ้‚ฃๅ€‹ๆ–ฐๆ‰‹ๅŒ…ใ€‚" msgid "That username is already taken" msgstr "้€™ๅ€‹ไฝฟ็”จ่€…ๅ็จฑๅทฒ่ขซไฝ”็”จ" -#: src/view/com/post-thread/PostQuotes.tsx:135 +#: src/view/com/post-thread/PostQuotes.tsx:142 msgid "That's all, folks!" msgstr "ๅฐฑ้€™ไบ›๏ผŒๅ ฑๅ‘ŠๅฎŒ็•ข๏ผ" -#: src/screens/VideoFeed/index.tsx:1195 +#: src/screens/VideoFeed/index.tsx:1212 msgid "That's everything!" msgstr "ๅฐฑ้€™ไบ›ไบ†๏ผ" @@ -12171,7 +12184,7 @@ msgstr "้€™ๅ€‹ๅ‹•ๆ…‹ๆบๅทฒ็”ฑใ€ŒDiscoverใ€ๅ–ไปฃใ€‚" #: src/components/moderation/LabelsOnMeDialog.tsx:64 msgid "The following labels were applied to this post." -msgstr "" +msgstr "ไปฅไธ‹ๆจ™่จ˜ๅทฒๅฅ—็”จๅˆฐ้€™ๅ‰‡่ฒผๆ–‡ใ€‚" #: src/components/moderation/LabelsOnMeDialog.tsx:63 msgid "The following labels were applied to your account." @@ -12216,7 +12229,7 @@ msgstr "ไผบๆœๅ™จไผผไนŽ้‡ๅˆฐๅ•้กŒใ€‚่ซ‹็จๅพŒๅ†่ฉฆใ€‚" msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "ๆ‚จ่ฆๆชข่ฆ–็š„ๆ–ฐๆ‰‹ๅŒ…ๅทฒๅคฑๆ•ˆใ€‚ๆ‚จๅฏไปฅ่€ƒๆ…ฎๅˆช้™ค้€™ๅ€‹ๆ–ฐๆ‰‹ๅŒ…ใ€‚" -#: src/components/ContextMenu/index.tsx:509 +#: src/components/ContextMenu/index.tsx:507 msgid "The subject of the context menu" msgstr "ๅ…งๅฎน้ธๅ–ฎๅฐๆ‡‰็š„่ฉฑ้กŒ" @@ -12238,7 +12251,7 @@ msgstr "ๆ‚จๆ‰€ไฝฟ็”จ็š„้ฉ—่ญ‰็ขผ็„กๆ•ˆใ€‚่ซ‹ๆชขๆŸฅๆ‚จๆ˜ฏๅฆไฝฟ็”จไบ†ๆญฃ็ขบ็š„้ฉ— msgid "The verification provider was unable to send a code to your phone number. Please check your phone number and try again." msgstr "้ฉ—่ญ‰ๆœๅ‹™ๆไพ›่€…็„กๆณ•ๅ‘ๆ‚จ็š„้›ป่ฉฑ่™Ÿ็ขผๅ‚ณ้€้ฉ—่ญ‰็ขผใ€‚่ซ‹ๆชขๆŸฅๆ‚จ็š„้›ป่ฉฑ่™Ÿ็ขผๅพŒๅ†่ฉฆไธ€ๆฌกใ€‚" -#: src/screens/Settings/AppearanceSettings.tsx:139 +#: src/screens/Settings/AppearanceSettings.tsx:137 msgid "Theme" msgstr "ไธป้กŒ" @@ -12266,7 +12279,7 @@ msgstr "่ผ‰ๅ…ฅ GIFs ๆ™‚็™ผ็”Ÿๅ•้กŒใ€‚่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทš็‹€ๆ…‹ๅพŒๅ†่ฉฆ msgid "There was a problem with your internet connection, please try again" msgstr "ๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทš็™ผ็”Ÿไบ†ไธ€ไบ›ๅ•้กŒ๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌก" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:184 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -12274,7 +12287,7 @@ msgstr "ๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทš็™ผ็”Ÿไบ†ไธ€ไบ›ๅ•้กŒ๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌก" msgid "There was an issue contacting the server" msgstr "้€ฃ็ทšไผบๆœๅ™จๆ™‚็™ผ็”Ÿๅ•้กŒ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:467 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:101 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "้€ฃ็ทš่‡ณไผบๆœๅ™จๆ™‚็™ผ็”Ÿๅ•้กŒ๏ผŒ่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทš็‹€ๆ…‹ๅพŒๅ†่ฉฆไธ€ๆฌกใ€‚" @@ -12283,8 +12296,8 @@ msgstr "้€ฃ็ทš่‡ณไผบๆœๅ™จๆ™‚็™ผ็”Ÿๅ•้กŒ๏ผŒ่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทš็‹€ๆ…‹ๅพŒ msgid "There was an issue fetching notifications. Tap here to try again." msgstr "ๅ–ๅพ—้€š็Ÿฅๆ™‚็™ผ็”Ÿๅ•้กŒ๏ผŒๆŒ‰้€™่ฃก้‡่ฉฆใ€‚" -#: src/screens/Search/Explore.tsx:1027 -#: src/view/com/posts/PostFeed.tsx:778 +#: src/screens/Search/Explore.tsx:1015 +#: src/view/com/posts/PostFeed.tsx:826 msgid "There was an issue fetching posts. Tap here to try again." msgstr "ๅ–ๅพ—่ฒผๆ–‡ๆ™‚็™ผ็”Ÿๅ•้กŒ๏ผŒๆŒ‰้€™่ฃก้‡่ฉฆใ€‚" @@ -12309,7 +12322,7 @@ msgstr "ๅ–ๅพ—ๆ‚จ็š„ๆœๅ‹™่ณ‡่จŠๆ™‚็™ผ็”Ÿๅ•้กŒ" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "ๅˆช้™คๅ‹•ๆ…‹ๆบๆ™‚็™ผ็”Ÿๅ•้กŒ๏ผŒ่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ่ทฏ้€ฃ็ทš็‹€ๆ…‹ๅพŒๅ†่ฉฆไธ€ๆฌกใ€‚" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:143 #: src/view/com/posts/FeedShutdownMsg.tsx:53 #: src/view/com/posts/FeedShutdownMsg.tsx:74 msgid "There was an issue updating your feeds, please check your internet connection and try again." @@ -12384,7 +12397,7 @@ msgstr "้€™ไบ›่จญๅฎšๅชๆœƒๅฝฑ้Ÿฟใ€ŒFollowingใ€๏ผˆ่ทŸ้šจไธญ๏ผ‰ๅ‹•ๆ…‹ๆบใ€‚" msgid "These URLs" msgstr "้€™ไบ›้€ฃ็ต" -#: src/components/moderation/BlockDialog.tsx:356 +#: src/components/moderation/BlockDialog.tsx:353 msgid "They own this chat" msgstr "ไป–ๆ˜ฏๅฐ่ฉฑ็š„ๆ“ๆœ‰่€…" @@ -12392,7 +12405,7 @@ msgstr "ไป–ๆ˜ฏๅฐ่ฉฑ็š„ๆ“ๆœ‰่€…" msgid "They wonโ€™t be able to rejoin unless you invite them again." msgstr "้™ค้žๆ‚จไธปๅ‹•้‚€่ซ‹๏ผŒๅฆๅ‰‡ไป–ๅ€‘ๅฐ‡็„กๆณ•้‡ๆ–ฐๅŠ ๅ…ฅๅฐ่ฉฑใ€‚" -#: src/components/moderation/ScreenHider.tsx:118 +#: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} ๅทฒ่ขซๆจ™่จ˜๏ผš" @@ -12408,7 +12421,7 @@ msgstr "ๆญคๅธณ่™Ÿๅทฒ่ขซๅ…ถๆ“ๆœ‰่€…ๆจ™่จ˜็‚บ่‡ชๅ‹•ๅŒ–ๅธณ่™Ÿใ€‚" msgid "This account has one or more attempted verifications, but it is not currently verified." msgstr "ๆญคๅธณ่™Ÿๅทฒ่ขซๆŽˆไบˆไธ€ๆˆ–ๅคšๆฌก้ฉ—่ญ‰๏ผŒไฝ†ๅฐšๆœช่ขซๆญฃๅผ้ฉ—่ญ‰ใ€‚" -#: src/components/moderation/ScreenHider.tsx:113 +#: src/components/moderation/ScreenHider.tsx:111 msgid "This account has requested that users sign in to view their profile." msgstr "้€™ๅ€‹ๅธณ่™Ÿ่ฆๆฑ‚ไฝฟ็”จ่€…็™ปๅ…ฅๅพŒๆ‰่ƒฝๆชข่ฆ–ๅ…ถๅ€‹ไบบๆช”ๆกˆใ€‚" @@ -12537,7 +12550,7 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "้€™ๅ€‹ๅ‹•ๆ…‹ๆบๆฒ’ๆœ‰ไปปไฝ•ๅ‹•้œใ€‚ๆ‚จๅฏ่ƒฝ้œ€่ฆๅ†่ทŸ้šจไธ€ไบ›ไฝฟ็”จ่€…๏ผŒๆˆ–ๆชขๆŸฅๆ‚จ็š„่ชž่จ€่จญๅฎšใ€‚" #: src/components/StarterPack/Main/PostsList.tsx:41 -#: src/screens/Profile/ProfileFeed/index.tsx:171 +#: src/screens/Profile/ProfileFeed/index.tsx:170 #: src/screens/ProfileList/FeedSection.tsx:78 msgid "This feed is empty." msgstr "้€™ๅ€‹ๅ‹•ๆ…‹ๆบ็ฉบ็ฉบๅฆ‚ไนŸใ€‚" @@ -12554,7 +12567,7 @@ msgstr "ๆญค็พค็ต„ๅ› ๆ“ๆœ‰่€…ๅ—ๅˆฐ็ณป็ตฑๅฏฉๆ ธ่™•ๅˆ†่€Œ่ขซ้Ž–ๅฎš" msgid "This handle is reserved. Please try a different one." msgstr "้€™ๅ€‹ๅธณ่™Ÿไปฃ็ขผๅทฒ่ขซไฟ็•™๏ผŒ่ซ‹้ธๆ“‡ไธๅŒ็š„ไปฃ็ขผๅ†่ฉฆไธ€ๆฌกใ€‚" -#: src/screens/Onboarding/StepProfile/index.tsx:142 +#: src/screens/Onboarding/StepProfile/index.tsx:140 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "็„กๆณ•ไฝฟ็”จ้€™ๅผตๅœ–็‰‡ใ€‚่ซ‹ๆ”น็”จๅ…ถไป–ๆ ผๅผ็š„ๆช”ๆกˆ๏ผŒไพ‹ๅฆ‚ .jpg ๆˆ– .pngใ€‚" @@ -12572,7 +12585,7 @@ msgstr "ๆญค้‚€่ซ‹้€ฃ็ต็„กๆ•ˆ" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:139 msgid "This is just a one-time security check, since we haven't seen this account on this device before." -msgstr "" +msgstr "ๆญค็‚บไธ€ๆฌกๆ€ง็š„ๅฎ‰ๅ…จๆชขๆŸฅ๏ผŒๅ› ็‚บๆˆ‘ๅ€‘ไน‹ๅ‰ๆœชๆ›พๅœจๆญค่ฃ็ฝฎไธŠ็œ‹้Ž้€™ๅ€‹ๅธณ่™Ÿใ€‚" #: src/features/liveNow/components/EditLiveDialog.tsx:171 #: src/features/liveNow/components/GoLiveDialog.tsx:161 @@ -12594,9 +12607,9 @@ msgstr "้€™ๅ€‹ๆจ™่จ˜็”ฑๆ‚จๆ–ฐๅขžใ€‚" #: src/components/moderation/LabelsOnMeDialog.tsx:156 #: src/components/moderation/ModerationDetailsDialog.tsx:231 msgid "This label was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "ๆญคๆจ™่จ˜ๅทฒๅฅ—็”จๆ–ผๆ•ดๅ€‹ไฝฟ็”จ่€…ๅธณ่™Ÿ๏ผŒไธฆๆœƒ้กฏ็คบๅœจๆ‰€ๆœ‰่ฒผๆ–‡ไธŠใ€‚" -#: src/screens/Profile/Sections/Labels.tsx:218 +#: src/screens/Profile/Sections/Labels.tsx:219 msgid "This labeler hasn't declared what labels it publishes, and may not be active." msgstr "ๆญคๆจ™่จ˜ๆœๅ‹™ๅฐšๆœชๅ…ฌ้–‹ๅ…ถ็™ผๅธƒ็š„ๆจ™่จ˜้กžๅž‹๏ผŒไนŸๅฏ่ƒฝๅทฒ็ถ“ไธๅ†ๆไพ›ๆœๅ‹™ใ€‚" @@ -12621,13 +12634,13 @@ msgstr "้€™ๅ€‹ๅˆ—่กจๆ˜ฏ็ฉบ็š„ใ€‚" msgid "This message is hidden" msgstr "ๆญค่จŠๆฏๅทฒ้šฑ่—" -#: src/components/dms/MessageItem.tsx:679 -#: src/components/dms/MessageItem.tsx:708 +#: src/components/dms/MessageItem.tsx:680 +#: src/components/dms/MessageItem.tsx:709 msgid "This message is hidden because this user is blocking you." msgstr "ๆญค่จŠๆฏๅทฒ้šฑ่—๏ผŒๅ› ็‚บๆญคไฝฟ็”จ่€…ๅฐ้Ž–ไบ†ๆ‚จใ€‚" -#: src/components/dms/MessageItem.tsx:678 -#: src/components/dms/MessageItem.tsx:704 +#: src/components/dms/MessageItem.tsx:679 +#: src/components/dms/MessageItem.tsx:705 msgid "This message is hidden because you are blocking this user." msgstr "ๆญค่จŠๆฏๅทฒ้šฑ่—๏ผŒๅ› ็‚บๆ‚จๅฐ้Ž–ไบ†ๆญคไฝฟ็”จ่€…ใ€‚" @@ -12641,7 +12654,7 @@ msgstr "้€™ๅ€‹ไฝฟ็”จ่€…ๅฐ้Ž–ไบ†ๆ‚จ" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:622 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:623 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "้€™ๅ‰‡่ฒผๆ–‡ๅฎฃๅ‘Š็š„็™ผๅธƒๆ™‚้–“็‚บ <0>{0}๏ผŒไฝ†้ฆ–ๆฌกๅ‡บ็พๅœจ Bluesky ็š„ๆ™‚้–“ๆ˜ฏ <1>{1}ใ€‚" @@ -12649,7 +12662,7 @@ msgstr "้€™ๅ‰‡่ฒผๆ–‡ๅฎฃๅ‘Š็š„็™ผๅธƒๆ™‚้–“็‚บ <0>{0}๏ผŒไฝ†้ฆ–ๆฌกๅ‡บ็พๅœจ Blu msgid "This post has an unknown type of threadgate on it. Your app may be out of date." msgstr "้€™ๅ‰‡่ฒผๆ–‡ๅฅ—็”จไบ†ไธๆ”ฏๆด็š„ๅ…งๅฎน้™ๅˆถใ€‚ๆ‚จ็š„ๆ‡‰็”จ็จ‹ๅผ็‰ˆๆœฌๅฏ่ƒฝๅทฒ็ถ“้Ž่ˆŠใ€‚" -#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:155 msgid "This post is only visible to logged-in users." msgstr "้€™ๅ‰‡่ฒผๆ–‡ๅƒ…้™ๅทฒ็™ปๅ…ฅไฝฟ็”จ่€…ๅฏไปฅๆชข่ฆ–ใ€‚" @@ -12661,7 +12674,7 @@ msgstr "้€™ๅ‰‡่ฒผๆ–‡ๅทฒ่ขซ็™ผๅธƒ่€…ๅˆช้™ค" msgid "This post will be hidden from feeds and threads. This cannot be undone." msgstr "้€™ๅ‰‡่ฒผๆ–‡ๅฐ‡ๆœƒๅพžๅ‹•ๆ…‹ๅŠ่จŽ่ซ–ไธฒไธญ้šฑ่—๏ผŒไน‹ๅพŒๅฐ‡็„กๆณ•ๅ–ๆถˆใ€‚" -#: src/view/com/composer/Composer.tsx:1121 +#: src/view/com/composer/Composer.tsx:1127 msgid "This post's author has disabled quote posts." msgstr "้€™ๅ‰‡่ฒผๆ–‡็š„็™ผๅธƒ่€…ๆ‹’็ต•ๅผ•็”จ่ฒผๆ–‡ใ€‚" @@ -12698,11 +12711,12 @@ msgstr "้€™ๆ‡‰่ฉฒๅช้œ€่ฆๅนพๅˆ†้˜ใ€‚" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "้€™ๅ€‹ไฝฟ็”จ่€…ๅฐšๆœช่จญๅฎšๅ็จฑ๏ผŒๅ› ๆญค็„กๆณ•ๆŽˆไบˆ้ฉ—่ญ‰ใ€‚" -#: src/view/com/profile/ProfileFollowers.tsx:203 +#: src/view/com/profile/ProfileFollowers.tsx:217 msgid "This user doesn't have any followers." msgstr "้€™ๅ€‹ไฝฟ็”จ่€…ๆฒ’ๆœ‰ไปปไฝ•่ทŸ้šจ่€…ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:79 msgid "This user has blocked you and cannot be messaged." msgstr "้€™ๅ€‹ไฝฟ็”จ่€…ๅทฒๅฐ้Ž–ๆ‚จ๏ผŒ็„กๆณ•ๅ‚ณ้€่จŠๆฏใ€‚" @@ -12712,6 +12726,7 @@ msgid "This user has blocked you. You cannot view their content." msgstr "้€™ๅ€‹ไฝฟ็”จ่€…ๅทฒๅฐ้Ž–ๆ‚จ๏ผŒๅ› ๆญคๆ‚จ็„กๆณ•ๆชข่ฆ–ไป–ๅ€‘็š„ๅ…งๅฎนใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:68 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:83 msgid "This user has disabled chat and cannot be messaged." msgstr "้€™ๅ€‹ไฝฟ็”จ่€…ๅทฒ้ธๆ“‡ไธๅ…่จฑๆŽฅๆ”ถ่จŠๆฏใ€‚" @@ -12733,17 +12748,17 @@ msgstr "้€™ๅ€‹ไฝฟ็”จ่€…ๅŒ…ๅซๅœจๆ‚จๅทฒ้œ้Ÿณ็š„ <0>{0} ๅˆ—่กจไธญใ€‚" msgid "This user is new here. Press for more info about when they joined." msgstr "้€™ๅ€‹ไฝฟ็”จ่€…ๅœจ่ฟ‘ๆœŸๅŠ ๅ…ฅไบ† Blueskyใ€‚ๆŒ‰ไธ€ไธ‹้€™่ฃกไปฅ็žญ่งฃๅ…ถๅŠ ๅ…ฅ็š„ๆ™‚้–“ใ€‚" -#: src/view/com/profile/ProfileFollows.tsx:182 +#: src/view/com/profile/ProfileFollows.tsx:196 msgid "This user isn't following anyone." msgstr "้€™ๅ€‹ไฝฟ็”จ่€…ๅฐšๆœช่ทŸ้šจไปปไฝ•ไบบใ€‚" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:304 msgid "This video canโ€™t be played on your device. Your browser or system may be missing the required video codecs (H.264/AAC)." msgstr "้€™้ƒจๅฝฑ็‰‡็„กๆณ•ๅœจๆ‚จ็š„่ฃ็ฝฎไธŠๆ’ญๆ”พใ€‚ๆ‚จ็š„็€่ฆฝๅ™จๆˆ–็ณป็ตฑๅฏ่ƒฝไธๆ”ฏๆดๅฟ…่ฆ็š„่ฆ–่จŠ่งฃ็ขผๅ™จ๏ผˆH.264/AAC๏ผ‰ใ€‚" #: src/view/com/composer/videos/VideoPreview.web.tsx:65 msgid "This video canโ€™t be previewed in your browser. It will still be uploaded." -msgstr "" +msgstr "ๆญคๅฝฑ็‰‡็„กๆณ•ๅœจๆ‚จ็š„็€่ฆฝๅ™จไธญ้ ่ฆฝ๏ผŒไฝ†ไปๅฏไปฅไธŠๅ‚ณใ€‚" #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 msgid "This will create a new list with the same name, description, and members as this starter pack." @@ -12759,7 +12774,7 @@ msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} msgstr "้€™ๆœƒๆฐธไน…ๅˆช้™คๆ‚จ็š„ Bluesky ๅธณ่™Ÿ <0>{currentHandle} ๅ’Œๆ‰€ๆœ‰็›ธ้—œ็š„่ณ‡ๆ–™ใ€‚่ซ‹ๆณจๆ„๏ผŒ้€™ไนŸๆœƒๅฝฑ้Ÿฟ้€™ๅ€‹ๅธณ่™Ÿๅ…ถไป–ไปปไฝ•ไฝฟ็”จ <1>AT ๅ”่ญฐ (AT Protocol) ็š„ๆœๅ‹™ใ€‚" #. placeholder {0}: account.handle -#: src/screens/Settings/Settings.tsx:677 +#: src/screens/Settings/Settings.tsx:678 msgid "This will remove @{0} from the quick access list." msgstr "้€™ๅฐ‡ๅพžๅฟซ้€Ÿๅญ˜ๅ–ๅˆ—่กจไธญ็งป้™ค @{0}ใ€‚" @@ -12786,7 +12801,7 @@ msgstr "่จŽ่ซ–ไธฒ้ธ้ …" msgid "Threaded" msgstr "ๆจน็‹€ๆจกๅผ" -#: src/Navigation.tsx:375 +#: src/Navigation.tsx:376 msgid "Threads Preferences" msgstr "่จŽ่ซ–ไธฒ้ธ้ …" @@ -12846,7 +12861,7 @@ msgid "Too many contacts - you've exceeded the number of contacts you can import msgstr "ๅคชๅคš่ฏ็ตกไบบไบ†โ€”โ€”ๆ‚จๅŒฏๅ…ฅ็š„่ฏ็ตกไบบๆ•ธ้‡ๅทฒ่ถ…้Žๅฐ‹ๆ‰พๆœ‹ๅ‹ไธŠ้™" #: src/screens/Hashtag.tsx:86 -#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/Search/SearchResults.tsx:83 #: src/screens/Topic.tsx:58 msgid "Top" msgstr "็†ฑ้–€" @@ -12858,7 +12873,7 @@ msgstr "็†ฑ้–€" msgid "Top replies first" msgstr "็†ฑ้–€ๅ›ž่ฆ†ๅ„ชๅ…ˆ" -#: src/Navigation.tsx:494 +#: src/Navigation.tsx:503 msgid "Topic" msgstr "่ฉฑ้กŒ" @@ -12893,7 +12908,9 @@ msgstr "ๆ‚จ็š„่ฃ็ฝฎไธๆ”ฏๆด็ฟป่ญฏๅŽŸๅง‹ๅŠ็›ฎๆจ™่ชž่จ€ไธ€่‡ด็š„ๅ…งๅฎนใ€‚" msgid "Tree view" msgstr "ๆจน็‹€ไป‹้ข" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:48 +#: src/components/interstitials/FeedTrendingTopics.tsx:88 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:59 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:54 msgid "Trending" msgstr "ๆต่กŒ่ถจๅ‹ข" @@ -12902,13 +12919,15 @@ msgstr "ๆต่กŒ่ถจๅ‹ข" msgid "Trending GIFs" msgstr "็†ฑ้–€ GIFs" -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:55 +#: src/components/interstitials/FeedTrendingTopics.tsx:115 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:62 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:61 msgid "Trending options" msgstr "ๆต่กŒ่ถจๅ‹ข้ธ้ …" -#: src/components/interstitials/TrendingVideos.tsx:87 -msgid "Trending Videos" -msgstr "็†ฑ้–€ๅฝฑ็‰‡" +#: src/components/interstitials/TrendingVideos.tsx:86 +msgid "Trending videos" +msgstr "" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" @@ -12918,11 +12937,11 @@ msgstr "ๅผ•ๆˆฐ" msgid "Trust emerges from relationships, communities, and shared context, so weโ€™re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "ไฟกไปปๆบ่‡ชๆ–ผไบบ้š›้—œไฟ‚ใ€็คพ็พคๅŠๅ…ฑไบซ็’ฐๅขƒ๏ผŒๅ› ๆญคๆˆ‘ๅ€‘ไนŸๅผ•ๅ…ฅไบ†<0>ๅฏ้ ็š„้ฉ—่ญ‰่€…๏ผšๅฏไปฅ็›ดๆŽฅ็‚บๅ…ถไป–ๅธณ่™ŸๆŽˆไบˆ้ฉ—่ญ‰็š„็ต„็น”ใ€‚" -#: src/screens/Search/SearchResults.tsx:233 +#: src/screens/Search/SearchResults.tsx:260 msgid "Try a different search term or remove some filters." msgstr "่ฉฆ่ฉฆไปฅไธๅŒ็š„้—œ้ตๅญ—ๆœๅฐ‹๏ผŒๆˆ–็งป้™ค้ƒจๅˆ†็ฏฉ้ธๆขไปถใ€‚" -#: src/screens/Search/SearchResults.tsx:235 +#: src/screens/Search/SearchResults.tsx:262 msgid "Try a different search term." msgstr "ๅ˜—่ฉฆๆœๅฐ‹ไธๅŒ้—œ้ตๅญ—ใ€‚" @@ -12997,10 +13016,12 @@ msgid "Unable to fetch join requests." msgstr "็„กๆณ•ๅ–ๅพ—ๅŠ ๅ…ฅ็”ณ่ซ‹ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:129 msgid "Unable to find a selected recipient." msgstr "ๆ‰พไธๅˆฐๅทฒ้ธๆ“‡็š„ๆŽฅๆ”ถ่€…ใ€‚" #: src/components/dms/dialogs/NewChatDialog.tsx:77 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:92 msgid "Unable to find the selected recipient." msgstr "ๆ‰พไธๅˆฐๅทฒ้ธๆ“‡็š„ๆŽฅๆ”ถ่€…ใ€‚" @@ -13024,12 +13045,12 @@ msgstr "็›ฎๅ‰็„กๆณ•ไฝฟ็”จ" msgid "Unavailable feed information" msgstr "็„กๆณ•ๅ–ๅพ—ๅ‹•ๆ…‹ๆบ่ณ‡่จŠ" -#: src/components/dms/MessageItem.tsx:746 +#: src/components/dms/MessageItem.tsx:747 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/components/moderation/BlockDialog.tsx:186 -#: src/components/moderation/BlockDialog.tsx:190 -#: src/components/moderation/BlockDialog.tsx:211 +#: src/components/moderation/BlockDialog.tsx:187 +#: src/components/moderation/BlockDialog.tsx:191 +#: src/components/moderation/BlockDialog.tsx:213 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:190 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:365 @@ -13069,8 +13090,8 @@ msgstr "่ฆ่งฃ้™คๅฐ้Ž–ๅ—Ž๏ผŸ" msgid "Unblock list" msgstr "่งฃ้™คๅฐ้Ž–ๅˆ—่กจ" -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:58 -#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:50 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:56 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 #: src/screens/Profile/components/GermButton.tsx:186 @@ -13104,7 +13125,7 @@ msgstr "ๅ–ๆถˆ่ทŸ้šจ {0}" msgid "Unfollow account" msgstr "ๅ–ๆถˆ่ทŸ้šจๅธณ่™Ÿ" -#: src/screens/VideoFeed/index.tsx:902 +#: src/screens/VideoFeed/index.tsx:919 msgid "Unfollows the user" msgstr "ๅ–ๆถˆ่ทŸ้šจไฝฟ็”จ่€…" @@ -13132,7 +13153,7 @@ msgstr "ๆœชๆจ™่จ˜็š„ๆˆไบบๅ…งๅฎน" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "ๆœชๆจ™่จ˜ใ€ๅ…ท้จทๆ“พๆ€ง๏ผŒๆˆ–้ž่‡ช้ก˜็š„ๆˆไบบๅ…งๅฎน" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:564 msgid "Unlike" msgstr "ๅ–ๆถˆๅ–œๆญก" @@ -13192,7 +13213,7 @@ msgstr "ๅ–ๆถˆ้œ้Ÿณๆญค็พค็ต„ๅฐ่ฉฑ" msgid "Unmute thread" msgstr "ๅ–ๆถˆ้œ้Ÿณ่จŽ่ซ–ไธฒ" -#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:344 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:330 msgid "Unmute video" msgstr "ๅ–ๆถˆ้œ้Ÿณๅฝฑ็‰‡" @@ -13202,14 +13223,14 @@ msgid "Unpin" msgstr "ๅ–ๆถˆ้‡˜้ธ" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:569 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:576 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "ๅ–ๆถˆ้‡˜้ธๅ‹•ๆ…‹ๆบ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:360 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:362 msgid "Unpin from home" msgstr "ๅพž้ฆ–้ ๅ–ๆถˆ้‡˜้ธ" @@ -13224,7 +13245,7 @@ msgid "Unpin moderation list" msgstr "ๅ–ๆถˆ้‡˜้ธๅ…งๅฎน็ฎก็†ๅˆ—่กจ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:169 msgid "Unpinned {0} from Home" msgstr "ๆˆๅŠŸๅพž้ฆ–้ ๅ–ๆถˆ้‡˜้ธ {0}" @@ -13258,11 +13279,11 @@ msgstr "ๅ–ๆถˆ่จ‚้–ฑ้€™ๅ€‹ๆจ™่จ˜ๆœๅ‹™" msgid "Unsubscribed from list" msgstr "ๆˆๅŠŸๅ–ๆถˆๅฅ—็”จๅˆ—่กจ" -#: src/view/com/composer/text-input/TextInput.tsx:128 +#: src/view/com/composer/text-input/TextInput.tsx:127 msgid "Unsupported clipboard content" msgstr "ไธๆ”ฏๆด็š„ๅ‰ช่ฒผ็ฐฟๅ…งๅฎน" -#: src/view/com/composer/Composer.tsx:1638 +#: src/view/com/composer/Composer.tsx:1644 msgid "Unsupported video type: {mimeType}" msgstr "ไธๆ”ฏๆด็š„ๅฝฑ็‰‡้กžๅž‹๏ผš{mimeType}" @@ -13328,7 +13349,7 @@ msgctxt "toast" msgid "Updating reply visibility failed" msgstr "ๆ›ดๆ–ฐๅ›ž่ฆ†ๅฏ่ฆ‹ๅบฆๆ™‚็™ผ็”Ÿๅ•้กŒ" -#: src/screens/Onboarding/StepProfile/index.tsx:315 +#: src/screens/Onboarding/StepProfile/index.tsx:312 msgid "Upload a photo instead" msgstr "ๆˆ–ๆ˜ฏไธŠๅ‚ณๅœ–็‰‡" @@ -13355,7 +13376,7 @@ msgstr "ๅพžๆช”ๆกˆไธŠๅ‚ณ" msgid "Upload from Library" msgstr "ๅพž็›ธ็ฐฟไธŠๅ‚ณ" -#: src/view/com/composer/Composer.tsx:2678 +#: src/view/com/composer/Composer.tsx:2684 msgid "Uploading GIF..." msgstr "ๆญฃๅœจไธŠๅ‚ณ GIFโ€ฆโ€ฆ" @@ -13369,7 +13390,7 @@ msgstr "ๆญฃๅœจไธŠๅ‚ณๅœ–็‰‡โ€ฆโ€ฆ" msgid "Uploading link thumbnail..." msgstr "ๆญฃๅœจไธŠๅ‚ณ้€ฃ็ต็ธฎๅœ–โ€ฆโ€ฆ" -#: src/view/com/composer/Composer.tsx:2680 +#: src/view/com/composer/Composer.tsx:2686 msgid "Uploading video..." msgstr "ๆญฃๅœจไธŠๅ‚ณๅฝฑ็‰‡โ€ฆโ€ฆ" @@ -13408,7 +13429,7 @@ msgstr "ไฝฟ็”จ้€™ๅ€‹ๅ’Œๆ‚จ็š„ๅธณ่™Ÿไปฃ็ขผไธ€่ตท็™ปๅ…ฅๅ…ถไป–ๆ‡‰็”จ็จ‹ๅผใ€‚" msgid "Use your account email address, or another real email address you control, in case KWS or Bluesky needs to contact you." msgstr "ไฝฟ็”จๆ‚จๅธณ่™Ÿ็š„้›ปๅญ้ƒตไปถๅœฐๅ€๏ผŒๆˆ–ๅฆๅค–ไธ€ๅ€‹ๆ‚จๆ“ๆœ‰็š„้›ปๅญ้ƒตไปถๅœฐๅ€๏ผŒไปฅ้˜ฒ KWS ๆˆ– Bluesky ้œ€่ฆ่ˆ‡ๆ‚จ่ฏ็ตกใ€‚" -#: src/view/screens/Profile.tsx:383 +#: src/view/screens/Profile.tsx:396 msgid "user" msgstr "ไฝฟ็”จ่€…" @@ -13482,7 +13503,7 @@ msgstr "ไฝฟ็”จ่€…ๅ็จฑๅช่ƒฝๅŒ…ๅซๅญ—ๆฏ (a-z)ใ€ๆ•ธๅญ—ๅŠ้€ฃๅญ—่™Ÿ (-)" #: src/screens/Login/LoginForm.tsx:305 msgid "Username or email" -msgstr "" +msgstr "ไฝฟ็”จ่€…ๅ็จฑๆˆ–้›ปๅญไฟก็ฎฑ" #: src/screens/Login/LoginForm.tsx:315 msgid "Username or email address" @@ -13510,7 +13531,7 @@ msgstr "็„กๆณ•ๆŽˆไบˆ้ฉ—่ญ‰๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌกใ€‚" msgid "Verification settings" msgstr "้ฉ—่ญ‰่จญๅฎš" -#: src/Navigation.tsx:207 +#: src/Navigation.tsx:208 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "้ฉ—่ญ‰่จญๅฎš" @@ -13618,34 +13639,34 @@ msgstr "ๅฝฑ็‰‡" msgid "Video failed to process" msgstr "ๅฝฑ็‰‡่™•็†ๅคฑๆ•—" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:571 msgid "Video Feed" msgstr "ๅฝฑ็‰‡ๅ‹•ๆ…‹ๆบ" #. placeholder {0}: author.handle -#: src/components/VideoPostCard.tsx:122 +#: src/components/VideoPostCard.tsx:121 msgid "Video from {0}: {text}" msgstr "ๅฝฑ็‰‡ไพ†่‡ช {0}๏ผš{text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) -#: src/screens/VideoFeed/index.tsx:1157 +#: src/screens/VideoFeed/index.tsx:1174 msgid "Video from {0}. Tap to play or pause the video" msgstr "ไพ†่‡ช {0} ็š„ๅฝฑ็‰‡ใ€‚้ปžไธ€ไธ‹ไพ†ๆ’ญๆ”พๆˆ–ๆšซๅœๅฝฑ็‰‡" #: src/lib/interests.ts:62 -#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:229 msgid "Video Games" msgstr "้›ปๅญ้Šๆˆฒ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is paused" msgstr "ๅฝฑ็‰‡ๅทฒๆšซๅœ" -#: src/screens/VideoFeed/index.tsx:1156 +#: src/screens/VideoFeed/index.tsx:1173 msgid "Video is playing" msgstr "ๅฝฑ็‰‡ๆญฃๅœจๆ’ญๆ”พ" -#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:299 msgid "Video not found." msgstr "ๆ‰พไธๅˆฐๅฝฑ็‰‡ใ€‚" @@ -13653,7 +13674,7 @@ msgstr "ๆ‰พไธๅˆฐๅฝฑ็‰‡ใ€‚" msgid "Video settings" msgstr "ๅฝฑ็‰‡่จญๅฎš" -#: src/view/com/composer/Composer.tsx:2698 +#: src/view/com/composer/Composer.tsx:2704 msgid "Video uploaded" msgstr "ๅฝฑ็‰‡ไธŠๅ‚ณๆˆๅŠŸ" @@ -13662,17 +13683,17 @@ msgstr "ๅฝฑ็‰‡ไธŠๅ‚ณๆˆๅŠŸ" msgid "Video: {0}" msgstr "ๅฝฑ็‰‡๏ผš{0}" -#: src/view/screens/Profile.tsx:237 +#: src/view/screens/Profile.tsx:239 msgid "Videos" msgstr "ๅฝฑ็‰‡" -#: src/view/com/composer/Composer.tsx:445 -#: src/view/com/composer/Composer.tsx:577 +#: src/view/com/composer/Composer.tsx:446 +#: src/view/com/composer/Composer.tsx:578 #: src/view/com/composer/SelectMediaButton.tsx:440 msgid "Videos must be less than 3 minutes long." msgstr "ๅฝฑ็‰‡้•ทๅบฆไธๅพ—่ถ…้Ž 3 ๅˆ†้˜ใ€‚" -#: src/view/com/composer/Composer.tsx:1228 +#: src/view/com/composer/Composer.tsx:1234 msgctxt "Action to view the post the user just created" msgid "View" msgstr "ๆชข่ฆ–" @@ -13691,9 +13712,9 @@ msgstr "ๆชข่ฆ– {0} ็š„ๅคง้ ญ่ฒผ็…ง" #. placeholder {0}: authors[0].profile.displayName || authors[0].profile.handle #. placeholder {0}: info.creatorHandle #. placeholder {0}: profile.handle -#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:505 #: src/screens/Search/components/SearchProfileCard.tsx:37 -#: src/screens/VideoFeed/index.tsx:863 +#: src/screens/VideoFeed/index.tsx:880 #: src/view/com/notifications/NotificationFeedItem.tsx:619 msgid "View {0}'s profile" msgstr "ๆชข่ฆ– {0} ็š„ๅ€‹ไบบๆช”ๆกˆ" @@ -13724,13 +13745,13 @@ msgstr "้–ฑ่ฎ€้ƒจ่ฝๆ ผๆ–‡็ซ ไปฅ็žญ่งฃๆ›ดๅคš่ณ‡่จŠ" msgid "View debug entry" msgstr "ๆชข่ฆ–ๅต้Œฏ้ …็›ฎ" -#: src/screens/VideoFeed/index.tsx:728 -#: src/screens/VideoFeed/index.tsx:746 +#: src/screens/VideoFeed/index.tsx:745 +#: src/screens/VideoFeed/index.tsx:763 msgid "View details" msgstr "ๆชข่ฆ–่ฉณ็ดฐ่ณ‡่จŠ" #: src/view/com/posts/ViewFullThread.tsx:31 -#: src/view/com/posts/ViewFullThread.tsx:64 +#: src/view/com/posts/ViewFullThread.tsx:65 msgid "View full thread" msgstr "ๆชข่ฆ–ๅฎŒๆ•ด่จŽ่ซ–ไธฒ" @@ -13750,18 +13771,18 @@ msgstr "ๆชข่ฆ–ๆญค็พค็ต„ๅฐ่ฉฑๆ”ถๅˆฐ็š„ๅŠ ๅ…ฅ็”ณ่ซ‹" msgid "View information about these labels" msgstr "ๆชข่ฆ–ๆœ‰้—œ้€™ไบ›ๆจ™่จ˜็š„่ฉณ็ดฐ่ณ‡่จŠ" -#: src/components/interstitials/TrendingVideos.tsx:200 -#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/components/interstitials/TrendingVideos.tsx:199 +#: src/components/interstitials/TrendingVideos.tsx:221 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 #: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 msgid "View more" msgstr "ๆชข่ฆ–ๆ›ดๅคš" -#: src/components/interstitials/TrendingVideos.tsx:228 +#: src/components/interstitials/TrendingVideos.tsx:227 msgid "View more trending videos" msgstr "ๆชข่ฆ–ๆ›ดๅคš็†ฑ้–€ๅฝฑ็‰‡" -#: src/view/com/composer/Composer.tsx:1223 +#: src/view/com/composer/Composer.tsx:1229 msgid "View post" msgstr "ๆชข่ฆ–่ฒผๆ–‡" @@ -13798,15 +13819,15 @@ msgstr "ๆชข่ฆ–ๆญค็พค็ต„ๅฐ่ฉฑ็š„้‚€่ซ‹้€ฃ็ต" msgid "View the labeling service provided by @{0}" msgstr "ๆชข่ฆ–็”ฑ @{0} ๆไพ›็š„ๆจ™่จ˜ๆœๅ‹™" -#: src/components/verification/VerificationCheckButton.tsx:93 +#: src/components/verification/VerificationCheckButton.tsx:103 msgid "View this user's verifications" msgstr "ๆชข่ฆ–ๆญคไฝฟ็”จ่€…็š„้ฉ—่ญ‰" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 msgid "View users who like this feed" msgstr "ๆชข่ฆ–ๅ–œๆญก้€™ๅ€‹ๅ‹•ๆ…‹ๆบ็š„ไฝฟ็”จ่€…" -#: src/components/VideoPostCard.tsx:401 +#: src/components/VideoPostCard.tsx:398 msgid "View video" msgstr "่ง€็œ‹ๅฝฑ็‰‡" @@ -13831,7 +13852,7 @@ msgstr "ๆชข่ฆ–ๆ‚จ็š„ๅ…งๅฎน็ฎก็†ๅˆ—่กจ" msgid "View your muted accounts" msgstr "ๆชข่ฆ–ๆ‚จ้œ้Ÿณ็š„ๅธณ่™Ÿ" -#: src/components/verification/VerificationCheckButton.tsx:92 +#: src/components/verification/VerificationCheckButton.tsx:102 msgid "View your verifications" msgstr "ๆชข่ฆ–ๆ‚จ็š„้ฉ—่ญ‰" @@ -13840,7 +13861,7 @@ msgstr "ๆชข่ฆ–ๆ‚จ็š„้ฉ—่ญ‰" msgid "Views full image" msgstr "ๆชข่ฆ–ๅฎŒๆ•ดๅœ–็‰‡" -#: src/components/VideoPostCard.tsx:121 +#: src/components/VideoPostCard.tsx:120 msgid "Views video in immersive mode" msgstr "้€ฒๅ…ฅๆฒ‰ๆตธๆจกๅผ่ง€็œ‹ๅฝฑ็‰‡" @@ -13898,7 +13919,7 @@ msgstr "ๆ‰พไธๅˆฐ่ฉฒๅˆ—่กจใ€‚ๅฏ่ƒฝๅทฒ่ขซๅˆช้™คใ€‚" #: src/screens/Login/LoginForm.tsx:348 msgid "We couldn't find an account with that username. Please check that you've typed it correctly, or <0>set your hosting provider manually." -msgstr "" +msgstr "ๆˆ‘ๅ€‘ๆ‰พไธๅˆฐ็ฌฆๅˆ่ฉฒไฝฟ็”จ่€…ๅ็จฑ็š„ๅธณ่™Ÿใ€‚่ซ‹็ขบ่ช่ผธๅ…ฅ็„ก่ชค๏ผŒๆˆ–<0>ๆ‰‹ๅ‹•้ธๆ“‡ๆ‚จ็š„่จ—็ฎกๆœๅ‹™ๆไพ›่€…ใ€‚" #: src/screens/Hashtag.tsx:260 msgid "We couldn't find any results for that tag." @@ -13922,7 +13943,7 @@ msgstr "็„กๆณ•่ผ‰ๅ…ฅ้€™ๅ€‹ๅฐ่ฉฑ็š„่จญๅฎš" #: src/screens/Login/LoginForm.tsx:482 msgid "We couldnโ€™t verify your hosting provider. Check your internet connection, or <0>set your hosting provider manually." -msgstr "" +msgstr "ๆˆ‘ๅ€‘็„กๆณ•็ขบ่ชๆ‚จ็š„่จ—็ฎกๆœๅ‹™ๆไพ›่€…ใ€‚่ซ‹ๆชขๆŸฅๆ‚จ็š„็ถฒ้š›็ถฒ่ทฏ้€ฃ็ทš๏ผŒๆˆ–<0>ๆ‰‹ๅ‹•้ธๆ“‡ๆ‚จ็š„ๆœๅ‹™ๆไพ›่€…ใ€‚" #: src/components/contacts/screens/GetContacts.tsx:244 msgid "We delete hashes after matches are made" @@ -14001,7 +14022,7 @@ msgstr "ๆˆ‘ๅ€‘ๆœƒๅœจๆ‰พๅˆฐๆ‚จ็š„ๆœ‹ๅ‹ๆ™‚ๅ‚ณ้€้€š็Ÿฅใ€‚" #: src/screens/Settings/components/BetaFeaturesFeedbackDialog.tsx:101 msgid "Weโ€™d love to hear about your experience testing beta features!" -msgstr "" +msgstr "ๆˆ‘ๅ€‘ๆƒณ็žญ่งฃๆ‚จ้ซ”้ฉ—ๅฎŒๆธฌ่ฉฆๅŠŸ่ƒฝๅพŒ็š„ๆƒณๆณ•๏ผ" #. placeholder {0}: currentAccount!.email #: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 @@ -14035,7 +14056,7 @@ msgid "We're having network issues, try again" msgstr "ๆˆ‘ๅ€‘้‡ๅˆฐไบ†็ถฒ่ทฏๅ•้กŒ๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌก" #: src/components/dms/AddMembersFlow.tsx:197 -#: src/components/dms/InitiateChatFlow.tsx:289 +#: src/components/dms/InitiateChatFlow.tsx:321 msgid "Weโ€™re having network issues, try again" msgstr "ๆˆ‘ๅ€‘้‡ๅˆฐไบ†็ถฒ่ทฏๅ•้กŒ๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌก" @@ -14043,7 +14064,7 @@ msgstr "ๆˆ‘ๅ€‘้‡ๅˆฐไบ†็ถฒ่ทฏๅ•้กŒ๏ผŒ่ซ‹ๅ†่ฉฆไธ€ๆฌก" msgid "Weโ€™re introducing a new layer of verification on Bluesky โ€” an easy-to-see checkmark." msgstr "็‚บๆ‚จไป‹็ดน Bluesky ็š„ๅ…จๆ–ฐ้ฉ—่ญ‰ๆฉŸๅˆถ โ€”โ€” ้ฉ—่ญ‰ๆจ™่จ˜ใ€‚" -#: src/screens/Signup/index.tsx:142 +#: src/screens/Signup/index.tsx:140 msgid "Weโ€™re so excited to have you join us!" msgstr "ๆˆ‘ๅ€‘้žๅธธ้ซ˜่ˆˆ็œ‹ๅˆฐๆ‚จๅŠ ๅ…ฅๆˆ‘ๅ€‘๏ผ" @@ -14064,13 +14085,15 @@ msgstr "ๅพˆๆŠฑๆญ‰๏ผŒๆˆ‘ๅ€‘็„กๆณ•่งฃๆžๆญคๅˆ—่กจใ€‚ๅฆ‚ๆžœๅ•้กŒๆŒ็บŒ็™ผ็”Ÿ๏ผŒ่ซ‹ msgid "We're sorry, but we weren't able to load your muted words at this time. Please try again." msgstr "ๅพˆๆŠฑๆญ‰๏ผŒๆˆ‘ๅ€‘็›ฎๅ‰็„กๆณ•่ผ‰ๅ…ฅๆ‚จ็š„้œ้Ÿณๅญ—่ฉžใ€‚่ซ‹็จๅพŒๅ†่ฉฆใ€‚" -#: src/screens/Search/SearchResults.tsx:412 -#: src/screens/Search/SearchResults.tsx:553 +#: src/screens/Search/SearchResults.tsx:439 +#: src/screens/Search/SearchResults.tsx:580 +#: src/screens/Search/SearchResults.tsx:777 msgid "Weโ€™re sorry, but your search could not be completed." -msgstr "" +msgstr "ๅพˆๆŠฑๆญ‰๏ผŒ็„กๆณ•ๅฎŒๆˆๆ‚จ็š„ๆœๅฐ‹่ฆๆฑ‚ใ€‚" -#: src/screens/Search/SearchResults.tsx:411 -#: src/screens/Search/SearchResults.tsx:552 +#: src/screens/Search/SearchResults.tsx:438 +#: src/screens/Search/SearchResults.tsx:579 +#: src/screens/Search/SearchResults.tsx:776 msgid "Weโ€™re sorry, but your search could not be completed. Please try again in a few minutes." msgstr "ๅพˆๆŠฑๆญ‰๏ผŒ็„กๆณ•ๅฎŒๆˆๆ‚จ็š„ๆœๅฐ‹่ฆๆฑ‚ใ€‚่ซ‹็จๅพŒๅนพๅˆ†้˜ๅ†่ฉฆไธ€ๆฌกใ€‚" @@ -14078,7 +14101,7 @@ msgstr "ๅพˆๆŠฑๆญ‰๏ผŒ็„กๆณ•ๅฎŒๆˆๆ‚จ็š„ๆœๅฐ‹่ฆๆฑ‚ใ€‚่ซ‹็จๅพŒๅนพๅˆ†้˜ๅ†่ฉฆไธ€ msgid "We're sorry, you cannot access this screen at this time." msgstr "ๅพˆๆŠฑๆญ‰๏ผŒๆ‚จ็›ฎๅ‰็„กๆฌŠๅญ˜ๅ–้€™ๅ€‹้ ้ขใ€‚" -#: src/view/com/composer/Composer.tsx:1119 +#: src/view/com/composer/Composer.tsx:1125 msgid "We're sorry! The post you are replying to has been deleted." msgstr "ๅพˆๆŠฑๆญ‰๏ผๆ‚จ่ฆๅ›ž่ฆ†็š„่ฒผๆ–‡ๅทฒ่ขซๅˆช้™คใ€‚" @@ -14134,7 +14157,7 @@ msgid "whatโ€™s up" msgstr "ๆœ‰ไป€้บผๆ–ฐ้ฎฎไบ‹" #: src/view/com/auth/SplashScreen.web.tsx:100 -#: src/view/com/composer/Composer.tsx:1602 +#: src/view/com/composer/Composer.tsx:1608 #: src/view/com/feeds/ComposerPrompt.tsx:192 msgid "What's up?" msgstr "็™ผ็”Ÿไบ†ไป€้บผๆ–ฐ้ฎฎไบ‹๏ผŸ" @@ -14161,7 +14184,7 @@ msgid "Who can verify?" msgstr "ๅ“ชไบ›ไบบๅฏไปฅๆŽˆไบˆ้ฉ—่ญ‰๏ผŸ" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:410 +#: src/screens/Messages/ChatList.tsx:409 #: src/screens/Messages/Inbox.tsx:191 msgid "Whoops!" msgstr "ๅ’ฆ๏ผŸ" @@ -14220,21 +14243,21 @@ msgstr "้œ€่ฆๅฐ้Ž–ๆญคๅธณ่™Ÿใ€้€€ๅ‡บๅฐ่ฉฑ๏ผŒๆˆ–ๅ…ฉ่€…ไธ€ไฝตๅŸท่กŒๅ—Ž๏ผŸ" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "ๅœจๆชข่ฆ–ๅ…ถไป–่‰็จฟๅ‰๏ผŒ้œ€่ฆๅ…ˆๅ„ฒๅญ˜็พๆœ‰ๅ…งๅฎนๅ—Ž๏ผŸ" -#: src/view/com/composer/Composer.tsx:1517 +#: src/view/com/composer/Composer.tsx:1523 msgid "Would you like to save this as a draft to edit later?" msgstr "้œ€่ฆๆŠŠ็พๆœ‰ๅ…งๅฎนๅ„ฒๅญ˜็‚บ่‰็จฟ๏ผŒไปฅไพ›ๆ—ฅๅพŒ็ทจ่ผฏๅ—Ž๏ผŸ" -#: src/view/screens/Profile.tsx:434 -#: src/view/screens/Profile.tsx:435 +#: src/view/screens/Profile.tsx:447 +#: src/view/screens/Profile.tsx:448 msgid "Write a post" msgstr "ๆ’ฐๅฏซไธ€็ฏ‡่ฒผๆ–‡" -#: src/view/com/composer/Composer.tsx:1698 +#: src/view/com/composer/Composer.tsx:1704 msgid "Write post" msgstr "ๆ’ฐๅฏซ่ฒผๆ–‡" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1600 +#: src/view/com/composer/Composer.tsx:1606 msgid "Write your reply" msgstr "ๆ’ฐๅฏซๆ‚จ็š„ๅ›ž่ฆ†" @@ -14300,7 +14323,7 @@ msgid "You are accessing Bluesky from a region that legally requires us to verif msgstr "ๆ‚จๆ‰€ๅœจ็š„ๅœฐๅ€ไพๆณ•่ฆๆฑ‚ๆˆ‘ๅ€‘ๅœจๅ…่จฑๆ‚จไฝฟ็”จ Bluesky ๆ‡‰็”จ็จ‹ๅผไน‹ๅ‰้ฉ—่ญ‰ๆ‚จ็š„ๅนด้ฝกใ€‚" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:719 +#: src/components/dms/MessageItem.tsx:720 msgid "You are blocking {0}" msgstr "ๆ‚จๅฐ้Ž–ไบ† {0}" @@ -14342,7 +14365,7 @@ msgstr "ๆ‚จๅทฒๅœๆญข็›ดๆ’ญ" msgid "You are not allowed to upload videos." msgstr "ๆ‚จๆฒ’ๆœ‰ไธŠๅ‚ณๅฝฑ็‰‡็š„ๆฌŠ้™ใ€‚" -#: src/view/com/profile/ProfileFollows.tsx:181 +#: src/view/com/profile/ProfileFollows.tsx:195 msgid "You are not following anyone yet" msgstr "ๆ‚จๅฐšๆœช่ทŸ้šจไปปไฝ•ไบบ" @@ -14362,7 +14385,7 @@ msgstr "ๆ‚จๅทฒๅพ—ๅˆฐ้ฉ—่ญ‰ใ€‚ไธ€ๆ—ฆๆ‚จไฟฎๆ”นๅ็จฑ๏ผŒๅฐ‡ๆœƒๅคฑๅŽป้ฉ—่ญ‰็‹€ๆ…‹ใ€‚ msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." msgstr "ๆ‚จๅทฒๅพ—ๅˆฐ้ฉ—่ญ‰ใ€‚ไธ€ๆ—ฆๆ‚จไฟฎๆ”นๅธณ่™Ÿไปฃ็ขผ๏ผŒๅฐ‡ๆœƒๅคฑๅŽป้ฉ—่ญ‰็‹€ๆ…‹ใ€‚<0>็žญ่งฃ่ฉณๆƒ…ใ€‚" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:43 msgid "You can adjust your interests at any time from \"Content and media\" settings." msgstr "ๆ‚จๅฏไปฅ้šจๆ™‚ๅœจใ€Œๅ…งๅฎน่ˆ‡ๅช’้ซ”ใ€่จญๅฎšไธญ่ชฟๆ•ดๆ‚จ็š„่ˆˆ่ถฃใ€‚" @@ -14406,11 +14429,11 @@ msgid "You can now sign in with your new password." msgstr "ๆ‚จๅฏไปฅไฝฟ็”จๆ–ฐๅฏ†็ขผ็™ปๅ…ฅไบ†ใ€‚" #. Toast shown when the user tries to add more images but the post gallery is already at the cap -#: src/view/com/composer/Composer.tsx:221 +#: src/view/com/composer/Composer.tsx:222 msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" msgstr "่ฒผๆ–‡ๆœ€ๅคšๅช่ƒฝๅŠ ๅ…ฅ {MAX_GALLERY_IMAGES, plural, other {# ๅผตๅœ–็‰‡}}" -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1528 msgid "You can only save drafts up to 1000 characters." msgstr "ๆ‚จๅช่ƒฝๅ„ฒๅญ˜ๆœ€ๅคš 1000 ๅ€‹ๅญ—ๅ…ƒ็š„่‰็จฟใ€‚" @@ -14439,9 +14462,11 @@ msgstr "ๆ‚จไปๅฏไปฅๆชข่ฆ–่Šๅคฉ่จ˜้Œ„๏ผŒไฝ†็„กๆณ•ๅ‚ณ้€ๆ–ฐ็š„่จŠๆฏใ€‚" msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "ๆ‚จๆœ€ๅคšๅฏไปฅ้ธๆ“‡ {MAX_GALLERY_IMAGES, plural, other {# ๅผตๅœ–็‰‡}}ใ€‚" -#: src/components/interstitials/Trending.tsx:132 -#: src/components/interstitials/TrendingVideos.tsx:138 -#: src/view/shell/desktop/SidebarTrendingTopics.tsx:127 +#: src/components/interstitials/FeedTrendingTopics.tsx:155 +#: src/components/interstitials/Trending.tsx:143 +#: src/components/interstitials/TrendingVideos.tsx:137 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:89 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:138 msgid "You can update this later from your settings." msgstr "ๆ‚จๅฏไปฅ็จๅพŒๅœจ่จญๅฎšไธญ่ฎŠๆ›ดใ€‚" @@ -14451,6 +14476,7 @@ msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reac msgstr "ๆ‚จไธ่ƒฝๅŠ ๅ…ฅ่ถ…้Ž {EMOJI_REACTION_LIMIT, plural, other {# ๅ€‹่กจๆƒ…็ฌฆ่™Ÿๅๆ‡‰}}" #: src/components/dms/dialogs/NewChatDialog.tsx:105 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:121 msgid "You cannot create a group chat yet." msgstr "ๆ‚จ้‚„็„กๆณ•ๅปบ็ซ‹็พค็ต„ๅฐ่ฉฑใ€‚" @@ -14555,7 +14581,7 @@ msgstr "ๆ‚จๅทฒๆˆๅŠŸ้ฉ—่ญ‰้›ปๅญ้ƒตไปถๅœฐๅ€ใ€‚็พๅœจๆ‚จๅฏไปฅ้—œ้–‰ๆญคๅฐ่ฉฑๆก† msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "ๆ‚จๅทฒๆšซๆ™‚้”ๅˆฐๅฝฑ็‰‡ไธŠๅ‚ณ็š„้™ๅˆถใ€‚่ซ‹็จๅพŒๅ†่ฉฆใ€‚" -#: src/view/com/composer/Composer.tsx:1512 +#: src/view/com/composer/Composer.tsx:1518 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "ๆ‚จ็š„่‰็จฟ้‚„ๆœ‰ๅฐšๆœชๅ„ฒๅญ˜็š„่ฎŠๆ›ด๏ผŒ้œ€่ฆๅ„ฒๅญ˜ๅ—Ž๏ผŸ" @@ -14563,7 +14589,7 @@ msgstr "ๆ‚จ็š„่‰็จฟ้‚„ๆœ‰ๅฐšๆœชๅ„ฒๅญ˜็š„่ฎŠๆ›ด๏ผŒ้œ€่ฆๅ„ฒๅญ˜ๅ—Ž๏ผŸ" msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" msgstr "ๆ‚จๆœ‰ๅฐšๆœชๅ„ฒๅญ˜็š„่ฎŠๆ›ดใ€‚ๅœจๆชข่ฆ–ๅ…ถไป–่‰็จฟๅ‰๏ผŒ้œ€่ฆๅ…ˆๅ„ฒๅญ˜็พๆœ‰ๅ…งๅฎนๅ—Ž๏ผŸ" -#: src/components/StarterPack/ProfileStarterPacks.tsx:292 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "You haven't created a starter pack yet!" msgstr "ๆ‚จ้‚„ๆฒ’ๆœ‰ๅปบ็ซ‹ไปปไฝ•ๆ–ฐๆ‰‹ๅŒ…๏ผ" @@ -14614,7 +14640,7 @@ msgstr "ๆœ€ๅคšๅช่ƒฝๅŠ ๅ…ฅ {STARTER_PACK_MAX_SIZE, plural, other {{STARTER_PACK_ msgid "You may only add up to 3 feeds" msgstr "ๆ‚จๆœ€ๅคšๅช่ƒฝๆ–ฐๅขž 3 ๅ€‹ๅ‹•ๆ…‹ๆบ" -#: src/components/moderation/BlockDialog.tsx:321 +#: src/components/moderation/BlockDialog.tsx:318 msgid "You must be a chat owner to remove a member." msgstr "ๆ‚จๅฟ…้ ˆๆ˜ฏๅฐ่ฉฑ็š„ๆ“ๆœ‰่€…ๆ‰่ƒฝ็งป้™คๆˆๅ“กใ€‚" @@ -14622,7 +14648,7 @@ msgstr "ๆ‚จๅฟ…้ ˆๆ˜ฏๅฐ่ฉฑ็š„ๆ“ๆœ‰่€…ๆ‰่ƒฝ็งป้™คๆˆๅ“กใ€‚" msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "ๆ‚จๅฟ…้ ˆๅนดๆปฟ 13 ๆญฒๆ‰่ƒฝไฝฟ็”จ Blueskyใ€‚่ซ‹้–ฑ่ฎ€ๆˆ‘ๅ€‘็š„<0>ๆœๅ‹™ๆขๆฌพไปฅ็žญ่งฃๆ›ดๅคš่ณ‡่จŠใ€‚" -#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +#: src/components/StarterPack/ProfileStarterPacks.tsx:368 msgid "You must be following at least seven other people to generate a starter pack." msgstr "ๆ‚จๅฟ…้ ˆ่ทŸ้šจ่‡ณๅฐ‘ 7 ๅ€‹ไบบๆ‰่ƒฝ็”ข็”Ÿๆ–ฐๆ‰‹ๅŒ…ใ€‚" @@ -14639,7 +14665,7 @@ msgstr "ๆ‚จๅฟ…้ ˆๆŽˆไบˆๆฌŠ้™ไปฅๅญ˜ๅ–ๅช’้ซ”ๅ…งๅฎนใ€‚" msgid "You need to verify your email address before you can enable email 2FA." msgstr "ๆ‚จ้œ€่ฆๅ…ˆ้ฉ—่ญ‰ๆ‚จ็š„้›ปๅญ้ƒตไปถๅœฐๅ€๏ผŒๆ‰่ƒฝๅ•Ÿ็”จ้›ปๅญ้ƒตไปถ้›™้‡้ฉ—่ญ‰ใ€‚" -#: src/components/moderation/BlockDialog.tsx:352 +#: src/components/moderation/BlockDialog.tsx:349 msgid "You own this chat" msgstr "ๆ‚จๆ˜ฏๅฐ่ฉฑ็š„ๆ“ๆœ‰่€…" @@ -14653,7 +14679,7 @@ msgid "You probably want to restart the app now." msgstr "ๆ‚จๆˆ–่จฑ้œ€่ฆ้‡ๆ–ฐๅ•Ÿๅ‹•ๆ‡‰็”จ็จ‹ๅผใ€‚" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:360 +#: src/components/dms/MessageItem.tsx:361 msgid "You reacted {0}" msgstr "ๆ‚จๅšๅ‡บไบ† {0} ๅๆ‡‰" @@ -14667,15 +14693,15 @@ msgstr "ๆ‚จๅฐ {target} ๅšๅ‡บไบ† {0} ๅๆ‡‰" msgid "You recently changed your birthdate" msgstr "ๆ‚จๆœ€่ฟ‘่ฎŠๆ›ดไบ†ๅ‡บ็”Ÿๆ—ฅๆœŸ" -#: src/components/dms/MessageItem.tsx:805 +#: src/components/dms/MessageItem.tsx:806 msgid "You replied" msgstr "ๆ‚จๅ›ž่ฆ†ไบ†" -#: src/components/dms/MessageItem.tsx:804 +#: src/components/dms/MessageItem.tsx:805 msgid "You replied to {originalName}" msgstr "ๆ‚จๅ›ž่ฆ†ไบ† {originalName}" -#: src/components/dms/MessageItem.tsx:802 +#: src/components/dms/MessageItem.tsx:803 msgid "You replied to yourself" msgstr "ๆ‚จๅ›ž่ฆ†ไบ†่‡ชๅทฑ" @@ -14715,11 +14741,11 @@ msgstr "้™ค้žๆ”ถๅˆฐ้‚€่ซ‹๏ผŒๅฆๅ‰‡็„กๆณ•้‡ๆ–ฐๅŠ ๅ…ฅใ€‚" msgid "You: {message}" msgstr "ๆ‚จ๏ผš{message}" -#: src/screens/Signup/index.tsx:160 +#: src/screens/Signup/index.tsx:158 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "็•ถๆ‚จๅฎŒๆˆๅปบ็ซ‹ๅธณ่™ŸๅพŒ๏ผŒๆ‚จๅฐ‡ๆœƒ่‡ชๅ‹•่ทŸ้šจๅปบ่ญฐ็š„ไฝฟ็”จ่€…ๅ’Œๅ‹•ๆ…‹ๆบ๏ผ" -#: src/screens/Signup/index.tsx:165 +#: src/screens/Signup/index.tsx:163 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "็•ถๆ‚จๅฎŒๆˆๅปบ็ซ‹ๅธณ่™ŸๅพŒ๏ผŒๆ‚จๅฐ‡ๆœƒ่‡ชๅ‹•่ทŸ้šจๅปบ่ญฐ็š„ไฝฟ็”จ่€…๏ผ" @@ -14791,7 +14817,7 @@ msgstr "ๆ‚จๅทฒๅˆฐ้”ๅ…งๅฎน็š„ๅฐพ็ซฏใ€‚" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "ๆ‚จๅทฒ็ถ“็€่ฆฝๅฎŒๆ‰€ๆœ‰็š„่ฒผๆ–‡ไบ†๏ผไธๅฆจ่ฉฆ่‘—ๅ†่ทŸ้šจไธ€ไบ›ๅธณ่™Ÿๅงใ€‚" -#: src/view/com/composer/Composer.tsx:723 +#: src/view/com/composer/Composer.tsx:729 msgid "You've reached the maximum number of drafts" msgstr "ๆ‚จๅทฒ้”ๅˆฐ่‰็จฟๆ•ธ้‡ไธŠ้™" @@ -14799,7 +14825,7 @@ msgstr "ๆ‚จๅทฒ้”ๅˆฐ่‰็จฟๆ•ธ้‡ไธŠ้™" msgid "You've reached the maximum number of requests allowed. Please try again later." msgstr "ๆ‚จๅทฒ้”ๅˆฐ่ซ‹ๆฑ‚ๆ•ธไธŠ้™๏ผŒ่ซ‹็จๅพŒๅ†่ฉฆใ€‚" -#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:426 +#: src/screens/Search/components/AdvancedSearchDialog/index.tsx:430 msgid "Youโ€™ve reached the maximum of {MAX_FILTERS, plural, one {# filter} other {# filters}}. Add more values to an existing filter instead of creating new ones." msgstr "ๆ‚จๅทฒ้”ๅˆฐ {MAX_FILTERS, plural, other {# ๅ€‹็ฏฉ้ธๆขไปถ}}็š„ไธŠ้™ใ€‚ๅปบ่ญฐๆ‚จๅฏไฟฎๆ”นๆˆ–ๆ›ฟๆ›้ƒจๅˆ†็ฏฉ้ธๆขไปถไปฅ็นผ็บŒใ€‚" @@ -14815,11 +14841,11 @@ msgstr "ๆ‚จๅทฒ้”ๅˆฐๆฏๆ—ฅๅฝฑ็‰‡ไธŠๅ‚ณ้™ๅˆถ๏ผˆไฝๅ…ƒ็ต„้Žๅคš๏ผ‰" msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "ๆ‚จๅทฒ้”ๅˆฐๆฏๆ—ฅๅฝฑ็‰‡ไธŠๅ‚ณ้™ๅˆถ๏ผˆๅฝฑ็‰‡ๆ•ธ้Žๅคš๏ผ‰" -#: src/screens/VideoFeed/index.tsx:1204 +#: src/screens/VideoFeed/index.tsx:1221 msgid "You've run out of videos to watch. Maybe it's a good time to take a break?" msgstr "ๆ‚จๅทฒ็ถ“็œ‹ๅฎŒไบ†ๆ‰€ๆœ‰ๅฝฑ็‰‡ใ€‚ไนŸ่จฑๆ˜ฏๆ™‚ๅ€™ไผ‘ๆฏไธ€ไธ‹๏ผŸ" -#: src/screens/Signup/index.tsx:201 +#: src/screens/Signup/index.tsx:199 msgid "Your account" msgstr "ๆ‚จ็š„ๅธณ่™Ÿ" @@ -14835,11 +14861,11 @@ msgstr "ๆ‚จ็š„ๅธณ่™Ÿๅทฒ่ขซๅœๆฌŠ" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "ๆ‚จ็š„ๅธณ่™Ÿ่จปๅ†Šๆ™‚้–“ๅคช็Ÿญ๏ผŒๆšซๆ™‚็„กๆณ•ไธŠๅ‚ณๅฝฑ็‰‡ใ€‚่ซ‹็จๅพŒๅ†่ฉฆใ€‚" -#: src/components/dms/InitiateChatFlow.tsx:731 +#: src/components/dms/InitiateChatFlow.tsx:836 msgid "Your account is too new" msgstr "ๆ‚จ็š„ๅธณ่™Ÿๅปบ็ซ‹ๆ™‚้–“ๅคช็Ÿญไบ†" -#: src/components/dms/InitiateChatFlow.tsx:732 +#: src/components/dms/InitiateChatFlow.tsx:837 msgid "Your account must be at least 7 days old to create a new group chat." msgstr "่ฆๅปบ็ซ‹ๆ–ฐ็š„็พค็ต„ๅฐ่ฉฑ๏ผŒๆ‚จ็š„ๅธณ่™Ÿๅฟ…้ ˆๅปบ็ซ‹่‡ณๅฐ‘ 7 ๅคฉไปฅไธŠใ€‚" @@ -14896,7 +14922,7 @@ msgstr "ๆ‚จ็š„้›ปๅญไฟก็ฎฑ" #: src/screens/Login/ForgotPasswordForm.tsx:51 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 -#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/state.ts:297 #: src/screens/Signup/StepInfo/index.tsx:129 msgid "Your email appears to be invalid." msgstr "ๆ‚จ็š„้›ปๅญ้ƒตไปถๅœฐๅ€ไผผไนŽ็„กๆ•ˆใ€‚" @@ -14924,14 +14950,14 @@ msgstr "ๆ‚จ็š„ๅฎŒๆ•ดๅธณ่™Ÿไปฃ็ขผๅฐ‡ไฟฎๆ”น็‚บ <0>@{0}" #: src/screens/Login/components/HostingProviderDialog.tsx:182 msgid "Your hosting provider canโ€™t be detected from an email address, so the default Bluesky service will be used. Enter your username instead, or set your provider manually." -msgstr "" +msgstr "็„กๆณ•ๅพž้›ปๅญ้ƒตไปถๅœฐๅ€ๅˆคๆ–ทๆ‚จ็š„่จ—็ฎกๆœๅ‹™ๆไพ›่€…๏ผŒๅ› ๆญคๅฐ‡ไฝฟ็”จ้ ่จญ็š„ Bluesky ๆœๅ‹™ใ€‚่ซ‹ๆ”น็‚บ่ผธๅ…ฅๆ‚จ็š„ไฝฟ็”จ่€…ๅ็จฑ๏ผŒๆˆ–ๆ‰‹ๅ‹•้ธๆ“‡ๆ‚จ็š„ๆœๅ‹™ๆไพ›่€…ใ€‚" #: src/screens/Login/components/HostingProviderDialog.tsx:188 msgid "Your hosting provider is detected automatically from the username you enter." -msgstr "" +msgstr "็ณป็ตฑๆœƒๆ นๆ“šๆ‚จ่ผธๅ…ฅ็š„ไฝฟ็”จ่€…ๅ็จฑ่‡ชๅ‹•ๅตๆธฌๆ‚จ็š„่จ—็ฎกๆœๅ‹™ๆไพ›่€…ใ€‚" -#: src/Navigation.tsx:466 -#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: src/Navigation.tsx:475 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:62 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 #: src/screens/Settings/InterestsSettings.tsx:49 @@ -14943,7 +14969,7 @@ msgctxt "toast" msgid "Your interests have been updated!" msgstr "ๆˆๅŠŸๆ›ดๆ–ฐ่ˆˆ่ถฃไธป้กŒ๏ผ" -#: src/screens/Search/modules/ExploreInterestsCard.tsx:95 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:89 msgid "Your interests help us find what you like!" msgstr "้ธๆ“‡่ˆˆ่ถฃไธป้กŒๅฏไปฅๅ”ๅŠฉๆˆ‘ๅ€‘ๆŽจ่–ฆๆ›ดๅคšๆ‚จๅ–œๆญก็š„ๅ…งๅฎน๏ผ" @@ -14967,11 +14993,11 @@ msgstr "ๅทฒๆˆๅŠŸ่ฎŠๆ›ดๆ‚จ็š„ๅฏ†็ขผ๏ผๅพ€ๅพŒ่ซ‹ไฝฟ็”จๆ‚จ็š„ๆ–ฐๅฏ†็ขผ็™ปๅ…ฅ Blues msgid "Your password must be at least 8 characters long." msgstr "ๆ‚จ่ผธๅ…ฅ็š„ๅฏ†็ขผๅฟ…้ ˆ่‡ณๅฐ‘ๅŒ…ๅซ 8 ๅ€‹ๅญ—ๅ…ƒใ€‚" -#: src/view/com/composer/Composer.tsx:1219 +#: src/view/com/composer/Composer.tsx:1225 msgid "Your post was sent" msgstr "ๅทฒ็™ผๅธƒๆ‚จ็š„่ฒผๆ–‡" -#: src/view/com/composer/Composer.tsx:1216 +#: src/view/com/composer/Composer.tsx:1222 msgid "Your posts were sent" msgstr "ๅทฒ็™ผๅธƒๆ‚จ็š„่ฒผๆ–‡" @@ -14980,11 +15006,11 @@ msgid "Your preferred language" msgstr "ๆ‚จ็š„ๅๅฅฝ่ชž่จ€" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:54 msgid "Your profile picture" msgstr "ๆ‚จ็š„ๅคง้ ญ่ฒผ็…ง" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:36 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" msgstr "ๆ‚จ็š„ๅคง้ ญ่ฒผ็…งๅœจไธญๅฟƒ๏ผŒๅ‘จๅœˆ็’ฐ็นž่‘—่จฑๅคšไฝฟ็”จ่€…็š„ๅคง้ ญ่ฒผ็…ง" @@ -14992,7 +15018,7 @@ msgstr "ๆ‚จ็š„ๅคง้ ญ่ฒผ็…งๅœจไธญๅฟƒ๏ผŒๅ‘จๅœˆ็’ฐ็นž่‘—่จฑๅคšไฝฟ็”จ่€…็š„ๅคง้ ญ่ฒผ msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "ๅ…ถไป– Bluesky ไฝฟ็”จ่€…ๅฐ‡็„กๆณ•ๅ†็œ‹ๅˆฐๆ‚จ็š„ๅ€‹ไบบๆช”ๆกˆใ€่ฒผๆ–‡ใ€ๅ‹•ๆ…‹ๆบๅ’Œๅˆ—่กจใ€‚ๆ‚จ้šจๆ™‚้ƒฝๅฏไปฅ็™ปๅ…ฅไปฅ้‡ๆ–ฐๅ•Ÿ็”จๆ‚จ็š„ๅธณ่™Ÿใ€‚" -#: src/view/com/composer/Composer.tsx:1218 +#: src/view/com/composer/Composer.tsx:1224 msgid "Your reply was sent" msgstr "ๅทฒ็™ผๅธƒๆ‚จ็š„ๅ›ž่ฆ†" @@ -15005,13 +15031,13 @@ msgstr "ๆ‚จ็š„ๆชข่ˆ‰ๅฐ‡ๆไบค่‡ณ <0>{0}ใ€‚" msgid "Your selected interests help us serve you content you care about." msgstr "ๆ‚จ้ธๆ“‡็š„่ˆˆ่ถฃไธป้กŒๅฏไปฅๅ”ๅŠฉๆˆ‘ๅ€‘ๆไพ›ๆ›ดๅคšๆ‚จๆƒณ็œ‹ๅˆฐ็š„ๅ…งๅฎนใ€‚" -#: src/view/com/composer/Composer.tsx:1547 +#: src/view/com/composer/Composer.tsx:1553 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "ๆ‚จ็š„่จŽ่ซ–ไธฒไธญๅŒ…ๅซ็ฉบ็™ฝ่ฒผๆ–‡๏ผŒ็นผ็บŒ็™ผๅธƒๅฐ‡่ทณ้Ž้€™ไบ›ๅ…งๅฎนใ€‚ๅ…ถ้ค˜่ฒผๆ–‡ๆœƒ้‡ๆ–ฐๆ•ด็†ๆˆๅฎŒๆ•ด็š„่จŽ่ซ–ไธฒ็™ผๅธƒใ€‚" #: src/screens/Login/components/ConfirmHostingProviderDialog.tsx:80 msgid "Your username and password will be shared with <0>{host}. If you donโ€™t recognize this provider, double-check your username." -msgstr "" +msgstr "ๆ‚จ็š„ไฝฟ็”จ่€…ๅ็จฑ่ˆ‡ๅฏ†็ขผๅฐ‡ๆœƒๅˆ†ไบซ็ตฆ <0>{host}ใ€‚่‹ฅๆ‚จไธ่ช่ญ˜ๆญคๆไพ›่€…๏ผŒ่ซ‹ๅ†ๆฌก็ขบ่ชๆ‚จ็š„ไฝฟ็”จ่€…ๅ็จฑใ€‚" #: src/components/verification/VerificationsDialog.tsx:67 msgid "Your verifications" diff --git a/src/logger/__tests__/logger.test.ts b/src/logger/__tests__/logger.test.ts index d7bda5ad23..ed46301f6e 100644 --- a/src/logger/__tests__/logger.test.ts +++ b/src/logger/__tests__/logger.test.ts @@ -242,6 +242,20 @@ describe('general functionality', () => { __context__: 'logger', }, }) + + const fingerprint = ['{{ default }}', 'report-dialog:upstream-fetch'] + sentryTransport( + LogLevel.Error, + Logger.Context.ReportDialog, + e, + {fingerprint}, + timestamp, + ) + expect(Sentry.captureException).toHaveBeenLastCalledWith(e, { + tags: {category: 'report-dialog'}, + extra: {__context__: 'report-dialog'}, + fingerprint, + }) }) test('sentryTransport serializes errors', () => { diff --git a/src/logger/transports/sentry.ts b/src/logger/transports/sentry.ts index 1764e91541..92a7b92f67 100644 --- a/src/logger/transports/sentry.ts +++ b/src/logger/transports/sentry.ts @@ -7,7 +7,7 @@ export const sentryTransport: Transport = ( level, context, message, - {type, tags, ...metadata}, + {type, tags, fingerprint, ...metadata}, timestamp, ) => { // Skip debug messages entirely for now - esb @@ -70,6 +70,7 @@ export const sentryTransport: Transport = ( level: severity, tags: _tags, extra: meta, + ...(fingerprint ? {fingerprint} : {}), }) } } else { @@ -84,6 +85,7 @@ export const sentryTransport: Transport = ( Sentry.captureException(message, { tags: _tags, extra: meta, + ...(fingerprint ? {fingerprint} : {}), }) } } diff --git a/src/logger/types.ts b/src/logger/types.ts index cc700dc58b..7d3c897477 100644 --- a/src/logger/types.ts +++ b/src/logger/types.ts @@ -82,6 +82,12 @@ export type Metadata = { [key: string]: number | string | boolean | null | undefined } + /** + * Passed through to Sentry as a custom fingerprint. Include + * `{{ default }}` to preserve Sentry's default grouping and add dimensions. + */ + fingerprint?: string[] + /** * Any additional data, passed through to Sentry as `extra` param on * exceptions, or the `data` param on breadcrumbs. diff --git a/src/screens/Messages/components/MessageComposer.tsx b/src/screens/Messages/components/MessageComposer.tsx index c5976fb688..1bc5e20e1e 100644 --- a/src/screens/Messages/components/MessageComposer.tsx +++ b/src/screens/Messages/components/MessageComposer.tsx @@ -7,10 +7,10 @@ import { import Animated, { Extrapolation, interpolate, - runOnJS, useAnimatedStyle, } from 'react-native-reanimated' import {useSafeAreaInsets} from 'react-native-safe-area-context' +import {scheduleOnRN} from 'react-native-worklets' import {GlassContainer} from 'expo-glass-effect' import {LinearGradient} from 'expo-linear-gradient' import {type $Typed, type ChatBskyConvoDefs} from '@atproto/api' @@ -95,7 +95,7 @@ export function MessageComposer({ onEnd: evt => { 'worklet' if (IS_ANDROID && evt.progress === 0) { - runOnJS(blur)() + scheduleOnRN(blur) } }, }) diff --git a/src/screens/Messages/components/MessagesList.tsx b/src/screens/Messages/components/MessagesList.tsx index 794740d0b8..312a2277ad 100644 --- a/src/screens/Messages/components/MessagesList.tsx +++ b/src/screens/Messages/components/MessagesList.tsx @@ -13,8 +13,6 @@ import { KeyboardGestureArea, } from 'react-native-keyboard-controller' import Animated, { - FadeIn, - runOnJS, type ScrollEvent, type SharedValue, useAnimatedStyle, @@ -23,6 +21,7 @@ import Animated, { withTiming, } from 'react-native-reanimated' import {useSafeAreaInsets} from 'react-native-safe-area-context' +import {scheduleOnRN} from 'react-native-worklets' import { type $Typed, type AppBskyEmbedRecord, @@ -187,6 +186,14 @@ export function MessagesList({ } }, [hasScrolled, listOpacity]) + // Recreate FadeIn for the footer with a shared value so we can start from a + // non-zero opacity instead of fully transparent. (Needed for GlassView to work properly) + const footerOpacity = useSharedValue(0.05) + + useEffect(() => { + footerOpacity.set(withTiming(1, {duration: 200})) + }, [footerOpacity]) + const inputHeightUI = useSharedValue(0) const [inputHeightJS, setInputHeightJS] = useState(0) @@ -495,7 +502,7 @@ export function MessagesList({ (e.contentOffset.y > newMessagesPill.startContentOffset + 200 || isAtBottom.get()) ) { - runOnJS(setNewMessagesPill)({ + scheduleOnRN(setNewMessagesPill, { show: false, startContentOffset: 0, }) @@ -753,6 +760,10 @@ export function MessagesList({ opacity: listOpacity.get(), })) + const animatedFooterStyle = useAnimatedStyle(() => ({ + opacity: footerOpacity.get(), + })) + return ( @@ -841,7 +852,7 @@ export function MessagesList({ opened: 0, }}> {footer ?? ( - + diff --git a/src/screens/Onboarding/StepProfile/AvatarCircle.tsx b/src/screens/Onboarding/StepProfile/AvatarCircle.tsx index 8cb3da9f1d..64fb26ee7d 100644 --- a/src/screens/Onboarding/StepProfile/AvatarCircle.tsx +++ b/src/screens/Onboarding/StepProfile/AvatarCircle.tsx @@ -1,8 +1,7 @@ import {useMemo} from 'react' import {View} from 'react-native' import {Image as ExpoImage} from 'expo-image' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' +import {useLingui} from '@lingui/react/macro' import {AvatarCreatorCircle} from '#/screens/Onboarding/StepProfile/AvatarCreatorCircle' import {useAvatar} from '#/screens/Onboarding/StepProfile/index' @@ -18,7 +17,7 @@ export function AvatarCircle({ openLibrary: () => unknown openCreator: () => unknown }) { - const {_} = useLingui() + const {t: l} = useLingui() const t = useTheme() const {avatar} = useAvatar() @@ -63,7 +62,7 @@ export function AvatarCircle({ )} - + - ) diff --git a/src/screens/Profile/Header/DisplayName.tsx b/src/screens/Profile/Header/DisplayName.tsx index 684a9fe53b..8bf50fee2d 100644 --- a/src/screens/Profile/Header/DisplayName.tsx +++ b/src/screens/Profile/Header/DisplayName.tsx @@ -37,6 +37,11 @@ export function ProfileHeaderDisplayName({ + {/* + * TODO: Workaround for a rounding bug in Android RN. + * Fixed upstream in RN main (facebook/react-native#56651); remove this + * once we are on a release that contains it (0.86.0 should be good). + */}{' '} ) diff --git a/src/screens/Profile/Header/GrowableBanner.tsx b/src/screens/Profile/Header/GrowableBanner.tsx index 70453f7ae5..ef152aa32f 100644 --- a/src/screens/Profile/Header/GrowableBanner.tsx +++ b/src/screens/Profile/Header/GrowableBanner.tsx @@ -4,13 +4,13 @@ import Animated, { type AnimatedRef, Extrapolation, interpolate, - runOnJS, type SharedValue, useAnimatedProps, useAnimatedReaction, useAnimatedStyle, } from 'react-native-reanimated' import {useSafeAreaInsets} from 'react-native-safe-area-context' +import {scheduleOnRN} from 'react-native-worklets' import {BlurView} from 'expo-blur' import {useIsFetching} from '@tanstack/react-query' @@ -226,7 +226,7 @@ function useShouldAnimateSpinner({ () => scrollY.get() < -5, (value, prevValue) => { if (value !== prevValue) { - runOnJS(setIsOverscrolled)(value) + scheduleOnRN(setIsOverscrolled, value) } }, [scrollY], diff --git a/src/screens/Profile/Header/index.tsx b/src/screens/Profile/Header/index.tsx index b064ea329a..0b7ab16ec4 100644 --- a/src/screens/Profile/Header/index.tsx +++ b/src/screens/Profile/Header/index.tsx @@ -1,12 +1,12 @@ import {memo, useMemo, useState} from 'react' import {type LayoutChangeEvent, StyleSheet, View} from 'react-native' import Animated, { - runOnJS, useAnimatedReaction, useAnimatedStyle, withTiming, } from 'react-native-reanimated' import {useSafeAreaInsets} from 'react-native-safe-area-context' +import {scheduleOnRN} from 'react-native-worklets' import { type AppBskyActorDefs, type AppBskyLabelerDefs, @@ -151,7 +151,7 @@ const MinimalHeader = memo(function MinimalHeader({ () => scrollY.get() > 100, (value, prev) => { if (prev !== value) { - runOnJS(setVisible)(value) + scheduleOnRN(setVisible, value) } }, ) diff --git a/src/screens/Profile/Sections/Feed.tsx b/src/screens/Profile/Sections/Feed.tsx index 1f6863ff36..c830963922 100644 --- a/src/screens/Profile/Sections/Feed.tsx +++ b/src/screens/Profile/Sections/Feed.tsx @@ -11,7 +11,7 @@ import { RQKEY as FEED_RQKEY, } from '#/state/queries/post-feed' import {truncateAndInvalidate} from '#/state/queries/util' -import {PostFeed} from '#/view/com/posts/PostFeed' +import {PostFeed, type PostFeedRef} from '#/view/com/posts/PostFeed' import { EmptyState, type EmptyStateButtonProps, @@ -36,6 +36,7 @@ interface FeedSectionProps { emptyStateMessage?: string emptyStateButton?: EmptyStateButtonProps emptyStateIcon?: React.ComponentType | React.ReactElement + postFeedRef?: React.Ref } export function ProfileFeedSection({ @@ -49,6 +50,7 @@ export function ProfileFeedSection({ emptyStateMessage, emptyStateButton, emptyStateIcon, + postFeedRef, }: FeedSectionProps) { const {_} = useLingui() const queryClient = useQueryClient() @@ -111,6 +113,7 @@ export function ProfileFeedSection({ shouldUseAdjustedNumToRender ? adjustedInitialNumToRender : undefined } isVideoFeed={isVideoFeed} + ref={postFeedRef} /> {(isScrolledDown || hasNew) && ( () const scrollRef = useAnimatedRef() - const scrollOffset = useScrollViewOffset(scrollRef) + const scrollOffset = useScrollOffset(scrollRef) /* * Use optimistic data if exists and no error, otherwise fallback to remote diff --git a/src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx b/src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx index ee7e0a8c01..abcaf59285 100644 --- a/src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx +++ b/src/screens/Search/components/AdvancedSearchDialog/FromDropdown.tsx @@ -1,4 +1,4 @@ -import {Trans, useLingui} from '@lingui/react/macro' +import {useLingui} from '@lingui/react/macro' import {platform} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' @@ -19,11 +19,12 @@ export function FromDropdown({ const {t: l} = useLingui() const options: {value: FromFilter; label: string}[] = [ - {value: 'anyone', label: l`Anyone`}, + {value: 'anyone', label: l`No author filter`}, {value: 'following', label: l`People I follow`}, {value: 'me', label: l`Me`}, ] - const currentLabel = options.find(o => o.value === value)?.label ?? l`Anyone` + const currentLabel = + options.find(o => o.value === value)?.label ?? l`No author filter` return ( @@ -45,19 +46,25 @@ export function FromDropdown({ )} - - Filter by author - + onChange(options[0].value)}> + {options[0].label} + + + - {options.map(option => ( - onChange(option.value)}> - {option.label} - - - ))} + {options.map((option, index) => + index === 0 ? null : ( + onChange(option.value)}> + {option.label} + + + ), + )} diff --git a/src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx b/src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx index 1f4c424c8a..9fed05152f 100644 --- a/src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx +++ b/src/screens/Search/components/AdvancedSearchDialog/MediaDropdown.tsx @@ -1,4 +1,4 @@ -import {Trans, useLingui} from '@lingui/react/macro' +import {useLingui} from '@lingui/react/macro' import {platform} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' @@ -19,16 +19,17 @@ export function MediaDropdown({ const {t: l} = useLingui() const options: {value: MediaFilter; label: string}[] = [ - {value: 'all', label: l`All posts`}, + {value: 'all', label: l`No media filter`}, {value: 'media', label: l`Only posts with media`}, {value: 'video', label: l`Only posts with videos`}, ] const currentLabel = - options.find(o => o.value === value)?.label ?? l`All posts` + options.find(o => o.value === value)?.label ?? l`No media filter` return ( - + {({props}) => ( + ) +} + export function PinButton({feed}: {feed: AppBskyFeedDefs.GeneratorView}) { return ( diff --git a/src/screens/Search/components/SearchLanguageDropdown.tsx b/src/screens/Search/components/SearchLanguageDropdown.tsx index f746917ff9..b342753000 100644 --- a/src/screens/Search/components/SearchLanguageDropdown.tsx +++ b/src/screens/Search/components/SearchLanguageDropdown.tsx @@ -62,7 +62,7 @@ export function SearchLanguageDropdown({ }, [appLanguage, contentLanguages, primaryLanguage]) const currentLanguageLabel = - languages.find(lang => lang.value === value)?.label ?? l`All languages` + languages.find(lang => lang.value === value)?.label ?? l`No language filter` return ( @@ -88,12 +88,9 @@ export function SearchLanguageDropdown({ )} - - Filter search by language - - onChange('')}> + onChange('')}> - All languages + No language filter diff --git a/src/screens/Search/modules/ExploreSuggestedAccounts.tsx b/src/screens/Search/modules/ExploreSuggestedAccounts.tsx index 9e459198ca..c32d4eefd3 100644 --- a/src/screens/Search/modules/ExploreSuggestedAccounts.tsx +++ b/src/screens/Search/modules/ExploreSuggestedAccounts.tsx @@ -8,7 +8,6 @@ import {type InfiniteData} from '@tanstack/react-query' import {popularInterests, useInterestsDisplayNames} from '#/lib/interests' import {logger} from '#/logger' import {usePreferencesQuery} from '#/state/queries/preferences' -import {BlockDrawerGesture} from '#/view/shell/BlockDrawerGesture' import {atoms as a, useTheme} from '#/alf' import {boostInterests, InterestTabs} from '#/components/InterestTabs' import * as ProfileCard from '#/components/ProfileCard' @@ -71,26 +70,24 @@ export function SuggestedAccountsTabBar({ .sort(boostInterests(personalizedInterests)) return ( - - { - ax.metric('explore:suggestedAccounts:tabPressed', {tab: tab}) - onSelectInterest(tab === 'all' ? null : tab) - }} - interestsDisplayNames={ - hideDefaultTab - ? interestsDisplayNames - : { - all: defaultTabLabel || _(msg`For You`), - ...interestsDisplayNames, - } - } - /> - + { + ax.metric('explore:suggestedAccounts:tabPressed', {tab: tab}) + onSelectInterest(tab === 'all' ? null : tab) + }} + interestsDisplayNames={ + hideDefaultTab + ? interestsDisplayNames + : { + all: defaultTabLabel || _(msg`For You`), + ...interestsDisplayNames, + } + } + /> ) } diff --git a/src/screens/Search/modules/ExploreTrendingTopics.tsx b/src/screens/Search/modules/ExploreTrendingTopics.tsx index eea857bc8b..38c8cac0a8 100644 --- a/src/screens/Search/modules/ExploreTrendingTopics.tsx +++ b/src/screens/Search/modules/ExploreTrendingTopics.tsx @@ -6,12 +6,17 @@ import { moderateProfile, RichText as RichTextApi, } from '@atproto/api' -import {plural} from '@lingui/core/macro' -import {Trans, useLingui} from '@lingui/react/macro' +import {Plural, Trans, useLingui} from '@lingui/react/macro' import {useModerationOpts} from '#/state/preferences/moderation-opts' -import {useTrendingSettings} from '#/state/preferences/trending' -import {useGetTrendsQuery} from '#/state/queries/trending/useGetTrendsQuery' +import { + useTrendingSettings, + useTrendingSettingsApi, +} from '#/state/preferences/trending' +import { + DEFAULT_LIMIT, + useGetTrendsQuery, +} from '#/state/queries/trending/useGetTrendsQuery' import {useTrendingConfig} from '#/state/service-config' import {LoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {formatCount} from '#/view/com/util/numeric/format' @@ -19,14 +24,14 @@ import {atoms as a, useGutters, useTheme, type ViewStyleProp} from '#/alf' import {AvatarStack} from '#/components/AvatarStack' import {Trending3_Stroke2_Corner1_Rounded as TrendingIcon} from '#/components/icons/Trending' import {Link} from '#/components/Link' +import * as Prompt from '#/components/Prompt' import {RichText} from '#/components/RichText' import {SubtleHover} from '#/components/SubtleHover' +import {useTrendingTopicSeen} from '#/components/TrendingTopics' import {Text} from '#/components/Typography' import {useAnalytics} from '#/analytics' import * as ModuleHeader from '../components/ModuleHeader' -const TOPIC_COUNT = 5 - const IMAGE_SIZE = 56 export function ExploreTrendingTopics() { @@ -37,49 +42,87 @@ export function ExploreTrendingTopics() { function Inner() { const ax = useAnalytics() - const {data: trending, error, isLoading, isRefetching} = useGetTrendsQuery() + const {t: l} = useLingui() + + const topicCount = ax.features.getValue( + ax.features.TrendingExploreTopicsCountValue, + DEFAULT_LIMIT, + ) + + const trendingPrompt = Prompt.usePromptControl() + const {setTrendingDisabled} = useTrendingSettingsApi() + const { + data: trending, + error, + isLoading, + isRefetching, + } = useGetTrendsQuery({limit: topicCount}) const noTopics = !isLoading && !error && !trending?.trends?.length const showLoading = isLoading || isRefetching if (!showLoading && (error || !trending?.trends || noTopics)) return null return ( - - - - - Trending - - - {showLoading - ? Array.from({length: TOPIC_COUNT}).map((__, i) => ( - - )) - : trending?.trends.map((trend, index) => ( - { - ax.metric('trendingTopic:click', { - context: 'explore', - recId: trending.recId, - }) - }} - /> - ))} - + <> + + + + + Trending + + trendingPrompt.open()} + /> + + {showLoading + ? Array.from({length: topicCount}).map((__, i) => ( + + )) + : trending?.trends.map((trend, index) => { + const rank = index + 1 + return ( + { + ax.metric('trendingTopic:click', { + context: 'explore', + rank, + recId: trending.recId, + }) + }} + /> + ) + })} + + + { + ax.metric('trendingTopics:hide', {context: 'explore:trending'}) + setTrendingDisabled(true) + }} + /> + ) } export function TrendRow({ trend, rank, + recId, children, onPress, }: ViewStyleProp & { trend: AppBskyUnspeccedDefs.TrendView rank: number + recId?: string children?: React.ReactNode onPress?: () => void }) { @@ -88,6 +131,8 @@ export function TrendRow({ const gutters = useGutters([0, 'base']) const actors = useModerateTrendingActors(trend.actors) + const formattedPostCount = formatCount(i18n, trend.postCount) + useTrendingTopicSeen('explore', rank, recId) const description = useMemo(() => { if (!trend.description) return @@ -112,9 +157,8 @@ export function TrendRow({ + style={[a.text_md, a.font_semi_bold, a.leading_snug]} + numberOfLines={2}> {trend.displayName} {description ? ( @@ -145,14 +189,14 @@ export function TrendRow({ - {trend.postCount >= 1000 ? ( - 1K+ posts - ) : ( - - {formatCount(i18n, trend.postCount)}{' '} - {plural(trend.postCount, {one: 'post', other: 'posts'})} - - )} + + {formattedPostCount}{' '} + + diff --git a/src/screens/Settings/AppearanceSettings.tsx b/src/screens/Settings/AppearanceSettings.tsx index 6d4c03de0b..d9fe0f863b 100644 --- a/src/screens/Settings/AppearanceSettings.tsx +++ b/src/screens/Settings/AppearanceSettings.tsx @@ -14,7 +14,6 @@ import { type NativeStackScreenProps, } from '#/lib/routes/types' import {useSetThemePrefs, useThemePrefs} from '#/state/shell' -import {SettingsListItem as AppIconSettingsListItem} from '#/screens/Settings/AppIconSettings/SettingsListItem' import {type Alf, atoms as a, native, useAlf, useTheme} from '#/alf' import * as SegmentedControl from '#/components/forms/SegmentedControl' import {type Props as SVGIconProps} from '#/components/icons/common' @@ -24,7 +23,6 @@ import {TextSize_Stroke2_Corner0_Rounded as TextSize} from '#/components/icons/T import {TitleCase_Stroke2_Corner0_Rounded as Aa} from '#/components/icons/TitleCase' import * as Layout from '#/components/Layout' import {Text} from '#/components/Typography' -import {IS_INTERNAL, IS_NATIVE} from '#/env' import * as SettingsList from './components/SettingsList' type Props = NativeStackScreenProps @@ -165,12 +163,12 @@ export function AppearanceSettingsScreen({}: Props) { onChange={onChangeFontScale} /> - {IS_NATIVE && IS_INTERNAL && ( + {/*{IS_NATIVE && IS_INTERNAL && ( <> - )} + )}*/} diff --git a/src/screens/Settings/Settings.tsx b/src/screens/Settings/Settings.tsx index 405f1136e6..37d0e9b5fa 100644 --- a/src/screens/Settings/Settings.tsx +++ b/src/screens/Settings/Settings.tsx @@ -6,7 +6,7 @@ import {Trans, useLingui} from '@lingui/react/macro' import {useNavigation} from '@react-navigation/native' import {type NativeStackScreenProps} from '@react-navigation/native-stack' -import {HELP_DESK_URL} from '#/lib/constants' +import {HELP_DESK_URL, HITSLOP_10} from '#/lib/constants' import {useAccountSwitcher} from '#/lib/hooks/useAccountSwitcher' import {useApplyPullRequestOTAUpdate} from '#/lib/hooks/useOTAUpdates' import { @@ -27,6 +27,7 @@ import {useOnboardingDispatch} from '#/state/shell' import {useLoggedOutViewControls} from '#/state/shell/logged-out' import {useCloseAllActiveElements} from '#/state/util' import {UserAvatar} from '#/view/com/util/UserAvatar' +import {GrowthbookDialog} from '#/screens/Settings/components/GrowthbookDialog' import * as SettingsList from '#/screens/Settings/components/SettingsList' import {atoms as a, platform, tokens, useBreakpoints, useTheme} from '#/alf' import {AgeAssuranceDismissibleNotice} from '#/components/ageAssurance/AgeAssuranceDismissibleNotice' @@ -393,11 +394,12 @@ function DevOptions() { const {mutate: deleteChatDeclarationRecord} = useDeleteActorDeclaration() const { tryApplyUpdate, - revertToEmbedded, + restoreDefaultChannel, isCurrentlyRunningPullRequestDeployment, currentChannel, } = useApplyPullRequestOTAUpdate() const [actyNotifNudged, setActyNotifNudged] = useActivitySubscriptionsNudged() + const growthbookControl = useDialogControl() const resetOnboarding = () => { navigation.navigate('Home') @@ -458,6 +460,14 @@ function DevOptions() { System log + growthbookControl.open()} + label={l`View GrowthBook information`}> + + GrowthBook + + + navigation.navigate('Debug')} label={l`Open storybook page`}> @@ -474,7 +484,7 @@ function DevOptions() { deleteChatDeclarationRecord()} - label={l`Open storybook page`}> + label={l`Delete chat declaration record`}> Delete chat declaration record @@ -520,7 +530,7 @@ function DevOptions() { ) : null} {IS_NATIVE && isCurrentlyRunningPullRequestDeployment ? ( void revertToEmbedded()} + onPress={() => void restoreDefaultChannel()} label={l`Unapply Pull Request`}> Unapply Pull Request {currentChannel} @@ -647,6 +657,7 @@ function AccountRow({ {({props, state}) => ( + + + + ) +} + +function GrowthbookDialogInner() { + const t = useTheme() + + const [isRefreshing, setIsRefreshing] = useState(false) + + return ( + + GrowthBook + + + }> + + + + + + + + {Object.entries(Features).map(([name, key]) => ( + + ))} + + + ) +} + +function RefreshButton({ + isRefreshing, + setIsRefreshing, +}: { + isRefreshing: boolean + setIsRefreshing: React.Dispatch> +}) { + const onPress = () => { + setIsRefreshing(true) + refresh({strategy: 'prefer-fresh-gates'}) + .then(() => { + Toast.show('Refreshed feature flags', {type: 'success'}) + }) + .catch(() => { + Toast.show('Failed to refresh feature flags', {type: 'error'}) + }) + .finally(() => { + setIsRefreshing(false) + }) + } + + return ( + + ) +} + +function FeatureRow({ + name, + featureKey, + isRefreshing, +}: { + name: string + featureKey: string + isRefreshing: boolean +}) { + const t = useTheme() + const value = features.evalFeature(featureKey).value + + const onPress = () => { + void Clipboard.setStringAsync(featureKey) + Toast.show('Copied feature flag key to clipboard', {type: 'success'}) + } + + return ( + + + {name} + + {featureKey} + + + {isRefreshing ? : } + + ) +} + +function CurrentProfile() { + const t = useTheme() + const {currentAccount} = useSession() + const moderationOpts = useModerationOpts() + const {data: profile} = useProfileQuery({did: currentAccount?.did}) + + if (!currentAccount) { + return ( + + No active account + + ) + } + + const onPressDid = () => { + void Clipboard.setStringAsync(currentAccount.did) + Toast.show('Copied did to clipboard', {type: 'success'}) + } + + return profile && moderationOpts ? ( + + + + + + + ) : null +} + +function FeatureValue({value}: {value: unknown}) { + const t = useTheme() + + let label: string + let color: string + if (value === true) { + label = 'true' + color = t.palette.positive_500 + } else if (value === false) { + label = 'false' + color = t.palette.negative_500 + } else if (value === null || value === undefined) { + label = 'null' + color = t.palette.contrast_500 + } else { + label = JSON.stringify(value) + color = t.palette.contrast_700 + } + + return {label} +} diff --git a/src/screens/Settings/components/OTAInfo.tsx b/src/screens/Settings/components/OTAInfo.tsx index 9ab1962b97..25b2c828d9 100644 --- a/src/screens/Settings/components/OTAInfo.tsx +++ b/src/screens/Settings/components/OTAInfo.tsx @@ -4,6 +4,8 @@ import {useLingui} from '@lingui/react' import {Trans} from '@lingui/react/macro' import {useMutation, useQuery} from '@tanstack/react-query' +import {splash} from '#/lib/hooks/useOTAUpdates' +import {useTheme} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {ArrowRotateCounterClockwise_Stroke2_Corner0_Rounded as RetryIcon} from '#/components/icons/ArrowRotate' import {Shapes_Stroke2_Corner0_Rounded as ShapesIcon} from '#/components/icons/Shapes' @@ -13,6 +15,7 @@ import * as SettingsList from '../components/SettingsList' export function OTAInfo() { const {_} = useLingui() + const t = useTheme() const { data: isAvailable, isPending: isPendingInfo, @@ -31,7 +34,9 @@ export function OTAInfo() { useMutation({ mutationFn: async () => { await Updates.fetchUpdateAsync() - await Updates.reloadAsync() + await Updates.reloadAsync({ + reloadScreenOptions: splash(t.scheme), + }) }, onError: error => Toast.show(`Failed to update: ${error.message}`, { diff --git a/src/screens/Signup/StepCaptcha/index.tsx b/src/screens/Signup/StepCaptcha/index.tsx index 2c5d88f2c8..43e536c7ae 100644 --- a/src/screens/Signup/StepCaptcha/index.tsx +++ b/src/screens/Signup/StepCaptcha/index.tsx @@ -127,23 +127,17 @@ function StepCaptchaInner({ value: _(msg`Error receiving captcha response.`), }) ax.metric('signup:captchaFailure', {}) - logger.error('Signup Flow Error', { - registrationHandle: state.handle, - error, + logger.error('Signup: captcha response error', { + safeMessage: error, }) }, - [_, ax, dispatch, state.handle], + [_, ax, dispatch], ) const onBackPress = useCallback(() => { - logger.error('Signup Flow Error', { - errorMessage: - 'User went back from captcha step. Possibly encountered an error.', - registrationHandle: state.handle, - }) - + ax.metric('signup:captchaBackPress', {}) dispatch({type: 'prev'}) - }, [dispatch, state.handle]) + }, [ax, dispatch]) return ( <> diff --git a/src/screens/Signup/index.tsx b/src/screens/Signup/index.tsx index c7f9d11327..4404384fb5 100644 --- a/src/screens/Signup/index.tsx +++ b/src/screens/Signup/index.tsx @@ -1,4 +1,4 @@ -import {useEffect, useReducer, useState} from 'react' +import {type PropsWithChildren, useEffect, useReducer, useState} from 'react' import {AppState, type AppStateStatus, View} from 'react-native' import ReactNativeDeviceAttest from 'react-native-device-attest' import {KeyboardAvoidingView} from 'react-native-keyboard-controller' @@ -132,10 +132,8 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { return ( - + void}) {
- + ) } + +function SignupKeyboardAvoidingView({ + children, + enabled, +}: PropsWithChildren<{enabled: boolean}>) { + if (!enabled) { + return {children} + } + + return ( + + {children} + + ) +} diff --git a/src/screens/Signup/state.ts b/src/screens/Signup/state.ts index a154195124..95b3185758 100644 --- a/src/screens/Signup/state.ts +++ b/src/screens/Signup/state.ts @@ -8,7 +8,7 @@ import {useLingui} from '@lingui/react/macro' import * as EmailValidator from 'email-validator' import {DEFAULT_SERVICE} from '#/lib/constants' -import {cleanError} from '#/lib/strings/errors' +import {cleanError, isNetworkError} from '#/lib/strings/errors' import {createFullHandle} from '#/lib/strings/handles' import {getAge} from '#/lib/strings/time' import {useSessionApi} from '#/state/session' @@ -255,6 +255,25 @@ export const SignupContext = createContext({} as IContext) SignupContext.displayName = 'SignupContext' export const useSignupContext = () => useContext(SignupContext) +/** + * Returns a PII-free name for expected signup failures, or undefined if the + * failure is unexpected and should be reported to Sentry. + */ +function classifyExpectedSignupError(e: unknown): string | undefined { + if (e instanceof ComAtprotoServerCreateAccount.InvalidHandleError) + return 'InvalidHandle' + if (e instanceof ComAtprotoServerCreateAccount.HandleNotAvailableError) + return 'HandleNotAvailable' + if (e instanceof ComAtprotoServerCreateAccount.InvalidPasswordError) + return 'InvalidPassword' + if (e instanceof ComAtprotoServerCreateAccount.UnsupportedDomainError) + return 'UnsupportedDomain' + /* the server sends no typed error for this case */ + if (String(e).includes('Email already taken')) return 'EmailTaken' + if (isNetworkError(e)) return 'NetworkError' + return undefined +} + export function useSubmitSignup() { const ax = useAnalytics() const {t: l} = useLingui() @@ -300,10 +319,7 @@ export function useSubmitSignup() { !state.pendingSubmit?.verificationCode ) { dispatch({type: 'setStep', value: SignupStep.CAPTCHA}) - ax.logger.error('Signup Flow Error', { - errorMessage: 'Verification captcha code was not set.', - registrationHandle: state.handle, - }) + ax.logger.error('Signup: captcha code missing at submit', {}) return dispatch({ type: 'setError', value: l`Please complete the verification captcha.`, @@ -362,14 +378,18 @@ export function useSubmitSignup() { }) dispatch({type: 'setStep', value: isHandleError ? 2 : 1}) - ax.logger.error('Signup Flow Error', { - errorMessage: error, - registrationHandle: state.handle, - }) + const expected = classifyExpectedSignupError(e) + if (expected) { + ax.metric('signup:createAccountFailure', {reason: expected}) + } else { + ax.logger.error('Signup: unexpected createAccount failure', { + safeMessage: e, + }) + } } finally { dispatch({type: 'setIsLoading', value: false}) } }, - [l, ax.logger, createAccount, onboardingDispatch], + [l, ax, createAccount, onboardingDispatch], ) } diff --git a/src/screens/StarterPack/Wizard/StepProfiles.tsx b/src/screens/StarterPack/Wizard/StepProfiles.tsx index 4aef058b27..9f3b7076fd 100644 --- a/src/screens/StarterPack/Wizard/StepProfiles.tsx +++ b/src/screens/StarterPack/Wizard/StepProfiles.tsx @@ -87,7 +87,9 @@ export function StepProfiles({ sideBorders={false} style={[a.flex_1]} onEndReached={ - !query && !screenReaderEnabled ? () => fetchNextPage() : undefined + !query && !screenReaderEnabled + ? () => void fetchNextPage() + : undefined } onEndReachedThreshold={IS_NATIVE ? 2 : 0.25} keyboardDismissMode="on-drag" @@ -104,7 +106,11 @@ export function StepProfiles({ a.mt_lg, a.leading_snug, ]}> - Nobody was found. Try searching for someone else. + {query ? ( + + Nobody was found. Try searching for someone else. + + ) : null} )} diff --git a/src/screens/VideoFeed/components/Scrubber.tsx b/src/screens/VideoFeed/components/Scrubber.tsx index acaf02453c..8eabe3e62a 100644 --- a/src/screens/VideoFeed/components/Scrubber.tsx +++ b/src/screens/VideoFeed/components/Scrubber.tsx @@ -8,8 +8,6 @@ import { import Animated, { clamp, interpolate, - runOnJS, - runOnUI, type SharedValue, useAnimatedReaction, useAnimatedStyle, @@ -20,6 +18,7 @@ import { useSafeAreaFrame, useSafeAreaInsets, } from 'react-native-safe-area-context' +import {scheduleOnRN, scheduleOnUI} from 'react-native-worklets' import {useEventListener} from 'expo' import {type VideoPlayer} from 'expo-video' @@ -66,7 +65,7 @@ export function Scrubber({ () => Math.round(seekProgressSV.get()), (progress, prevProgress) => { if (progress !== prevProgress) { - runOnJS(setCurrentSeekTime)(progress) + scheduleOnRN(setCurrentSeekTime, progress) } }, ) @@ -76,11 +75,11 @@ export function Scrubber({ player?.seekBy(time) setTimeout(() => { - runOnUI(() => { + scheduleOnUI(() => { 'worklet' isSeekingSV.set(false) seekingAnimationSV.set(withTiming(0, {duration: 500})) - })() + }) }, 50) }, [player, isSeekingSV, seekingAnimationSV], @@ -116,7 +115,7 @@ export function Scrubber({ // it's seek by, so offset by the current time // seekBy sets isSeekingSV back to false, so no need to do that here - runOnJS(seekBy)(newTime - currentTimeSV.get()) + scheduleOnRN(seekBy, newTime - currentTimeSV.get()) }) }, [ scrollGesture, @@ -253,7 +252,7 @@ function PlayerListener({ if (duration !== 0) { setDuration(Math.round(duration)) } - runOnUI(updateTime)(evt.currentTime, duration) + scheduleOnUI(updateTime, evt.currentTime, duration) }) return null diff --git a/src/state/queries/notifications/__tests__/util.test.ts b/src/state/queries/notifications/__tests__/util.test.ts new file mode 100644 index 0000000000..3122770a40 --- /dev/null +++ b/src/state/queries/notifications/__tests__/util.test.ts @@ -0,0 +1,79 @@ +import {type AppBskyNotificationListNotifications} from '@atproto/api' +import {describe, expect, it, jest} from '@jest/globals' + +import {groupNotifications} from '../util' + +jest.mock('#/state/queries/profile', () => ({precacheProfile: jest.fn()})) + +type Notification = AppBskyNotificationListNotifications.Notification + +function makeFollowNotification( + did: string, + starterPackUri?: string, +): Notification { + return { + uri: `at://${did}/app.bsky.graph.follow/follow`, + cid: `cid-${did}`, + author: { + did, + handle: `${did}.test`, + displayName: did, + avatar: undefined, + associated: undefined, + viewer: {}, + labels: [], + createdAt: '2026-07-28T12:00:00.000Z', + }, + reason: 'follow', + record: {}, + starterPack: starterPackUri + ? ({uri: starterPackUri} as Notification['starterPack']) + : undefined, + isRead: false, + indexedAt: '2026-07-28T12:00:00.000Z', + } +} + +describe('groupNotifications', () => { + it('does not group a starter pack follow with an organic follow', () => { + const pack = 'at://did:plc:alice/app.bsky.graph.starterpack/a' + + const grouped = groupNotifications([ + makeFollowNotification('did:plc:a'), + makeFollowNotification('did:plc:b', pack), + ]) + + expect(grouped).toHaveLength(2) + expect(grouped[0].notification.author.did).toBe('did:plc:a') + expect(grouped[0].notification.starterPack).toBeUndefined() + expect(grouped[0].additional).toBeUndefined() + expect(grouped[1].notification.author.did).toBe('did:plc:b') + expect(grouped[1].notification.starterPack?.uri).toBe(pack) + expect(grouped[1].additional).toBeUndefined() + }) + + it('groups follows by starter pack', () => { + const packA = 'at://did:plc:alice/app.bsky.graph.starterpack/a' + const packB = 'at://did:plc:bob/app.bsky.graph.starterpack/b' + + const grouped = groupNotifications([ + makeFollowNotification('did:plc:a', packA), + makeFollowNotification('did:plc:b', packB), + makeFollowNotification('did:plc:c', packA), + makeFollowNotification('did:plc:d'), + makeFollowNotification('did:plc:e', packB), + makeFollowNotification('did:plc:f'), + ]) + + expect( + grouped.map(item => [ + item.notification.author.did, + ...(item.additional ?? []).map(notification => notification.author.did), + ]), + ).toEqual([ + ['did:plc:a', 'did:plc:c'], + ['did:plc:b', 'did:plc:e'], + ['did:plc:d', 'did:plc:f'], + ]) + }) +}) diff --git a/src/state/queries/notifications/util.ts b/src/state/queries/notifications/util.ts index ded66fb62e..e5d1d81885 100644 --- a/src/state/queries/notifications/util.ts +++ b/src/state/queries/notifications/util.ts @@ -163,6 +163,9 @@ export function groupNotifications( Math.abs(ts2 - ts) < MS_2DAY && notif.reason === groupedNotif.notification.reason && notif.reasonSubject === groupedNotif.notification.reasonSubject && + (notif.reason !== 'follow' || + notif.starterPack?.uri === + groupedNotif.notification.starterPack?.uri) && (notif.author.did !== groupedNotif.notification.author.did || notif.reason === 'subscribed-post') ) { diff --git a/src/state/queries/profile-followers.ts b/src/state/queries/profile-followers.ts index 9c4c5182a1..62968af2d8 100644 --- a/src/state/queries/profile-followers.ts +++ b/src/state/queries/profile-followers.ts @@ -10,15 +10,33 @@ import { } from '@tanstack/react-query' import {useAgent} from '#/state/session' +import {useAnalytics} from '#/analytics' +const DEFAULT_SORT = 'latest' const PAGE_SIZE = 30 type RQPageParam = string | undefined const RQKEY_ROOT = 'profile-followers' -export const RQKEY = (did: string) => [RQKEY_ROOT, did] +export const RQKEY = (did: string, sort: 'latest' | 'top' = DEFAULT_SORT) => [ + RQKEY_ROOT, + did, + sort, +] -export function useProfileFollowersQuery(did: string | undefined) { +export function useProfileFollowersQuery( + did?: string, + { + sort, + }: { + sort?: 'latest' | 'top' + } = {}, +) { + const ax = useAnalytics() + const isSortEnabled = ax.features.enabled(ax.features.FollowSortEnable) const agent = useAgent() + + const sortParam = isSortEnabled ? sort || DEFAULT_SORT : undefined + return useInfiniteQuery< AppBskyGraphGetFollowers.OutputSchema, Error, @@ -26,12 +44,13 @@ export function useProfileFollowersQuery(did: string | undefined) { QueryKey, RQPageParam >({ - queryKey: RQKEY(did || ''), + queryKey: RQKEY(did || '', sortParam), async queryFn({pageParam}: {pageParam: RQPageParam}) { const res = await agent.app.bsky.graph.getFollowers({ actor: did || '', limit: PAGE_SIZE, cursor: pageParam, + sort: sortParam, }) return res.data }, diff --git a/src/state/queries/profile-follows.ts b/src/state/queries/profile-follows.ts index 1b154793d4..1c4d5dc69c 100644 --- a/src/state/queries/profile-follows.ts +++ b/src/state/queries/profile-follows.ts @@ -8,25 +8,36 @@ import { import {STALE} from '#/state/queries' import {useAgent} from '#/state/session' +import {useAnalytics} from '#/analytics' +const DEFAULT_SORT = 'latest' const PAGE_SIZE = 30 type RQPageParam = string | undefined // TODO refactor invalidate on mutate? const RQKEY_ROOT = 'profile-follows' -export const RQKEY = (did: string) => [RQKEY_ROOT, did] +export const RQKEY = (did: string, sort: 'latest' | 'top' = DEFAULT_SORT) => [ + RQKEY_ROOT, + did, + sort, +] export function useProfileFollowsQuery( did: string | undefined, { limit, + sort, }: { limit?: number - } = { - limit: PAGE_SIZE, - }, + sort?: 'latest' | 'top' + } = {}, ) { + const ax = useAnalytics() + const isSortEnabled = ax.features.enabled(ax.features.FollowSortEnable) const agent = useAgent() + + const sortParam = isSortEnabled ? sort || DEFAULT_SORT : undefined + return useInfiniteQuery< AppBskyGraphGetFollows.OutputSchema, Error, @@ -35,12 +46,13 @@ export function useProfileFollowsQuery( RQPageParam >({ staleTime: STALE.MINUTES.ONE, - queryKey: RQKEY(did || ''), + queryKey: RQKEY(did || '', sortParam), async queryFn({pageParam}: {pageParam: RQPageParam}) { const res = await agent.app.bsky.graph.getFollows({ actor: did || '', limit: limit || PAGE_SIZE, cursor: pageParam, + sort: sortParam, }) return res.data }, diff --git a/src/state/shell/minimal-mode.tsx b/src/state/shell/minimal-mode.tsx index 2572ccc719..2309b6fa1b 100644 --- a/src/state/shell/minimal-mode.tsx +++ b/src/state/shell/minimal-mode.tsx @@ -7,6 +7,7 @@ import { useRef, } from 'react' import { + Reanimated3DefaultSpringConfig, type SharedValue, useSharedValue, withSpring, @@ -34,6 +35,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { 'worklet' footerMode.set(() => withSpring(v ? 1 : 0, { + ...Reanimated3DefaultSpringConfig, overshootClamping: true, }), ) diff --git a/src/storage/__tests__/index.test.ts b/src/storage/__tests__/index.test.ts index 0b57d365ff..e11affa7a8 100644 --- a/src/storage/__tests__/index.test.ts +++ b/src/storage/__tests__/index.test.ts @@ -2,7 +2,7 @@ import {beforeEach, expect, jest, test} from '@jest/globals' import {Storage} from '#/storage' -jest.mock('@bsky.app/react-native-mmkv', () => ({ +jest.mock('react-native-mmkv', () => ({ MMKV: class MMKVMock { _store = new Map() diff --git a/src/storage/archive/db/index.ts b/src/storage/archive/db/index.ts index f554d5f5c0..05fa8eed47 100644 --- a/src/storage/archive/db/index.ts +++ b/src/storage/archive/db/index.ts @@ -1,4 +1,4 @@ -import {MMKV} from '@bsky.app/react-native-mmkv' +import {MMKV} from 'react-native-mmkv' import {type DB} from '#/storage/archive/db/types' diff --git a/src/storage/index.ts b/src/storage/index.ts index 3ae4577295..4c42005104 100644 --- a/src/storage/index.ts +++ b/src/storage/index.ts @@ -1,5 +1,5 @@ import {useCallback, useEffect, useState} from 'react' -import {MMKV} from '@bsky.app/react-native-mmkv' +import {MMKV} from 'react-native-mmkv' import {type Account, type Device} from '#/storage/schema' diff --git a/src/storage/schema.ts b/src/storage/schema.ts index 33c6bc0b56..2f4424792d 100644 --- a/src/storage/schema.ts +++ b/src/storage/schema.ts @@ -63,6 +63,11 @@ export type Device = { activitySubscriptionsNudged?: boolean threadgateNudged?: boolean inviteFriendsFollowersPromoDismissed?: boolean + pendingOTAUpdate?: { + attemptedAt: number + channel: string + updateId: string + } /** * Selected color theme for the Invite Friends QR card. */ diff --git a/src/view/com/auth/SplashScreen.tsx b/src/view/com/auth/SplashScreen.tsx index 54867aedc7..581f7bd2e4 100644 --- a/src/view/com/auth/SplashScreen.tsx +++ b/src/view/com/auth/SplashScreen.tsx @@ -39,9 +39,9 @@ export const SplashScreen = ({ logoFill, logoShadow: isDarkMode ? [ - t.atoms.shadow_md, { shadowColor: logoFill, + shadowRadius: 8, shadowOpacity: 0.5, shadowOffset: { width: 0, @@ -93,13 +93,15 @@ export const SplashScreen = ({ size="large" color={isDarkMode ? 'secondary_inverted' : 'secondary'} style={[ - t.atoms.shadow_md, { + shadowColor: t.palette.black, + shadowRadius: 8, shadowOpacity: 0.1, shadowOffset: { width: 0, height: 5, }, + elevation: 16, }, ]}> diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index a09aaab8c1..026697fe25 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -21,17 +21,16 @@ import { type ViewStyle, } from 'react-native' import {KeyboardAvoidingView} from 'react-native-keyboard-controller' -// @ts-expect-error no type definition -import ProgressCircle from 'react-native-progress/Circle' +import {Circle as ProgressCircle} from 'react-native-progress' import Animated, { type AnimatedRef, + type AnimatedStyle, Easing, FadeIn, FadeOut, interpolateColor, LayoutAnimationConfig, LinearTransition, - runOnUI, scrollTo, useAnimatedRef, useAnimatedScrollHandler, @@ -44,6 +43,7 @@ import Animated, { ZoomOut, } from 'react-native-reanimated' import {useSafeAreaInsets} from 'react-native-safe-area-context' +import {scheduleOnUI} from 'react-native-worklets' import * as FileSystem from 'expo-file-system' import {type ImagePickerAsset} from 'expo-image-picker' import { @@ -712,6 +712,11 @@ export const ComposePost = ({ const [publishOnUpload, setPublishOnUpload] = useState(false) const onClose = useCallback(() => { + // HACKFIX: Android keyboard doesn't consistently dismiss IME + // TODO: investigate the root cause and fix properly -sfn + if (IS_ANDROID) { + Keyboard.dismiss() + } closeComposer() clearThumbnailCache(queryClient) revokeAllMediaUrls() @@ -1794,7 +1799,7 @@ function ComposerTopBar({ isEditingDraft: boolean canSaveDraft: boolean textLength: number - topBarAnimatedStyle: StyleProp + topBarAnimatedStyle: AnimatedStyle children?: React.ReactNode }) { const t = useTheme() @@ -2029,7 +2034,7 @@ function ComposerPills({ thread: ThreadDraft post: PostDraft dispatch: (action: ComposerAction) => void - bottomBarAnimatedStyle: StyleProp + bottomBarAnimatedStyle: AnimatedStyle }) { const t = useTheme() const media = post.embed.media @@ -2376,7 +2381,7 @@ function useScrollTracker({ const onScrollViewContentSizeChange = useCallback( (_width: number, height: number) => { - runOnUI(onScrollViewContentSizeChangeUIThread)(height) + scheduleOnUI(onScrollViewContentSizeChangeUIThread, height) }, [onScrollViewContentSizeChangeUIThread], ) diff --git a/src/view/com/composer/GifAltText.tsx b/src/view/com/composer/GifAltText.tsx index b7565e6b6d..35767a20ab 100644 --- a/src/view/com/composer/GifAltText.tsx +++ b/src/view/com/composer/GifAltText.tsx @@ -162,7 +162,6 @@ function AltTextInner({ onChangeText={onChange} defaultValue={altText} multiline - numberOfLines={3} autoFocus onKeyPress={({nativeEvent}) => { if (nativeEvent.key === 'Escape') { diff --git a/src/view/com/composer/char-progress/CharProgress.tsx b/src/view/com/composer/char-progress/CharProgress.tsx index d437472902..be32f9db18 100644 --- a/src/view/com/composer/char-progress/CharProgress.tsx +++ b/src/view/com/composer/char-progress/CharProgress.tsx @@ -4,10 +4,10 @@ import { View, type ViewStyle, } from 'react-native' -// @ts-ignore no type definition -prf -import ProgressCircle from 'react-native-progress/Circle' -// @ts-ignore no type definition -prf -import ProgressPie from 'react-native-progress/Pie' +import { + Circle as ProgressCircle, + Pie as ProgressPie, +} from 'react-native-progress' import {MAX_GRAPHEME_LENGTH} from '#/lib/constants' import {atoms as a, useTheme} from '#/alf' diff --git a/src/view/com/composer/photos/ImageAltTextDialog.tsx b/src/view/com/composer/photos/ImageAltTextDialog.tsx index 08de8d8d99..9d00aed097 100644 --- a/src/view/com/composer/photos/ImageAltTextDialog.tsx +++ b/src/view/com/composer/photos/ImageAltTextDialog.tsx @@ -131,7 +131,6 @@ const ImageAltTextInner = ({ }} defaultValue={altText} multiline - numberOfLines={3} autoFocus /> diff --git a/src/view/com/composer/photos/OpenCameraBtn.tsx b/src/view/com/composer/photos/OpenCameraBtn.tsx index 6365765fc9..cf087b59bb 100644 --- a/src/view/com/composer/photos/OpenCameraBtn.tsx +++ b/src/view/com/composer/photos/OpenCameraBtn.tsx @@ -32,6 +32,9 @@ export function OpenCameraBtn({disabled, onAdd}: OpenCameraBtnProps) { const img = await openCamera({ aspect: [1, 1], }) + if (!img) { + return + } // If we don't have permissions it's fine, we just wont save it. The post itself will still have access to // the image even without these permissions diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx index d40e06a215..88389ffd56 100644 --- a/src/view/com/composer/text-input/TextInput.tsx +++ b/src/view/com/composer/text-input/TextInput.tsx @@ -26,7 +26,7 @@ import { } from '#/view/com/composer/text-input/text-input-util' import {atoms as a, useAlf} from '#/alf' import {normalizeTextStyles} from '#/alf/typography' -import {IS_ANDROID, IS_NATIVE} from '#/env' +import {IS_ANDROID} from '#/env' import {Autocomplete} from './mobile/Autocomplete' import {type TextInputProps} from './TextInput.types' @@ -171,13 +171,6 @@ export function TextInput({ }, ) - /** - * PasteInput doesn't like `lineHeight`, results in jumpiness - */ - if (IS_NATIVE) { - style.lineHeight = undefined - } - /* * Android impl of `PasteInput` doesn't support the array syntax for `fontVariant` */ @@ -227,7 +220,6 @@ export function TextInput({ allowFontScaling multiline scrollEnabled={false} - numberOfLines={2} // Note: should be the default value, but as of v1.104 // it switched to "none" on Android autoCapitalize="sentences" diff --git a/src/view/com/composer/videos/VideoTranscodeProgress.tsx b/src/view/com/composer/videos/VideoTranscodeProgress.tsx index 17b0027f5c..fee03bd0cb 100644 --- a/src/view/com/composer/videos/VideoTranscodeProgress.tsx +++ b/src/view/com/composer/videos/VideoTranscodeProgress.tsx @@ -1,6 +1,5 @@ import {View} from 'react-native' -// @ts-expect-error no type definition -import ProgressPie from 'react-native-progress/Pie' +import {Pie as ProgressPie} from 'react-native-progress' import {type ImagePickerAsset} from 'expo-image-picker' import {atoms as a, useTheme} from '#/alf' diff --git a/src/view/com/feeds/ComposerPrompt.tsx b/src/view/com/feeds/ComposerPrompt.tsx index b221b0fae3..a2effdf231 100644 --- a/src/view/com/feeds/ComposerPrompt.tsx +++ b/src/view/com/feeds/ComposerPrompt.tsx @@ -115,6 +115,9 @@ export function ComposerPrompt() { const image = await openCamera({ mediaTypes: 'images', }) + if (!image) { + return + } const imageUris = [ { diff --git a/src/view/com/notifications/NotificationFeed.tsx b/src/view/com/notifications/NotificationFeed.tsx index a4c4c6a973..82b5008078 100644 --- a/src/view/com/notifications/NotificationFeed.tsx +++ b/src/view/com/notifications/NotificationFeed.tsx @@ -1,31 +1,37 @@ import {useCallback, useEffect, useMemo, useState} from 'react' -import { - ActivityIndicator, - type ListRenderItemInfo, - StyleSheet, - View, -} from 'react-native' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' +import {ActivityIndicator, type ListRenderItemInfo, View} from 'react-native' +import {useLingui} from '@lingui/react/macro' import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender' import {usePostViewTracking} from '#/lib/hooks/usePostViewTracking' import {cleanError} from '#/lib/strings/errors' -import {s} from '#/lib/styles' import {logger} from '#/logger' import {useModerationOpts} from '#/state/preferences/moderation-opts' -import {useNotificationFeedQuery} from '#/state/queries/notifications/feed' +import { + type FeedNotification, + useNotificationFeedQuery, +} from '#/state/queries/notifications/feed' import {EmptyState} from '#/view/com/util/EmptyState' import {ErrorMessage} from '#/view/com/util/error/ErrorMessage' import {List, type ListProps, type ListRef} from '#/view/com/util/List' import {NotificationFeedLoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {LoadMoreRetryBtn} from '#/view/com/util/LoadMoreRetryBtn' +import {atoms as a, platform} from '#/alf' import {Bell_Stroke2_Corner0_Rounded as BellIcon} from '#/components/icons/Bell' import {NotificationFeedItem} from './NotificationFeedItem' -const EMPTY_FEED_ITEM = {_reactKey: '__empty__'} -const LOAD_MORE_ERROR_ITEM = {_reactKey: '__load_more_error__'} -const LOADING_ITEM = {_reactKey: '__loading__'} +const EMPTY_FEED_ITEM = {type: 'empty', _reactKey: '__empty__'} as const +const LOAD_MORE_ERROR_ITEM = { + type: 'load-more-error', + _reactKey: '__load_more_error__', +} as const +const LOADING_ITEM = {type: 'loading', _reactKey: '__loading__'} as const + +type NotificationFeedListItem = + | FeedNotification + | typeof EMPTY_FEED_ITEM + | typeof LOAD_MORE_ERROR_ITEM + | typeof LOADING_ITEM export function NotificationFeed({ filter, @@ -46,7 +52,7 @@ export function NotificationFeed({ }) { const initialNumToRender = useInitialNumToRender() const [isPTRing, setIsPTRing] = useState(false) - const {_} = useLingui() + const {t: l} = useLingui() const moderationOpts = useModerationOpts() const trackPostView = usePostViewTracking('Notifications') const { @@ -71,7 +77,7 @@ export function NotificationFeed({ !isFetching && !data?.pages.find(page => page.items.length > 0) const items = useMemo(() => { - let arr: any[] = [] + let arr: NotificationFeedListItem[] = [] if (isFetched) { if (isEmpty) { arr = arr.concat([EMPTY_FEED_ITEM]) @@ -113,29 +119,27 @@ export function NotificationFeed({ }, [isFetching, hasNextPage, isError, fetchNextPage]) const onPressRetryLoadMore = useCallback(() => { - fetchNextPage() + void fetchNextPage() }, [fetchNextPage]) const renderItem = useCallback( - ({item, index}: ListRenderItemInfo) => { - if (item === EMPTY_FEED_ITEM) { + ({item, index}: ListRenderItemInfo) => { + if (item.type === 'empty') { return ( ) - } else if (item === LOAD_MORE_ERROR_ITEM) { + } else if (item.type === 'load-more-error') { return ( ) - } else if (item === LOADING_ITEM) { + } else if (item.type === 'loading') { return } return ( @@ -147,13 +151,13 @@ export function NotificationFeed({ /> ) }, - [moderationOpts, _, onPressRetryLoadMore, filter], + [moderationOpts, l, onPressRetryLoadMore, filter], ) const FeedFooter = useCallback( () => isFetchingNextPage ? ( - + ) : ( @@ -169,7 +173,11 @@ export function NotificationFeed({ }, [enabled]) return ( - + {error && ( item._reactKey} + keyExtractor={(item: NotificationFeedListItem) => item._reactKey} renderItem={renderItem} ListHeaderComponent={ListHeaderComponent} ListFooterComponent={FeedFooter} refreshing={isPTRing} - onRefresh={onRefresh} - onEndReached={onEndReached} + onRefresh={() => void onRefresh()} + onEndReached={() => void onEndReached()} onEndReachedThreshold={2} onScrolledDownChange={onScrolledDownChange} - onItemSeen={item => { + onItemSeen={(item: NotificationFeedListItem) => { if ( (item.type === 'reply' || item.type === 'mention' || @@ -199,7 +207,7 @@ export function NotificationFeed({ trackPostView(item.subject) } }} - contentContainerStyle={s.contentContainer} + contentContainerStyle={{paddingBottom: 200}} desktopFixedHeight initialNumToRender={initialNumToRender} windowSize={11} @@ -209,8 +217,3 @@ export function NotificationFeed({ ) } - -const styles = StyleSheet.create({ - feedFooter: {paddingTop: 20}, - emptyState: {paddingVertical: 40}, -}) diff --git a/src/view/com/notifications/NotificationFeedItem.tsx b/src/view/com/notifications/NotificationFeedItem.tsx index a89431938d..c8efc82678 100644 --- a/src/view/com/notifications/NotificationFeedItem.tsx +++ b/src/view/com/notifications/NotificationFeedItem.tsx @@ -12,16 +12,17 @@ import { type AppBskyActorDefs, type AppBskyFeedDefs, AppBskyFeedPost, + type AppBskyGraphDefs, AppBskyGraphFollow, + AppBskyGraphStarterpack, + AtUri, moderateProfile, type ModerationDecision, type ModerationOpts, } from '@atproto/api' -import {AtUri} from '@atproto/api' import {TID} from '@atproto/common-web' -import {msg, plural} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' -import {Plural, Trans} from '@lingui/react/macro' +import {plural} from '@lingui/core/macro' +import {Plural, Trans, useLingui} from '@lingui/react/macro' import {useNavigation} from '@react-navigation/native' import {useQueryClient} from '@tanstack/react-query' @@ -32,7 +33,6 @@ import {type NavigationProp} from '#/lib/routes/types' import {forceLTR} from '#/lib/strings/bidi' import {sanitizeDisplayName} from '#/lib/strings/display-names' import {niceDate} from '#/lib/strings/time' -import {s} from '#/lib/styles' import {logger} from '#/logger' import {useProfileShadow} from '#/state/cache/profile-shadow' import {type FeedNotification} from '#/state/queries/notifications/feed' @@ -44,7 +44,7 @@ import {Post} from '#/view/com/post/Post' import {formatCount} from '#/view/com/util/numeric/format' import {TimeElapsed} from '#/view/com/util/TimeElapsed' import {PreviewableUserAvatar} from '#/view/com/util/UserAvatar' -import {atoms as a, platform, useTheme, web} from '#/alf' +import {atoms as a, native, platform, useTheme, web} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {BellRinging_Filled_Corner0_Rounded as BellRingingIcon} from '#/components/icons/BellRinging' import {Check_Stroke2_Corner0_Rounded as CheckIcon} from '#/components/icons/Check' @@ -64,7 +64,10 @@ import * as MediaPreview from '#/components/MediaPreview' import {ProfileBadges} from '#/components/ProfileBadges' import * as ProfileCard from '#/components/ProfileCard' import {ProfileHoverCard} from '#/components/ProfileHoverCard' -import {Notification as StarterPackCard} from '#/components/StarterPack/StarterPackCard' +import { + Notification as StarterPackCard, + useStarterPackLink, +} from '#/components/StarterPack/StarterPackCard' import {SubtleHover} from '#/components/SubtleHover' import * as Toast from '#/components/Toast' import {Text} from '#/components/Typography' @@ -93,9 +96,9 @@ let NotificationFeedItem = ({ }): React.ReactNode => { const queryClient = useQueryClient() const t = useTheme() - const {_, i18n} = useLingui() + const {t: l, i18n} = useLingui() const ax = useAnalytics() - const [isAuthorsExpanded, setIsAuthorsExpanded] = useState(false) + const [isAuthorsExpanded, setIsAuthorsExpanded] = useState(false) const [isHoveringAuthorsList, setIsHoveringAuthorsList] = useState(false) const itemHref = useMemo(() => { switch (item.type) { @@ -247,40 +250,40 @@ let NotificationFeedItem = ({ t.atoms.text, a.font_semi_bold, a.text_md, - a.leading_tight, web({direction: 'ltr', unicodeBidi: 'isolate'}), ]} to={firstAuthor.href} disableMismatchWarning emoji - label={_(msg`Go to ${firstAuthorName}'s profile`)}> + label={l`Go to ${firstAuthorName}'s profile`}> {forceLTR(firstAuthorName)} ) const additionalAuthorsCount = authors.length - 1 const hasMultipleAuthors = additionalAuthorsCount > 0 + const starterPack = item.notification.starterPack + const allFollowedViaSameStarterPack = + item.type === 'follow' && + starterPack !== undefined && + (item.additional ?? []).every( + notification => notification.starterPack?.uri === starterPack.uri, + ) + const starterPackName = + allFollowedViaSameStarterPack && starterPack + ? getStarterPackName(starterPack) + : undefined const formattedAuthorsCount = hasMultipleAuthors ? formatCount(i18n, additionalAuthorsCount) : '' let a11yLabel = '' - let notificationContent: React.ReactElement + let notificationContent: React.ReactElement let icon = ( {firstAuthorLink} and{' '} - + {firstAuthorLink} and{' '} - + {firstAuthorLink} followed you back } else { - a11yLabel = hasMultipleAuthors - ? _( - msg`${firstAuthorName} and ${plural(additionalAuthorsCount, { + a11yLabel = starterPackName + ? hasMultipleAuthors + ? l`${firstAuthorName} and ${plural(additionalAuthorsCount, { one: `${formattedAuthorsCount} other`, other: `${formattedAuthorsCount} others`, - })} followed you`, - ) - : _(msg`${firstAuthorName} followed you`) + })} followed you via starter pack ${starterPackName}` + : l`${firstAuthorName} followed you via starter pack ${starterPackName}` + : hasMultipleAuthors + ? l`${firstAuthorName} and ${plural(additionalAuthorsCount, { + one: `${formattedAuthorsCount} other`, + other: `${formattedAuthorsCount} others`, + })} followed you` + : l`${firstAuthorName} followed you` notificationContent = hasMultipleAuthors ? ( {firstAuthorLink} and{' '} - + } else if (item.type === 'contact-match') { - a11yLabel = _(msg`Your contact ${firstAuthorName} is on Bluesky`) + a11yLabel = l`Your contact ${firstAuthorName} is on Bluesky` notificationContent = ( Your contact {firstAuthorLink} is on Bluesky ) @@ -384,17 +390,15 @@ let NotificationFeedItem = ({ ) } else if (item.type === 'feedgen-like') { a11yLabel = hasMultipleAuthors - ? _( - msg`${firstAuthorName} and ${plural(additionalAuthorsCount, { - one: `${formattedAuthorsCount} other`, - other: `${formattedAuthorsCount} others`, - })} liked your custom feed`, - ) - : _(msg`${firstAuthorName} liked your custom feed`) + ? l`${firstAuthorName} and ${plural(additionalAuthorsCount, { + one: `${formattedAuthorsCount} other`, + other: `${formattedAuthorsCount} others`, + })} liked your custom feed` + : l`${firstAuthorName} liked your custom feed` notificationContent = hasMultipleAuthors ? ( {firstAuthorLink} and{' '} - + {firstAuthorLink} and{' '} - + {firstAuthorLink} and{' '} - + } else if (item.type === 'unverified') { a11yLabel = hasMultipleAuthors - ? _( - msg`${firstAuthorName} and ${plural(additionalAuthorsCount, { - one: `${formattedAuthorsCount} other`, - other: `${formattedAuthorsCount} others`, - })} removed their verifications from your account`, - ) - : _(msg`${firstAuthorName} removed their verification from your account`) + ? l`${firstAuthorName} and ${plural(additionalAuthorsCount, { + one: `${formattedAuthorsCount} other`, + other: `${formattedAuthorsCount} others`, + })} removed their verifications from your account` + : l`${firstAuthorName} removed their verification from your account` notificationContent = hasMultipleAuthors ? ( {firstAuthorLink} and{' '} - + } else if (item.type === 'like-via-repost') { a11yLabel = hasMultipleAuthors - ? _( - msg`${firstAuthorName} and ${plural(additionalAuthorsCount, { - one: `${formattedAuthorsCount} other`, - other: `${formattedAuthorsCount} others`, - })} liked your repost`, - ) - : _(msg`${firstAuthorName} liked your repost`) + ? l`${firstAuthorName} and ${plural(additionalAuthorsCount, { + one: `${formattedAuthorsCount} other`, + other: `${formattedAuthorsCount} others`, + })} liked your repost` + : l`${firstAuthorName} liked your repost` notificationContent = hasMultipleAuthors ? ( {firstAuthorLink} and{' '} - + {firstAuthorLink} and{' '} - + New posts from {firstAuthorLink} and{' '} - + @@ -686,6 +673,9 @@ let NotificationFeedItem = ({ + {allFollowedViaSameStarterPack && starterPack ? ( + + ) : null} {(item.type === 'follow' && !hasMultipleAuthors && !isFollowBack) || (item.type === 'contact-match' && !item.notification.author.viewer?.following) ? ( @@ -737,6 +727,53 @@ let NotificationFeedItem = ({ NotificationFeedItem = memo(NotificationFeedItem) export {NotificationFeedItem} +function FollowedViaStarterPack({ + starterPack, +}: { + starterPack: AppBskyGraphDefs.StarterPackViewBasic +}) { + const t = useTheme() + const link = useStarterPackLink({view: starterPack}) + + const starterPackName = getStarterPackName(starterPack) + + if (!starterPackName) { + return null + } + + return ( + + + via starter pack{' '} + + + {starterPackName} + + + + ) +} + +function getStarterPackName( + starterPack: AppBskyGraphDefs.StarterPackViewBasic, +) { + return bsky.dangerousIsType( + starterPack.record, + AppBskyGraphStarterpack.isRecord, + ) + ? starterPack.record.name + : undefined +} + function ExpandListPressable({ hasMultipleAuthors, children, @@ -767,7 +804,7 @@ function ExpandListPressable({ } function FollowBackButton({profile}: {profile: AppBskyActorDefs.ProfileView}) { - const {_} = useLingui() + const {t: l} = useLingui() const {currentAccount, hasSession} = useSession() const profileShadow = useProfileShadow(profile) const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue( @@ -787,15 +824,14 @@ function FollowBackButton({profile}: {profile: AppBskyActorDefs.ProfileView}) { try { await queueFollow() Toast.show( - _( - msg`Following ${sanitizeDisplayName( - profile.displayName || profile.handle, - )}`, - ), + l`Following ${sanitizeDisplayName( + profile.displayName || profile.handle, + )}`, ) - } catch (err: any) { + } catch (error) { + const err = error as Error if (err?.name !== 'AbortError') { - Toast.show(_(msg`An issue occurred, please try again.`), { + Toast.show(l`An issue occurred, please try again.`, { type: 'error', }) } @@ -809,15 +845,14 @@ function FollowBackButton({profile}: {profile: AppBskyActorDefs.ProfileView}) { try { await queueUnfollow() Toast.show( - _( - msg`No longer following ${sanitizeDisplayName( - profile.displayName || profile.handle, - )}`, - ), + l`No longer following ${sanitizeDisplayName( + profile.displayName || profile.handle, + )}`, ) - } catch (err: any) { + } catch (error) { + const err = error as Error if (err?.name !== 'AbortError') { - Toast.show(_(msg`An issue occurred, please try again.`), { + Toast.show(l`An issue occurred, please try again.`, { type: 'error', }) } @@ -838,12 +873,10 @@ function FollowBackButton({profile}: {profile: AppBskyActorDefs.ProfileView}) { const isFollowing = profileShadow.viewer.following const isFollowedBy = profileShadow.viewer.followedBy - const followingLabel = _( - msg({ - message: 'Following', - comment: 'User is following this account, click to unfollow', - }), - ) + const followingLabel = l({ + message: 'Following', + comment: 'User is following this account, click to unfollow', + }) return ( @@ -853,7 +886,7 @@ function FollowBackButton({profile}: {profile: AppBskyActorDefs.ProfileView}) { color="secondary" size="small" style={[a.self_start]} - onPress={onPressUnfollow}> + onPress={(e: GestureResponderEvent) => void onPressUnfollow(e)}> Following @@ -861,11 +894,11 @@ function FollowBackButton({profile}: {profile: AppBskyActorDefs.ProfileView}) { ) : ( {isLoading ? ( - Array(TRENDING_LIMIT) + Array(DEFAULT_LIMIT) .fill(0) .map((_n, i) => ( @@ -90,42 +119,49 @@ function Inner() { )) ) : !trending?.trends ? null : ( <> - {trending.trends.slice(0, TRENDING_LIMIT).map((topic, i) => ( - { - ax.metric('trendingTopic:click', { - context: 'sidebar', - recId: trending.recId, - }) - }}> - {({hovered}) => ( - - - {i + 1}. - - - {topic.displayName ?? topic.topic} - - - )} - - ))} + {trending.trends.slice(0, DEFAULT_LIMIT).map((topic, i) => { + const rank = i + 1 + return ( + { + ax.metric('trendingTopic:click', { + context: 'sidebar', + rank, + recId: trending.recId, + }) + }}> + {({hovered}) => ( + + + {rank}. + + + {topic.displayName ?? topic.topic} + + + )} + + ) + })} )} diff --git a/src/view/shell/index.tsx b/src/view/shell/index.tsx index 126ce485b6..9603236d4d 100644 --- a/src/view/shell/index.tsx +++ b/src/view/shell/index.tsx @@ -9,6 +9,7 @@ import {useNavigation, useNavigationState} from '@react-navigation/native' import {useDedupe} from '#/lib/hooks/useDedupe' import {useIntentHandler} from '#/lib/hooks/useIntentHandler' import {useNotificationsHandler} from '#/lib/hooks/useNotificationHandler' +import {useOTAUpdateRecovery} from '#/lib/hooks/useOTAUpdates' import {useNotificationsRegistration} from '#/lib/notifications/notifications' import {isStateAtTabRoot} from '#/lib/routes/helpers' import {useDialogFullyExpandedCountContext} from '#/state/dialogs' @@ -216,6 +217,7 @@ export function Shell() { const fullyExpandedCount = useDialogFullyExpandedCountContext() useIntentHandler() + useOTAUpdateRecovery() useEffect(() => { setSystemUITheme('theme', t)